-
Notifications
You must be signed in to change notification settings - Fork 598
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Source-Link: googleapis/googleapis@68ad73b Source-Link: googleapis/googleapis-gen@a581672 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYTU4MTY3MjA2MWI5NDgxYzAxOTJkZTAzYmJmYTM0NjRlMDIzMzgxMSJ9 See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
100f153
commit 9cf8e94
Showing
81 changed files
with
61,233 additions
and
6,450 deletions.
There are no files selected for viewing
2,055 changes: 2,005 additions & 50 deletions
2,055
packages/google-cloud-compute/protos/google/cloud/compute/v1/compute.proto
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
25,760 changes: 22,882 additions & 2,878 deletions
25,760
packages/google-cloud-compute/protos/protos.js
Large diffs are not rendered by default.
Oops, something went wrong.
5,113 changes: 4,549 additions & 564 deletions
5,113
packages/google-cloud-compute/protos/protos.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
84 changes: 84 additions & 0 deletions
84
...ogle-cloud-compute/samples/generated/v1/network_edge_security_services.aggregated_list.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
// Copyright 2022 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
// ** This file is automatically generated by gapic-generator-typescript. ** | ||
// ** https://github.com/googleapis/gapic-generator-typescript ** | ||
// ** All changes to this file may be overwritten. ** | ||
|
||
|
||
|
||
'use strict'; | ||
|
||
function main(project) { | ||
// [START compute_v1_generated_NetworkEdgeSecurityServices_AggregatedList_async] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
/** | ||
* A filter expression that filters resources listed in the response. The expression must specify the field name, an operator, and the value that you want to use for filtering. The value must be a string, a number, or a boolean. The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute Engine instances, you can exclude instances named `example-instance` by specifying `name != example-instance`. The `:` operator can be used with string fields to match substrings. For non-string fields it is equivalent to the `=` operator. The `:*` comparison can be used to test whether a key has been defined. For example, to find all objects with `owner` label use: ``` labels.owner:* ``` You can also filter nested fields. For example, you could specify `scheduling.automaticRestart = false` to include instances only if they are not scheduled for automatic restarts. You can use filtering on nested fields to filter based on resource labels. To filter on multiple expressions, provide each separate expression within parentheses. For example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND` expression. However, you can include `AND` and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.automaticRestart = true) ``` | ||
*/ | ||
// const filter = 'abc123' | ||
/** | ||
* Indicates whether every visible scope for each scope type (zone, region, global) should be included in the response. For new resource types added after this field, the flag has no effect as new resource types will always include every visible scope for each scope type in response. For resource types which predate this field, if this flag is omitted or false, only scopes of the scope types where the resource type is expected to be found will be included. | ||
*/ | ||
// const includeAllScopes = true | ||
/** | ||
* The maximum number of results per page that should be returned. If the number of available results is larger than `maxResults`, Compute Engine returns a `nextPageToken` that can be used to get the next page of results in subsequent list requests. Acceptable values are `0` to `500`, inclusive. (Default: `500`) | ||
*/ | ||
// const maxResults = 1234 | ||
/** | ||
* Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name. You can also sort results in descending order based on the creation timestamp using `orderBy="creationTimestamp desc"`. This sorts results based on the `creationTimestamp` field in reverse chronological order (newest result first). Use this to sort resources like operations so that the newest operation is returned first. Currently, only sorting by `name` or `creationTimestamp desc` is supported. | ||
*/ | ||
// const orderBy = 'abc123' | ||
/** | ||
* Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results. | ||
*/ | ||
// const pageToken = 'abc123' | ||
/** | ||
* Name of the project scoping this request. | ||
*/ | ||
// const project = 'my-project' | ||
/** | ||
* Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. | ||
*/ | ||
// const returnPartialSuccess = true | ||
|
||
// Imports the Compute library | ||
const {NetworkEdgeSecurityServicesClient} = require('@google-cloud/compute').v1; | ||
|
||
// Instantiates a client | ||
const computeClient = new NetworkEdgeSecurityServicesClient(); | ||
|
||
async function callAggregatedList() { | ||
// Construct request | ||
const request = { | ||
project, | ||
}; | ||
|
||
// Run request | ||
const iterable = await computeClient.aggregatedListAsync(request); | ||
for await (const [key, value] of iterable) { | ||
console.log(response); | ||
} | ||
} | ||
|
||
callAggregatedList(); | ||
// [END compute_v1_generated_NetworkEdgeSecurityServices_AggregatedList_async] | ||
} | ||
|
||
process.on('unhandledRejection', err => { | ||
console.error(err.message); | ||
process.exitCode = 1; | ||
}); | ||
main(...process.argv.slice(2)); |
72 changes: 72 additions & 0 deletions
72
packages/google-cloud-compute/samples/generated/v1/network_edge_security_services.delete.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// Copyright 2022 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
// ** This file is automatically generated by gapic-generator-typescript. ** | ||
// ** https://github.com/googleapis/gapic-generator-typescript ** | ||
// ** All changes to this file may be overwritten. ** | ||
|
||
|
||
|
||
'use strict'; | ||
|
||
function main(networkEdgeSecurityService, project, region) { | ||
// [START compute_v1_generated_NetworkEdgeSecurityServices_Delete_async] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
/** | ||
* Name of the network edge security service to delete. | ||
*/ | ||
// const networkEdgeSecurityService = 'abc123' | ||
/** | ||
* Project ID for this request. | ||
*/ | ||
// const project = 'my-project' | ||
/** | ||
* Name of the region scoping this request. | ||
*/ | ||
// const region = 'us-central1' | ||
/** | ||
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000). | ||
*/ | ||
// const requestId = 'abc123' | ||
|
||
// Imports the Compute library | ||
const {NetworkEdgeSecurityServicesClient} = require('@google-cloud/compute').v1; | ||
|
||
// Instantiates a client | ||
const computeClient = new NetworkEdgeSecurityServicesClient(); | ||
|
||
async function callDelete() { | ||
// Construct request | ||
const request = { | ||
networkEdgeSecurityService, | ||
project, | ||
region, | ||
}; | ||
|
||
// Run request | ||
const response = await computeClient.delete(request); | ||
console.log(response); | ||
} | ||
|
||
callDelete(); | ||
// [END compute_v1_generated_NetworkEdgeSecurityServices_Delete_async] | ||
} | ||
|
||
process.on('unhandledRejection', err => { | ||
console.error(err.message); | ||
process.exitCode = 1; | ||
}); | ||
main(...process.argv.slice(2)); |
68 changes: 68 additions & 0 deletions
68
packages/google-cloud-compute/samples/generated/v1/network_edge_security_services.get.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
// Copyright 2022 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
// ** This file is automatically generated by gapic-generator-typescript. ** | ||
// ** https://github.com/googleapis/gapic-generator-typescript ** | ||
// ** All changes to this file may be overwritten. ** | ||
|
||
|
||
|
||
'use strict'; | ||
|
||
function main(networkEdgeSecurityService, project, region) { | ||
// [START compute_v1_generated_NetworkEdgeSecurityServices_Get_async] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
/** | ||
* Name of the network edge security service to get. | ||
*/ | ||
// const networkEdgeSecurityService = 'abc123' | ||
/** | ||
* Project ID for this request. | ||
*/ | ||
// const project = 'my-project' | ||
/** | ||
* Name of the region scoping this request. | ||
*/ | ||
// const region = 'us-central1' | ||
|
||
// Imports the Compute library | ||
const {NetworkEdgeSecurityServicesClient} = require('@google-cloud/compute').v1; | ||
|
||
// Instantiates a client | ||
const computeClient = new NetworkEdgeSecurityServicesClient(); | ||
|
||
async function callGet() { | ||
// Construct request | ||
const request = { | ||
networkEdgeSecurityService, | ||
project, | ||
region, | ||
}; | ||
|
||
// Run request | ||
const response = await computeClient.get(request); | ||
console.log(response); | ||
} | ||
|
||
callGet(); | ||
// [END compute_v1_generated_NetworkEdgeSecurityServices_Get_async] | ||
} | ||
|
||
process.on('unhandledRejection', err => { | ||
console.error(err.message); | ||
process.exitCode = 1; | ||
}); | ||
main(...process.argv.slice(2)); |
76 changes: 76 additions & 0 deletions
76
packages/google-cloud-compute/samples/generated/v1/network_edge_security_services.insert.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
// Copyright 2022 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
// ** This file is automatically generated by gapic-generator-typescript. ** | ||
// ** https://github.com/googleapis/gapic-generator-typescript ** | ||
// ** All changes to this file may be overwritten. ** | ||
|
||
|
||
|
||
'use strict'; | ||
|
||
function main(networkEdgeSecurityServiceResource, project, region) { | ||
// [START compute_v1_generated_NetworkEdgeSecurityServices_Insert_async] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
/** | ||
* The body resource for this request | ||
*/ | ||
// const networkEdgeSecurityServiceResource = {} | ||
/** | ||
* Project ID for this request. | ||
*/ | ||
// const project = 'my-project' | ||
/** | ||
* Name of the region scoping this request. | ||
*/ | ||
// const region = 'us-central1' | ||
/** | ||
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000). | ||
*/ | ||
// const requestId = 'abc123' | ||
/** | ||
* If true, the request will not be committed. | ||
*/ | ||
// const validateOnly = true | ||
|
||
// Imports the Compute library | ||
const {NetworkEdgeSecurityServicesClient} = require('@google-cloud/compute').v1; | ||
|
||
// Instantiates a client | ||
const computeClient = new NetworkEdgeSecurityServicesClient(); | ||
|
||
async function callInsert() { | ||
// Construct request | ||
const request = { | ||
networkEdgeSecurityServiceResource, | ||
project, | ||
region, | ||
}; | ||
|
||
// Run request | ||
const response = await computeClient.insert(request); | ||
console.log(response); | ||
} | ||
|
||
callInsert(); | ||
// [END compute_v1_generated_NetworkEdgeSecurityServices_Insert_async] | ||
} | ||
|
||
process.on('unhandledRejection', err => { | ||
console.error(err.message); | ||
process.exitCode = 1; | ||
}); | ||
main(...process.argv.slice(2)); |
Oops, something went wrong.