@maxim_mazurok/gapi.client.networksecurity-v1beta1
Advanced tools
Comparing version 0.0.20230701 to 0.0.20230710
{ | ||
"name": "@maxim_mazurok/gapi.client.networksecurity-v1beta1", | ||
"version": "0.0.20230701", | ||
"version": "0.0.20230710", | ||
"description": "TypeScript typings for Network Security API v1beta1", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
122
tests.ts
@@ -6,3 +6,3 @@ /* This is stub file for gapi.client.networksecurity-v1beta1 definition tests */ | ||
// Revision: 20230701 | ||
// Revision: 20230710 | ||
@@ -119,2 +119,55 @@ gapi.load('client', async () => { | ||
}); | ||
/** Creates a new FirewallEndpoint in a given project and location. */ | ||
await gapi.client.networksecurity.organizations.locations.firewallEndpoints.create({ | ||
firewallEndpointId: "Test string", | ||
parent: "Test string", | ||
requestId: "Test string", | ||
}, { | ||
associatedNetworks: [ | ||
"Test string" | ||
], | ||
createTime: "Test string", | ||
labels: { | ||
A: "Test string" | ||
}, | ||
name: "Test string", | ||
reconciling: true, | ||
state: "Test string", | ||
updateTime: "Test string", | ||
}); | ||
/** Deletes a single Endpoint. */ | ||
await gapi.client.networksecurity.organizations.locations.firewallEndpoints.delete({ | ||
name: "Test string", | ||
requestId: "Test string", | ||
}); | ||
/** Gets details of a single Endpoint. */ | ||
await gapi.client.networksecurity.organizations.locations.firewallEndpoints.get({ | ||
name: "Test string", | ||
}); | ||
/** Lists FirewallEndpoints in a given project and location. */ | ||
await gapi.client.networksecurity.organizations.locations.firewallEndpoints.list({ | ||
filter: "Test string", | ||
orderBy: "Test string", | ||
pageSize: 42, | ||
pageToken: "Test string", | ||
parent: "Test string", | ||
}); | ||
/** Update a single Endpoint. */ | ||
await gapi.client.networksecurity.organizations.locations.firewallEndpoints.patch({ | ||
name: "Test string", | ||
requestId: "Test string", | ||
updateMask: "Test string", | ||
}, { | ||
associatedNetworks: [ | ||
"Test string" | ||
], | ||
createTime: "Test string", | ||
labels: { | ||
A: "Test string" | ||
}, | ||
name: "Test string", | ||
reconciling: true, | ||
state: "Test string", | ||
updateTime: "Test string", | ||
}); | ||
/** | ||
@@ -586,2 +639,55 @@ * Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this | ||
}); | ||
/** Creates a new FirewallEndpointAssociation in a given project and location. */ | ||
await gapi.client.networksecurity.projects.locations.firewallEndpointAssociations.create({ | ||
firewallEndpointAssociationId: "Test string", | ||
parent: "Test string", | ||
requestId: "Test string", | ||
}, { | ||
createTime: "Test string", | ||
firewallEndpoint: "Test string", | ||
labels: { | ||
A: "Test string" | ||
}, | ||
name: "Test string", | ||
network: "Test string", | ||
reconciling: true, | ||
state: "Test string", | ||
tlsInspectionPolicy: "Test string", | ||
updateTime: "Test string", | ||
}); | ||
/** Deletes a single FirewallEndpointAssociation. */ | ||
await gapi.client.networksecurity.projects.locations.firewallEndpointAssociations.delete({ | ||
name: "Test string", | ||
requestId: "Test string", | ||
}); | ||
/** Gets details of a single FirewallEndpointAssociation. */ | ||
await gapi.client.networksecurity.projects.locations.firewallEndpointAssociations.get({ | ||
name: "Test string", | ||
}); | ||
/** Lists Associations in a given project and location. */ | ||
await gapi.client.networksecurity.projects.locations.firewallEndpointAssociations.list({ | ||
filter: "Test string", | ||
orderBy: "Test string", | ||
pageSize: 42, | ||
pageToken: "Test string", | ||
parent: "Test string", | ||
}); | ||
/** Update a single FirewallEndpointAssociation. */ | ||
await gapi.client.networksecurity.projects.locations.firewallEndpointAssociations.patch({ | ||
name: "Test string", | ||
requestId: "Test string", | ||
updateMask: "Test string", | ||
}, { | ||
createTime: "Test string", | ||
firewallEndpoint: "Test string", | ||
labels: { | ||
A: "Test string" | ||
}, | ||
name: "Test string", | ||
network: "Test string", | ||
reconciling: true, | ||
state: "Test string", | ||
tlsInspectionPolicy: "Test string", | ||
updateTime: "Test string", | ||
}); | ||
/** Creates a new GatewaySecurityPolicy in a given project and location. */ | ||
@@ -843,4 +949,11 @@ await gapi.client.networksecurity.projects.locations.gatewaySecurityPolicies.create({ | ||
createTime: "Test string", | ||
customTlsFeatures: [ | ||
"Test string" | ||
], | ||
description: "Test string", | ||
excludePublicCaSet: true, | ||
minTlsVersion: "Test string", | ||
name: "Test string", | ||
tlsFeatureProfile: "Test string", | ||
trustConfig: "Test string", | ||
updateTime: "Test string", | ||
@@ -870,4 +983,11 @@ }); | ||
createTime: "Test string", | ||
customTlsFeatures: [ | ||
"Test string" | ||
], | ||
description: "Test string", | ||
excludePublicCaSet: true, | ||
minTlsVersion: "Test string", | ||
name: "Test string", | ||
tlsFeatureProfile: "Test string", | ||
trustConfig: "Test string", | ||
updateTime: "Test string", | ||
@@ -874,0 +994,0 @@ }); |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
365552
7265