google-cloud-compute-v1 2.10.0 → 2.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/lib/google/cloud/compute/v1/compute_pb.rb +51 -1
  3. data/lib/google/cloud/compute/v1/instance_group_manager_resize_requests/credentials.rb +52 -0
  4. data/lib/google/cloud/compute/v1/instance_group_manager_resize_requests/rest/client.rb +829 -0
  5. data/lib/google/cloud/compute/v1/instance_group_manager_resize_requests/rest/service_stub.rb +378 -0
  6. data/lib/google/cloud/compute/v1/instance_group_manager_resize_requests/rest.rb +51 -0
  7. data/lib/google/cloud/compute/v1/instance_group_manager_resize_requests.rb +47 -0
  8. data/lib/google/cloud/compute/v1/instance_settings_service/credentials.rb +52 -0
  9. data/lib/google/cloud/compute/v1/instance_settings_service/rest/client.rb +512 -0
  10. data/lib/google/cloud/compute/v1/instance_settings_service/rest/service_stub.rb +190 -0
  11. data/lib/google/cloud/compute/v1/instance_settings_service/rest.rb +51 -0
  12. data/lib/google/cloud/compute/v1/instance_settings_service.rb +47 -0
  13. data/lib/google/cloud/compute/v1/node_groups/rest/client.rb +104 -0
  14. data/lib/google/cloud/compute/v1/node_groups/rest/service_stub.rb +62 -0
  15. data/lib/google/cloud/compute/v1/rest.rb +4 -0
  16. data/lib/google/cloud/compute/v1/storage_pool_types/credentials.rb +53 -0
  17. data/lib/google/cloud/compute/v1/storage_pool_types/rest/client.rb +603 -0
  18. data/lib/google/cloud/compute/v1/storage_pool_types/rest/service_stub.rb +249 -0
  19. data/lib/google/cloud/compute/v1/storage_pool_types/rest.rb +51 -0
  20. data/lib/google/cloud/compute/v1/storage_pool_types.rb +47 -0
  21. data/lib/google/cloud/compute/v1/storage_pools/credentials.rb +52 -0
  22. data/lib/google/cloud/compute/v1/storage_pools/rest/client.rb +1313 -0
  23. data/lib/google/cloud/compute/v1/storage_pools/rest/service_stub.rb +679 -0
  24. data/lib/google/cloud/compute/v1/storage_pools/rest.rb +51 -0
  25. data/lib/google/cloud/compute/v1/storage_pools.rb +47 -0
  26. data/lib/google/cloud/compute/v1/version.rb +1 -1
  27. data/lib/google/cloud/compute/v1.rb +4 -0
  28. data/proto_docs/google/api/client.rb +4 -0
  29. data/proto_docs/google/cloud/compute/v1/compute.rb +1410 -118
  30. metadata +22 -2
@@ -1898,6 +1898,66 @@ module Google
1898
1898
  extend ::Google::Protobuf::MessageExts::ClassMethods
1899
1899
  end
1900
1900
 
1901
+ # A request message for StoragePoolTypes.AggregatedList. See the method description for details.
1902
+ # @!attribute [rw] filter
1903
+ # @return [::String]
1904
+ # A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions and expressions that follow API improvement proposal AIP-160. These two types of filter expressions cannot be mixed in one request. If you want to use AIP-160, your 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 `:*` 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) ``` If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value must match the entire field. For example, to filter for instances that do not end with name "instance", you would use `name ne .*instance`. You cannot combine constraints on multiple fields using regular expressions.
1905
+ # @!attribute [rw] include_all_scopes
1906
+ # @return [::Boolean]
1907
+ # 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.
1908
+ # @!attribute [rw] max_results
1909
+ # @return [::Integer]
1910
+ # 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`)
1911
+ # @!attribute [rw] order_by
1912
+ # @return [::String]
1913
+ # 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.
1914
+ # @!attribute [rw] page_token
1915
+ # @return [::String]
1916
+ # Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results.
1917
+ # @!attribute [rw] project
1918
+ # @return [::String]
1919
+ # Project ID for this request.
1920
+ # @!attribute [rw] return_partial_success
1921
+ # @return [::Boolean]
1922
+ # Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. For example, when partial success behavior is enabled, aggregatedList for a single zone scope either returns all resources in the zone or no resources, with an error code.
1923
+ # @!attribute [rw] service_project_number
1924
+ # @return [::Integer]
1925
+ # The Shared VPC service project id or service project number for which aggregated list request is invoked for subnetworks list-usable api.
1926
+ class AggregatedListStoragePoolTypesRequest
1927
+ include ::Google::Protobuf::MessageExts
1928
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1929
+ end
1930
+
1931
+ # A request message for StoragePools.AggregatedList. See the method description for details.
1932
+ # @!attribute [rw] filter
1933
+ # @return [::String]
1934
+ # A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions and expressions that follow API improvement proposal AIP-160. These two types of filter expressions cannot be mixed in one request. If you want to use AIP-160, your 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 `:*` 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) ``` If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value must match the entire field. For example, to filter for instances that do not end with name "instance", you would use `name ne .*instance`. You cannot combine constraints on multiple fields using regular expressions.
1935
+ # @!attribute [rw] include_all_scopes
1936
+ # @return [::Boolean]
1937
+ # 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.
1938
+ # @!attribute [rw] max_results
1939
+ # @return [::Integer]
1940
+ # 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`)
1941
+ # @!attribute [rw] order_by
1942
+ # @return [::String]
1943
+ # 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.
1944
+ # @!attribute [rw] page_token
1945
+ # @return [::String]
1946
+ # Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results.
1947
+ # @!attribute [rw] project
1948
+ # @return [::String]
1949
+ # Project ID for this request.
1950
+ # @!attribute [rw] return_partial_success
1951
+ # @return [::Boolean]
1952
+ # Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. For example, when partial success behavior is enabled, aggregatedList for a single zone scope either returns all resources in the zone or no resources, with an error code.
1953
+ # @!attribute [rw] service_project_number
1954
+ # @return [::Integer]
1955
+ # The Shared VPC service project id or service project number for which aggregated list request is invoked for subnetworks list-usable api.
1956
+ class AggregatedListStoragePoolsRequest
1957
+ include ::Google::Protobuf::MessageExts
1958
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1959
+ end
1960
+
1901
1961
  # A request message for Subnetworks.AggregatedList. See the method description for details.
1902
1962
  # @!attribute [rw] filter
1903
1963
  # @return [::String]
@@ -2336,7 +2396,7 @@ module Google
2336
2396
  extend ::Google::Protobuf::MessageExts::ClassMethods
2337
2397
  end
2338
2398
 
2339
- # This reservation type allows to pre allocate specific instance configuration. Next ID: 6
2399
+ # This reservation type allows to pre allocate specific instance configuration.
2340
2400
  # @!attribute [rw] assured_count
2341
2401
  # @return [::Integer]
2342
2402
  # [Output Only] Indicates how many instances are actually usable currently.
@@ -2702,6 +2762,9 @@ module Google
2702
2762
  # @!attribute [rw] source_snapshot_encryption_key
2703
2763
  # @return [::Google::Cloud::Compute::V1::CustomerEncryptionKey]
2704
2764
  # The customer-supplied encryption key of the source snapshot.
2765
+ # @!attribute [rw] storage_pool
2766
+ # @return [::String]
2767
+ # The storage pool in which the new disk is created. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /storagePools/storagePool - projects/project/zones/zone/storagePools/storagePool - zones/zone/storagePools/storagePool
2705
2768
  class AttachedDiskInitializeParams
2706
2769
  include ::Google::Protobuf::MessageExts
2707
2770
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -4552,6 +4615,27 @@ module Google
4552
4615
  extend ::Google::Protobuf::MessageExts::ClassMethods
4553
4616
  end
4554
4617
 
4618
+ # A request message for InstanceGroupManagerResizeRequests.Cancel. See the method description for details.
4619
+ # @!attribute [rw] instance_group_manager
4620
+ # @return [::String]
4621
+ # The name of the managed instance group. The name should conform to RFC1035 or be a resource ID.
4622
+ # @!attribute [rw] project
4623
+ # @return [::String]
4624
+ # Project ID for this request.
4625
+ # @!attribute [rw] request_id
4626
+ # @return [::String]
4627
+ # 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).
4628
+ # @!attribute [rw] resize_request
4629
+ # @return [::String]
4630
+ # The name of the resize request to cancel. The name should conform to RFC1035 or be a resource ID.
4631
+ # @!attribute [rw] zone
4632
+ # @return [::String]
4633
+ # The name of the zone where the managed instance group is located. The name should conform to RFC1035.
4634
+ class CancelInstanceGroupManagerResizeRequestRequest
4635
+ include ::Google::Protobuf::MessageExts
4636
+ extend ::Google::Protobuf::MessageExts::ClassMethods
4637
+ end
4638
+
4555
4639
  # Settings controlling the volume of requests, connections and retries to this backend service.
4556
4640
  # @!attribute [rw] max_connections
4557
4641
  # @return [::Integer]
@@ -4767,6 +4851,8 @@ module Google
4767
4851
 
4768
4852
  GENERAL_PURPOSE_N2D = 232_471_400
4769
4853
 
4854
+ GENERAL_PURPOSE_N4 = 301_912_158
4855
+
4770
4856
  GENERAL_PURPOSE_T2D = 232_477_166
4771
4857
 
4772
4858
  GRAPHICS_OPTIMIZED = 68_500_563
@@ -5008,13 +5094,13 @@ module Google
5008
5094
  # Specifies the content for the Access-Control-Allow-Methods header.
5009
5095
  # @!attribute [rw] allow_origin_regexes
5010
5096
  # @return [::Array<::String>]
5011
- # Specifies a regular expression that matches allowed origins. For more information about the regular expression syntax, see Syntax. An origin is allowed if it matches either an item in allowOrigins or an item in allowOriginRegexes. Regular expressions can only be used when the loadBalancingScheme is set to INTERNAL_SELF_MANAGED.
5097
+ # Specifies a regular expression that matches allowed origins. For more information, see regular expression syntax . An origin is allowed if it matches either an item in allowOrigins or an item in allowOriginRegexes. Regular expressions can only be used when the loadBalancingScheme is set to INTERNAL_SELF_MANAGED.
5012
5098
  # @!attribute [rw] allow_origins
5013
5099
  # @return [::Array<::String>]
5014
5100
  # Specifies the list of origins that is allowed to do CORS requests. An origin is allowed if it matches either an item in allowOrigins or an item in allowOriginRegexes.
5015
5101
  # @!attribute [rw] disabled
5016
5102
  # @return [::Boolean]
5017
- # If true, the setting specifies the CORS policy is disabled. The default value of false, which indicates that the CORS policy is in effect.
5103
+ # If true, disables the CORS policy. The default value is false, which indicates that the CORS policy is in effect.
5018
5104
  # @!attribute [rw] expose_headers
5019
5105
  # @return [::Array<::String>]
5020
5106
  # Specifies the content for the Access-Control-Expose-Headers header.
@@ -5467,6 +5553,27 @@ module Google
5467
5553
  extend ::Google::Protobuf::MessageExts::ClassMethods
5468
5554
  end
5469
5555
 
5556
+ # A request message for InstanceGroupManagerResizeRequests.Delete. See the method description for details.
5557
+ # @!attribute [rw] instance_group_manager
5558
+ # @return [::String]
5559
+ # The name of the managed instance group. The name should conform to RFC1035 or be a resource ID.
5560
+ # @!attribute [rw] project
5561
+ # @return [::String]
5562
+ # Project ID for this request.
5563
+ # @!attribute [rw] request_id
5564
+ # @return [::String]
5565
+ # 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).
5566
+ # @!attribute [rw] resize_request
5567
+ # @return [::String]
5568
+ # The name of the resize request to delete. The name should conform to RFC1035 or be a resource ID.
5569
+ # @!attribute [rw] zone
5570
+ # @return [::String]
5571
+ # The name of the zone where the managed instance group is located. The name should conform to RFC1035.
5572
+ class DeleteInstanceGroupManagerResizeRequestRequest
5573
+ include ::Google::Protobuf::MessageExts
5574
+ extend ::Google::Protobuf::MessageExts::ClassMethods
5575
+ end
5576
+
5470
5577
  # A request message for InstanceGroups.Delete. See the method description for details.
5471
5578
  # @!attribute [rw] instance_group
5472
5579
  # @return [::String]
@@ -6397,6 +6504,24 @@ module Google
6397
6504
  extend ::Google::Protobuf::MessageExts::ClassMethods
6398
6505
  end
6399
6506
 
6507
+ # A request message for StoragePools.Delete. See the method description for details.
6508
+ # @!attribute [rw] project
6509
+ # @return [::String]
6510
+ # Project ID for this request.
6511
+ # @!attribute [rw] request_id
6512
+ # @return [::String]
6513
+ # 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).
6514
+ # @!attribute [rw] storage_pool
6515
+ # @return [::String]
6516
+ # Name of the storage pool to delete.
6517
+ # @!attribute [rw] zone
6518
+ # @return [::String]
6519
+ # The name of the zone for this request.
6520
+ class DeleteStoragePoolRequest
6521
+ include ::Google::Protobuf::MessageExts
6522
+ extend ::Google::Protobuf::MessageExts::ClassMethods
6523
+ end
6524
+
6400
6525
  # A request message for Subnetworks.Delete. See the method description for details.
6401
6526
  # @!attribute [rw] project
6402
6527
  # @return [::String]
@@ -6927,6 +7052,9 @@ module Google
6927
7052
  # @return [::String]
6928
7053
  # [Output Only] The status of disk creation. - CREATING: Disk is provisioning. - RESTORING: Source data is being copied into the disk. - FAILED: Disk creation failed. - READY: Disk is ready for use. - DELETING: Disk is deleting.
6929
7054
  # Check the Status enum for the list of possible values.
7055
+ # @!attribute [rw] storage_pool
7056
+ # @return [::String]
7057
+ # The storage pool in which the new disk is created. You can provide this as a partial or full URL to the resource. For example, the following are valid values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /storagePools/storagePool - projects/project/zones/zone/storagePools/storagePool - zones/zone/storagePools/storagePool
6930
7058
  # @!attribute [rw] type
6931
7059
  # @return [::String]
6932
7060
  # URL of the disk type resource describing which disk type to use to create the disk. Provide this when creating the disk. For example: projects/project /zones/zone/diskTypes/pd-ssd . See Persistent disk types.
@@ -6992,6 +7120,9 @@ module Google
6992
7120
 
6993
7121
  # Source data is being copied into the disk.
6994
7122
  RESTORING = 404_263_851
7123
+
7124
+ # Disk is currently unavailable and cannot be accessed, attached or detached.
7125
+ UNAVAILABLE = 413_756_464
6995
7126
  end
6996
7127
  end
6997
7128
 
@@ -7450,7 +7581,7 @@ module Google
7450
7581
  extend ::Google::Protobuf::MessageExts::ClassMethods
7451
7582
  end
7452
7583
 
7453
- # [Output Only] If errors are generated during processing of the operation, this field will be populated.
7584
+ # Errors that prevented the ResizeRequest to be fulfilled.
7454
7585
  # @!attribute [rw] errors
7455
7586
  # @return [::Array<::Google::Cloud::Compute::V1::Errors>]
7456
7587
  # [Output Only] The array of errors encountered while processing this operation.
@@ -7478,7 +7609,7 @@ module Google
7478
7609
  # The logical grouping to which the "reason" belongs. The error domain is typically the registered service name of the tool or product that generates the error. Example: "pubsub.googleapis.com". If the error is generated by some common infrastructure, the error domain must be a globally unique value that identifies the infrastructure. For Google API infrastructure, the error domain is "googleapis.com".
7479
7610
  # @!attribute [rw] metadatas
7480
7611
  # @return [::Google::Protobuf::Map{::String => ::String}]
7481
- # Additional structured details about this error. Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in length. When identifying the current value of an exceeded limit, the units should be contained in the key, not the value. For example, rather than \\{"instanceLimit": "100/request"}, should be returned as, \\{"instanceLimitPerRequest": "100"}, if the client exceeds the number of instances that can be created in a single (batch) request.
7612
+ # Additional structured details about this error. Keys must match /a-z+/ but should ideally be lowerCamelCase. Also they must be limited to 64 characters in length. When identifying the current value of an exceeded limit, the units should be contained in the key, not the value. For example, rather than \\{"instanceLimit": "100/request"}, should be returned as, \\{"instanceLimitPerRequest": "100"}, if the client exceeds the number of instances that can be created in a single (batch) request.
7482
7613
  # @!attribute [rw] reason
