google-apis-compute_beta 0.118.0 → 0.120.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2981,6 +2981,24 @@ module Google
|
|
2981
2981
|
# @return [Fixnum]
|
2982
2982
|
attr_accessor :max_connections_per_instance
|
2983
2983
|
|
2984
|
+
# Defines a maximum number of in-flight requests for the whole NEG or instance
|
2985
|
+
# group. Not available if backend's balancingMode is RATE or CONNECTION.
|
2986
|
+
# Corresponds to the JSON property `maxInFlightRequests`
|
2987
|
+
# @return [Fixnum]
|
2988
|
+
attr_accessor :max_in_flight_requests
|
2989
|
+
|
2990
|
+
# Defines a maximum number of in-flight requests for a single endpoint. Not
|
2991
|
+
# available if backend's balancingMode is RATE or CONNECTION.
|
2992
|
+
# Corresponds to the JSON property `maxInFlightRequestsPerEndpoint`
|
2993
|
+
# @return [Fixnum]
|
2994
|
+
attr_accessor :max_in_flight_requests_per_endpoint
|
2995
|
+
|
2996
|
+
# Defines a maximum number of in-flight requests for a single VM. Not available
|
2997
|
+
# if backend's balancingMode is RATE or CONNECTION.
|
2998
|
+
# Corresponds to the JSON property `maxInFlightRequestsPerInstance`
|
2999
|
+
# @return [Fixnum]
|
3000
|
+
attr_accessor :max_in_flight_requests_per_instance
|
3001
|
+
|
2984
3002
|
# Defines a maximum number of HTTP requests per second (RPS). For usage
|
2985
3003
|
# guidelines, see Rate balancing mode and Utilization balancing mode. Not
|
2986
3004
|
# available if the backend's balancingMode is CONNECTION.
|
@@ -3019,6 +3037,11 @@ module Google
|
|
3019
3037
|
# @return [String]
|
3020
3038
|
attr_accessor :preference
|
3021
3039
|
|
3040
|
+
#
|
3041
|
+
# Corresponds to the JSON property `trafficDuration`
|
3042
|
+
# @return [String]
|
3043
|
+
attr_accessor :traffic_duration
|
3044
|
+
|
3022
3045
|
def initialize(**args)
|
3023
3046
|
update!(**args)
|
3024
3047
|
end
|
@@ -3034,11 +3057,15 @@ module Google
|
|
3034
3057
|
@max_connections = args[:max_connections] if args.key?(:max_connections)
|
3035
3058
|
@max_connections_per_endpoint = args[:max_connections_per_endpoint] if args.key?(:max_connections_per_endpoint)
|
3036
3059
|
@max_connections_per_instance = args[:max_connections_per_instance] if args.key?(:max_connections_per_instance)
|
3060
|
+
@max_in_flight_requests = args[:max_in_flight_requests] if args.key?(:max_in_flight_requests)
|
3061
|
+
@max_in_flight_requests_per_endpoint = args[:max_in_flight_requests_per_endpoint] if args.key?(:max_in_flight_requests_per_endpoint)
|
3062
|
+
@max_in_flight_requests_per_instance = args[:max_in_flight_requests_per_instance] if args.key?(:max_in_flight_requests_per_instance)
|
3037
3063
|
@max_rate = args[:max_rate] if args.key?(:max_rate)
|
3038
3064
|
@max_rate_per_endpoint = args[:max_rate_per_endpoint] if args.key?(:max_rate_per_endpoint)
|
3039
3065
|
@max_rate_per_instance = args[:max_rate_per_instance] if args.key?(:max_rate_per_instance)
|
3040
3066
|
@max_utilization = args[:max_utilization] if args.key?(:max_utilization)
|
3041
3067
|
@preference = args[:preference] if args.key?(:preference)
|
3068
|
+
@traffic_duration = args[:traffic_duration] if args.key?(:traffic_duration)
|
3042
3069
|
end
|
3043
3070
|
end
|
3044
3071
|
|
@@ -3120,6 +3147,11 @@ module Google
|
|
3120
3147
|
# @return [String]
|
3121
3148
|
attr_accessor :name
|
3122
3149
|
|
3150
|
+
# Additional Backend Bucket parameters.
|
3151
|
+
# Corresponds to the JSON property `params`
|
3152
|
+
# @return [Google::Apis::ComputeBeta::BackendBucketParams]
|
3153
|
+
attr_accessor :params
|
3154
|
+
|
3123
3155
|
# [Output Only] Server-defined URL for the resource.
|
3124
3156
|
# Corresponds to the JSON property `selfLink`
|
3125
3157
|
# @return [String]
|
@@ -3148,6 +3180,7 @@ module Google
|
|
3148
3180
|
@kind = args[:kind] if args.key?(:kind)
|
3149
3181
|
@load_balancing_scheme = args[:load_balancing_scheme] if args.key?(:load_balancing_scheme)
|
3150
3182
|
@name = args[:name] if args.key?(:name)
|
3183
|
+
@params = args[:params] if args.key?(:params)
|
3151
3184
|
@self_link = args[:self_link] if args.key?(:self_link)
|
3152
3185
|
@used_by = args[:used_by] if args.key?(:used_by)
|
3153
3186
|
end
|
@@ -3623,6 +3656,32 @@ module Google
|
|
3623
3656
|
end
|
3624
3657
|
end
|
3625
3658
|
|
3659
|
+
# Additional Backend Bucket parameters.
|
3660
|
+
class BackendBucketParams
|
3661
|
+
include Google::Apis::Core::Hashable
|
3662
|
+
|
3663
|
+
# Tag keys/values directly bound to this resource. Tag keys and values have the
|
3664
|
+
# same definition as resource manager tags. The field is allowed for INSERT only.
|
3665
|
+
# The keys/values to set on the resource should be specified in either ID ` : `
|
3666
|
+
# or Namespaced format ` : `. For example the following are valid inputs: * `"
|
3667
|
+
# tagKeys/333" : "tagValues/444", "tagKeys/123" : "tagValues/456"` * `"123/
|
3668
|
+
# environment" : "production", "345/abc" : "xyz"` Note: * Invalid combinations
|
3669
|
+
# of ID & namespaced format is not supported. For instance: `"123/environment" :
|
3670
|
+
# "tagValues/444"` is invalid.
|
3671
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
3672
|
+
# @return [Hash<String,String>]
|
3673
|
+
attr_accessor :resource_manager_tags
|
3674
|
+
|
3675
|
+
def initialize(**args)
|
3676
|
+
update!(**args)
|
3677
|
+
end
|
3678
|
+
|
3679
|
+
# Update properties of this object
|
3680
|
+
def update!(**args)
|
3681
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
3682
|
+
end
|
3683
|
+
end
|
3684
|
+
|
3626
3685
|
#
|
3627
3686
|
class BackendBucketUsedBy
|
3628
3687
|
include Google::Apis::Core::Hashable
|
@@ -3660,7 +3719,7 @@ module Google
|
|
3660
3719
|
attr_accessor :max_utilization
|
3661
3720
|
|
3662
3721
|
# Name of a custom utilization signal. The name must be 1-64 characters long and
|
3663
|
-
# match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means the
|
3722
|
+
# match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means that the
|
3664
3723
|
# first character must be a lowercase letter, and all following characters must
|
3665
3724
|
# be a dash, period, underscore, lowercase letter, or digit, except the last
|
3666
3725
|
# character, which cannot be a dash, period, or underscore. For usage guidelines,
|
@@ -3948,11 +4007,16 @@ module Google
|
|
3948
4007
|
# was redirected to the load balancer. - MAGLEV: used as a drop in replacement
|
3949
4008
|
# for the ring hash load balancer. Maglev is not as stable as ring hash but has
|
3950
4009
|
# faster table lookup build times and host selection times. For more information
|
3951
|
-
# about Maglev, see
|
3952
|
-
#
|
3953
|
-
#
|
3954
|
-
#
|
3955
|
-
#
|
4010
|
+
# about Maglev, see Maglev: A Fast and Reliable Software Network Load Balancer. -
|
4011
|
+
# WEIGHTED_ROUND_ROBIN: Per-endpoint Weighted Round Robin Load Balancing using
|
4012
|
+
# weights computed from Backend reported Custom Metrics. If set, the Backend
|
4013
|
+
# Service responses are expected to contain non-standard HTTP response header
|
4014
|
+
# field Endpoint-Load-Metrics. The reported metrics to use for computing the
|
4015
|
+
# weights are specified via the customMetrics field. This field is applicable to
|
4016
|
+
# either: - A regional backend service with the service_protocol set to HTTP,
|
4017
|
+
# HTTPS, HTTP2 or H2C, and load_balancing_scheme set to INTERNAL_MANAGED. - A
|
4018
|
+
# global backend service with the load_balancing_scheme set to
|
4019
|
+
# INTERNAL_SELF_MANAGED, INTERNAL_MANAGED, or EXTERNAL_MANAGED. If
|
3956
4020
|
# sessionAffinity is not configured—that is, if session affinity remains at the
|
3957
4021
|
# default value of NONE—then the default value for localityLbPolicy is
|
3958
4022
|
# ROUND_ROBIN. If session affinity is set to a value other than NONE, then the
|
@@ -4016,6 +4080,11 @@ module Google
|
|
4016
4080
|
# @return [Google::Apis::ComputeBeta::OutlierDetection]
|
4017
4081
|
attr_accessor :outlier_detection
|
4018
4082
|
|
4083
|
+
# Additional Backend Service parameters.
|
4084
|
+
# Corresponds to the JSON property `params`
|
4085
|
+
# @return [Google::Apis::ComputeBeta::BackendServiceParams]
|
4086
|
+
attr_accessor :params
|
4087
|
+
|
4019
4088
|
# Deprecated in favor of portName. The TCP port to connect on the backend. The
|
4020
4089
|
# default value is 80. For internal passthrough Network Load Balancers and
|
4021
4090
|
# external passthrough Network Load Balancers, omit port.
|
@@ -4075,7 +4144,7 @@ module Google
|
|
4075
4144
|
attr_accessor :service_bindings
|
4076
4145
|
|
4077
4146
|
# URL to networkservices.ServiceLbPolicy resource. Can only be set if load
|
4078
|
-
# balancing scheme is
|
4147
|
+
# balancing scheme is EXTERNAL_MANAGED, INTERNAL_MANAGED or
|
4079
4148
|
# INTERNAL_SELF_MANAGED and the scope is global.
|
4080
4149
|
# Corresponds to the JSON property `serviceLbPolicy`
|
4081
4150
|
# @return [String]
|
@@ -4168,6 +4237,7 @@ module Google
|
|
4168
4237
|
@network = args[:network] if args.key?(:network)
|
4169
4238
|
@network_pass_through_lb_traffic_policy = args[:network_pass_through_lb_traffic_policy] if args.key?(:network_pass_through_lb_traffic_policy)
|
4170
4239
|
@outlier_detection = args[:outlier_detection] if args.key?(:outlier_detection)
|
4240
|
+
@params = args[:params] if args.key?(:params)
|
4171
4241
|
@port = args[:port] if args.key?(:port)
|
4172
4242
|
@port_name = args[:port_name] if args.key?(:port_name)
|
4173
4243
|
@protocol = args[:protocol] if args.key?(:protocol)
|
@@ -4595,7 +4665,7 @@ module Google
|
|
4595
4665
|
alias_method :dry_run?, :dry_run
|
4596
4666
|
|
4597
4667
|
# Name of a custom utilization signal. The name must be 1-64 characters long and
|
4598
|
-
# match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means the
|
4668
|
+
# match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means that the
|
4599
4669
|
# first character must be a lowercase letter, and all following characters must
|
4600
4670
|
# be a dash, period, underscore, lowercase letter, or digit, except the last
|
4601
4671
|
# character, which cannot be a dash, period, or underscore. For usage guidelines,
|
@@ -5384,6 +5454,32 @@ module Google
|
|
5384
5454
|
end
|
5385
5455
|
end
|
5386
5456
|
|
5457
|
+
# Additional Backend Service parameters.
|
5458
|
+
class BackendServiceParams
|
5459
|
+
include Google::Apis::Core::Hashable
|
5460
|
+
|
5461
|
+
# Tag keys/values directly bound to this resource. Tag keys and values have the
|
5462
|
+
# same definition as resource manager tags. The field is allowed for INSERT only.
|
5463
|
+
# The keys/values to set on the resource should be specified in either ID ` : `
|
5464
|
+
# or Namespaced format ` : `. For example the following are valid inputs: * `"
|
5465
|
+
# tagKeys/333" : "tagValues/444", "tagKeys/123" : "tagValues/456"` * `"123/
|
5466
|
+
# environment" : "production", "345/abc" : "xyz"` Note: * Invalid combinations
|
5467
|
+
# of ID & namespaced format is not supported. For instance: `"123/environment" :
|
5468
|
+
# "tagValues/444"` is invalid.
|
5469
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
5470
|
+
# @return [Hash<String,String>]
|
5471
|
+
attr_accessor :resource_manager_tags
|
5472
|
+
|
5473
|
+
def initialize(**args)
|
5474
|
+
update!(**args)
|
5475
|
+
end
|
5476
|
+
|
5477
|
+
# Update properties of this object
|
5478
|
+
def update!(**args)
|
5479
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
5480
|
+
end
|
5481
|
+
end
|
5482
|
+
|
5387
5483
|
#
|
5388
5484
|
class BackendServiceReference
|
5389
5485
|
include Google::Apis::Core::Hashable
|
@@ -11432,7 +11528,8 @@ module Google
|
|
11432
11528
|
# allowed to inject packets into the consumer's network. If set to true, the
|
11433
11529
|
# target service attachment must have tunneling enabled and TunnelingConfig.
|
11434
11530
|
# RoutingMode set to PACKET_INJECTION Non-PSC forwarding rules should not use
|
11435
|
-
# this field.
|
11531
|
+
# this field. This field was never released to any customers and is deprecated
|
11532
|
+
# and will be removed in the future.
|
11436
11533
|
# Corresponds to the JSON property `allowPscPacketInjection`
|
11437
11534
|
# @return [Boolean]
|
11438
11535
|
attr_accessor :allow_psc_packet_injection
|
@@ -28347,6 +28444,12 @@ module Google
|
|
28347
28444
|
# @return [Google::Apis::ComputeBeta::ManagedInstancePropertiesFromFlexibilityPolicy]
|
28348
28445
|
attr_accessor :properties_from_flexibility_policy
|
28349
28446
|
|
28447
|
+
# [Output Only] Information about the termination timestamp of the instance, if
|
28448
|
+
# applicable.
|
28449
|
+
# Corresponds to the JSON property `scheduling`
|
28450
|
+
# @return [Google::Apis::ComputeBeta::ManagedInstanceScheduling]
|
28451
|
+
attr_accessor :scheduling
|
28452
|
+
|
28350
28453
|
# [Output Only] The eventual status of the instance. The instance group manager
|
28351
28454
|
# will not be identified as stable till each managed instance reaches its
|
28352
28455
|
# targetStatus.
|
@@ -28376,6 +28479,7 @@ module Google
|
|
28376
28479
|
@preserved_state_from_config = args[:preserved_state_from_config] if args.key?(:preserved_state_from_config)
|
28377
28480
|
@preserved_state_from_policy = args[:preserved_state_from_policy] if args.key?(:preserved_state_from_policy)
|
28378
28481
|
@properties_from_flexibility_policy = args[:properties_from_flexibility_policy] if args.key?(:properties_from_flexibility_policy)
|
28482
|
+
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
28379
28483
|
@target_status = args[:target_status] if args.key?(:target_status)
|
28380
28484
|
@version = args[:version] if args.key?(:version)
|
28381
28485
|
end
|
@@ -28581,6 +28685,26 @@ module Google
|
|
28581
28685
|
end
|
28582
28686
|
end
|
28583
28687
|
|
28688
|
+
#
|
28689
|
+
class ManagedInstanceScheduling
|
28690
|
+
include Google::Apis::Core::Hashable
|
28691
|
+
|
28692
|
+
# [Output Only] The timestamp at which the managed instance will be terminated.
|
28693
|
+
# This is in RFC3339 text format.
|
28694
|
+
# Corresponds to the JSON property `terminationTimestamp`
|
28695
|
+
# @return [String]
|
28696
|
+
attr_accessor :termination_timestamp
|
28697
|
+
|
28698
|
+
def initialize(**args)
|
28699
|
+
update!(**args)
|
28700
|
+
end
|
28701
|
+
|
28702
|
+
# Update properties of this object
|
28703
|
+
def update!(**args)
|
28704
|
+
@termination_timestamp = args[:termination_timestamp] if args.key?(:termination_timestamp)
|
28705
|
+
end
|
28706
|
+
end
|
28707
|
+
|
28584
28708
|
#
|
28585
28709
|
class ManagedInstanceVersion
|
28586
28710
|
include Google::Apis::Core::Hashable
|
@@ -28800,6 +28924,11 @@ module Google
|
|
28800
28924
|
# @return [String]
|
28801
28925
|
attr_accessor :self_link
|
28802
28926
|
|
28927
|
+
#
|
28928
|
+
# Corresponds to the JSON property `status`
|
28929
|
+
# @return [Google::Apis::ComputeBeta::MultiMigStatus]
|
28930
|
+
attr_accessor :status
|
28931
|
+
|
28803
28932
|
def initialize(**args)
|
28804
28933
|
update!(**args)
|
28805
28934
|
end
|
@@ -28814,6 +28943,7 @@ module Google
|
|
28814
28943
|
@region = args[:region] if args.key?(:region)
|
28815
28944
|
@resource_policies = args[:resource_policies] if args.key?(:resource_policies)
|
28816
28945
|
@self_link = args[:self_link] if args.key?(:self_link)
|
28946
|
+
@status = args[:status] if args.key?(:status)
|
28817
28947
|
end
|
28818
28948
|
end
|
28819
28949
|
|
@@ -28843,13 +28973,194 @@ module Google
|
|
28843
28973
|
end
|
28844
28974
|
|
28845
28975
|
#
|
28846
|
-
class
|
28976
|
+
class MultiMigStatus
|
28847
28977
|
include Google::Apis::Core::Hashable
|
28848
28978
|
|
28849
|
-
#
|
28850
|
-
#
|
28979
|
+
# [Output Only] The accelerator topology applied to this multi-MIG. Currently
|
28980
|
+
# only one accelerator topology is supported.
|
28981
|
+
# Corresponds to the JSON property `appliedAcceleratorTopologies`
|
28982
|
+
# @return [Array<Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopology>]
|
28983
|
+
attr_accessor :applied_accelerator_topologies
|
28984
|
+
|
28985
|
+
def initialize(**args)
|
28986
|
+
update!(**args)
|
28987
|
+
end
|
28988
|
+
|
28989
|
+
# Update properties of this object
|
28990
|
+
def update!(**args)
|
28991
|
+
@applied_accelerator_topologies = args[:applied_accelerator_topologies] if args.key?(:applied_accelerator_topologies)
|
28992
|
+
end
|
28993
|
+
end
|
28994
|
+
|
28995
|
+
#
|
28996
|
+
class MultiMigStatusAcceleratorTopology
|
28997
|
+
include Google::Apis::Core::Hashable
|
28998
|
+
|
28999
|
+
# [Output Only] Topology in the format of: "16x16", "4x4x4", etc. The value is
|
29000
|
+
# the same as configured in the WorkloadPolicy.
|
29001
|
+
# Corresponds to the JSON property `acceleratorTopology`
|
28851
29002
|
# @return [String]
|
28852
|
-
attr_accessor :
|
29003
|
+
attr_accessor :accelerator_topology
|
29004
|
+
|
29005
|
+
# [Output Only] The state of the accelerator topology.
|
29006
|
+
# Corresponds to the JSON property `acceleratorTopologyState`
|
29007
|
+
# @return [String]
|
29008
|
+
attr_accessor :accelerator_topology_state
|
29009
|
+
|
29010
|
+
# [Output Only] The result of the latest accelerator topology state check.
|
29011
|
+
# Corresponds to the JSON property `acceleratorTopologyStateLastCheck`
|
29012
|
+
# @return [Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck]
|
29013
|
+
attr_accessor :accelerator_topology_state_last_check
|
29014
|
+
|
29015
|
+
def initialize(**args)
|
29016
|
+
update!(**args)
|
29017
|
+
end
|
29018
|
+
|
29019
|
+
# Update properties of this object
|
29020
|
+
def update!(**args)
|
29021
|
+
@accelerator_topology = args[:accelerator_topology] if args.key?(:accelerator_topology)
|
29022
|
+
@accelerator_topology_state = args[:accelerator_topology_state] if args.key?(:accelerator_topology_state)
|
29023
|
+
@accelerator_topology_state_last_check = args[:accelerator_topology_state_last_check] if args.key?(:accelerator_topology_state_last_check)
|
29024
|
+
end
|
29025
|
+
end
|
29026
|
+
|
29027
|
+
#
|
29028
|
+
class MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck
|
29029
|
+
include Google::Apis::Core::Hashable
|
29030
|
+
|
29031
|
+
# [Output Only] Encountered errors on the last state check.
|
29032
|
+
# Corresponds to the JSON property `error`
|
29033
|
+
# @return [Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error]
|
29034
|
+
attr_accessor :error
|
29035
|
+
|
29036
|
+
# [Output Only] Timestamp is shown only if there is an error. The field has //
|
29037
|
+
# RFC3339 // text format.
|
29038
|
+
# Corresponds to the JSON property `timestamp`
|
29039
|
+
# @return [String]
|
29040
|
+
attr_accessor :timestamp
|
29041
|
+
|
29042
|
+
def initialize(**args)
|
29043
|
+
update!(**args)
|
29044
|
+
end
|
29045
|
+
|
29046
|
+
# Update properties of this object
|
29047
|
+
def update!(**args)
|
29048
|
+
@error = args[:error] if args.key?(:error)
|
29049
|
+
@timestamp = args[:timestamp] if args.key?(:timestamp)
|
29050
|
+
end
|
29051
|
+
|
29052
|
+
# [Output Only] Encountered errors on the last state check.
|
29053
|
+
class Error
|
29054
|
+
include Google::Apis::Core::Hashable
|
29055
|
+
|
29056
|
+
# [Output Only] The array of errors encountered while processing this operation.
|
29057
|
+
# Corresponds to the JSON property `errors`
|
29058
|
+
# @return [Array<Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error::Error>]
|
29059
|
+
attr_accessor :errors
|
29060
|
+
|
29061
|
+
def initialize(**args)
|
29062
|
+
update!(**args)
|
29063
|
+
end
|
29064
|
+
|
29065
|
+
# Update properties of this object
|
29066
|
+
def update!(**args)
|
29067
|
+
@errors = args[:errors] if args.key?(:errors)
|
29068
|
+
end
|
29069
|
+
|
29070
|
+
#
|
29071
|
+
class Error
|
29072
|
+
include Google::Apis::Core::Hashable
|
29073
|
+
|
29074
|
+
# [Output Only] The error type identifier for this error.
|
29075
|
+
# Corresponds to the JSON property `code`
|
29076
|
+
# @return [String]
|
29077
|
+
attr_accessor :code
|
29078
|
+
|
29079
|
+
# [Output Only] An optional list of messages that contain the error details.
|
29080
|
+
# There is a set of defined message types to use for providing details.The
|
29081
|
+
# syntax depends on the error code. For example, QuotaExceededInfo will have
|
29082
|
+
# details when the error code is QUOTA_EXCEEDED.
|
29083
|
+
# Corresponds to the JSON property `errorDetails`
|
29084
|
+
# @return [Array<Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error::Error::ErrorDetail>]
|
29085
|
+
attr_accessor :error_details
|
29086
|
+
|
29087
|
+
# [Output Only] Indicates the field in the request that caused the error. This
|
29088
|
+
# property is optional.
|
29089
|
+
# Corresponds to the JSON property `location`
|
29090
|
+
# @return [String]
|
29091
|
+
attr_accessor :location
|
29092
|
+
|
29093
|
+
# [Output Only] An optional, human-readable error message.
|
29094
|
+
# Corresponds to the JSON property `message`
|
29095
|
+
# @return [String]
|
29096
|
+
attr_accessor :message
|
29097
|
+
|
29098
|
+
def initialize(**args)
|
29099
|
+
update!(**args)
|
29100
|
+
end
|
29101
|
+
|
29102
|
+
# Update properties of this object
|
29103
|
+
def update!(**args)
|
29104
|
+
@code = args[:code] if args.key?(:code)
|
29105
|
+
@error_details = args[:error_details] if args.key?(:error_details)
|
29106
|
+
@location = args[:location] if args.key?(:location)
|
29107
|
+
@message = args[:message] if args.key?(:message)
|
29108
|
+
end
|
29109
|
+
|
29110
|
+
#
|
29111
|
+
class ErrorDetail
|
29112
|
+
include Google::Apis::Core::Hashable
|
29113
|
+
|
29114
|
+
# Describes the cause of the error with structured details. Example of an error
|
29115
|
+
# when contacting the "pubsub.googleapis.com" API when it is not enabled: ` "
|
29116
|
+
# reason": "API_DISABLED" "domain": "googleapis.com" "metadata": ` "resource": "
|
29117
|
+
# projects/123", "service": "pubsub.googleapis.com" ` ` This response indicates
|
29118
|
+
# that the pubsub.googleapis.com API is not enabled. Example of an error that is
|
29119
|
+
# returned when attempting to create a Spanner instance in a region that is out
|
29120
|
+
# of stock: ` "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata"
|
29121
|
+
# : ` "availableRegions": "us-central1,us-east2" ` `
|
29122
|
+
# Corresponds to the JSON property `errorInfo`
|
29123
|
+
# @return [Google::Apis::ComputeBeta::ErrorInfo]
|
29124
|
+
attr_accessor :error_info
|
29125
|
+
|
29126
|
+
# Provides links to documentation or for performing an out of band action. For
|
29127
|
+
# example, if a quota check failed with an error indicating the calling project
|
29128
|
+
# hasn't enabled the accessed service, this can contain a URL pointing directly
|
29129
|
+
# to the right place in the developer console to flip the bit.
|
29130
|
+
# Corresponds to the JSON property `help`
|
29131
|
+
# @return [Google::Apis::ComputeBeta::Help]
|
29132
|
+
attr_accessor :help
|
29133
|
+
|
29134
|
+
# Provides a localized error message that is safe to return to the user which
|
29135
|
+
# can be attached to an RPC error.
|
29136
|
+
# Corresponds to the JSON property `localizedMessage`
|
29137
|
+
# @return [Google::Apis::ComputeBeta::LocalizedMessage]
|
29138
|
+
attr_accessor :localized_message
|
29139
|
+
|
29140
|
+
# Additional details for quota exceeded error for resource quota.
|
29141
|
+
# Corresponds to the JSON property `quotaInfo`
|
29142
|
+
# @return [Google::Apis::ComputeBeta::QuotaExceededInfo]
|
29143
|
+
attr_accessor :quota_info
|
29144
|
+
|
29145
|
+
def initialize(**args)
|
29146
|
+
update!(**args)
|
29147
|
+
end
|
29148
|
+
|
29149
|
+
# Update properties of this object
|
29150
|
+
def update!(**args)
|
29151
|
+
@error_info = args[:error_info] if args.key?(:error_info)
|
29152
|
+
@help = args[:help] if args.key?(:help)
|
29153
|
+
@localized_message = args[:localized_message] if args.key?(:localized_message)
|
29154
|
+
@quota_info = args[:quota_info] if args.key?(:quota_info)
|
29155
|
+
end
|
29156
|
+
end
|
29157
|
+
end
|
29158
|
+
end
|
29159
|
+
end
|
29160
|
+
|
29161
|
+
#
|
29162
|
+
class MultiMigsList
|
29163
|
+
include Google::Apis::Core::Hashable
|
28853
29164
|
|
28854
29165
|
# Unique identifier for the resource; defined by the server.
|
28855
29166
|
# Corresponds to the JSON property `id`
|
@@ -28879,11 +29190,6 @@ module Google
|
|
28879
29190
|
# @return [String]
|
28880
29191
|
attr_accessor :self_link
|
28881
29192
|
|
28882
|
-
# [Output only] Unreachable resources.
|
28883
|
-
# Corresponds to the JSON property `unreachables`
|
28884
|
-
# @return [Array<String>]
|
28885
|
-
attr_accessor :unreachables
|
28886
|
-
|
28887
29193
|
# Informational warning message.
|
28888
29194
|
# Corresponds to the JSON property `warning`
|
28889
29195
|
# @return [Google::Apis::ComputeBeta::MultiMigsList::Warning]
|
@@ -28895,13 +29201,11 @@ module Google
|
|
28895
29201
|
|
28896
29202
|
# Update properties of this object
|
28897
29203
|
def update!(**args)
|
28898
|
-
@etag = args[:etag] if args.key?(:etag)
|
28899
29204
|
@id = args[:id] if args.key?(:id)
|
28900
29205
|
@items = args[:items] if args.key?(:items)
|
28901
29206
|
@kind = args[:kind] if args.key?(:kind)
|
28902
29207
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
28903
29208
|
@self_link = args[:self_link] if args.key?(:self_link)
|
28904
|
-
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
28905
29209
|
@warning = args[:warning] if args.key?(:warning)
|
28906
29210
|
end
|
28907
29211
|
|
@@ -36744,16 +37048,11 @@ module Google
|
|
36744
37048
|
class PreviewFeatureRolloutOperation
|
36745
37049
|
include Google::Apis::Core::Hashable
|
36746
37050
|
|
36747
|
-
#
|
37051
|
+
# Represents the input for the rollout operation.
|
36748
37052
|
# Corresponds to the JSON property `rolloutInput`
|
36749
37053
|
# @return [Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutInput]
|
36750
37054
|
attr_accessor :rollout_input
|
36751
37055
|
|
36752
|
-
#
|
36753
|
-
# Corresponds to the JSON property `rolloutStatus`
|
36754
|
-
# @return [Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutStatus]
|
36755
|
-
attr_accessor :rollout_status
|
36756
|
-
|
36757
37056
|
def initialize(**args)
|
36758
37057
|
update!(**args)
|
36759
37058
|
end
|
@@ -36761,11 +37060,10 @@ module Google
|
|
36761
37060
|
# Update properties of this object
|
36762
37061
|
def update!(**args)
|
36763
37062
|
@rollout_input = args[:rollout_input] if args.key?(:rollout_input)
|
36764
|
-
@rollout_status = args[:rollout_status] if args.key?(:rollout_status)
|
36765
37063
|
end
|
36766
37064
|
end
|
36767
37065
|
|
36768
|
-
#
|
37066
|
+
# Represents the input for the rollout operation.
|
36769
37067
|
class PreviewFeatureRolloutOperationRolloutInput
|
36770
37068
|
include Google::Apis::Core::Hashable
|
36771
37069
|
|
@@ -36781,13 +37079,6 @@ module Google
|
|
36781
37079
|
# @return [String]
|
36782
37080
|
attr_accessor :predefined_rollout_plan
|
36783
37081
|
|
36784
|
-
# The UUID of the retry action. Only needed if this is a retry for an existing
|
36785
|
-
# rollout. This can be used after the user canceled a rollout and want to retry
|
36786
|
-
# it with no changes.
|
36787
|
-
# Corresponds to the JSON property `retryUuid`
|
36788
|
-
# @return [String]
|
36789
|
-
attr_accessor :retry_uuid
|
36790
|
-
|
36791
37082
|
def initialize(**args)
|
36792
37083
|
update!(**args)
|
36793
37084
|
end
|
@@ -36796,68 +37087,6 @@ module Google
|
|
36796
37087
|
def update!(**args)
|
36797
37088
|
@name = args[:name] if args.key?(:name)
|
36798
37089
|
@predefined_rollout_plan = args[:predefined_rollout_plan] if args.key?(:predefined_rollout_plan)
|
36799
|
-
@retry_uuid = args[:retry_uuid] if args.key?(:retry_uuid)
|
36800
|
-
end
|
36801
|
-
end
|
36802
|
-
|
36803
|
-
#
|
36804
|
-
class PreviewFeatureRolloutOperationRolloutStatus
|
36805
|
-
include Google::Apis::Core::Hashable
|
36806
|
-
|
36807
|
-
# Output only. The ongoing rollout resources. There can be multiple ongoing
|
36808
|
-
# rollouts for a resource.
|
36809
|
-
# Corresponds to the JSON property `ongoingRollouts`
|
36810
|
-
# @return [Array<Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutStatusRolloutMetadata>]
|
36811
|
-
attr_accessor :ongoing_rollouts
|
36812
|
-
|
36813
|
-
# Output only. The last completed rollout resource. This field will not be
|
36814
|
-
# populated until the first rollout is completed.
|
36815
|
-
# Corresponds to the JSON property `previousRollout`
|
36816
|
-
# @return [Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutStatusRolloutMetadata]
|
36817
|
-
attr_accessor :previous_rollout
|
36818
|
-
|
36819
|
-
def initialize(**args)
|
36820
|
-
update!(**args)
|
36821
|
-
end
|
36822
|
-
|
36823
|
-
# Update properties of this object
|
36824
|
-
def update!(**args)
|
36825
|
-
@ongoing_rollouts = args[:ongoing_rollouts] if args.key?(:ongoing_rollouts)
|
36826
|
-
@previous_rollout = args[:previous_rollout] if args.key?(:previous_rollout)
|
36827
|
-
end
|
36828
|
-
end
|
36829
|
-
|
36830
|
-
#
|
36831
|
-
class PreviewFeatureRolloutOperationRolloutStatusRolloutMetadata
|
36832
|
-
include Google::Apis::Core::Hashable
|
36833
|
-
|
36834
|
-
# The name of the rollout Ex. organizations//locations/global/rollouts/ Ex.
|
36835
|
-
# folders//locations/global/rollouts/ Ex. projects//locations/global/rollouts/.
|
36836
|
-
# Corresponds to the JSON property `rollout`
|
36837
|
-
# @return [String]
|
36838
|
-
attr_accessor :rollout
|
36839
|
-
|
36840
|
-
# The name of the rollout plan Ex. organizations//locations/global/rolloutPlans/
|
36841
|
-
# Ex. folders//locations/global/rolloutPlans/ Ex. projects//locations/global/
|
36842
|
-
# rolloutPlans/.
|
36843
|
-
# Corresponds to the JSON property `rolloutPlan`
|
36844
|
-
# @return [String]
|
36845
|
-
attr_accessor :rollout_plan
|
36846
|
-
|
36847
|
-
# [Output Only] The status of the feature.
|
36848
|
-
# Corresponds to the JSON property `status`
|
36849
|
-
# @return [Google::Apis::ComputeBeta::PreviewFeatureStatus]
|
36850
|
-
attr_accessor :status
|
36851
|
-
|
36852
|
-
def initialize(**args)
|
36853
|
-
update!(**args)
|
36854
|
-
end
|
36855
|
-
|
36856
|
-
# Update properties of this object
|
36857
|
-
def update!(**args)
|
36858
|
-
@rollout = args[:rollout] if args.key?(:rollout)
|
36859
|
-
@rollout_plan = args[:rollout_plan] if args.key?(:rollout_plan)
|
36860
|
-
@status = args[:status] if args.key?(:status)
|
36861
37090
|
end
|
36862
37091
|
end
|
36863
37092
|
|
@@ -36870,7 +37099,12 @@ module Google
|
|
36870
37099
|
# @return [String]
|
36871
37100
|
attr_accessor :description
|
36872
37101
|
|
36873
|
-
#
|
37102
|
+
# [Output Only] Link to the public documentation for the feature.
|
37103
|
+
# Corresponds to the JSON property `helpLink`
|
37104
|
+
# @return [String]
|
37105
|
+
attr_accessor :help_link
|
37106
|
+
|
37107
|
+
# [Output Only] The release status of the feature.
|
36874
37108
|
# Corresponds to the JSON property `releaseStatus`
|
36875
37109
|
# @return [Google::Apis::ComputeBeta::PreviewFeatureStatusReleaseStatus]
|
36876
37110
|
attr_accessor :release_status
|
@@ -36882,11 +37116,12 @@ module Google
|
|
36882
37116
|
# Update properties of this object
|
36883
37117
|
def update!(**args)
|
36884
37118
|
@description = args[:description] if args.key?(:description)
|
37119
|
+
@help_link = args[:help_link] if args.key?(:help_link)
|
36885
37120
|
@release_status = args[:release_status] if args.key?(:release_status)
|
36886
37121
|
end
|
36887
37122
|
end
|
36888
37123
|
|
36889
|
-
#
|
37124
|
+
# [Output Only] The release status of the feature.
|
36890
37125
|
class PreviewFeatureStatusReleaseStatus
|
36891
37126
|
include Google::Apis::Core::Hashable
|
36892
37127
|
|
@@ -40208,6 +40443,12 @@ module Google
|
|
40208
40443
|
class Reservation
|
40209
40444
|
include Google::Apis::Core::Hashable
|
40210
40445
|
|
40446
|
+
# Advance control for cluster management, applicable only to DENSE deployment
|
40447
|
+
# type reservations.
|
40448
|
+
# Corresponds to the JSON property `advancedDeploymentControl`
|
40449
|
+
# @return [Google::Apis::ComputeBeta::ReservationAdvancedDeploymentControl]
|
40450
|
+
attr_accessor :advanced_deployment_control
|
40451
|
+
|
40211
40452
|
# This reservation type is specified by total resource amounts (e.g. total count
|
40212
40453
|
# of CPUs) and can account for multiple instance SKUs. In other words, one can
|
40213
40454
|
# create instances of varying shapes against this reservation.
|
@@ -40287,6 +40528,13 @@ module Google
|
|
40287
40528
|
# @return [String]
|
40288
40529
|
attr_accessor :name
|
40289
40530
|
|
40531
|
+
# Protection tier for the workload which specifies the workload expectations in
|
40532
|
+
# the event of infrastructure failures at data center (e.g. power and/or cooling
|
40533
|
+
# failures).
|
40534
|
+
# Corresponds to the JSON property `protectionTier`
|
40535
|
+
# @return [String]
|
40536
|
+
attr_accessor :protection_tier
|
40537
|
+
|
40290
40538
|
# [Output only] Indicates the reservation mode of the reservation.
|
40291
40539
|
# Corresponds to the JSON property `reservationMode`
|
40292
40540
|
# @return [String]
|
@@ -40364,6 +40612,7 @@ module Google
|
|
40364
40612
|
|
40365
40613
|
# Update properties of this object
|
40366
40614
|
def update!(**args)
|
40615
|
+
@advanced_deployment_control = args[:advanced_deployment_control] if args.key?(:advanced_deployment_control)
|
40367
40616
|
@aggregate_reservation = args[:aggregate_reservation] if args.key?(:aggregate_reservation)
|
40368
40617
|
@commitment = args[:commitment] if args.key?(:commitment)
|
40369
40618
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
@@ -40376,6 +40625,7 @@ module Google
|
|
40376
40625
|
@kind = args[:kind] if args.key?(:kind)
|
40377
40626
|
@linked_commitments = args[:linked_commitments] if args.key?(:linked_commitments)
|
40378
40627
|
@name = args[:name] if args.key?(:name)
|
40628
|
+
@protection_tier = args[:protection_tier] if args.key?(:protection_tier)
|
40379
40629
|
@reservation_mode = args[:reservation_mode] if args.key?(:reservation_mode)
|
40380
40630
|
@reservation_sharing_policy = args[:reservation_sharing_policy] if args.key?(:reservation_sharing_policy)
|
40381
40631
|
@resource_policies = args[:resource_policies] if args.key?(:resource_policies)
|
@@ -40391,6 +40641,26 @@ module Google
|
|
40391
40641
|
end
|
40392
40642
|
end
|
40393
40643
|
|
40644
|
+
# Advance control for cluster management, applicable only to DENSE deployment
|
40645
|
+
# type reservations.
|
40646
|
+
class ReservationAdvancedDeploymentControl
|
40647
|
+
include Google::Apis::Core::Hashable
|
40648
|
+
|
40649
|
+
# Indicates chosen reservation operational mode for the reservation.
|
40650
|
+
# Corresponds to the JSON property `reservationOperationalMode`
|
40651
|
+
# @return [String]
|
40652
|
+
attr_accessor :reservation_operational_mode
|
40653
|
+
|
40654
|
+
def initialize(**args)
|
40655
|
+
update!(**args)
|
40656
|
+
end
|
40657
|
+
|
40658
|
+
# Update properties of this object
|
40659
|
+
def update!(**args)
|
40660
|
+
@reservation_operational_mode = args[:reservation_operational_mode] if args.key?(:reservation_operational_mode)
|
40661
|
+
end
|
40662
|
+
end
|
40663
|
+
|
40394
40664
|
# Specifies the reservations that this instance can consume from.
|
40395
40665
|
class ReservationAffinity
|
40396
40666
|
include Google::Apis::Core::Hashable
|
@@ -42466,17 +42736,18 @@ module Google
|
|
42466
42736
|
class ResourcePolicyWorkloadPolicy
|
42467
42737
|
include Google::Apis::Core::Hashable
|
42468
42738
|
|
42469
|
-
#
|
42739
|
+
# Specifies the topology required to create a partition for VMs that have
|
42740
|
+
# interconnected GPUs.
|
42470
42741
|
# Corresponds to the JSON property `acceleratorTopology`
|
42471
42742
|
# @return [String]
|
42472
42743
|
attr_accessor :accelerator_topology
|
42473
42744
|
|
42474
|
-
#
|
42745
|
+
# Specifies the maximum distance between instances.
|
42475
42746
|
# Corresponds to the JSON property `maxTopologyDistance`
|
42476
42747
|
# @return [String]
|
42477
42748
|
attr_accessor :max_topology_distance
|
42478
42749
|
|
42479
|
-
#
|
42750
|
+
# Specifies the intent of the instance placement in the MIG.
|
42480
42751
|
# Corresponds to the JSON property `type`
|
42481
42752
|
# @return [String]
|
42482
42753
|
attr_accessor :type
|
@@ -47521,7 +47792,9 @@ module Google
|
|
47521
47792
|
# @return [String]
|
47522
47793
|
attr_accessor :target
|
47523
47794
|
|
47524
|
-
# Type of the redirect action.
|
47795
|
+
# Type of the redirect action. Possible values are: - GOOGLE_RECAPTCHA: redirect
|
47796
|
+
# to reCAPTCHA for manual challenge assessment. - EXTERNAL_302: redirect to a
|
47797
|
+
# different URL via a 302 response.
|
47525
47798
|
# Corresponds to the JSON property `type`
|
47526
47799
|
# @return [String]
|
47527
47800
|
attr_accessor :type
|
@@ -47764,7 +48037,8 @@ module Google
|
|
47764
48037
|
# service attachment. Each project or network has a connection limit. A given
|
47765
48038
|
# service attachment can manage connections at either the project or network
|
47766
48039
|
# level. Therefore, both the accept and reject lists for a given service
|
47767
|
-
# attachment must contain either only projects or only networks
|
48040
|
+
# attachment must contain either only projects or only networks or only
|
48041
|
+
# endpoints.
|
47768
48042
|
# Corresponds to the JSON property `consumerAcceptLists`
|
47769
48043
|
# @return [Array<Google::Apis::ComputeBeta::ServiceAttachmentConsumerProjectLimit>]
|
47770
48044
|
attr_accessor :consumer_accept_lists
|
@@ -47828,6 +48102,11 @@ module Google
|
|
47828
48102
|
# @return [String]
|
47829
48103
|
attr_accessor :kind
|
47830
48104
|
|
48105
|
+
# Metadata of the service attachment.
|
48106
|
+
# Corresponds to the JSON property `metadata`
|
48107
|
+
# @return [Hash<String,String>]
|
48108
|
+
attr_accessor :metadata
|
48109
|
+
|
47831
48110
|
# Name of the resource. Provided by the client when the resource is created. The
|
47832
48111
|
# name must be 1-63 characters long, and comply with RFC1035. Specifically, the
|
47833
48112
|
# name must be 1-63 characters long and match the regular expression `[a-z]([-a-
|
@@ -47925,6 +48204,7 @@ module Google
|
|
47925
48204
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
47926
48205
|
@id = args[:id] if args.key?(:id)
|
47927
48206
|
@kind = args[:kind] if args.key?(:kind)
|
48207
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
47928
48208
|
@name = args[:name] if args.key?(:name)
|
47929
48209
|
@nat_subnets = args[:nat_subnets] if args.key?(:nat_subnets)
|
47930
48210
|
@producer_forwarding_rule = args[:producer_forwarding_rule] if args.key?(:producer_forwarding_rule)
|
@@ -48109,7 +48389,8 @@ module Google
|
|
48109
48389
|
class ServiceAttachmentConsumerProjectLimit
|
48110
48390
|
include Google::Apis::Core::Hashable
|
48111
48391
|
|
48112
|
-
# The value of the limit to set.
|
48392
|
+
# The value of the limit to set. For endpoint_url, the limit should be no more
|
48393
|
+
# than 1.
|
48113
48394
|
# Corresponds to the JSON property `connectionLimit`
|
48114
48395
|
# @return [Fixnum]
|
48115
48396
|
attr_accessor :connection_limit
|
@@ -50968,7 +51249,7 @@ module Google
|
|
50968
51249
|
# @return [String]
|
50969
51250
|
attr_accessor :performance_provisioning_type
|
50970
51251
|
|
50971
|
-
# Size
|
51252
|
+
# Size of the storage pool in GiB. For more information about the size limits,
|
50972
51253
|
# see https://cloud.google.com/compute/docs/disks/storage-pools.
|
50973
51254
|
# Corresponds to the JSON property `poolProvisionedCapacityGb`
|
50974
51255
|
# @return [Fixnum]
|
@@ -50980,8 +51261,8 @@ module Google
|
|
50980
51261
|
# @return [Fixnum]
|
50981
51262
|
attr_accessor :pool_provisioned_iops
|
50982
51263
|
|
50983
|
-
# Provisioned throughput of the storage pool. Only relevant if the
|
50984
|
-
# type is hyperdisk-balanced or hyperdisk-throughput.
|
51264
|
+
# Provisioned throughput of the storage pool in MiB/s. Only relevant if the
|
51265
|
+
# storage pool type is hyperdisk-balanced or hyperdisk-throughput.
|
50985
51266
|
# Corresponds to the JSON property `poolProvisionedThroughput`
|
50986
51267
|
# @return [Fixnum]
|
50987
51268
|
attr_accessor :pool_provisioned_throughput
|
@@ -51539,7 +51820,7 @@ module Google
|
|
51539
51820
|
# @return [String]
|
51540
51821
|
attr_accessor :last_resize_timestamp
|
51541
51822
|
|
51542
|
-
# [Output Only] Maximum allowed aggregate disk size in
|
51823
|
+
# [Output Only] Maximum allowed aggregate disk size in GiB.
|
51543
51824
|
# Corresponds to the JSON property `maxTotalProvisionedDiskCapacityGb`
|
51544
51825
|
# @return [Fixnum]
|
51545
51826
|
attr_accessor :max_total_provisioned_disk_capacity_gb
|
@@ -51558,7 +51839,7 @@ module Google
|
|
51558
51839
|
# @return [Fixnum]
|
51559
51840
|
attr_accessor :pool_used_iops
|
51560
51841
|
|
51561
|
-
# [Output Only] Sum of all the disks' provisioned throughput in
|
51842
|
+
# [Output Only] Sum of all the disks' provisioned throughput in MiB/s.
|
51562
51843
|
# Corresponds to the JSON property `poolUsedThroughput`
|
51563
51844
|
# @return [Fixnum]
|
51564
51845
|
attr_accessor :pool_used_throughput
|
@@ -51568,8 +51849,8 @@ module Google
|
|
51568
51849
|
# @return [Fixnum]
|
51569
51850
|
attr_accessor :pool_user_written_bytes
|
51570
51851
|
|
51571
|
-
# [Output Only] Sum of all the
|
51572
|
-
# pool. A disk's provisioned capacity is the same as its total capacity.
|
51852
|
+
# [Output Only] Sum of all the disks' provisioned capacity (in GiB) in this
|
51853
|
+
# storage pool. A disk's provisioned capacity is the same as its total capacity.
|
51573
51854
|
# Corresponds to the JSON property `totalProvisionedDiskCapacityGb`
|
51574
51855
|
# @return [Fixnum]
|
51575
51856
|
attr_accessor :total_provisioned_disk_capacity_gb
|
@@ -51579,9 +51860,9 @@ module Google
|
|
51579
51860
|
# @return [Fixnum]
|
51580
51861
|
attr_accessor :total_provisioned_disk_iops
|
51581
51862
|
|
51582
|
-
# [Output Only] Sum of all the disks' provisioned throughput in
|
51583
|
-
# amount that is allowed per disk that is not counted towards pool's
|
51584
|
-
# capacity.
|
51863
|
+
# [Output Only] Sum of all the disks' provisioned throughput in MiB/s, minus
|
51864
|
+
# some amount that is allowed per disk that is not counted towards pool's
|
51865
|
+
# throughput capacity.
|
51585
51866
|
# Corresponds to the JSON property `totalProvisionedDiskThroughput`
|
51586
51867
|
# @return [Fixnum]
|
51587
51868
|
attr_accessor :total_provisioned_disk_throughput
|
@@ -52350,6 +52631,11 @@ module Google
|
|
52350
52631
|
# @return [String]
|
52351
52632
|
attr_accessor :reserved_internal_range
|
52352
52633
|
|
52634
|
+
# Configures subnet mask resolution for this subnetwork.
|
52635
|
+
# Corresponds to the JSON property `resolveSubnetMask`
|
52636
|
+
# @return [String]
|
52637
|
+
attr_accessor :resolve_subnet_mask
|
52638
|
+
|
52353
52639
|
# The role of subnetwork. Currently, this field is only used when purpose is set
|
52354
52640
|
# to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY. The value can be set to
|
52355
52641
|
# ACTIVE or BACKUP. An ACTIVE subnetwork is one that is currently being used for
|
@@ -52403,6 +52689,12 @@ module Google
|
|
52403
52689
|
# @return [Array<String>]
|
52404
52690
|
attr_accessor :system_reserved_internal_ipv6_ranges
|
52405
52691
|
|
52692
|
+
# The current IP utilization of all subnetwork ranges. Contains the total number
|
52693
|
+
# of allocated and free IPs in each range.
|
52694
|
+
# Corresponds to the JSON property `utilizationDetails`
|
52695
|
+
# @return [Google::Apis::ComputeBeta::SubnetworkUtilizationDetails]
|
52696
|
+
attr_accessor :utilization_details
|
52697
|
+
|
52406
52698
|
def initialize(**args)
|
52407
52699
|
update!(**args)
|
52408
52700
|
end
|
@@ -52433,6 +52725,7 @@ module Google
|
|
52433
52725
|
@purpose = args[:purpose] if args.key?(:purpose)
|
52434
52726
|
@region = args[:region] if args.key?(:region)
|
52435
52727
|
@reserved_internal_range = args[:reserved_internal_range] if args.key?(:reserved_internal_range)
|
52728
|
+
@resolve_subnet_mask = args[:resolve_subnet_mask] if args.key?(:resolve_subnet_mask)
|
52436
52729
|
@role = args[:role] if args.key?(:role)
|
52437
52730
|
@secondary_ip_ranges = args[:secondary_ip_ranges] if args.key?(:secondary_ip_ranges)
|
52438
52731
|
@self_link = args[:self_link] if args.key?(:self_link)
|
@@ -52440,6 +52733,7 @@ module Google
|
|
52440
52733
|
@state = args[:state] if args.key?(:state)
|
52441
52734
|
@system_reserved_external_ipv6_ranges = args[:system_reserved_external_ipv6_ranges] if args.key?(:system_reserved_external_ipv6_ranges)
|
52442
52735
|
@system_reserved_internal_ipv6_ranges = args[:system_reserved_internal_ipv6_ranges] if args.key?(:system_reserved_internal_ipv6_ranges)
|
52736
|
+
@utilization_details = args[:utilization_details] if args.key?(:utilization_details)
|
52443
52737
|
end
|
52444
52738
|
end
|
52445
52739
|
|
@@ -52814,6 +53108,101 @@ module Google
|
|
52814
53108
|
end
|
52815
53109
|
end
|
52816
53110
|
|
53111
|
+
# The current IP utilization of all subnetwork ranges. Contains the total number
|
53112
|
+
# of allocated and free IPs in each range.
|
53113
|
+
class SubnetworkUtilizationDetails
|
53114
|
+
include Google::Apis::Core::Hashable
|
53115
|
+
|
53116
|
+
# The IPV6 utilization of a single IP range.
|
53117
|
+
# Corresponds to the JSON property `externalIpv6InstanceUtilization`
|
53118
|
+
# @return [Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv6Utilization]
|
53119
|
+
attr_accessor :external_ipv6_instance_utilization
|
53120
|
+
|
53121
|
+
# The IPV6 utilization of a single IP range.
|
53122
|
+
# Corresponds to the JSON property `externalIpv6LbUtilization`
|
53123
|
+
# @return [Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv6Utilization]
|
53124
|
+
attr_accessor :external_ipv6_lb_utilization
|
53125
|
+
|
53126
|
+
# The IPV6 utilization of a single IP range.
|
53127
|
+
# Corresponds to the JSON property `internalIpv6Utilization`
|
53128
|
+
# @return [Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv6Utilization]
|
53129
|
+
attr_accessor :internal_ipv6_utilization
|
53130
|
+
|
53131
|
+
# Utilizations of all IPV4 IP ranges. For primary ranges, the range name will be
|
53132
|
+
# empty.
|
53133
|
+
# Corresponds to the JSON property `ipv4Utilizations`
|
53134
|
+
# @return [Array<Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv4Utilization>]
|
53135
|
+
attr_accessor :ipv4_utilizations
|
53136
|
+
|
53137
|
+
def initialize(**args)
|
53138
|
+
update!(**args)
|
53139
|
+
end
|
53140
|
+
|
53141
|
+
# Update properties of this object
|
53142
|
+
def update!(**args)
|
53143
|
+
@external_ipv6_instance_utilization = args[:external_ipv6_instance_utilization] if args.key?(:external_ipv6_instance_utilization)
|
53144
|
+
@external_ipv6_lb_utilization = args[:external_ipv6_lb_utilization] if args.key?(:external_ipv6_lb_utilization)
|
53145
|
+
@internal_ipv6_utilization = args[:internal_ipv6_utilization] if args.key?(:internal_ipv6_utilization)
|
53146
|
+
@ipv4_utilizations = args[:ipv4_utilizations] if args.key?(:ipv4_utilizations)
|
53147
|
+
end
|
53148
|
+
end
|
53149
|
+
|
53150
|
+
# The IPV4 utilization of a single IP range.
|
53151
|
+
class SubnetworkUtilizationDetailsIpv4Utilization
|
53152
|
+
include Google::Apis::Core::Hashable
|
53153
|
+
|
53154
|
+
# Will be set for secondary range. Empty for primary IPv4 range.
|
53155
|
+
# Corresponds to the JSON property `rangeName`
|
53156
|
+
# @return [String]
|
53157
|
+
attr_accessor :range_name
|
53158
|
+
|
53159
|
+
#
|
53160
|
+
# Corresponds to the JSON property `totalAllocatedIp`
|
53161
|
+
# @return [Fixnum]
|
53162
|
+
attr_accessor :total_allocated_ip
|
53163
|
+
|
53164
|
+
#
|
53165
|
+
# Corresponds to the JSON property `totalFreeIp`
|
53166
|
+
# @return [Fixnum]
|
53167
|
+
attr_accessor :total_free_ip
|
53168
|
+
|
53169
|
+
def initialize(**args)
|
53170
|
+
update!(**args)
|
53171
|
+
end
|
53172
|
+
|
53173
|
+
# Update properties of this object
|
53174
|
+
def update!(**args)
|
53175
|
+
@range_name = args[:range_name] if args.key?(:range_name)
|
53176
|
+
@total_allocated_ip = args[:total_allocated_ip] if args.key?(:total_allocated_ip)
|
53177
|
+
@total_free_ip = args[:total_free_ip] if args.key?(:total_free_ip)
|
53178
|
+
end
|
53179
|
+
end
|
53180
|
+
|
53181
|
+
# The IPV6 utilization of a single IP range.
|
53182
|
+
class SubnetworkUtilizationDetailsIpv6Utilization
|
53183
|
+
include Google::Apis::Core::Hashable
|
53184
|
+
|
53185
|
+
#
|
53186
|
+
# Corresponds to the JSON property `totalAllocatedIp`
|
53187
|
+
# @return [Google::Apis::ComputeBeta::Uint128]
|
53188
|
+
attr_accessor :total_allocated_ip
|
53189
|
+
|
53190
|
+
#
|
53191
|
+
# Corresponds to the JSON property `totalFreeIp`
|
53192
|
+
# @return [Google::Apis::ComputeBeta::Uint128]
|
53193
|
+
attr_accessor :total_free_ip
|
53194
|
+
|
53195
|
+
def initialize(**args)
|
53196
|
+
update!(**args)
|
53197
|
+
end
|
53198
|
+
|
53199
|
+
# Update properties of this object
|
53200
|
+
def update!(**args)
|
53201
|
+
@total_allocated_ip = args[:total_allocated_ip] if args.key?(:total_allocated_ip)
|
53202
|
+
@total_free_ip = args[:total_free_ip] if args.key?(:total_free_ip)
|
53203
|
+
end
|
53204
|
+
end
|
53205
|
+
|
52817
53206
|
#
|
52818
53207
|
class SubnetworksExpandIpCidrRangeRequest
|
52819
53208
|
include Google::Apis::Core::Hashable
|
@@ -54016,10 +54405,10 @@ module Google
|
|
54016
54405
|
# HTTPS Proxy resources: * [Global](/compute/docs/reference/rest/beta/
|
54017
54406
|
# targetHttpsProxies) * [Regional](/compute/docs/reference/rest/beta/
|
54018
54407
|
# regionTargetHttpsProxies) A target HTTPS proxy is a component of Google Cloud
|
54019
|
-
# HTTPS load balancers. *
|
54408
|
+
# HTTPS load balancers. * targetHttpsProxies are used by global external
|
54020
54409
|
# Application Load Balancers, classic Application Load Balancers, cross-region
|
54021
54410
|
# internal Application Load Balancers, and Traffic Director. *
|
54022
|
-
#
|
54411
|
+
# regionTargetHttpsProxies are used by regional internal Application Load
|
54023
54412
|
# Balancers and regional external Application Load Balancers. Forwarding rules
|
54024
54413
|
# reference a target HTTPS proxy, and the target proxy then references a URL map.
|
54025
54414
|
# For more information, read Using Target Proxies and Forwarding rule concepts.
|