diff --git a/DiscoveryJson/workstations.v1.json b/DiscoveryJson/workstations.v1.json
index da5bec6b3f1..8f8a14f9f42 100644
--- a/DiscoveryJson/workstations.v1.json
+++ b/DiscoveryJson/workstations.v1.json
@@ -1195,7 +1195,7 @@
}
}
},
- "revision": "20240904",
+ "revision": "20241009",
"rootUrl": "https://workstations.googleapis.com/",
"schemas": {
"Accelerator": {
@@ -1284,6 +1284,42 @@
},
"type": "object"
},
+ "BoostConfig": {
+ "description": "A configuration that workstations can boost to.",
+ "id": "BoostConfig",
+ "properties": {
+ "accelerators": {
+ "description": "Optional. A list of the type and count of accelerator cards attached to the boost instance. Defaults to `none`.",
+ "items": {
+ "$ref": "Accelerator"
+ },
+ "type": "array"
+ },
+ "bootDiskSizeGb": {
+ "description": "Optional. The size of the boot disk for the VM in gigabytes (GB). The minimum boot disk size is `30` GB. Defaults to `50` GB.",
+ "format": "int32",
+ "type": "integer"
+ },
+ "enableNestedVirtualization": {
+ "description": "Optional. Whether to enable nested virtualization on boosted Cloud Workstations VMs running using this boost configuration. Defaults to false. Nested virtualization lets you run virtual machine (VM) instances inside your workstation. Before enabling nested virtualization, consider the following important considerations. Cloud Workstations instances are subject to the [same restrictions as Compute Engine instances](https://cloud.google.com/compute/docs/instances/nested-virtualization/overview#restrictions): * **Organization policy**: projects, folders, or organizations may be restricted from creating nested VMs if the **Disable VM nested virtualization** constraint is enforced in the organization policy. For more information, see the Compute Engine section, [Checking whether nested virtualization is allowed](https://cloud.google.com/compute/docs/instances/nested-virtualization/managing-constraint#checking_whether_nested_virtualization_is_allowed). * **Performance**: nested VMs might experience a 10% or greater decrease in performance for workloads that are CPU-bound and possibly greater than a 10% decrease for workloads that are input/output bound. * **Machine Type**: nested virtualization can only be enabled on boost configurations that specify a machine_type in the N1 or N2 machine series.",
+ "type": "boolean"
+ },
+ "id": {
+ "description": "Optional. Required. The id to be used for the boost configuration.",
+ "type": "string"
+ },
+ "machineType": {
+ "description": "Optional. The type of machine that boosted VM instances will use\u2014for example, `e2-standard-4`. For more information about machine types that Cloud Workstations supports, see the list of [available machine types](https://cloud.google.com/workstations/docs/available-machine-types). Defaults to `e2-standard-4`.",
+ "type": "string"
+ },
+ "poolSize": {
+ "description": "Optional. The number of boost VMs that the system should keep idle so that workstations can be boosted quickly. Defaults to `0`.",
+ "format": "int32",
+ "type": "integer"
+ }
+ },
+ "type": "object"
+ },
"CancelOperationRequest": {
"description": "The request message for Operations.CancelOperation.",
"id": "CancelOperationRequest",
@@ -1417,6 +1453,13 @@
},
"type": "array"
},
+ "boostConfigs": {
+ "description": "Optional. A list of the boost configurations that workstations created using this workstation configuration are allowed to use.",
+ "items": {
+ "$ref": "BoostConfig"
+ },
+ "type": "array"
+ },
"bootDiskSizeGb": {
"description": "Optional. The size of the boot disk for the VM in gigabytes (GB). The minimum boot disk size is `30` GB. Defaults to `50` GB.",
"format": "int32",
@@ -2286,6 +2329,13 @@
"description": "Immutable. Name of the Compute Engine subnetwork in which instances associated with this workstation cluster will be created. Must be part of the subnetwork specified for this workstation cluster.",
"type": "string"
},
+ "tags": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "Optional. Tag keys/values directly bound to this resource. For example: \"123/environment\": \"production\", \"123/costCenter\": \"marketing\"",
+ "type": "object"
+ },
"uid": {
"description": "Output only. A system-assigned unique identifier for this workstation cluster.",
"readOnly": true,
diff --git a/Src/Generated/Google.Apis.CloudWorkstations.v1/Google.Apis.CloudWorkstations.v1.cs b/Src/Generated/Google.Apis.CloudWorkstations.v1/Google.Apis.CloudWorkstations.v1.cs
index 7b3328f307f..57f94dd0616 100644
--- a/Src/Generated/Google.Apis.CloudWorkstations.v1/Google.Apis.CloudWorkstations.v1.cs
+++ b/Src/Generated/Google.Apis.CloudWorkstations.v1/Google.Apis.CloudWorkstations.v1.cs
@@ -2799,6 +2799,64 @@ public class Binding : Google.Apis.Requests.IDirectResponseSchema
public virtual string ETag { get; set; }
}
+ /// A configuration that workstations can boost to.
+ public class BoostConfig : Google.Apis.Requests.IDirectResponseSchema
+ {
+ ///
+ /// Optional. A list of the type and count of accelerator cards attached to the boost instance. Defaults to
+ /// `none`.
+ ///
+ [Newtonsoft.Json.JsonPropertyAttribute("accelerators")]
+ public virtual System.Collections.Generic.IList Accelerators { get; set; }
+
+ ///
+ /// Optional. The size of the boot disk for the VM in gigabytes (GB). The minimum boot disk size is `30` GB.
+ /// Defaults to `50` GB.
+ ///
+ [Newtonsoft.Json.JsonPropertyAttribute("bootDiskSizeGb")]
+ public virtual System.Nullable BootDiskSizeGb { get; set; }
+
+ ///
+ /// Optional. Whether to enable nested virtualization on boosted Cloud Workstations VMs running using this boost
+ /// configuration. Defaults to false. Nested virtualization lets you run virtual machine (VM) instances inside
+ /// your workstation. Before enabling nested virtualization, consider the following important considerations.
+ /// Cloud Workstations instances are subject to the [same restrictions as Compute Engine
+ /// instances](https://cloud.google.com/compute/docs/instances/nested-virtualization/overview#restrictions): *
+ /// **Organization policy**: projects, folders, or organizations may be restricted from creating nested VMs if
+ /// the **Disable VM nested virtualization** constraint is enforced in the organization policy. For more
+ /// information, see the Compute Engine section, [Checking whether nested virtualization is
+ /// allowed](https://cloud.google.com/compute/docs/instances/nested-virtualization/managing-constraint#checking_whether_nested_virtualization_is_allowed).
+ /// * **Performance**: nested VMs might experience a 10% or greater decrease in performance for workloads that
+ /// are CPU-bound and possibly greater than a 10% decrease for workloads that are input/output bound. *
+ /// **Machine Type**: nested virtualization can only be enabled on boost configurations that specify a
+ /// machine_type in the N1 or N2 machine series.
+ ///
+ [Newtonsoft.Json.JsonPropertyAttribute("enableNestedVirtualization")]
+ public virtual System.Nullable EnableNestedVirtualization { get; set; }
+
+ /// Optional. Required. The id to be used for the boost configuration.
+ [Newtonsoft.Json.JsonPropertyAttribute("id")]
+ public virtual string Id { get; set; }
+
+ ///
+ /// Optional. The type of machine that boosted VM instances will useāfor example, `e2-standard-4`. For more
+ /// information about machine types that Cloud Workstations supports, see the list of [available machine
+ /// types](https://cloud.google.com/workstations/docs/available-machine-types). Defaults to `e2-standard-4`.
+ ///
+ [Newtonsoft.Json.JsonPropertyAttribute("machineType")]
+ public virtual string MachineType { get; set; }
+
+ ///
+ /// Optional. The number of boost VMs that the system should keep idle so that workstations can be boosted
+ /// quickly. Defaults to `0`.
+ ///
+ [Newtonsoft.Json.JsonPropertyAttribute("poolSize")]
+ public virtual System.Nullable PoolSize { get; set; }
+
+ /// The ETag of the item.
+ public virtual string ETag { get; set; }
+ }
+
/// The request message for Operations.CancelOperation.
public class CancelOperationRequest : Google.Apis.Requests.IDirectResponseSchema
{
@@ -2966,6 +3024,13 @@ public class GceInstance : Google.Apis.Requests.IDirectResponseSchema
[Newtonsoft.Json.JsonPropertyAttribute("accelerators")]
public virtual System.Collections.Generic.IList Accelerators { get; set; }
+ ///
+ /// Optional. A list of the boost configurations that workstations created using this workstation configuration
+ /// are allowed to use.
+ ///
+ [Newtonsoft.Json.JsonPropertyAttribute("boostConfigs")]
+ public virtual System.Collections.Generic.IList BoostConfigs { get; set; }
+
///
/// Optional. The size of the boot disk for the VM in gigabytes (GB). The minimum boot disk size is `30` GB.
/// Defaults to `50` GB.
@@ -4270,6 +4335,13 @@ public virtual System.DateTimeOffset? DeleteTimeDateTimeOffset
[Newtonsoft.Json.JsonPropertyAttribute("subnetwork")]
public virtual string Subnetwork { get; set; }
+ ///
+ /// Optional. Tag keys/values directly bound to this resource. For example: "123/environment": "production",
+ /// "123/costCenter": "marketing"
+ ///
+ [Newtonsoft.Json.JsonPropertyAttribute("tags")]
+ public virtual System.Collections.Generic.IDictionary Tags { get; set; }
+
/// Output only. A system-assigned unique identifier for this workstation cluster.
[Newtonsoft.Json.JsonPropertyAttribute("uid")]
public virtual string Uid { get; set; }
diff --git a/Src/Generated/Google.Apis.CloudWorkstations.v1/Google.Apis.CloudWorkstations.v1.csproj b/Src/Generated/Google.Apis.CloudWorkstations.v1/Google.Apis.CloudWorkstations.v1.csproj
index d0c93348e78..c716a00db5b 100644
--- a/Src/Generated/Google.Apis.CloudWorkstations.v1/Google.Apis.CloudWorkstations.v1.csproj
+++ b/Src/Generated/Google.Apis.CloudWorkstations.v1/Google.Apis.CloudWorkstations.v1.csproj
@@ -3,7 +3,7 @@
Google.Apis.CloudWorkstations.v1 Client Library
- 1.68.0.3534
+ 1.68.0.3569
Google LLC
Copyright 2024 Google LLC
Google