7483
7614
  # @return [::String]
7484
7615
  # The reason of the error. This is a constant value that identifies the proximate cause of the error. Error reasons are unique within a particular domain of errors. This should be at most 63 characters and match a regular expression of `A-Z+[A-Z0-9]`, which represents UPPER_SNAKE_CASE.
@@ -8149,6 +8280,9 @@ module Google
8149
8280
  # @!attribute [rw] id
8150
8281
  # @return [::Integer]
8151
8282
  # [Output Only] The unique identifier for the resource. This identifier is defined by the server.
8283
+ # @!attribute [rw] ip_collection
8284
+ # @return [::String]
8285
+ # Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP in EXTERNAL_IPV6_FORWARDING_RULE_CREATION mode. Use one of the following formats to specify a sub-PDP when creating an IPv6 NetLB forwarding rule using BYOIP: Full resource URL, as in https://www.googleapis.com/compute/v1/projects/project_id/regions/region /publicDelegatedPrefixes/sub-pdp-name Partial URL, as in: - projects/project_id/regions/region/publicDelegatedPrefixes/sub-pdp-name - regions/region/publicDelegatedPrefixes/sub-pdp-name
8152
8286
  # @!attribute [rw] ip_version
8153
8287
  # @return [::String]
8154
8288
  # The IP Version that will be used by this forwarding rule. Valid options are IPV4 or IPV6.
@@ -9231,6 +9365,24 @@ module Google
9231
9365
  extend ::Google::Protobuf::MessageExts::ClassMethods
9232
9366
  end
9233
9367
 
9368
+ # A request message for StoragePools.GetIamPolicy. See the method description for details.
9369
+ # @!attribute [rw] options_requested_policy_version
9370
+ # @return [::Integer]
9371
+ # Requested IAM Policy version.
9372
+ # @!attribute [rw] project
9373
+ # @return [::String]
9374
+ # Project ID for this request.
9375
+ # @!attribute [rw] resource
9376
+ # @return [::String]
9377
+ # Name or id of the resource for this request.
9378
+ # @!attribute [rw] zone
9379
+ # @return [::String]
9380
+ # The name of the zone for this request.
9381
+ class GetIamPolicyStoragePoolRequest
9382
+ include ::Google::Protobuf::MessageExts
9383
+ extend ::Google::Protobuf::MessageExts::ClassMethods
9384
+ end
9385
+
9234
9386
  # A request message for Subnetworks.GetIamPolicy. See the method description for details.
9235
9387
  # @!attribute [rw] options_requested_policy_version
9236
9388
  # @return [::Integer]
@@ -9291,6 +9443,24 @@ module Google
9291
9443
  extend ::Google::Protobuf::MessageExts::ClassMethods
9292
9444
  end
9293
9445
 
9446
+ # A request message for InstanceGroupManagerResizeRequests.Get. See the method description for details.
9447
+ # @!attribute [rw] instance_group_manager
9448
+ # @return [::String]
9449
+ # The name of the managed instance group. Name should conform to RFC1035 or be a resource ID.
9450
+ # @!attribute [rw] project
9451
+ # @return [::String]
9452
+ # Project ID for this request.
9453
+ # @!attribute [rw] resize_request
9454
+ # @return [::String]
9455
+ # The name of the resize request. Name should conform to RFC1035 or be a resource ID.
9456
+ # @!attribute [rw] zone
9457
+ # @return [::String]
9458
+ # Name of the href="/compute/docs/regions-zones/#available">zone scoping this request. Name should conform to RFC1035.
9459
+ class GetInstanceGroupManagerResizeRequestRequest
9460
+ include ::Google::Protobuf::MessageExts
9461
+ extend ::Google::Protobuf::MessageExts::ClassMethods
9462
+ end
9463
+
9294
9464
  # A request message for InstanceGroups.Get. See the method description for details.
9295
9465
  # @!attribute [rw] instance_group
9296
9466
  # @return [::String]
@@ -9321,6 +9491,18 @@ module Google
9321
9491
  extend ::Google::Protobuf::MessageExts::ClassMethods
9322
9492
  end
9323
9493
 
9494
+ # A request message for InstanceSettingsService.Get. See the method description for details.
9495
+ # @!attribute [rw] project
9496
+ # @return [::String]
9497
+ # Project ID for this request.
9498
+ # @!attribute [rw] zone
9499
+ # @return [::String]
9500
+ # Name of the zone for this request.
9501
+ class GetInstanceSettingRequest
9502
+ include ::Google::Protobuf::MessageExts
9503
+ extend ::Google::Protobuf::MessageExts::ClassMethods
9504
+ end
9505
+
9324
9506
  # A request message for InstanceTemplates.Get. See the method description for details.
9325
9507
  # @!attribute [rw] instance_template
9326
9508
  # @return [::String]
@@ -10308,6 +10490,36 @@ module Google
10308
10490
  extend ::Google::Protobuf::MessageExts::ClassMethods
10309
10491
  end
10310
10492
 
10493
+ # A request message for StoragePools.Get. See the method description for details.
10494
+ # @!attribute [rw] project
10495
+ # @return [::String]
10496
+ # Project ID for this request.
10497
+ # @!attribute [rw] storage_pool
10498
+ # @return [::String]
10499
+ # Name of the storage pool to return.
10500
+ # @!attribute [rw] zone
10501
+ # @return [::String]
10502
+ # The name of the zone for this request.
10503
+ class GetStoragePoolRequest
10504
+ include ::Google::Protobuf::MessageExts
10505
+ extend ::Google::Protobuf::MessageExts::ClassMethods
10506
+ end
10507
+
10508
+ # A request message for StoragePoolTypes.Get. See the method description for details.
10509
+ # @!attribute [rw] project
10510
+ # @return [::String]
10511
+ # Project ID for this request.
10512
+ # @!attribute [rw] storage_pool_type
10513
+ # @return [::String]
10514
+ # Name of the storage pool type to return.
10515
+ # @!attribute [rw] zone
10516
+ # @return [::String]
10517
+ # The name of the zone for this request.
10518
+ class GetStoragePoolTypeRequest
10519
+ include ::Google::Protobuf::MessageExts
10520
+ extend ::Google::Protobuf::MessageExts::ClassMethods
10521
+ end
10522
+
10311
10523
  # A request message for Subnetworks.Get. See the method description for details.
10312
10524
  # @!attribute [rw] project
10313
10525
  # @return [::String]
@@ -10655,13 +10867,13 @@ module Google
10655
10867
  # Guest OS features.
10656
10868
  # @!attribute [rw] type
10657
10869
  # @return [::String]
10658
- # The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE - TDX_CAPABLE - IDPF For more information, see Enabling guest operating system features.
10870
+ # The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE_V2 - SEV_SNP_CAPABLE - TDX_CAPABLE - IDPF For more information, see Enabling guest operating system features.
10659
10871
  # Check the Type enum for the list of possible values.
10660
10872
  class GuestOsFeature
10661
10873
  include ::Google::Protobuf::MessageExts
10662
10874
  extend ::Google::Protobuf::MessageExts::ClassMethods
10663
10875
 
10664
- # The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE - TDX_CAPABLE - IDPF For more information, see Enabling guest operating system features.
10876
+ # The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE_V2 - SEV_SNP_CAPABLE - TDX_CAPABLE - IDPF For more information, see Enabling guest operating system features.
10665
10877
  module Type
10666
10878
  # A value indicating that the enum field is not set.
10667
10879
  UNDEFINED_TYPE = 0
@@ -11981,6 +12193,27 @@ module Google
11981
12193
  extend ::Google::Protobuf::MessageExts::ClassMethods
11982
12194
  end
11983
12195
 
12196
+ # A request message for InstanceGroupManagerResizeRequests.Insert. See the method description for details.
12197
+ # @!attribute [rw] instance_group_manager
12198
+ # @return [::String]
12199
+ # The name of the managed instance group to which the resize request will be added. Name should conform to RFC1035 or be a resource ID.
12200
+ # @!attribute [rw] instance_group_manager_resize_request_resource
12201
+ # @return [::Google::Cloud::Compute::V1::InstanceGroupManagerResizeRequest]
12202
+ # The body resource for this request
12203
+ # @!attribute [rw] project
12204
+ # @return [::String]
12205
+ # Project ID for this request.
12206
+ # @!attribute [rw] request_id
12207
+ # @return [::String]
12208
+ # 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).
12209
+ # @!attribute [rw] zone
12210
+ # @return [::String]
12211
+ # The name of the zone where the managed instance group is located and where the resize request will be created. Name should conform to RFC1035.
12212
+ class InsertInstanceGroupManagerResizeRequestRequest
12213
+ include ::Google::Protobuf::MessageExts
12214
+ extend ::Google::Protobuf::MessageExts::ClassMethods
12215
+ end
12216
+
11984
12217
  # A request message for InstanceGroups.Insert. See the method description for details.
11985
12218
  # @!attribute [rw] instance_group_resource
11986
12219
  # @return [::Google::Cloud::Compute::V1::InstanceGroup]
@@ -12800,6 +13033,24 @@ module Google
12800
13033
  extend ::Google::Protobuf::MessageExts::ClassMethods
12801
13034
  end
12802
13035
 
13036
+ # A request message for StoragePools.Insert. See the method description for details.
13037
+ # @!attribute [rw] project
13038
+ # @return [::String]
13039
+ # Project ID for this request.
13040
+ # @!attribute [rw] request_id
13041
+ # @return [::String]
13042
+ # 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).
13043
+ # @!attribute [rw] storage_pool_resource
13044
+ # @return [::Google::Cloud::Compute::V1::StoragePool]
13045
+ # The body resource for this request
13046
+ # @!attribute [rw] zone
13047
+ # @return [::String]
13048
+ # The name of the zone for this request.
13049
+ class InsertStoragePoolRequest
13050
+ include ::Google::Protobuf::MessageExts
13051
+ extend ::Google::Protobuf::MessageExts::ClassMethods
13052
+ end
13053
+
12803
13054
  # A request message for Subnetworks.Insert. See the method description for details.
12804
13055
  # @!attribute [rw] project
12805
13056
  # @return [::String]
@@ -13634,49 +13885,159 @@ module Google
13634
13885
  extend ::Google::Protobuf::MessageExts::ClassMethods
13635
13886
  end
13636
13887
 
13637
- # @!attribute [rw] all_instances_config
13638
- # @return [::Google::Cloud::Compute::V1::InstanceGroupManagerStatusAllInstancesConfig]
13639
- # [Output only] Status of all-instances configuration on the group.
13640
- # @!attribute [rw] autoscaler
13888
+ # InstanceGroupManagerResizeRequest represents a request to create a number of VMs: either immediately or by queuing the request for the specified time. This resize request is nested under InstanceGroupManager and the VMs created by this request are added to the owning InstanceGroupManager.
13889
+ # @!attribute [rw] creation_timestamp
13641
13890
  # @return [::String]
13642
- # [Output Only] The URL of the Autoscaler that targets this instance group manager.
13643
- # @!attribute [rw] is_stable
13644
- # @return [::Boolean]
13645
- # [Output Only] A bit indicating whether the managed instance group is in a stable state. A stable state means that: none of the instances in the managed instance group is currently undergoing any type of change (for example, creation, restart, or deletion); no future changes are scheduled for instances in the managed instance group; and the managed instance group itself is not being modified.
13646
- # @!attribute [rw] stateful
13647
- # @return [::Google::Cloud::Compute::V1::InstanceGroupManagerStatusStateful]
13648
- # [Output Only] Stateful status of the given Instance Group Manager.
13649
- # @!attribute [rw] version_target
13650
- # @return [::Google::Cloud::Compute::V1::InstanceGroupManagerStatusVersionTarget]
13651
- # [Output Only] A status of consistency of Instances' versions with their target version specified by version field on Instance Group Manager.
13652
- class InstanceGroupManagerStatus
13653
- include ::Google::Protobuf::MessageExts
13654
- extend ::Google::Protobuf::MessageExts::ClassMethods
13655
- end
13656
-
13657
- # @!attribute [rw] current_revision
13891
+ # [Output Only] The creation timestamp for this resize request in RFC3339 text format.
13892
+ # @!attribute [rw] description
13658
13893
  # @return [::String]
13659
- # [Output Only] Current all-instances configuration revision. This value is in RFC3339 text format.
13660
- # @!attribute [rw] effective
13661
- # @return [::Boolean]
13662
- # [Output Only] A bit indicating whether this configuration has been applied to all managed instances in the group.
13663
- class InstanceGroupManagerStatusAllInstancesConfig
13894
+ # An optional description of this resource.
13895
+ # @!attribute [rw] id
13896
+ # @return [::Integer]
13897
+ # [Output Only] A unique identifier for this resource type. The server generates this identifier.
13898
+ # @!attribute [rw] kind
13899
+ # @return [::String]
13900
+ # [Output Only] The resource type, which is always compute#instanceGroupManagerResizeRequest for resize requests.
13901
+ # @!attribute [rw] name
13902
+ # @return [::String]
13903
+ # The name of this resize request. The name must be 1-63 characters long, and comply with RFC1035.
13904
+ # @!attribute [rw] requested_run_duration
13905
+ # @return [::Google::Cloud::Compute::V1::Duration]
13906
+ # Requested run duration for instances that will be created by this request. At the end of the run duration instance will be deleted.
13907
+ # @!attribute [rw] resize_by
13908
+ # @return [::Integer]
13909
+ # The number of instances to be created by this resize request. The group's target size will be increased by this number.
13910
+ # @!attribute [rw] self_link
13911
+ # @return [::String]
13912
+ # [Output Only] The URL for this resize request. The server defines this URL.
13913
+ # @!attribute [rw] self_link_with_id
13914
+ # @return [::String]
13915
+ # [Output Only] Server-defined URL for this resource with the resource id.
13916
+ # @!attribute [rw] state
13917
+ # @return [::String]
13918
+ # [Output only] Current state of the request.
13919
+ # Check the State enum for the list of possible values.
13920
+ # @!attribute [rw] status
13921
+ # @return [::Google::Cloud::Compute::V1::InstanceGroupManagerResizeRequestStatus]
13922
+ # [Output only] Status of the request.
13923
+ # @!attribute [rw] zone
13924
+ # @return [::String]
13925
+ # [Output Only] The URL of a zone where the resize request is located. Populated only for zonal resize requests.
13926
+ class InstanceGroupManagerResizeRequest
13664
13927
  include ::Google::Protobuf::MessageExts
13665
13928
  extend ::Google::Protobuf::MessageExts::ClassMethods
13666
- end
13667
13929
 
13668
- # @!attribute [rw] has_stateful_config
13669
- # @return [::Boolean]
13670
- # [Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions.
13671
- # @!attribute [rw] per_instance_configs
13672
- # @return [::Google::Cloud::Compute::V1::InstanceGroupManagerStatusStatefulPerInstanceConfigs]
13673
- # [Output Only] Status of per-instance configurations on the instance.
13674
- class InstanceGroupManagerStatusStateful
13675
- include ::Google::Protobuf::MessageExts
13676
- extend ::Google::Protobuf::MessageExts::ClassMethods
13677
- end
13930
+ # [Output only] Current state of the request.
13931
+ module State
13932
+ # A value indicating that the enum field is not set.
13933
+ UNDEFINED_STATE = 0
13678
13934
 
