Skip to content

Commit

Permalink
feat: update compute API to revision 20220322 (#710) (#709)
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
gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Apr 12, 2022
1 parent 100f153 commit 9cf8e94
Show file tree
Hide file tree
Showing 81 changed files with 61,233 additions and 6,450 deletions.
2,055 changes: 2,005 additions & 50 deletions packages/google-cloud-compute/protos/google/cloud/compute/v1/compute.proto

Large diffs are not rendered by default.

8,076 changes: 8,075 additions & 1 deletion packages/google-cloud-compute/protos/protos.d.ts

Large diffs are not rendered by default.

25,760 changes: 22,882 additions & 2,878 deletions packages/google-cloud-compute/protos/protos.js

Large diffs are not rendered by default.

5,113 changes: 4,549 additions & 564 deletions packages/google-cloud-compute/protos/protos.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function main(disk, project, snapshotResource, zone) {
*/
// const disk = 'abc123'
/**
* Input Only Whether to attempt an application consistent snapshot by informing the OS to prepare for the snapshot process. Currently only supported on Windows instances using the Volume Shadow Copy Service (VSS).
* Input Only Whether to attempt an application consistent snapshot by informing the OS to prepare for the snapshot process.
*/
// const guestFlush = true
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,12 @@ function main(instance, instanceResource, project, zone) {
// const instanceResource = {}
/**
* Specifies the action to take when updating an instance even if the updated properties do not require it. If not specified, then Compute Engine acts based on the minimum action that the updated properties require.
* Check the MinimalAction enum for the list of possible values.
*/
// const minimalAction = 'abc123'
/**
* Specifies the most disruptive action that can be taken on the instance as part of the update. Compute Engine returns an error if the instance properties require a more disruptive action as part of the instance update. Valid options from lowest to highest are NO_EFFECT, REFRESH, and RESTART.
* Check the MostDisruptiveAllowedAction enum for the list of possible values.
*/
// const mostDisruptiveAllowedAction = 'abc123'
/**
Expand Down
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));
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));
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));
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));
Loading

0 comments on commit 9cf8e94

Please sign in to comment.