13679
- # @!attribute [rw] all_effective
13935
+ # The request was created successfully and was accepted for provisioning when the capacity becomes available.
13936
+ ACCEPTED = 246_714_279
13937
+
13938
+ # The request is cancelled.
13939
+ CANCELLED = 41_957_681
13940
+
13941
+ # Resize request is being created and may still fail creation.
13942
+ CREATING = 455_564_985
13943
+
13944
+ # The request failed before or during provisioning. If the request fails during provisioning, any VMs that were created during provisioning are rolled back and removed from the MIG.
13945
+ FAILED = 455_706_685
13946
+
13947
+ # Default value. This value should never be returned.
13948
+ STATE_UNSPECIFIED = 470_755_401
13949
+
13950
+ # The request succeeded.
13951
+ SUCCEEDED = 511_103_553
13952
+ end
13953
+ end
13954
+
13955
+ # @!attribute [rw] error
13956
+ # @return [::Google::Cloud::Compute::V1::Error]
13957
+ # [Output only] Fatal errors encountered during the queueing or provisioning phases of the ResizeRequest that caused the transition to the FAILED state. Contrary to the last_attempt errors, this field is final and errors are never removed from here, as the ResizeRequest is not going to retry.
13958
+ # @!attribute [rw] last_attempt
13959
+ # @return [::Google::Cloud::Compute::V1::InstanceGroupManagerResizeRequestStatusLastAttempt]
13960
+ # [Output only] Information about the last attempt to fulfill the request. The value is temporary since the ResizeRequest can retry, as long as it's still active and the last attempt value can either be cleared or replaced with a different error. Since ResizeRequest retries infrequently, the value may be stale and no longer show an active problem. The value is cleared when ResizeRequest transitions to the final state (becomes inactive). If the final state is FAILED the error describing it will be storred in the "error" field only.
13961
+ class InstanceGroupManagerResizeRequestStatus
13962
+ include ::Google::Protobuf::MessageExts
13963
+ extend ::Google::Protobuf::MessageExts::ClassMethods
13964
+ end
13965
+
13966
+ # @!attribute [rw] error
13967
+ # @return [::Google::Cloud::Compute::V1::Error]
13968
+ # Errors that prevented the ResizeRequest to be fulfilled.
13969
+ class InstanceGroupManagerResizeRequestStatusLastAttempt
13970
+ include ::Google::Protobuf::MessageExts
13971
+ extend ::Google::Protobuf::MessageExts::ClassMethods
13972
+ end
13973
+
13974
+ # [Output Only] A list of resize requests.
13975
+ # @!attribute [rw] id
13976
+ # @return [::String]
13977
+ # [Output Only] Unique identifier for the resource; defined by the server.
13978
+ # @!attribute [rw] items
13979
+ # @return [::Array<::Google::Cloud::Compute::V1::InstanceGroupManagerResizeRequest>]
13980
+ # A list of resize request resources.
13981
+ # @!attribute [rw] kind
13982
+ # @return [::String]
13983
+ # [Output Only] Type of the resource. Always compute#instanceGroupManagerResizeRequestList for a list of resize requests.
13984
+ # @!attribute [rw] next_page_token
13985
+ # @return [::String]
13986
+ # [Output Only] This token allows you to get the next page of results for list requests. If the number of results is larger than maxResults, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results.
13987
+ # @!attribute [rw] self_link
13988
+ # @return [::String]
13989
+ # [Output Only] Server-defined URL for this resource.
13990
+ # @!attribute [rw] warning
13991
+ # @return [::Google::Cloud::Compute::V1::Warning]
13992
+ # [Output Only] Informational warning message.
13993
+ class InstanceGroupManagerResizeRequestsListResponse
13994
+ include ::Google::Protobuf::MessageExts
13995
+ extend ::Google::Protobuf::MessageExts::ClassMethods
13996
+ end
13997
+
13998
+ # @!attribute [rw] all_instances_config
13999
+ # @return [::Google::Cloud::Compute::V1::InstanceGroupManagerStatusAllInstancesConfig]
14000
+ # [Output only] Status of all-instances configuration on the group.
14001
+ # @!attribute [rw] autoscaler
14002
+ # @return [::String]
14003
+ # [Output Only] The URL of the Autoscaler that targets this instance group manager.
14004
+ # @!attribute [rw] is_stable
14005
+ # @return [::Boolean]
14006
+ # [Output Only] A bit indicating whether the managed instance group is in a stable state. A stable state means that: none of the instances in the managed instance group is currently undergoing any type of change (for example, creation, restart, or deletion); no future changes are scheduled for instances in the managed instance group; and the managed instance group itself is not being modified.
14007
+ # @!attribute [rw] stateful
14008
+ # @return [::Google::Cloud::Compute::V1::InstanceGroupManagerStatusStateful]
14009
+ # [Output Only] Stateful status of the given Instance Group Manager.
14010
+ # @!attribute [rw] version_target
14011
+ # @return [::Google::Cloud::Compute::V1::InstanceGroupManagerStatusVersionTarget]
14012
+ # [Output Only] A status of consistency of Instances' versions with their target version specified by version field on Instance Group Manager.
14013
+ class InstanceGroupManagerStatus
14014
+ include ::Google::Protobuf::MessageExts
14015
+ extend ::Google::Protobuf::MessageExts::ClassMethods
14016
+ end
14017
+
14018
+ # @!attribute [rw] current_revision
14019
+ # @return [::String]
14020
+ # [Output Only] Current all-instances configuration revision. This value is in RFC3339 text format.
14021
+ # @!attribute [rw] effective
14022
+ # @return [::Boolean]
14023
+ # [Output Only] A bit indicating whether this configuration has been applied to all managed instances in the group.
14024
+ class InstanceGroupManagerStatusAllInstancesConfig
14025
+ include ::Google::Protobuf::MessageExts
14026
+ extend ::Google::Protobuf::MessageExts::ClassMethods
14027
+ end
14028
+
14029
+ # @!attribute [rw] has_stateful_config
14030
+ # @return [::Boolean]
14031
+ # [Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions.
14032
+ # @!attribute [rw] per_instance_configs
14033
+ # @return [::Google::Cloud::Compute::V1::InstanceGroupManagerStatusStatefulPerInstanceConfigs]
14034
+ # [Output Only] Status of per-instance configurations on the instances.
14035
+ class InstanceGroupManagerStatusStateful
14036
+ include ::Google::Protobuf::MessageExts
14037
+ extend ::Google::Protobuf::MessageExts::ClassMethods
14038
+ end
14039
+
14040
+ # @!attribute [rw] all_effective
13680
14041
  # @return [::Boolean]
13681
14042
  # A bit indicating if all of the group's per-instance configurations (listed in the output of a listPerInstanceConfigs API call) have status EFFECTIVE or there are no per-instance-configs.
13682
14043
  class InstanceGroupManagerStatusStatefulPerInstanceConfigs
@@ -14362,6 +14723,44 @@ module Google
14362
14723
  extend ::Google::Protobuf::MessageExts::ClassMethods
14363
14724
  end
14364
14725
 
14726
+ # Represents a Instance Settings resource. You can use instance settings to configure default settings for Compute Engine VM instances. For example, you can use it to configure default machine type of Compute Engine VM instances.
14727
+ # @!attribute [rw] fingerprint
14728
+ # @return [::String]
14729
+ # Specifies a fingerprint for instance settings, which is essentially a hash of the instance settings resource's contents and used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update the instance settings resource. You must always provide an up-to-date fingerprint hash in order to update or change the resource, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve the resource.
14730
+ # @!attribute [rw] kind
14731
+ # @return [::String]
14732
+ # [Output Only] Type of the resource. Always compute#instance_settings for instance settings.
14733
+ # @!attribute [rw] metadata
14734
+ # @return [::Google::Cloud::Compute::V1::InstanceSettingsMetadata]
14735
+ # The metadata key/value pairs assigned to all the instances in the corresponding scope.
14736
+ # @!attribute [rw] zone
14737
+ # @return [::String]
14738
+ # [Output Only] URL of the zone where the resource resides You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
14739
+ class InstanceSettings
14740
+ include ::Google::Protobuf::MessageExts
14741
+ extend ::Google::Protobuf::MessageExts::ClassMethods
14742
+ end
14743
+
14744
+ # @!attribute [rw] items
14745
+ # @return [::Google::Protobuf::Map{::String => ::String}]
14746
+ # A metadata key/value items map. The total size of all keys and values must be less than 512KB.
14747
+ # @!attribute [rw] kind
14748
+ # @return [::String]
14749
+ # [Output Only] Type of the resource. Always compute#metadata for metadata.
14750
+ class InstanceSettingsMetadata
14751
+ include ::Google::Protobuf::MessageExts
14752
+ extend ::Google::Protobuf::MessageExts::ClassMethods
14753
+
14754
+ # @!attribute [rw] key
14755
+ # @return [::String]
14756
+ # @!attribute [rw] value
14757
+ # @return [::String]
14758
+ class ItemsEntry
14759
+ include ::Google::Protobuf::MessageExts
14760
+ extend ::Google::Protobuf::MessageExts::ClassMethods
14761
+ end
14762
+ end
14763
+
14365
14764
  # Represents an Instance Template resource. Google Compute Engine has two Instance Template resources: * [Global](/compute/docs/reference/rest/v1/instanceTemplates) * [Regional](/compute/docs/reference/rest/v1/regionInstanceTemplates) You can reuse a global instance template in different regions whereas you can use a regional instance template in a specified region only. If you want to reduce cross-region dependency or achieve data residency, use a regional instance template. To create VMs, managed instance groups, and reservations, you can use either global or regional instance templates. For more information, read Instance Templates.
14366
14765
  # @!attribute [rw] creation_timestamp
14367
14766
  # @return [::String]
@@ -14567,13 +14966,13 @@ module Google
14567
14966
  # [Output Only] The short name of the firewall policy.
14568
14967
  # @!attribute [rw] type
14569
14968
  # @return [::String]
14570
- # [Output Only] The type of the firewall policy. Can be one of HIERARCHY, NETWORK, NETWORK_REGIONAL.
14969
+ # [Output Only] The type of the firewall policy. Can be one of HIERARCHY, NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
14571
14970
  # Check the Type enum for the list of possible values.
14572
14971
  class InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
14573
14972
  include ::Google::Protobuf::MessageExts
14574
14973
  extend ::Google::Protobuf::MessageExts::ClassMethods
14575
14974
 
14576
- # [Output Only] The type of the firewall policy. Can be one of HIERARCHY, NETWORK, NETWORK_REGIONAL.
14975
+ # [Output Only] The type of the firewall policy. Can be one of HIERARCHY, NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
14577
14976
  module Type
14578
14977
  # A value indicating that the enum field is not set.
14579
14978
  UNDEFINED_TYPE = 0
@@ -14795,6 +15194,9 @@ module Google
14795
15194
 
14796
15195
  # InstantSnapshot has been created successfully.
14797
15196
  READY = 77_848_963
15197
+
15198
+ # InstantSnapshot is currently unavailable and cannot be used for Disk restoration
15199
+ UNAVAILABLE = 413_756_464
14798
15200
  end
14799
15201
  end
14800
15202
 
@@ -16104,7 +16506,7 @@ module Google
16104
16506
 
16105
16507
  # @!attribute [rw] port_pair_remote_location
16106
16508
  # @return [::String]
16107
- # [Output Only] Port pair remote location constraints, which can take one of the following values: PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION, PORT_PAIR_MATCHING_REMOTE_LOCATION. GCP's API refers only to individual ports, but the UI uses this field when ordering a pair of ports, to prevent users from accidentally ordering something that is incompatible with their cloud provider. Specifically, when ordering a redundant pair of Cross-Cloud Interconnect ports, and one of them uses a remote location with portPairMatchingRemoteLocation set to matching, the UI requires that both ports use the same remote location.
16509
+ # [Output Only] Port pair remote location constraints, which can take one of the following values: PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION, PORT_PAIR_MATCHING_REMOTE_LOCATION. Google Cloud API refers only to individual ports, but the UI uses this field when ordering a pair of ports, to prevent users from accidentally ordering something that is incompatible with their cloud provider. Specifically, when ordering a redundant pair of Cross-Cloud Interconnect ports, and one of them uses a remote location with portPairMatchingRemoteLocation set to matching, the UI requires that both ports use the same remote location.
16108
16510
  # Check the PortPairRemoteLocation enum for the list of possible values.
16109
16511
  # @!attribute [rw] port_pair_vlan
16110
16512
  # @return [::String]
@@ -16117,7 +16519,7 @@ module Google
16117
16519
  include ::Google::Protobuf::MessageExts
16118
16520
  extend ::Google::Protobuf::MessageExts::ClassMethods
16119
16521
 
16120
- # [Output Only] Port pair remote location constraints, which can take one of the following values: PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION, PORT_PAIR_MATCHING_REMOTE_LOCATION. GCP's API refers only to individual ports, but the UI uses this field when ordering a pair of ports, to prevent users from accidentally ordering something that is incompatible with their cloud provider. Specifically, when ordering a redundant pair of Cross-Cloud Interconnect ports, and one of them uses a remote location with portPairMatchingRemoteLocation set to matching, the UI requires that both ports use the same remote location.
16522
+ # [Output Only] Port pair remote location constraints, which can take one of the following values: PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION, PORT_PAIR_MATCHING_REMOTE_LOCATION. Google Cloud API refers only to individual ports, but the UI uses this field when ordering a pair of ports, to prevent users from accidentally ordering something that is incompatible with their cloud provider. Specifically, when ordering a redundant pair of Cross-Cloud Interconnect ports, and one of them uses a remote location with portPairMatchingRemoteLocation set to matching, the UI requires that both ports use the same remote location.
16121
16523
  module PortPairRemoteLocation
16122
16524
  # A value indicating that the enum field is not set.
16123
16525
  UNDEFINED_PORT_PAIR_REMOTE_LOCATION = 0
@@ -16621,6 +17023,36 @@ module Google
16621
17023
  extend ::Google::Protobuf::MessageExts::ClassMethods
16622
17024
  end
16623
17025
 
17026
+ # A request message for StoragePools.ListDisks. See the method description for details.
17027
+ # @!attribute [rw] filter
17028
+ # @return [::String]
17029
+ # A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions and expressions that follow API improvement proposal AIP-160. These two types of filter expressions cannot be mixed in one request. If you want to use AIP-160, your 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 `:*` 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) ``` If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value must match the entire field. For example, to filter for instances that do not end with name "instance", you would use `name ne .*instance`. You cannot combine constraints on multiple fields using regular expressions.
17030
+ # @!attribute [rw] max_results
17031
+ # @return [::Integer]
17032
+ # 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`)
17033
+ # @!attribute [rw] order_by
17034
+ # @return [::String]
17035
+ # 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.
17036
+ # @!attribute [rw] page_token
17037
+ # @return [::String]
17038
+ # Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results.
17039
+ # @!attribute [rw] project
17040
+ # @return [::String]
17041
+ # Project ID for this request.
17042
+ # @!attribute [rw] return_partial_success
17043
+ # @return [::Boolean]
17044
+ # Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. For example, when partial success behavior is enabled, aggregatedList for a single zone scope either returns all resources in the zone or no resources, with an error code.
17045
+ # @!attribute [rw] storage_pool
17046
+ # @return [::String]
17047
+ # Name of the storage pool to list disks of.
17048
+ # @!attribute [rw] zone
17049
+ # @return [::String]
17050
+ # The name of the zone for this request.
17051
+ class ListDisksStoragePoolsRequest
17052
+ include ::Google::Protobuf::MessageExts
17053
+ extend ::Google::Protobuf::MessageExts::ClassMethods
17054
+ end
17055
+
16624
17056
  # A request message for InstanceGroupManagers.ListErrors. See the method description for details.
16625
17057
  # @!attribute [rw] filter
16626
17058
  # @return [::String]
@@ -16972,6 +17404,36 @@ module Google
16972
17404
  extend ::Google::Protobuf::MessageExts::ClassMethods
16973
17405
  end
16974
17406
 
17407
+ # A request message for InstanceGroupManagerResizeRequests.List. See the method description for details.
17408
+ # @!attribute [rw] filter
17409
+ # @return [::String]
17410
+ # A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions and expressions that follow API improvement proposal AIP-160. These two types of filter expressions cannot be mixed in one request. If you want to use AIP-160, your 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 `:*` 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) ``` If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value must match the entire field. For example, to filter for instances that do not end with name "instance", you would use `name ne .*instance`. You cannot combine constraints on multiple fields using regular expressions.
17411
+ # @!attribute [rw] instance_group_manager
17412
+ # @return [::String]
17413
+ # The name of the managed instance group. The name should conform to RFC1035.
17414
+ # @!attribute [rw] max_results
17415
+ # @return [::Integer]
17416
+ # 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`)
17417
+ # @!attribute [rw] order_by
17418
+ # @return [::String]
17419
+ # 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.
17420
+ # @!attribute [rw] page_token
17421
+ # @return [::String]
17422
+ # Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results.
17423
+ # @!attribute [rw] project
17424
+ # @return [::String]
17425
+ # Project ID for this request.
17426
+ # @!attribute [rw] return_partial_success
17427
+ # @return [::Boolean]
17428
+ # Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. For example, when partial success behavior is enabled, aggregatedList for a single zone scope either returns all resources in the zone or no resources, with an error code.
17429
+ # @!attribute [rw] zone
17430
+ # @return [::String]
17431
+ # The name of the zone where the managed instance group is located. The name should conform to RFC1035.
17432
+ class ListInstanceGroupManagerResizeRequestsRequest
17433
+ include ::Google::Protobuf::MessageExts
17434
+ extend ::Google::Protobuf::MessageExts::ClassMethods
17435
+ end
17436
+
16975
17437
  # A request message for InstanceGroupManagers.List. See the method description for details.
16976
17438
  # @!attribute [rw] filter
16977
17439
  # @return [::String]
@@ -18821,6 +19283,60 @@ module Google
18821
19283
  extend ::Google::Protobuf::MessageExts::ClassMethods
18822
19284
  end
18823
19285
 
19286
+ # A request message for StoragePoolTypes.List. See the method description for details.
19287
+ # @!attribute [rw] filter
19288
+ # @return [::String]
19289
+ # A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions and expressions that follow API improvement proposal AIP-160. These two types of filter expressions cannot be mixed in one request. If you want to use AIP-160, your 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 `:*` 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) ``` If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value must match the entire field. For example, to filter for instances that do not end with name "instance", you would use `name ne .*instance`. You cannot combine constraints on multiple fields using regular expressions.
19290
+ # @!attribute [rw] max_results
19291
+ # @return [::Integer]
19292
+ # 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`)
19293
+ # @!attribute [rw] order_by
19294
+ # @return [::String]
19295
+ # 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.
19296
+ # @!attribute [rw] page_token
19297
+ # @return [::String]
19298
+ # Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results.
19299
+ # @!attribute [rw] project
19300
+ # @return [::String]
19301
+ # Project ID for this request.
19302
+ # @!attribute [rw] return_partial_success
19303
+ # @return [::Boolean]
19304
+ # Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. For example, when partial success behavior is enabled, aggregatedList for a single zone scope either returns all resources in the zone or no resources, with an error code.
19305
+ # @!attribute [rw] zone
19306
+ # @return [::String]
19307
+ # The name of the zone for this request.
19308
+ class ListStoragePoolTypesRequest
19309
+ include ::Google::Protobuf::MessageExts
19310
+ extend ::Google::Protobuf::MessageExts::ClassMethods
19311
+ end
19312
+
19313
+ # A request message for StoragePools.List. See the method description for details.
19314
+ # @!attribute [rw] filter
19315
+ # @return [::String]
19316
+ # A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions and expressions that follow API improvement proposal AIP-160. These two types of filter expressions cannot be mixed in one request. If you want to use AIP-160, your 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 `:*` 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) ``` If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value must match the entire field. For example, to filter for instances that do not end with name "instance", you would use `name ne .*instance`. You cannot combine constraints on multiple fields using regular expressions.
19317
+ # @!attribute [rw] max_results
19318
+ # @return [::Integer]
19319
+ # 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`)
19320
+ # @!attribute [rw] order_by
19321
+ # @return [::String]
19322
+ # 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.
19323
+ # @!attribute [rw] page_token
19324
+ # @return [::String]
19325
+ # Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results.
19326
+ # @!attribute [rw] project
19327
+ # @return [::String]
19328
+ # Project ID for this request.
19329
+ # @!attribute [rw] return_partial_success
19330
+ # @return [::Boolean]
19331
+ # Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. For example, when partial success behavior is enabled, aggregatedList for a single zone scope either returns all resources in the zone or no resources, with an error code.
19332
+ # @!attribute [rw] zone
19333
+ # @return [::String]
19334
+ # The name of the zone for this request.
19335
+ class ListStoragePoolsRequest
19336
+ include ::Google::Protobuf::MessageExts
19337
+ extend ::Google::Protobuf::MessageExts::ClassMethods
19338
+ end
19339
+
18824
19340
  # A request message for Subnetworks.List. See the method description for details.
18825
19341
  # @!attribute [rw] filter
18826
19342
  # @return [::String]
@@ -20473,7 +20989,7 @@ module Google
20473
20989
  # The URL of the network to which all network endpoints in the NEG belong. Uses default project network if unspecified.
20474
20990
  # @!attribute [rw] network_endpoint_type
20475
20991
  # @return [::String]
20476
- # Type of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT.
20992
+ # Type of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT, GCE_VM_IP_PORTMAP.
20477
20993
  # Check the NetworkEndpointType enum for the list of possible values.
20478
20994
  # @!attribute [rw] psc_data
20479
20995
  # @return [::Google::Cloud::Compute::V1::NetworkEndpointGroupPscData]
@@ -20508,7 +21024,7 @@ module Google
20508
21024
  extend ::Google::Protobuf::MessageExts::ClassMethods
20509
21025
  end
20510
21026
 
20511
- # Type of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT.
21027
+ # Type of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT, GCE_VM_IP_PORTMAP.
20512
21028
  module NetworkEndpointType
20513
21029
  # A value indicating that the enum field is not set.
20514
21030
  UNDEFINED_NETWORK_ENDPOINT_TYPE = 0
@@ -21081,6 +21597,10 @@ module Google
21081
21597
  # @!attribute [rw] location_hint
21082
21598
  # @return [::String]
21083
21599
  # An opaque location hint used to place the Node close to other resources. This field is for use by internal tools that use the public API. The location hint here on the NodeGroup overrides any location_hint present in the NodeTemplate.
21600
+ # @!attribute [rw] maintenance_interval
21601
+ # @return [::String]
21602
+ # Specifies the frequency of planned maintenance events. The accepted values are: `AS_NEEDED` and `RECURRENT`.
21603
+ # Check the MaintenanceInterval enum for the list of possible values.
21084
21604
  # @!attribute [rw] maintenance_policy
21085
21605
  # @return [::String]
21086
21606
  # Specifies how to handle instances when a node in the group undergoes maintenance. Set to one of: DEFAULT, RESTART_IN_PLACE, or MIGRATE_WITHIN_NODE_GROUP. The default value is DEFAULT. For more information, see Maintenance policies.
@@ -21112,6 +21632,18 @@ module Google
21112
21632
  include ::Google::Protobuf::MessageExts
21113
21633
  extend ::Google::Protobuf::MessageExts::ClassMethods
21114
21634
 
21635
+ # Specifies the frequency of planned maintenance events. The accepted values are: `AS_NEEDED` and `RECURRENT`.
21636
+ module MaintenanceInterval
21637
+ # A value indicating that the enum field is not set.
21638
+ UNDEFINED_MAINTENANCE_INTERVAL = 0
21639
+
21640
+ # VMs are eligible to receive infrastructure and hypervisor updates as they become available. This may result in more maintenance operations (live migrations or terminations) for the VM than the PERIODIC and RECURRENT options.
21641
+ AS_NEEDED = 500_724_834
21642
+
21643
+ # VMs receive infrastructure and hypervisor updates on a periodic basis, minimizing the number of maintenance operations (live migrations or terminations) on an individual VM. This may mean a VM will take longer to receive an update than if it was configured for AS_NEEDED. Security updates will still be applied as soon as they are available. RECURRENT is used for GEN3 and Slice of Hardware VMs.
21644
+ RECURRENT = 194_244_550
21645
+ end
21646
+
21115
21647
  # Specifies how to handle instances when a node in the group undergoes maintenance. Set to one of: DEFAULT, RESTART_IN_PLACE, or MIGRATE_WITHIN_NODE_GROUP. The default value is DEFAULT. For more information, see Maintenance policies.
21116
21648
  module MaintenancePolicy
21117
21649
  # A value indicating that the enum field is not set.
@@ -21286,6 +21818,9 @@ module Google
21286
21818
  # @!attribute [rw] total_resources
21287
21819
  # @return [::Google::Cloud::Compute::V1::InstanceConsumptionInfo]
21288
21820
  # Total amount of available resources on the node.
21821
+ # @!attribute [rw] upcoming_maintenance
21822
+ # @return [::Google::Cloud::Compute::V1::UpcomingMaintenance]
21823
+ # [Output Only] The information about an upcoming maintenance event.
21289
21824
  class NodeGroupNode
21290
21825
  include ::Google::Protobuf::MessageExts
21291
21826
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -21357,6 +21892,17 @@ module Google
21357
21892
  extend ::Google::Protobuf::MessageExts::ClassMethods
21358
21893
  end
21359
21894
 
21895
+ # @!attribute [rw] nodes
21896
+ # @return [::Array<::String>]
21897
+ # [Required] List of nodes affected by the call.
21898
+ # @!attribute [rw] start_time
21899
+ # @return [::String]
21900
+ # The start time of the schedule. The timestamp is an RFC3339 string.
21901
+ class NodeGroupsPerformMaintenanceRequest
21902
+ include ::Google::Protobuf::MessageExts
21903
+ extend ::Google::Protobuf::MessageExts::ClassMethods
21904
+ end
21905
+
21360
21906
  # @!attribute [rw] node_groups
21361
21907
  # @return [::Array<::Google::Cloud::Compute::V1::NodeGroup>]
21362
21908
  # [Output Only] A list of node groups contained in this scope.
@@ -22022,7 +22568,7 @@ module Google
22022
22568
  # Check the Enable enum for the list of possible values.
22023
22569
  # @!attribute [rw] filter
22024
22570
  # @return [::Google::Cloud::Compute::V1::PacketMirroringFilter]
22025
- # Filter for mirrored traffic. If unspecified, all traffic is mirrored.
22571
+ # Filter for mirrored traffic. If unspecified, all IPv4 traffic is mirrored.
22026
22572
  # @!attribute [rw] id
22027
22573
  # @return [::Integer]
22028
22574
  # [Output Only] The unique identifier for the resource. This identifier is defined by the server.
@@ -22103,7 +22649,7 @@ module Google
22103
22649
  # Protocols that apply as filter on mirrored traffic. If no protocols are specified, all traffic that matches the specified CIDR ranges is mirrored. If neither cidrRanges nor IPProtocols is specified, all IPv4 traffic is mirrored.
22104
22650
  # @!attribute [rw] cidr_ranges
22105
22651
  # @return [::Array<::String>]
22106
- # One or more IPv4 or IPv6 CIDR ranges that apply as filter on the source (ingress) or destination (egress) IP in the IP header. If no ranges are specified, all IPv4 traffic that matches the specified IPProtocols is mirrored. If neither cidrRanges nor IPProtocols is specified, all IPv4 traffic is mirrored. To mirror all IPv4 and IPv6 traffic, use "0.0.0.0/0,::/0". Note: Support for IPv6 traffic is in preview.
22652
+ # One or more IPv4 or IPv6 CIDR ranges that apply as filters on the source (ingress) or destination (egress) IP in the IP header. If no ranges are specified, all IPv4 traffic that matches the specified IPProtocols is mirrored. If neither cidrRanges nor IPProtocols is specified, all IPv4 traffic is mirrored. To mirror all IPv4 and IPv6 traffic, use "0.0.0.0/0,::/0".
22107
22653
  # @!attribute [rw] direction
22108
22654
  # @return [::String]
22109
22655
  # Direction of traffic to mirror, either INGRESS, EGRESS, or BOTH. The default is BOTH.
@@ -22425,6 +22971,27 @@ module Google
22425
22971
  extend ::Google::Protobuf::MessageExts::ClassMethods
22426
22972
  end
22427
22973
 
22974
+ # A request message for InstanceSettingsService.Patch. See the method description for details.
22975
+ # @!attribute [rw] instance_settings_resource
22976
+ # @return [::Google::Cloud::Compute::V1::InstanceSettings]
22977
+ # The body resource for this request
22978
+ # @!attribute [rw] project
22979
+ # @return [::String]
22980
+ # Project ID for this request.
22981
+ # @!attribute [rw] request_id
22982
+ # @return [::String]
22983
+ # 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).
22984
+ # @!attribute [rw] update_mask
22985
+ # @return [::String]
22986
+ # update_mask indicates fields to be updated as part of this request.
22987
+ # @!attribute [rw] zone
22988
+ # @return [::String]
22989
+ # The zone scoping this request. It should conform to RFC1035.
22990
+ class PatchInstanceSettingRequest
22991
+ include ::Google::Protobuf::MessageExts
22992
+ extend ::Google::Protobuf::MessageExts::ClassMethods
22993
+ end
22994
+
22428
22995
  # A request message for InterconnectAttachments.Patch. See the method description for details.
22429
22996
  # @!attribute [rw] interconnect_attachment
22430
22997
  # @return [::String]
@@ -23219,13 +23786,13 @@ module Google
23219
23786
  # A matcher for the path portion of the URL. The BackendService from the longest-matched rule will serve the URL. If no rule was matched, the default service is used.
23220
23787
  # @!attribute [rw] default_route_action
23221
23788
  # @return [::Google::Cloud::Compute::V1::HttpRouteAction]
23222
- # defaultRouteAction takes effect when none of the pathRules or routeRules match. The load balancer performs advanced routing actions, such as URL rewrites and header transformations, before forwarding the request to the selected backend. If defaultRouteAction specifies any weightedBackendServices, defaultService must not be set. Conversely if defaultService is set, defaultRouteAction cannot contain any weightedBackendServices. Only one of defaultRouteAction or defaultUrlRedirect must be set. URL maps for classic Application Load Balancers only support the urlRewrite action within a path matcher's defaultRouteAction.
23789
+ # defaultRouteAction takes effect when none of the pathRules or routeRules match. The load balancer performs advanced routing actions, such as URL rewrites and header transformations, before forwarding the request to the selected backend. If defaultRouteAction specifies any weightedBackendServices, defaultService must not be set. Conversely if defaultService is set, defaultRouteAction cannot contain any weightedBackendServices. If defaultRouteAction is specified, don't set defaultUrlRedirect. If defaultRouteAction.weightedBackendServices is specified, don't set defaultService. URL maps for classic Application Load Balancers only support the urlRewrite action within a path matcher's defaultRouteAction.
23223
23790
  # @!attribute [rw] default_service
23224
23791
  # @return [::String]
23225
- # The full or partial URL to the BackendService resource. This URL is used if none of the pathRules or routeRules defined by this PathMatcher are matched. For example, the following are all valid URLs to a BackendService resource: - https://www.googleapis.com/compute/v1/projects/project /global/backendServices/backendService - compute/v1/projects/project/global/backendServices/backendService - global/backendServices/backendService If defaultRouteAction is also specified, advanced routing actions, such as URL rewrites, take effect before sending the request to the backend. However, if defaultService is specified, defaultRouteAction cannot contain any weightedBackendServices. Conversely, if defaultRouteAction specifies any weightedBackendServices, defaultService must not be specified. Only one of defaultService, defaultUrlRedirect , or defaultRouteAction.weightedBackendService must be set. Authorization requires one or more of the following Google IAM permissions on the specified resource default_service: - compute.backendBuckets.use - compute.backendServices.use
23792
+ # The full or partial URL to the BackendService resource. This URL is used if none of the pathRules or routeRules defined by this PathMatcher are matched. For example, the following are all valid URLs to a BackendService resource: - https://www.googleapis.com/compute/v1/projects/project /global/backendServices/backendService - compute/v1/projects/project/global/backendServices/backendService - global/backendServices/backendService If defaultRouteAction is also specified, advanced routing actions, such as URL rewrites, take effect before sending the request to the backend. However, if defaultService is specified, defaultRouteAction cannot contain any weightedBackendServices. Conversely, if defaultRouteAction specifies any weightedBackendServices, defaultService must not be specified. If defaultService is specified, then set either defaultUrlRedirect or defaultRouteAction.weightedBackendService. Don't set both. Authorization requires one or more of the following Google IAM permissions on the specified resource default_service: - compute.backendBuckets.use - compute.backendServices.use
23226
23793
  # @!attribute [rw] default_url_redirect
23227
23794
  # @return [::Google::Cloud::Compute::V1::HttpRedirectAction]
23228
- # When none of the specified pathRules or routeRules match, the request is redirected to a URL specified by defaultUrlRedirect. If defaultUrlRedirect is specified, defaultService or defaultRouteAction must not be set. Not supported when the URL map is bound to a target gRPC proxy.
23795
+ # When none of the specified pathRules or routeRules match, the request is redirected to a URL specified by defaultUrlRedirect. If defaultUrlRedirect is specified, then set either defaultService or defaultRouteAction. Don't set both. Not supported when the URL map is bound to a target gRPC proxy.
23229
23796
  # @!attribute [rw] description
23230
23797
  # @return [::String]
23231
23798
  # An optional description of this resource. Provide this property when you create the resource.
@@ -23324,10 +23891,31 @@ module Google
23324
23891
  extend ::Google::Protobuf::MessageExts::ClassMethods
23325
23892
  end
23326
23893
 
23327
- # An Identity and Access Management (IAM) policy, which specifies access controls for Google Cloud resources. A `Policy` is a collection of `bindings`. A `binding` binds one or more `members`, or principals, to a single `role`. Principals can be user accounts, service accounts, Google groups, and domains (such as G Suite). A `role` is a named list of permissions; each `role` can be an IAM predefined role or a user-created custom role. For some types of Google Cloud resources, a `binding` can also specify a `condition`, which is a logical expression that allows access to a resource only if the expression evaluates to `true`. A condition can add constraints based on attributes of the request, the resource, or both. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). **JSON example:** ``` { "bindings": [ { "role": "roles/resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@appspot.gserviceaccount.com" ] }, { "role": "roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com" ], "condition": { "title": "expirable access", "description": "Does not grant access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", } } ], "etag": "BwWWja0YfJA=", "version": 3 } ``` **YAML example:** ``` bindings: - members: - user:mike@example.com - group:admins@example.com - domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.com role: roles/resourcemanager.organizationViewer condition: title: expirable access description: Does not grant access after Sep 2020 expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the [IAM documentation](https://cloud.google.com/iam/docs/).
23328
- # @!attribute [rw] audit_configs
23329
- # @return [::Array<::Google::Cloud::Compute::V1::AuditConfig>]
23330
- # Specifies cloud audit logging configuration for this policy.
23894
+ # A request message for NodeGroups.PerformMaintenance. See the method description for details.
23895
+ # @!attribute [rw] node_group
23896
+ # @return [::String]
23897
+ # Name of the node group scoping this request.
23898
+ # @!attribute [rw] node_groups_perform_maintenance_request_resource
23899
+ # @return [::Google::Cloud::Compute::V1::NodeGroupsPerformMaintenanceRequest]
23900
+ # The body resource for this request
23901
+ # @!attribute [rw] project
23902
+ # @return [::String]
23903
+ # Project ID for this request.
23904
+ # @!attribute [rw] request_id
23905
+ # @return [::String]
23906
+ # 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).
23907
+ # @!attribute [rw] zone
23908
+ # @return [::String]
23909
+ # The name of the zone for this request.
23910
+ class PerformMaintenanceNodeGroupRequest
23911
+ include ::Google::Protobuf::MessageExts
23912
+ extend ::Google::Protobuf::MessageExts::ClassMethods
23913
+ end
23914
+
23915
+ # An Identity and Access Management (IAM) policy, which specifies access controls for Google Cloud resources. A `Policy` is a collection of `bindings`. A `binding` binds one or more `members`, or principals, to a single `role`. Principals can be user accounts, service accounts, Google groups, and domains (such as G Suite). A `role` is a named list of permissions; each `role` can be an IAM predefined role or a user-created custom role. For some types of Google Cloud resources, a `binding` can also specify a `condition`, which is a logical expression that allows access to a resource only if the expression evaluates to `true`. A condition can add constraints based on attributes of the request, the resource, or both. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). **JSON example:** ``` { "bindings": [ { "role": "roles/resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@appspot.gserviceaccount.com" ] }, { "role": "roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com" ], "condition": { "title": "expirable access", "description": "Does not grant access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", } } ], "etag": "BwWWja0YfJA=", "version": 3 } ``` **YAML example:** ``` bindings: - members: - user:mike@example.com - group:admins@example.com - domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.com role: roles/resourcemanager.organizationViewer condition: title: expirable access description: Does not grant access after Sep 2020 expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the [IAM documentation](https://cloud.google.com/iam/docs/).
23916
+ # @!attribute [rw] audit_configs
23917
+ # @return [::Array<::Google::Cloud::Compute::V1::AuditConfig>]
23918
+ # Specifies cloud audit logging configuration for this policy.
23331
23919
  # @!attribute [rw] bindings
23332
23920
  # @return [::Array<::Google::Cloud::Compute::V1::Binding>]
23333
23921
  # Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.
@@ -23855,6 +24443,9 @@ module Google
23855
24443
  end
23856
24444
 
23857
24445
  # A PublicDelegatedPrefix resource represents an IP block within a PublicAdvertisedPrefix that is configured within a single cloud scope (global or region). IPs in the block can be allocated to resources within that scope. Public delegated prefixes may be further broken up into smaller IP blocks in the same scope as the parent block.
24446
+ # @!attribute [rw] allocatable_prefix_length
24447
+ # @return [::Integer]
24448
+ # The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
23858
24449
  # @!attribute [rw] byoip_api_version
23859
24450
  # @return [::String]
23860
24451
  # [Output Only] The version of BYOIP API.
@@ -23880,6 +24471,10 @@ module Google
23880
24471
  # @!attribute [rw] kind
23881
24472
  # @return [::String]
23882
24473
  # [Output Only] Type of the resource. Always compute#publicDelegatedPrefix for public delegated prefixes.
24474
+ # @!attribute [rw] mode
24475
+ # @return [::String]
24476
+ # The public delegated prefix mode for IPv6 only.
24477
+ # Check the Mode enum for the list of possible values.
23883
24478
  # @!attribute [rw] name
23884
24479
  # @return [::String]
23885
24480
  # Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
@@ -23915,6 +24510,18 @@ module Google
23915
24510
  V2 = 2716
23916
24511
  end
23917
24512
 
24513
+ # The public delegated prefix mode for IPv6 only.
24514
+ module Mode
24515
+ # A value indicating that the enum field is not set.
24516
+ UNDEFINED_MODE = 0
24517
+
24518
+ # The public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
24519
+ DELEGATION = 264_149_288
24520
+
24521
+ # The public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
24522
+ EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356
24523
+ end
24524
+
23918
24525
  # [Output Only] The status of the public delegated prefix, which can be one of following values: - `INITIALIZING` The public delegated prefix is being initialized and addresses cannot be created yet. - `READY_TO_ANNOUNCE` The public delegated prefix is a live migration prefix and is active. - `ANNOUNCED` The public delegated prefix is active. - `DELETING` The public delegated prefix is being deprovsioned.
23919
24526
  module Status
23920
24527
  # A value indicating that the enum field is not set.
@@ -23999,6 +24606,9 @@ module Google
23999
24606
  end
24000
24607
 
24001
24608
  # Represents a sub PublicDelegatedPrefix.
24609
+ # @!attribute [rw] allocatable_prefix_length
24610
+ # @return [::Integer]
24611
+ # The allocatable prefix length supported by this PublicDelegatedSubPrefix.
24002
24612
  # @!attribute [rw] delegatee_project
24003
24613
  # @return [::String]
24004
24614
  # Name of the project scoping this PublicDelegatedSubPrefix.
@@ -24011,6 +24621,10 @@ module Google
24011
24621
  # @!attribute [rw] is_address
24012
24622
  # @return [::Boolean]
24013
24623
  # Whether the sub prefix is delegated to create Address resources in the delegatee project.
24624
+ # @!attribute [rw] mode
24625
+ # @return [::String]
24626
+ # The PublicDelegatedSubPrefix mode for IPv6 only.
24627
+ # Check the Mode enum for the list of possible values.
24014
24628
  # @!attribute [rw] name
24015
24629
  # @return [::String]
24016
24630
  # The name of the sub public delegated prefix.
@@ -24025,6 +24639,18 @@ module Google
24025
24639
  include ::Google::Protobuf::MessageExts
24026
24640
  extend ::Google::Protobuf::MessageExts::ClassMethods
24027
24641
 
24642
+ # The PublicDelegatedSubPrefix mode for IPv6 only.
24643
+ module Mode
24644
+ # A value indicating that the enum field is not set.
24645
+ UNDEFINED_MODE = 0
24646
+
24647
+ # The public delegated prefix is used for further sub-delegation only. Such prefixes cannot set allocatablePrefixLength.
24648
+ DELEGATION = 264_149_288
24649
+
24650
+ # The public delegated prefix is used for creating forwarding rules only. Such prefixes cannot set publicDelegatedSubPrefixes.
24651
+ EXTERNAL_IPV6_FORWARDING_RULE_CREATION = 398_684_356
24652
+ end
24653
+
24028
24654
  # [Output Only] The status of the sub public delegated prefix.
24029
24655
  module Status
24030
24656
  # A value indicating that the enum field is not set.
@@ -24173,6 +24799,12 @@ module Google
24173
24799
 
24174
24800
  GPUS_ALL_REGIONS = 39_387_177
24175
24801
 
24802
+ HDB_TOTAL_GB = 319_316_271
24803
+
24804
+ HDB_TOTAL_IOPS = 309_720_317
24805
+
24806
+ HDB_TOTAL_THROUGHPUT = 20_981_374
24807
+
24176
24808
  HEALTH_CHECKS = 289_347_502
24177
24809
 
24178
24810
  IMAGES = 15_562_360
@@ -24319,6 +24951,8 @@ module Google
24319
24951
 
24320
24952
  REGIONAL_INTERNAL_MANAGED_BACKEND_SERVICES = 96_282_539
24321
24953
 
24954
+ REGIONAL_INTERNAL_TRAFFIC_DIRECTOR_BACKEND_SERVICES = 483_162_968
24955
+
24322
24956
  RESERVATIONS = 32_644_647
24323
24957
 
24324
24958
  RESOURCE_POLICIES = 83_955_297
@@ -24348,6 +24982,8 @@ module Google
24348
24982
 
24349
24983
  SSL_CERTIFICATES = 378_372_399
24350
24984
 
24985
+ SSL_POLICIES = 523_254_339
24986
+
24351
24987
  STATIC_ADDRESSES = 93_624_049
24352
24988
 
24353
24989
  STATIC_BYOIP_ADDRESSES = 275_809_649
@@ -24436,6 +25072,112 @@ module Google
24436
25072
  end
24437
25073
  end
24438
25074
 
25075
+ # [Output Only] Warning of fetching the `quotas` field for this region. This field is populated only if fetching of the `quotas` field fails.
25076
+ # @!attribute [rw] code
25077
+ # @return [::String]
25078
+ # [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
25079
+ # Check the Code enum for the list of possible values.
25080
+ # @!attribute [rw] data
25081
+ # @return [::Array<::Google::Cloud::Compute::V1::Data>]
25082
+ # [Output Only] Metadata about this warning in key: value format. For example: "data": [ { "key": "scope", "value": "zones/us-east1-d" }
25083
+ # @!attribute [rw] message
25084
+ # @return [::String]
25085
+ # [Output Only] A human-readable description of the warning code.
25086
+ class QuotaStatusWarning
25087
+ include ::Google::Protobuf::MessageExts
25088
+ extend ::Google::Protobuf::MessageExts::ClassMethods
25089
+
25090
+ # [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
25091
+ module Code
25092
+ # A value indicating that the enum field is not set.
25093
+ UNDEFINED_CODE = 0
25094
+
25095
+ # Warning about failed cleanup of transient changes made by a failed operation.
25096
+ CLEANUP_FAILED = 150_308_440
25097
+
25098
+ # A link to a deprecated resource was created.
25099
+ DEPRECATED_RESOURCE_USED = 391_835_586
25100
+
25101
+ # When deploying and at least one of the resources has a type marked as deprecated
25102
+ DEPRECATED_TYPE_USED = 346_526_230
25103
+
25104
+ # The user created a boot disk that is larger than image size.
25105
+ DISK_SIZE_LARGER_THAN_IMAGE_SIZE = 369_442_967
25106
+
25107
+ # When deploying and at least one of the resources has a type marked as experimental
25108
+ EXPERIMENTAL_TYPE_USED = 451_954_443
25109
+
25110
+ # Warning that is present in an external api call
25111
+ EXTERNAL_API_WARNING = 175_546_307
25112
+
25113
+ # Warning that value of a field has been overridden. Deprecated unused field.
25114
+ FIELD_VALUE_OVERRIDEN = 329_669_423
25115
+
25116
+ # The operation involved use of an injected kernel, which is deprecated.
25117
+ INJECTED_KERNELS_DEPRECATED = 417_377_419
25118
+
25119
+ # A WEIGHTED_MAGLEV backend service is associated with a health check that is not of type HTTP/HTTPS/HTTP2.
25120
+ INVALID_HEALTH_CHECK_FOR_DYNAMIC_WIEGHTED_LB = 401_542_606
25121
+
25122
+ # When deploying a deployment with a exceedingly large number of resources
25123
+ LARGE_DEPLOYMENT_WARNING = 481_440_678
25124
+
25125
+ # Resource can't be retrieved due to list overhead quota exceed which captures the amount of resources filtered out by user-defined list filter.
25126
+ LIST_OVERHEAD_QUOTA_EXCEED = 47_618_117
25127
+
25128
+ # A resource depends on a missing type
25129
+ MISSING_TYPE_DEPENDENCY = 344_505_463
25130
+
25131
+ # The route's nextHopIp address is not assigned to an instance on the network.
25132
+ NEXT_HOP_ADDRESS_NOT_ASSIGNED = 324_964_999
25133
+
25134
+ # The route's next hop instance cannot ip forward.
25135
+ NEXT_HOP_CANNOT_IP_FORWARD = 383_382_887
25136
+
25137
+ # The route's nextHopInstance URL refers to an instance that does not have an ipv6 interface on the same network as the route.
25138
+ NEXT_HOP_INSTANCE_HAS_NO_IPV6_INTERFACE = 146_748_434
25139
+
25140
+ # The route's nextHopInstance URL refers to an instance that does not exist.
25141
+ NEXT_HOP_INSTANCE_NOT_FOUND = 464_250_446
25142
+
25143
+ # The route's nextHopInstance URL refers to an instance that is not on the same network as the route.
25144
+ NEXT_HOP_INSTANCE_NOT_ON_NETWORK = 243_758_146
25145
+
25146
+ # The route's next hop instance does not have a status of RUNNING.
25147
+ NEXT_HOP_NOT_RUNNING = 417_081_265
25148
+
25149
+ # Error which is not critical. We decided to continue the process despite the mentioned error.
25150
+ NOT_CRITICAL_ERROR = 105_763_924
25151
+
25152
+ # No results are present on a particular list page.
25153
+ NO_RESULTS_ON_PAGE = 30_036_744
25154
+
25155
+ # Success is reported, but some results may be missing due to errors
25156
+ PARTIAL_SUCCESS = 39_966_469
25157
+
25158
+ # The user attempted to use a resource that requires a TOS they have not accepted.
25159
+ REQUIRED_TOS_AGREEMENT = 3_745_539
25160
+
25161
+ # Warning that a resource is in use.
25162
+ RESOURCE_IN_USE_BY_OTHER_RESOURCE_WARNING = 496_728_641
25163
+
25164
+ # One or more of the resources set to auto-delete could not be deleted because they were in use.
25165
+ RESOURCE_NOT_DELETED = 168_598_460
25166
+
25167
+ # When a resource schema validation is ignored.
25168
+ SCHEMA_VALIDATION_IGNORED = 275_245_642
25169
+
25170
+ # Instance template used in instance group manager is valid as such, but its application does not make a lot of sense, because it allows only single instance in instance group.
25171
+ SINGLE_INSTANCE_PROPERTY_TEMPLATE = 268_305_617
25172
+
25173
+ # When undeclared properties in the schema are present
25174
+ UNDECLARED_PROPERTIES = 390_513_439
25175
+
25176
+ # A given scope cannot be reached.
25177
+ UNREACHABLE = 13_328_052
25178
+ end
25179
+ end
25180
+
24439
25181
  # The parameters of the raw disk image.
24440
25182
  # @!attribute [rw] container_type
24441
25183
  # @return [::String]
@@ -24539,6 +25281,9 @@ module Google
24539
25281
  # @!attribute [rw] name
24540
25282
  # @return [::String]
24541
25283
  # [Output Only] Name of the resource.
25284
+ # @!attribute [rw] quota_status_warning
25285
+ # @return [::Google::Cloud::Compute::V1::QuotaStatusWarning]
25286
+ # [Output Only] Warning of fetching the `quotas` field for this region. This field is populated only if fetching of the `quotas` field fails.
24542
25287
  # @!attribute [rw] quotas
24543
25288
  # @return [::Array<::Google::Cloud::Compute::V1::Quota>]
24544
25289
  # [Output Only] Quotas assigned to this region.
@@ -24988,13 +25733,13 @@ module Google
24988
25733
  # The rules that apply to the network.
24989
25734
  # @!attribute [rw] type
24990
25735
  # @return [::String]
24991
- # [Output Only] The type of the firewall policy. Can be one of HIERARCHY, NETWORK, NETWORK_REGIONAL.
25736
+ # [Output Only] The type of the firewall policy. Can be one of HIERARCHY, NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
24992
25737
  # Check the Type enum for the list of possible values.
24993
25738
  class RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
24994
25739
  include ::Google::Protobuf::MessageExts
24995
25740
  extend ::Google::Protobuf::MessageExts::ClassMethods
24996
25741
 
24997
- # [Output Only] The type of the firewall policy. Can be one of HIERARCHY, NETWORK, NETWORK_REGIONAL.
25742
+ # [Output Only] The type of the firewall policy. Can be one of HIERARCHY, NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
24998
25743
  module Type
24999
25744
  # A value indicating that the enum field is not set.
25000
25745
  UNDEFINED_TYPE = 0
@@ -25845,7 +26590,7 @@ module Google
25845
26590
  extend ::Google::Protobuf::MessageExts::ClassMethods
25846
26591
  end
25847
26592
 
25848
- # A GroupPlacementPolicy specifies resource placement configuration. It specifies the failure bucket separation as well as network locality
26593
+ # A GroupPlacementPolicy specifies resource placement configuration. It specifies the failure bucket separation
25849
26594
  # @!attribute [rw] availability_domain_count
25850
26595
  # @return [::Integer]
25851
26596
  # The number of availability domains to spread instances across. If two instances are in different availability domain, they are not in the same low latency network.
@@ -26381,6 +27126,9 @@ module Google
26381
27126
  # @!attribute [rw] asn
26382
27127
  # @return [::Integer]
26383
27128
  # Local BGP Autonomous System Number (ASN). Must be an RFC6996 private ASN, either 16-bit or 32-bit. The value will be fixed for this router resource. All VPN tunnels that link to this router will have the same local ASN.
27129
+ # @!attribute [rw] identifier_range
27130
+ # @return [::String]
27131
+ # Explicitly specifies a range of valid BGP Identifiers for this Router. It is provided as a link-local IPv4 range (from 169.254.0.0/16), of size at least /30, even if the BGP sessions are over IPv6. It must not overlap with any IPv4 BGP session ranges. Other vendors commonly call this "router ID".
26384
27132
  # @!attribute [rw] keepalive_interval
26385
27133
  # @return [::Integer]
26386
27134
  # The interval in seconds between BGP keepalive messages that are sent to the peer. Hold time is three times the interval at which keepalive messages are sent, and the hold time is the maximum number of seconds allowed to elapse between successive keepalive messages that BGP receives from a peer. BGP will use the smaller of either the local hold time value or the peer's hold time value as the hold time for the BGP connection between the two peers. If set, this value must be between 20 and 60. The default is 20.
@@ -26434,15 +27182,27 @@ module Google
26434
27182
  # @return [::String]
26435
27183
  # The status of the BGP peer connection. If set to FALSE, any active session with the peer is terminated and all associated routing information is removed. If set to TRUE, the peer connection can be established with routing information. The default is TRUE.
26436
27184
  # Check the Enable enum for the list of possible values.
27185
+ # @!attribute [rw] enable_ipv4
27186
+ # @return [::Boolean]
27187
+ # Enable IPv4 traffic over BGP Peer. It is enabled by default if the peerIpAddress is version 4.
26437
27188
  # @!attribute [rw] enable_ipv6
26438
27189
  # @return [::Boolean]
26439
- # Enable IPv6 traffic over BGP Peer. If not specified, it is disabled by default.
27190
+ # Enable IPv6 traffic over BGP Peer. It is enabled by default if the peerIpAddress is version 6.
27191
+ # @!attribute [rw] export_policies
27192
+ # @return [::Array<::String>]
27193
+ # List of export policies applied to this peer, in the order they must be evaluated. The name must correspond to an existing policy that has ROUTE_POLICY_TYPE_EXPORT type. Note that Route Policies are currently available in preview. Please use Beta API to use Route Policies.
27194
+ # @!attribute [rw] import_policies
27195
+ # @return [::Array<::String>]
27196
+ # List of import policies applied to this peer, in the order they must be evaluated. The name must correspond to an existing policy that has ROUTE_POLICY_TYPE_IMPORT type. Note that Route Policies are currently available in preview. Please use Beta API to use Route Policies.
26440
27197
  # @!attribute [rw] interface_name
26441
27198
  # @return [::String]
26442
27199
  # Name of the interface the BGP peer is associated with.
26443
27200
  # @!attribute [rw] ip_address
26444
27201
  # @return [::String]
26445
- # IP address of the interface inside Google Cloud Platform. Only IPv4 is supported.
27202
+ # IP address of the interface inside Google Cloud Platform.
27203
+ # @!attribute [rw] ipv4_nexthop_address
27204
+ # @return [::String]
27205
+ # IPv4 address of the interface inside Google Cloud Platform.
26446
27206
  # @!attribute [rw] ipv6_nexthop_address
26447
27207
  # @return [::String]
26448
27208
  # IPv6 address of the interface inside Google Cloud Platform.
@@ -26461,7 +27221,10 @@ module Google
26461
27221
  # Peer BGP Autonomous System Number (ASN). Each BGP interface may use a different value.
26462
27222
  # @!attribute [rw] peer_ip_address
26463
27223
  # @return [::String]
26464
- # IP address of the BGP interface outside Google Cloud Platform. Only IPv4 is supported.
27224
+ # IP address of the BGP interface outside Google Cloud Platform.
27225
+ # @!attribute [rw] peer_ipv4_nexthop_address
27226
+ # @return [::String]
27227
+ # IPv4 address of the BGP interface outside Google Cloud Platform.
26465
27228
  # @!attribute [rw] peer_ipv6_nexthop_address
26466
27229
  # @return [::String]
26467
27230
  # IPv6 address of the BGP interface outside Google Cloud Platform.
@@ -26553,7 +27316,11 @@ module Google
26553
27316
 
26554
27317
  # @!attribute [rw] ip_range
26555
27318
  # @return [::String]
26556
- # IP address and range of the interface. The IP range must be in the RFC3927 link-local IP address space. The value must be a CIDR-formatted string, for example: 169.254.0.1/30. NOTE: Do not truncate the address as it represents the IP address of the interface.
27319
+ # IP address and range of the interface. - For Internet Protocol version 4 (IPv4), the IP range must be in the RFC3927 link-local IP address space. The value must be a CIDR-formatted string, for example, 169.254.0.1/30. Note: Do not truncate the IP address, as it represents the IP address of the interface. - For Internet Protocol version 6 (IPv6), the value must be a unique local address (ULA) range from fdff:1::/64 with a mask length of 126 or less. This value should be a CIDR-formatted string, for example, fc00:0:1:1::1/112. Within the router's VPC, this IPv6 prefix will be reserved exclusively for this connection and cannot be used for any other purpose.
27320
+ # @!attribute [rw] ip_version
27321
+ # @return [::String]
27322
+ # IP version of this interface.
27323
+ # Check the IpVersion enum for the list of possible values.
26557
27324
  # @!attribute [rw] linked_interconnect_attachment
26558
27325
  # @return [::String]
26559
27326
  # URI of the linked Interconnect attachment. It must be in the same region as the router. Each interface can have one linked resource, which can be a VPN tunnel, an Interconnect attachment, or a subnetwork.
@@ -26580,6 +27347,16 @@ module Google
26580
27347
  include ::Google::Protobuf::MessageExts
26581
27348
  extend ::Google::Protobuf::MessageExts::ClassMethods
26582
27349
 
27350
+ # IP version of this interface.
27351
+ module IpVersion
27352
+ # A value indicating that the enum field is not set.
27353
+ UNDEFINED_IP_VERSION = 0
27354
+
27355
+ IPV4 = 2_254_341
27356
+
27357
+ IPV6 = 2_254_343
27358
+ end
27359
+
26583
27360
  # [Output Only] The resource that configures and manages this interface. - MANAGED_BY_USER is the default value and can be managed directly by users. - MANAGED_BY_ATTACHMENT is an interface that is configured and managed by Cloud Interconnect, specifically, by an InterconnectAttachment of type PARTNER. Google automatically creates, updates, and deletes this type of interface when the PARTNER InterconnectAttachment is created, updated, or deleted.
26584
27361
  module ManagementType
26585
27362
  # A value indicating that the enum field is not set.
@@ -26885,12 +27662,18 @@ module Google
26885
27662
  # Routes that were advertised to the remote BGP peer
26886
27663
  # @!attribute [rw] bfd_status
26887
27664
  # @return [::Google::Cloud::Compute::V1::BfdStatus]
27665
+ # @!attribute [rw] enable_ipv4
27666
+ # @return [::Boolean]
27667
+ # Enable IPv4 traffic over BGP Peer. It is enabled by default if the peerIpAddress is version 4.
26888
27668
  # @!attribute [rw] enable_ipv6
26889
27669
  # @return [::Boolean]
26890
- # Enable IPv6 traffic over BGP Peer. If not specified, it is disabled by default.
27670
+ # Enable IPv6 traffic over BGP Peer. It is enabled by default if the peerIpAddress is version 6.
26891
27671
  # @!attribute [rw] ip_address
26892
27672
  # @return [::String]
26893
27673
  # IP address of the local BGP interface.
27674
+ # @!attribute [rw] ipv4_nexthop_address
27675
+ # @return [::String]
27676
+ # IPv4 address of the local BGP interface.
26894
27677
  # @!attribute [rw] ipv6_nexthop_address
26895
27678
  # @return [::String]
26896
27679
  # IPv6 address of the local BGP interface.
@@ -26909,6 +27692,9 @@ module Google
26909
27692
  # @!attribute [rw] peer_ip_address
26910
27693
  # @return [::String]
26911
27694
  # IP address of the remote BGP interface.
27695
+ # @!attribute [rw] peer_ipv4_nexthop_address
27696
+ # @return [::String]
27697
+ # IPv4 address of the remote BGP interface.
26912
27698
  # @!attribute [rw] peer_ipv6_nexthop_address
26913
27699
  # @return [::String]
26914
27700
  # IPv6 address of the remote BGP interface.
@@ -26953,6 +27739,12 @@ module Google
26953
27739
  # A value indicating that the enum field is not set.
26954
27740
  UNDEFINED_STATUS_REASON = 0
26955
27741
 
27742
+ # BGP peer disabled because it requires IPv4 but the underlying connection is IPv6-only.
27743
+ IPV4_PEER_ON_IPV6_ONLY_CONNECTION = 435_936_662
27744
+
27745
+ # BGP peer disabled because it requires IPv6 but the underlying connection is IPv4-only.
27746
+ IPV6_PEER_ON_IPV4_ONLY_CONNECTION = 436_304_082
27747
+
26956
27748
  # Indicates internal problems with configuration of MD5 authentication. This particular reason can only be returned when md5AuthEnabled is true and status is DOWN.
26957
27749
  MD5_AUTH_INTERNAL_PROBLEM = 140_462_259
26958
27750
 
@@ -28222,10 +29014,10 @@ module Google
28222
29014
  # Check the ConnectionPreference enum for the list of possible values.
28223
29015
  # @!attribute [rw] consumer_accept_lists
28224
29016
  # @return [::Array<::Google::Cloud::Compute::V1::ServiceAttachmentConsumerProjectLimit>]
28225
- # Projects that are allowed to connect to this service attachment.
29017
+ # Specifies which consumer projects or networks are allowed to connect to the service attachment. Each project or network has a connection limit. A given service attachment can manage connections at either the project or network level. Therefore, both the accept and reject lists for a given service attachment must contain either only projects or only networks.
28226
29018
  # @!attribute [rw] consumer_reject_lists
28227
29019
  # @return [::Array<::String>]
28228
- # Projects that are not allowed to connect to this service attachment. The project can be specified using its id or number.
29020
+ # Specifies a list of projects or networks that are not allowed to connect to this service attachment. The project can be specified using its project ID or project number and the network can be specified using its URL. A given service attachment can manage connections at either the project or network level. Therefore, both the reject and accept lists for a given service attachment must contain either only projects or only networks.
28229
29021
  # @!attribute [rw] creation_timestamp
28230
29022
  # @return [::String]
28231
29023
  # [Output Only] Creation timestamp in RFC3339 text format.
@@ -29057,6 +29849,24 @@ module Google
29057
29849
  extend ::Google::Protobuf::MessageExts::ClassMethods
29058
29850
  end
29059
29851
 
29852
+ # A request message for StoragePools.SetIamPolicy. See the method description for details.
29853
+ # @!attribute [rw] project
29854
+ # @return [::String]
29855
+ # Project ID for this request.
29856
+ # @!attribute [rw] resource
29857
+ # @return [::String]
29858
+ # Name or id of the resource for this request.
29859
+ # @!attribute [rw] zone
29860
+ # @return [::String]
29861
+ # The name of the zone for this request.
29862
+ # @!attribute [rw] zone_set_policy_request_resource
29863
+ # @return [::Google::Cloud::Compute::V1::ZoneSetPolicyRequest]
29864
+ # The body resource for this request
29865
+ class SetIamPolicyStoragePoolRequest
29866
+ include ::Google::Protobuf::MessageExts
29867
+ extend ::Google::Protobuf::MessageExts::ClassMethods
29868
+ end
29869
+
29060
29870
  # A request message for Subnetworks.SetIamPolicy. See the method description for details.
29061
29871
  # @!attribute [rw] project
29062
29872
  # @return [::String]
@@ -31293,71 +32103,511 @@ module Google
31293
32103
  extend ::Google::Protobuf::MessageExts::ClassMethods
31294
32104
  end
31295
32105
 
31296
- # Represents a Subnetwork resource. A subnetwork (also known as a subnet) is a logical partition of a Virtual Private Cloud network with one primary IP range and zero or more secondary IP ranges. For more information, read Virtual Private Cloud (VPC) Network.
32106
+ # Represents a zonal storage pool resource.
32107
+ # @!attribute [rw] capacity_provisioning_type
32108
+ # @return [::String]
32109
+ # Provisioning type of the byte capacity of the pool.
32110
+ # Check the CapacityProvisioningType enum for the list of possible values.
31297
32111
  # @!attribute [rw] creation_timestamp
31298
32112
  # @return [::String]
31299
32113
  # [Output Only] Creation timestamp in RFC3339 text format.
31300
32114
  # @!attribute [rw] description
31301
32115
  # @return [::String]
31302
- # An optional description of this resource. Provide this property when you create the resource. This field can be set only at resource creation time.
31303
- # @!attribute [rw] enable_flow_logs
31304
- # @return [::Boolean]
31305
- # Whether to enable flow logging for this subnetwork. If this field is not explicitly set, it will not appear in get listings. If not set the default behavior is determined by the org policy, if there is no org policy specified, then it will default to disabled. This field isn't supported if the subnet purpose field is set to REGIONAL_MANAGED_PROXY.
31306
- # @!attribute [rw] external_ipv6_prefix
31307
- # @return [::String]
31308
- # The external IPv6 address range that is owned by this subnetwork.
31309
- # @!attribute [rw] fingerprint
31310
- # @return [::String]
31311
- # Fingerprint of this resource. A hash of the contents stored in this object. This field is used in optimistic locking. This field will be ignored when inserting a Subnetwork. An up-to-date fingerprint must be provided in order to update the Subnetwork, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a Subnetwork.
31312
- # @!attribute [rw] gateway_address
31313
- # @return [::String]
31314
- # [Output Only] The gateway address for default routes to reach destination addresses outside this subnetwork.
32116
+ # An optional description of this resource. Provide this property when you create the resource.
31315
32117
  # @!attribute [rw] id
31316
32118
  # @return [::Integer]
31317
32119
  # [Output Only] The unique identifier for the resource. This identifier is defined by the server.
31318
- # @!attribute [rw] internal_ipv6_prefix
31319
- # @return [::String]
31320
- # [Output Only] The internal IPv6 address range that is assigned to this subnetwork.
31321
- # @!attribute [rw] ip_cidr_range
31322
- # @return [::String]
31323
- # The range of internal addresses that are owned by this subnetwork. Provide this property when you create the subnetwork. For example, 10.0.0.0/8 or 100.64.0.0/10. Ranges must be unique and non-overlapping within a network. Only IPv4 is supported. This field is set at resource creation time. The range can be any range listed in the Valid ranges list. The range can be expanded after creation using expandIpCidrRange.
31324
- # @!attribute [rw] ipv6_access_type
31325
- # @return [::String]
31326
- # The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation or the first time the subnet is updated into IPV4_IPV6 dual stack.
31327
- # Check the Ipv6AccessType enum for the list of possible values.
31328
- # @!attribute [rw] ipv6_cidr_range
31329
- # @return [::String]
31330
- # [Output Only] This field is for internal use.
31331
32120
  # @!attribute [rw] kind
31332
32121
  # @return [::String]
31333
- # [Output Only] Type of the resource. Always compute#subnetwork for Subnetwork resources.
31334
- # @!attribute [rw] log_config
31335
- # @return [::Google::Cloud::Compute::V1::SubnetworkLogConfig]
31336
- # This field denotes the VPC flow logging options for this subnetwork. If logging is enabled, logs are exported to Cloud Logging.
32122
+ # [Output Only] Type of the resource. Always compute#storagePool for storage pools.
32123
+ # @!attribute [rw] label_fingerprint
32124
+ # @return [::String]
32125
+ # A fingerprint for the labels being applied to this storage pool, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a storage pool.
32126
+ # @!attribute [rw] labels
32127
+ # @return [::Google::Protobuf::Map{::String => ::String}]
32128
+ # Labels to apply to this storage pool. These can be later modified by the setLabels method.
31337
32129
  # @!attribute [rw] name
31338
32130
  # @return [::String]
31339
- # The name of the resource, provided by the client when initially creating the resource. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
31340
- # @!attribute [rw] network
32131
+ # Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
32132
+ # @!attribute [rw] performance_provisioning_type
31341
32133
  # @return [::String]
31342
- # The URL of the network to which this subnetwork belongs, provided by the client when initially creating the subnetwork. This field can be set only at resource creation time.
31343
- # @!attribute [rw] private_ip_google_access
31344
- # @return [::Boolean]
31345
- # Whether the VMs in this subnet can access Google services without assigned external IP addresses. This field can be both set at resource creation time and updated using setPrivateIpGoogleAccess.
31346
- # @!attribute [rw] private_ipv6_google_access
32134
+ # Provisioning type of the performance-related parameters of the pool, such as throughput and IOPS.
32135
+ # Check the PerformanceProvisioningType enum for the list of possible values.
32136
+ # @!attribute [rw] pool_provisioned_capacity_gb
32137
+ # @return [::Integer]
32138
+ # Size, in GiB, of the storage pool.
32139
+ # @!attribute [rw] pool_provisioned_iops
32140
+ # @return [::Integer]
32141
+ # Provisioned IOPS of the storage pool. Only relevant if the storage pool type is hyperdisk-balanced.
32142
+ # @!attribute [rw] pool_provisioned_throughput
32143
+ # @return [::Integer]
32144
+ # Provisioned throughput of the storage pool. Only relevant if the storage pool type is hyperdisk-balanced or hyperdisk-throughput.
32145
+ # @!attribute [rw] resource_status
32146
+ # @return [::Google::Cloud::Compute::V1::StoragePoolResourceStatus]
32147
+ # [Output Only] Status information for the storage pool resource.
32148
+ # @!attribute [rw] self_link
31347
32149
  # @return [::String]
31348
- # This field is for internal use. This field can be both set at resource creation time and updated using patch.
31349
- # Check the PrivateIpv6GoogleAccess enum for the list of possible values.
31350
- # @!attribute [rw] purpose
32150
+ # [Output Only] Server-defined fully-qualified URL for this resource.
32151
+ # @!attribute [rw] self_link_with_id
31351
32152
  # @return [::String]
31352
- # The purpose of the resource. This field can be either PRIVATE, GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PRIVATE_SERVICE_CONNECT, or PRIVATE is the default purpose for user-created subnets or subnets that are automatically created in auto mode networks. Subnets with purpose set to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY are user-created subnetworks that are reserved for Envoy-based load balancers. A subnet with purpose set to PRIVATE_SERVICE_CONNECT is used to publish services using Private Service Connect. If unspecified, the subnet purpose defaults to PRIVATE. The enableFlowLogs field isn't supported if the subnet purpose field is set to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY.
31353
- # Check the Purpose enum for the list of possible values.
31354
- # @!attribute [rw] region
32153
+ # [Output Only] Server-defined URL for this resource's resource id.
32154
+ # @!attribute [rw] state
31355
32155
  # @return [::String]
31356
- # URL of the region where the Subnetwork resides. This field can be set only at resource creation time.
31357
- # @!attribute [rw] reserved_internal_range
32156
+ # [Output Only] The status of storage pool creation. - CREATING: Storage pool is provisioning. storagePool. - FAILED: Storage pool creation failed. - READY: Storage pool is ready for use. - DELETING: Storage pool is deleting.
32157
+ # Check the State enum for the list of possible values.
32158
+ # @!attribute [rw] status
32159
+ # @return [::Google::Cloud::Compute::V1::StoragePoolResourceStatus]
32160
+ # [Output Only] Status information for the storage pool resource.
32161
+ # @!attribute [rw] storage_pool_type
31358
32162
  # @return [::String]
31359
- # The URL of the reserved internal range.
31360
- # @!attribute [rw] role
32163
+ # Type of the storage pool.
32164
+ # @!attribute [rw] zone
32165
+ # @return [::String]
32166
+ # [Output Only] URL of the zone where the storage pool resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
32167
+ class StoragePool
32168
+ include ::Google::Protobuf::MessageExts
32169
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32170
+
32171
+ # @!attribute [rw] key
32172
+ # @return [::String]
32173
+ # @!attribute [rw] value
32174
+ # @return [::String]
32175
+ class LabelsEntry
32176
+ include ::Google::Protobuf::MessageExts
32177
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32178
+ end
32179
+
32180
+ # Provisioning type of the byte capacity of the pool.
32181
+ # Additional supported values which may be not listed in the enum directly due to technical reasons:
32182
+ # ADVANCED
32183
+ # STANDARD
32184
+ # UNSPECIFIED
32185
+ module CapacityProvisioningType
32186
+ # A value indicating that the enum field is not set.
32187
+ UNDEFINED_CAPACITY_PROVISIONING_TYPE = 0
32188
+ end
32189
+
32190
+ # Provisioning type of the performance-related parameters of the pool, such as throughput and IOPS.
32191
+ # Additional supported values which may be not listed in the enum directly due to technical reasons:
32192
+ # ADVANCED
32193
+ # STANDARD
32194
+ # UNSPECIFIED
32195
+ module PerformanceProvisioningType
32196
+ # A value indicating that the enum field is not set.
32197
+ UNDEFINED_PERFORMANCE_PROVISIONING_TYPE = 0
32198
+ end
32199
+
32200
+ # [Output Only] The status of storage pool creation. - CREATING: Storage pool is provisioning. storagePool. - FAILED: Storage pool creation failed. - READY: Storage pool is ready for use. - DELETING: Storage pool is deleting.
32201
+ module State
32202
+ # A value indicating that the enum field is not set.
32203
+ UNDEFINED_STATE = 0
32204
+
32205
+ # StoragePool is provisioning
32206
+ CREATING = 455_564_985
32207
+
32208
+ # StoragePool is deleting.
32209
+ DELETING = 528_602_024
32210
+
32211
+ # StoragePool creation failed.
32212
+ FAILED = 455_706_685
32213
+
32214
+ # StoragePool is ready for use.
32215
+ READY = 77_848_963
32216
+ end
32217
+ end
32218
+
32219
+ # @!attribute [rw] etag
32220
+ # @return [::String]
32221
+ # @!attribute [rw] id
32222
+ # @return [::String]
32223
+ # [Output Only] Unique identifier for the resource; defined by the server.
32224
+ # @!attribute [rw] items
32225
+ # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Compute::V1::StoragePoolsScopedList}]
32226
+ # A list of StoragePoolsScopedList resources.
32227
+ # @!attribute [rw] kind
32228
+ # @return [::String]
32229
+ # [Output Only] Type of resource. Always compute#storagePoolAggregatedList for aggregated lists of storage pools.
32230
+ # @!attribute [rw] next_page_token
32231
+ # @return [::String]
32232
+ # [Output Only] This token allows you to get the next page of results for list requests. If the number of results is larger than maxResults, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results.
32233
+ # @!attribute [rw] self_link
32234
+ # @return [::String]
32235
+ # [Output Only] Server-defined URL for this resource.
32236
+ # @!attribute [rw] unreachables
32237
+ # @return [::Array<::String>]
32238
+ # [Output Only] Unreachable resources.
32239
+ # @!attribute [rw] warning
32240
+ # @return [::Google::Cloud::Compute::V1::Warning]
32241
+ # [Output Only] Informational warning message.
32242
+ class StoragePoolAggregatedList
32243
+ include ::Google::Protobuf::MessageExts
32244
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32245
+
32246
+ # @!attribute [rw] key
32247
+ # @return [::String]
32248
+ # @!attribute [rw] value
32249
+ # @return [::Google::Cloud::Compute::V1::StoragePoolsScopedList]
32250
+ class ItemsEntry
32251
+ include ::Google::Protobuf::MessageExts
32252
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32253
+ end
32254
+ end
32255
+
32256
+ # @!attribute [rw] attached_instances
32257
+ # @return [::Array<::String>]
32258
+ # [Output Only] Instances this disk is attached to.
32259
+ # @!attribute [rw] creation_timestamp
32260
+ # @return [::String]
32261
+ # [Output Only] Creation timestamp in RFC3339 text format.
32262
+ # @!attribute [rw] disk
32263
+ # @return [::String]
32264
+ # [Output Only] The URL of the disk.
32265
+ # @!attribute [rw] name
32266
+ # @return [::String]
32267
+ # [Output Only] The name of the disk.
32268
+ # @!attribute [rw] provisioned_iops
32269
+ # @return [::Integer]
32270
+ # [Output Only] The number of IOPS provisioned for the disk.
32271
+ # @!attribute [rw] provisioned_throughput
32272
+ # @return [::Integer]
32273
+ # [Output Only] The throughput provisioned for the disk.
32274
+ # @!attribute [rw] resource_policies
32275
+ # @return [::Array<::String>]
32276
+ # [Output Only] Resource policies applied to disk for automatic snapshot creations.
32277
+ # @!attribute [rw] size_gb
32278
+ # @return [::Integer]
32279
+ # [Output Only] The disk size, in GB.
32280
+ # @!attribute [rw] status
32281
+ # @return [::String]
32282
+ # [Output Only] The disk status.
32283
+ # Check the Status enum for the list of possible values.
32284
+ # @!attribute [rw] type
32285
+ # @return [::String]
32286
+ # [Output Only] The disk type.
32287
+ # @!attribute [rw] used_bytes
32288
+ # @return [::Integer]
32289
+ # [Output Only] Amount of disk space used.
32290
+ class StoragePoolDisk
32291
+ include ::Google::Protobuf::MessageExts
32292
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32293
+
32294
+ # [Output Only] The disk status.
32295
+ module Status
32296
+ # A value indicating that the enum field is not set.
32297
+ UNDEFINED_STATUS = 0
32298
+
32299
+ # Disk is provisioning
32300
+ CREATING = 455_564_985
32301
+
32302
+ # Disk is deleting.
32303
+ DELETING = 528_602_024
32304
+
32305
+ # Disk creation failed.
32306
+ FAILED = 455_706_685
32307
+
32308
+ # Disk is ready for use.
32309
+ READY = 77_848_963
32310
+
32311
+ # Source data is being copied into the disk.
32312
+ RESTORING = 404_263_851
32313
+
32314
+ # Disk is currently unavailable and cannot be accessed, attached or detached.
32315
+ UNAVAILABLE = 413_756_464
32316
+ end
32317
+ end
32318
+
32319
+ # A list of StoragePool resources.
32320
+ # @!attribute [rw] etag
32321
+ # @return [::String]
32322
+ # @!attribute [rw] id
32323
+ # @return [::String]
32324
+ # [Output Only] Unique identifier for the resource; defined by the server.
32325
+ # @!attribute [rw] items
32326
+ # @return [::Array<::Google::Cloud::Compute::V1::StoragePool>]
32327
+ # A list of StoragePool resources.
32328
+ # @!attribute [rw] kind
32329
+ # @return [::String]
32330
+ # [Output Only] Type of resource. Always compute#storagePoolList for lists of storagePools.
32331
+ # @!attribute [rw] next_page_token
32332
+ # @return [::String]
32333
+ # [Output Only] This token allows you to get the next page of results for list requests. If the number of results is larger than maxResults, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results.
32334
+ # @!attribute [rw] self_link
32335
+ # @return [::String]
32336
+ # [Output Only] Server-defined URL for this resource.
32337
+ # @!attribute [rw] unreachables
32338
+ # @return [::Array<::String>]
32339
+ # [Output Only] Unreachable resources. end_interface: MixerListResponseWithEtagBuilder
32340
+ # @!attribute [rw] warning
32341
+ # @return [::Google::Cloud::Compute::V1::Warning]
32342
+ # [Output Only] Informational warning message.
32343
+ class StoragePoolList
32344
+ include ::Google::Protobuf::MessageExts
32345
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32346
+ end
32347
+
32348
+ # @!attribute [rw] etag
32349
+ # @return [::String]
32350
+ # @!attribute [rw] id
32351
+ # @return [::String]
32352
+ # [Output Only] Unique identifier for the resource; defined by the server.
32353
+ # @!attribute [rw] items
32354
+ # @return [::Array<::Google::Cloud::Compute::V1::StoragePoolDisk>]
32355
+ # A list of StoragePoolDisk resources.
32356
+ # @!attribute [rw] kind
32357
+ # @return [::String]
32358
+ # [Output Only] Type of resource. Always compute#storagePoolListDisks for lists of disks in a storagePool.
32359
+ # @!attribute [rw] next_page_token
32360
+ # @return [::String]
32361
+ # [Output Only] This token allows you to get the next page of results for list requests. If the number of results is larger than maxResults, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results.
32362
+ # @!attribute [rw] self_link
32363
+ # @return [::String]
32364
+ # [Output Only] Server-defined URL for this resource.
32365
+ # @!attribute [rw] unreachables
32366
+ # @return [::Array<::String>]
32367
+ # [Output Only] Unreachable resources. end_interface: MixerListResponseWithEtagBuilder
32368
+ # @!attribute [rw] warning
32369
+ # @return [::Google::Cloud::Compute::V1::Warning]
32370
+ # [Output Only] Informational warning message.
32371
+ class StoragePoolListDisks
32372
+ include ::Google::Protobuf::MessageExts
32373
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32374
+ end
32375
+
32376
+ # [Output Only] Contains output only fields.
32377
+ # @!attribute [rw] disk_count
32378
+ # @return [::Integer]
32379
+ # [Output Only] Number of disks used.
32380
+ # @!attribute [rw] last_resize_timestamp
32381
+ # @return [::String]
32382
+ # [Output Only] Timestamp of the last successful resize in RFC3339 text format.
32383
+ # @!attribute [rw] max_total_provisioned_disk_capacity_gb
32384
+ # @return [::Integer]
32385
+ # [Output Only] Maximum allowed aggregate disk size in gigabytes.
32386
+ # @!attribute [rw] pool_used_capacity_bytes
32387
+ # @return [::Integer]
32388
+ # [Output Only] Space used by data stored in disks within the storage pool (in bytes). This will reflect the total number of bytes written to the disks in the pool, in contrast to the capacity of those disks.
32389
+ # @!attribute [rw] pool_used_iops
32390
+ # @return [::Integer]
32391
+ # Sum of all the disks' provisioned IOPS, minus some amount that is allowed per disk that is not counted towards pool's IOPS capacity.
32392
+ # @!attribute [rw] pool_used_throughput
32393
+ # @return [::Integer]
32394
+ # [Output Only] Sum of all the disks' provisioned throughput in MB/s.
32395
+ # @!attribute [rw] pool_user_written_bytes
32396
+ # @return [::Integer]
32397
+ # [Output Only] Amount of data written into the pool, before it is compacted.
32398
+ # @!attribute [rw] total_provisioned_disk_capacity_gb
32399
+ # @return [::Integer]
32400
+ # [Output Only] Sum of all the capacity provisioned in disks in this storage pool. A disk's provisioned capacity is the same as its total capacity.
32401
+ # @!attribute [rw] total_provisioned_disk_iops
32402
+ # @return [::Integer]
32403
+ # [Output Only] Sum of all the disks' provisioned IOPS.
32404
+ # @!attribute [rw] total_provisioned_disk_throughput
32405
+ # @return [::Integer]
32406
+ # [Output Only] Sum of all the disks' provisioned throughput in MB/s, minus some amount that is allowed per disk that is not counted towards pool's throughput capacity.
32407
+ class StoragePoolResourceStatus
32408
+ include ::Google::Protobuf::MessageExts
32409
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32410
+ end
32411
+
32412
+ # @!attribute [rw] creation_timestamp
32413
+ # @return [::String]
32414
+ # [Output Only] Creation timestamp in RFC3339 text format.
32415
+ # @!attribute [rw] deprecated
32416
+ # @return [::Google::Cloud::Compute::V1::DeprecationStatus]
32417
+ # [Output Only] The deprecation status associated with this storage pool type.
32418
+ # @!attribute [rw] description
32419
+ # @return [::String]
32420
+ # [Output Only] An optional description of this resource.
32421
+ # @!attribute [rw] id
32422
+ # @return [::Integer]
32423
+ # [Output Only] The unique identifier for the resource. This identifier is defined by the server.
32424
+ # @!attribute [rw] kind
32425
+ # @return [::String]
32426
+ # [Output Only] Type of the resource. Always compute#storagePoolType for storage pool types.
32427
+ # @!attribute [rw] max_pool_provisioned_capacity_gb
32428
+ # @return [::Integer]
32429
+ # [Output Only] Maximum storage pool size in GB.
32430
+ # @!attribute [rw] max_pool_provisioned_iops
32431
+ # @return [::Integer]
32432
+ # [Output Only] Maximum provisioned IOPS.
32433
+ # @!attribute [rw] max_pool_provisioned_throughput
32434
+ # @return [::Integer]
32435
+ # [Output Only] Maximum provisioned throughput.
32436
+ # @!attribute [rw] min_pool_provisioned_capacity_gb
32437
+ # @return [::Integer]
32438
+ # [Output Only] Minimum storage pool size in GB.
32439
+ # @!attribute [rw] min_pool_provisioned_iops
32440
+ # @return [::Integer]
32441
+ # [Output Only] Minimum provisioned IOPS.
32442
+ # @!attribute [rw] min_pool_provisioned_throughput
32443
+ # @return [::Integer]
32444
+ # [Output Only] Minimum provisioned throughput.
32445
+ # @!attribute [rw] min_size_gb
32446
+ # @return [::Integer]
32447
+ # [Deprecated] This field is deprecated. Use minPoolProvisionedCapacityGb instead.
32448
+ # @!attribute [rw] name
32449
+ # @return [::String]
32450
+ # [Output Only] Name of the resource.
32451
+ # @!attribute [rw] self_link
32452
+ # @return [::String]
32453
+ # [Output Only] Server-defined URL for the resource.
32454
+ # @!attribute [rw] self_link_with_id
32455
+ # @return [::String]
32456
+ # [Output Only] Server-defined URL for this resource with the resource id.
32457
+ # @!attribute [rw] supported_disk_types
32458
+ # @return [::Array<::String>]
32459
+ # [Output Only] The list of disk types supported in this storage pool type.
32460
+ # @!attribute [rw] zone
32461
+ # @return [::String]
32462
+ # [Output Only] URL of the zone where the storage pool type resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
32463
+ class StoragePoolType
32464
+ include ::Google::Protobuf::MessageExts
32465
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32466
+ end
32467
+
32468
+ # @!attribute [rw] id
32469
+ # @return [::String]
32470
+ # [Output Only] Unique identifier for the resource; defined by the server.
32471
+ # @!attribute [rw] items
32472
+ # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Compute::V1::StoragePoolTypesScopedList}]
32473
+ # A list of StoragePoolTypesScopedList resources.
32474
+ # @!attribute [rw] kind
32475
+ # @return [::String]
32476
+ # [Output Only] Type of resource. Always compute#storagePoolTypeAggregatedList .
32477
+ # @!attribute [rw] next_page_token
32478
+ # @return [::String]
32479
+ # [Output Only] This token allows you to get the next page of results for list requests. If the number of results is larger than maxResults, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results.
32480
+ # @!attribute [rw] self_link
32481
+ # @return [::String]
32482
+ # [Output Only] Server-defined URL for this resource.
32483
+ # @!attribute [rw] warning
32484
+ # @return [::Google::Cloud::Compute::V1::Warning]
32485
+ # [Output Only] Informational warning message.
32486
+ class StoragePoolTypeAggregatedList
32487
+ include ::Google::Protobuf::MessageExts
32488
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32489
+
32490
+ # @!attribute [rw] key
32491
+ # @return [::String]
32492
+ # @!attribute [rw] value
32493
+ # @return [::Google::Cloud::Compute::V1::StoragePoolTypesScopedList]
32494
+ class ItemsEntry
32495
+ include ::Google::Protobuf::MessageExts
32496
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32497
+ end
32498
+ end
32499
+
32500
+ # Contains a list of storage pool types.
32501
+ # @!attribute [rw] id
32502
+ # @return [::String]
32503
+ # [Output Only] Unique identifier for the resource; defined by the server.
32504
+ # @!attribute [rw] items
32505
+ # @return [::Array<::Google::Cloud::Compute::V1::StoragePoolType>]
32506
+ # A list of StoragePoolType resources.
32507
+ # @!attribute [rw] kind
32508
+ # @return [::String]
32509
+ # [Output Only] Type of resource. Always compute#storagePoolTypeList for storage pool types.
32510
+ # @!attribute [rw] next_page_token
32511
+ # @return [::String]
32512
+ # [Output Only] This token allows you to get the next page of results for list requests. If the number of results is larger than maxResults, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results.
32513
+ # @!attribute [rw] self_link
32514
+ # @return [::String]
32515
+ # [Output Only] Server-defined URL for this resource.
32516
+ # @!attribute [rw] warning
32517
+ # @return [::Google::Cloud::Compute::V1::Warning]
32518
+ # [Output Only] Informational warning message.
32519
+ class StoragePoolTypeList
32520
+ include ::Google::Protobuf::MessageExts
32521
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32522
+ end
32523
+
32524
+ # @!attribute [rw] storage_pool_types
32525
+ # @return [::Array<::Google::Cloud::Compute::V1::StoragePoolType>]
32526
+ # [Output Only] A list of storage pool types contained in this scope.
32527
+ # @!attribute [rw] warning
32528
+ # @return [::Google::Cloud::Compute::V1::Warning]
32529
+ # [Output Only] Informational warning which replaces the list of storage pool types when the list is empty.
32530
+ class StoragePoolTypesScopedList
32531
+ include ::Google::Protobuf::MessageExts
32532
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32533
+ end
32534
+
32535
+ # @!attribute [rw] storage_pools
32536
+ # @return [::Array<::Google::Cloud::Compute::V1::StoragePool>]
32537
+ # [Output Only] A list of storage pool contained in this scope.
32538
+ # @!attribute [rw] warning
32539
+ # @return [::Google::Cloud::Compute::V1::Warning]
32540
+ # [Output Only] Informational warning which replaces the list of storage pool when the list is empty.
32541
+ class StoragePoolsScopedList
32542
+ include ::Google::Protobuf::MessageExts
32543
+ extend ::Google::Protobuf::MessageExts::ClassMethods
32544
+ end
32545
+
32546
+ # Represents a Subnetwork resource. A subnetwork (also known as a subnet) is a logical partition of a Virtual Private Cloud network with one primary IP range and zero or more secondary IP ranges. For more information, read Virtual Private Cloud (VPC) Network.
32547
+ # @!attribute [rw] creation_timestamp
32548
+ # @return [::String]
32549
+ # [Output Only] Creation timestamp in RFC3339 text format.
32550
+ # @!attribute [rw] description
32551
+ # @return [::String]
32552
+ # An optional description of this resource. Provide this property when you create the resource. This field can be set only at resource creation time.
32553
+ # @!attribute [rw] enable_flow_logs
32554
+ # @return [::Boolean]
32555
+ # Whether to enable flow logging for this subnetwork. If this field is not explicitly set, it will not appear in get listings. If not set the default behavior is determined by the org policy, if there is no org policy specified, then it will default to disabled. This field isn't supported if the subnet purpose field is set to REGIONAL_MANAGED_PROXY.
32556
+ # @!attribute [rw] external_ipv6_prefix
32557
+ # @return [::String]
32558
+ # The external IPv6 address range that is owned by this subnetwork.
32559
+ # @!attribute [rw] fingerprint
32560
+ # @return [::String]
32561
+ # Fingerprint of this resource. A hash of the contents stored in this object. This field is used in optimistic locking. This field will be ignored when inserting a Subnetwork. An up-to-date fingerprint must be provided in order to update the Subnetwork, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a Subnetwork.
32562
+ # @!attribute [rw] gateway_address
32563
+ # @return [::String]
32564
+ # [Output Only] The gateway address for default routes to reach destination addresses outside this subnetwork.
32565
+ # @!attribute [rw] id
32566
+ # @return [::Integer]
32567
+ # [Output Only] The unique identifier for the resource. This identifier is defined by the server.
32568
+ # @!attribute [rw] internal_ipv6_prefix
32569
+ # @return [::String]
32570
+ # [Output Only] The internal IPv6 address range that is assigned to this subnetwork.
32571
+ # @!attribute [rw] ip_cidr_range
32572
+ # @return [::String]
32573
+ # The range of internal addresses that are owned by this subnetwork. Provide this property when you create the subnetwork. For example, 10.0.0.0/8 or 100.64.0.0/10. Ranges must be unique and non-overlapping within a network. Only IPv4 is supported. This field is set at resource creation time. The range can be any range listed in the Valid ranges list. The range can be expanded after creation using expandIpCidrRange.
32574
+ # @!attribute [rw] ipv6_access_type
32575
+ # @return [::String]
32576
+ # The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation or the first time the subnet is updated into IPV4_IPV6 dual stack.
32577
+ # Check the Ipv6AccessType enum for the list of possible values.
32578
+ # @!attribute [rw] ipv6_cidr_range
32579
+ # @return [::String]
32580
+ # [Output Only] This field is for internal use.
32581
+ # @!attribute [rw] kind
32582
+ # @return [::String]
32583
+ # [Output Only] Type of the resource. Always compute#subnetwork for Subnetwork resources.
32584
+ # @!attribute [rw] log_config
32585
+ # @return [::Google::Cloud::Compute::V1::SubnetworkLogConfig]
32586
+ # This field denotes the VPC flow logging options for this subnetwork. If logging is enabled, logs are exported to Cloud Logging.
32587
+ # @!attribute [rw] name
32588
+ # @return [::String]
32589
+ # The name of the resource, provided by the client when initially creating the resource. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
32590
+ # @!attribute [rw] network
32591
+ # @return [::String]
32592
+ # The URL of the network to which this subnetwork belongs, provided by the client when initially creating the subnetwork. This field can be set only at resource creation time.
32593
+ # @!attribute [rw] private_ip_google_access
32594
+ # @return [::Boolean]
32595
+ # Whether the VMs in this subnet can access Google services without assigned external IP addresses. This field can be both set at resource creation time and updated using setPrivateIpGoogleAccess.
32596
+ # @!attribute [rw] private_ipv6_google_access
32597
+ # @return [::String]
32598
+ # This field is for internal use. This field can be both set at resource creation time and updated using patch.
32599
+ # Check the PrivateIpv6GoogleAccess enum for the list of possible values.
32600
+ # @!attribute [rw] purpose
32601
+ # @return [::String]
32602
+ # The purpose of the resource. This field can be either PRIVATE, GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PRIVATE_SERVICE_CONNECT, or PRIVATE is the default purpose for user-created subnets or subnets that are automatically created in auto mode networks. Subnets with purpose set to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY are user-created subnetworks that are reserved for Envoy-based load balancers. A subnet with purpose set to PRIVATE_SERVICE_CONNECT is used to publish services using Private Service Connect. If unspecified, the subnet purpose defaults to PRIVATE. The enableFlowLogs field isn't supported if the subnet purpose field is set to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY.
32603
+ # Check the Purpose enum for the list of possible values.
32604
+ # @!attribute [rw] region
32605
+ # @return [::String]
32606
+ # URL of the region where the Subnetwork resides. This field can be set only at resource creation time.
32607
+ # @!attribute [rw] reserved_internal_range
32608
+ # @return [::String]
32609
+ # The URL of the reserved internal range.
32610
+ # @!attribute [rw] role
31361
32611
  # @return [::String]
31362
32612
  # The role of subnetwork. Currently, this field is only used when purpose is set to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY. The value can be set to ACTIVE or BACKUP. An ACTIVE subnetwork is one that is currently being used for Envoy-based load balancers in a region. A BACKUP subnetwork is one that is ready to be promoted to ACTIVE or is currently draining. This field can be updated with a patch request.
31363
32613
  # Check the Role enum for the list of possible values.
@@ -33275,6 +34525,24 @@ module Google
33275
34525
  extend ::Google::Protobuf::MessageExts::ClassMethods
33276
34526
  end
33277
34527
 
34528
+ # A request message for StoragePools.TestIamPermissions. See the method description for details.
34529
+ # @!attribute [rw] project
34530
+ # @return [::String]
34531
+ # Project ID for this request.
34532
+ # @!attribute [rw] resource
34533
+ # @return [::String]
34534
+ # Name or id of the resource for this request.
34535
+ # @!attribute [rw] test_permissions_request_resource
34536
+ # @return [::Google::Cloud::Compute::V1::TestPermissionsRequest]
34537
+ # The body resource for this request
34538
+ # @!attribute [rw] zone
34539
+ # @return [::String]
34540
+ # The name of the zone for this request.
34541
+ class TestIamPermissionsStoragePoolRequest
34542
+ include ::Google::Protobuf::MessageExts
34543
+ extend ::Google::Protobuf::MessageExts::ClassMethods
34544
+ end
34545
+
33278
34546
  # A request message for Subnetworks.TestIamPermissions. See the method description for details.
33279
34547
  # @!attribute [rw] project
33280
34548
  # @return [::String]
@@ -33894,6 +35162,30 @@ module Google
33894
35162
  extend ::Google::Protobuf::MessageExts::ClassMethods
33895
35163
  end
33896
35164
 
35165
+ # A request message for StoragePools.Update. See the method description for details.
35166
+ # @!attribute [rw] project
35167
+ # @return [::String]
35168
+ # Project ID for this request.
35169
+ # @!attribute [rw] request_id
35170
+ # @return [::String]
35171
+ # 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).
35172
+ # @!attribute [rw] storage_pool
35173
+ # @return [::String]
35174
+ # The storagePool name for this request.
35175
+ # @!attribute [rw] storage_pool_resource
35176
+ # @return [::Google::Cloud::Compute::V1::StoragePool]
35177
+ # The body resource for this request
35178
+ # @!attribute [rw] update_mask
35179
+ # @return [::String]
35180
+ # update_mask indicates fields to be updated as part of this request.
35181
+ # @!attribute [rw] zone
35182
+ # @return [::String]
35183
+ # The name of the zone for this request.
35184
+ class UpdateStoragePoolRequest
35185
+ include ::Google::Protobuf::MessageExts
35186
+ extend ::Google::Protobuf::MessageExts::ClassMethods
35187
+ end
35188
+
33897
35189
  # A request message for UrlMaps.Update. See the method description for details.
33898
35190
  # @!attribute [rw] project
33899
35191
  # @return [::String]
@@ -33921,7 +35213,7 @@ module Google
33921
35213
  # defaultRouteAction takes effect when none of the hostRules match. The load balancer performs advanced routing actions, such as URL rewrites and header transformations, before forwarding the request to the selected backend. If defaultRouteAction specifies any weightedBackendServices, defaultService must not be set. Conversely if defaultService is set, defaultRouteAction cannot contain any weightedBackendServices. Only one of defaultRouteAction or defaultUrlRedirect must be set. URL maps for classic Application Load Balancers only support the urlRewrite action within defaultRouteAction. defaultRouteAction has no effect when the URL map is bound to a target gRPC proxy that has the validateForProxyless field set to true.
33922
35214
  # @!attribute [rw] default_service
33923
35215
  # @return [::String]
33924
- # The full or partial URL of the defaultService resource to which traffic is directed if none of the hostRules match. If defaultRouteAction is also specified, advanced routing actions, such as URL rewrites, take effect before sending the request to the backend. However, if defaultService is specified, defaultRouteAction cannot contain any weightedBackendServices. Conversely, if routeAction specifies any weightedBackendServices, service must not be specified. Only one of defaultService, defaultUrlRedirect , or defaultRouteAction.weightedBackendService must be set. defaultService has no effect when the URL map is bound to a target gRPC proxy that has the validateForProxyless field set to true.
35216
+ # The full or partial URL of the defaultService resource to which traffic is directed if none of the hostRules match. If defaultRouteAction is also specified, advanced routing actions, such as URL rewrites, take effect before sending the request to the backend. However, if defaultService is specified, defaultRouteAction cannot contain any weightedBackendServices. Conversely, if routeAction specifies any weightedBackendServices, service must not be specified. If defaultService is specified, then set either defaultUrlRedirect , or defaultRouteAction.weightedBackendService Don't set both. defaultService has no effect when the URL map is bound to a target gRPC proxy that has the validateForProxyless field set to true.
33925
35217
  # @!attribute [rw] default_url_redirect
33926
35218
  # @return [::Google::Cloud::Compute::V1::HttpRedirectAction]
33927
35219
  # When none of the specified hostRules match, the request is redirected to a URL specified by defaultUrlRedirect. If defaultUrlRedirect is specified, defaultService or defaultRouteAction must not be set. Not supported when the URL map is bound to a target gRPC proxy.