google-apis-compute_beta 0.119.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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d93cf0cbd0f453364af40f284028bc8410e76a77e7dfbe302802bd9636d23b36
|
4
|
+
data.tar.gz: 1705e10f0619b36e55d80e929883f5feffa411a3e41196c4478093b7f7aa57e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d88f8db8fa8f577787d432b73c45be6ac1961390b08cf9b9b4c414f33a8c73a4be0348156069411b422ac9b2ddac182de2162b2e8a5cc9199c15a36eaa01034
|
7
|
+
data.tar.gz: e524ef835fa30e02190673f81060d76fbf31fdc2327dffcc5758c90ec152929ce29f739dd13e05fe013c7e7400272d805a63bc8d78be680e638025eaa7431850
|
data/CHANGELOG.md
CHANGED
@@ -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
|
|
@@ -3980,7 +4007,7 @@ module Google
|
|
3980
4007
|
# was redirected to the load balancer. - MAGLEV: used as a drop in replacement
|
3981
4008
|
# for the ring hash load balancer. Maglev is not as stable as ring hash but has
|
3982
4009
|
# faster table lookup build times and host selection times. For more information
|
3983
|
-
# about Maglev, see
|
4010
|
+
# about Maglev, see Maglev: A Fast and Reliable Software Network Load Balancer. -
|
3984
4011
|
# WEIGHTED_ROUND_ROBIN: Per-endpoint Weighted Round Robin Load Balancing using
|
3985
4012
|
# weights computed from Backend reported Custom Metrics. If set, the Backend
|
3986
4013
|
# Service responses are expected to contain non-standard HTTP response header
|
@@ -4117,7 +4144,7 @@ module Google
|
|
4117
4144
|
attr_accessor :service_bindings
|
4118
4145
|
|
4119
4146
|
# URL to networkservices.ServiceLbPolicy resource. Can only be set if load
|
4120
|
-
# balancing scheme is
|
4147
|
+
# balancing scheme is EXTERNAL_MANAGED, INTERNAL_MANAGED or
|
4121
4148
|
# INTERNAL_SELF_MANAGED and the scope is global.
|
4122
4149
|
# Corresponds to the JSON property `serviceLbPolicy`
|
4123
4150
|
# @return [String]
|
@@ -28417,6 +28444,12 @@ module Google
|
|
28417
28444
|
# @return [Google::Apis::ComputeBeta::ManagedInstancePropertiesFromFlexibilityPolicy]
|
28418
28445
|
attr_accessor :properties_from_flexibility_policy
|
28419
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
|
+
|
28420
28453
|
# [Output Only] The eventual status of the instance. The instance group manager
|
28421
28454
|
# will not be identified as stable till each managed instance reaches its
|
28422
28455
|
# targetStatus.
|
@@ -28446,6 +28479,7 @@ module Google
|
|
28446
28479
|
@preserved_state_from_config = args[:preserved_state_from_config] if args.key?(:preserved_state_from_config)
|
28447
28480
|
@preserved_state_from_policy = args[:preserved_state_from_policy] if args.key?(:preserved_state_from_policy)
|
28448
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)
|
28449
28483
|
@target_status = args[:target_status] if args.key?(:target_status)
|
28450
28484
|
@version = args[:version] if args.key?(:version)
|
28451
28485
|
end
|
@@ -28651,6 +28685,26 @@ module Google
|
|
28651
28685
|
end
|
28652
28686
|
end
|
28653
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
|
+
|
28654
28708
|
#
|
28655
28709
|
class ManagedInstanceVersion
|
28656
28710
|
include Google::Apis::Core::Hashable
|
@@ -28870,6 +28924,11 @@ module Google
|
|
28870
28924
|
# @return [String]
|
28871
28925
|
attr_accessor :self_link
|
28872
28926
|
|
28927
|
+
#
|
28928
|
+
# Corresponds to the JSON property `status`
|
28929
|
+
# @return [Google::Apis::ComputeBeta::MultiMigStatus]
|
28930
|
+
attr_accessor :status
|
28931
|
+
|
28873
28932
|
def initialize(**args)
|
28874
28933
|
update!(**args)
|
28875
28934
|
end
|
@@ -28884,6 +28943,7 @@ module Google
|
|
28884
28943
|
@region = args[:region] if args.key?(:region)
|
28885
28944
|
@resource_policies = args[:resource_policies] if args.key?(:resource_policies)
|
28886
28945
|
@self_link = args[:self_link] if args.key?(:self_link)
|
28946
|
+
@status = args[:status] if args.key?(:status)
|
28887
28947
|
end
|
28888
28948
|
end
|
28889
28949
|
|
@@ -28912,6 +28972,192 @@ module Google
|
|
28912
28972
|
end
|
28913
28973
|
end
|
28914
28974
|
|
28975
|
+
#
|
28976
|
+
class MultiMigStatus
|
28977
|
+
include Google::Apis::Core::Hashable
|
28978
|
+
|
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`
|
29002
|
+
# @return [String]
|
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
|
+
|
28915
29161
|
#
|
28916
29162
|
class MultiMigsList
|
28917
29163
|
include Google::Apis::Core::Hashable
|
@@ -40197,6 +40443,12 @@ module Google
|
|
40197
40443
|
class Reservation
|
40198
40444
|
include Google::Apis::Core::Hashable
|
40199
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
|
+
|
40200
40452
|
# This reservation type is specified by total resource amounts (e.g. total count
|
40201
40453
|
# of CPUs) and can account for multiple instance SKUs. In other words, one can
|
40202
40454
|
# create instances of varying shapes against this reservation.
|
@@ -40360,6 +40612,7 @@ module Google
|
|
40360
40612
|
|
40361
40613
|
# Update properties of this object
|
40362
40614
|
def update!(**args)
|
40615
|
+
@advanced_deployment_control = args[:advanced_deployment_control] if args.key?(:advanced_deployment_control)
|
40363
40616
|
@aggregate_reservation = args[:aggregate_reservation] if args.key?(:aggregate_reservation)
|
40364
40617
|
@commitment = args[:commitment] if args.key?(:commitment)
|
40365
40618
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
@@ -40388,6 +40641,26 @@ module Google
|
|
40388
40641
|
end
|
40389
40642
|
end
|
40390
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
|
+
|
40391
40664
|
# Specifies the reservations that this instance can consume from.
|
40392
40665
|
class ReservationAffinity
|
40393
40666
|
include Google::Apis::Core::Hashable
|
@@ -42463,17 +42736,18 @@ module Google
|
|
42463
42736
|
class ResourcePolicyWorkloadPolicy
|
42464
42737
|
include Google::Apis::Core::Hashable
|
42465
42738
|
|
42466
|
-
#
|
42739
|
+
# Specifies the topology required to create a partition for VMs that have
|
42740
|
+
# interconnected GPUs.
|
42467
42741
|
# Corresponds to the JSON property `acceleratorTopology`
|
42468
42742
|
# @return [String]
|
42469
42743
|
attr_accessor :accelerator_topology
|
42470
42744
|
|
42471
|
-
#
|
42745
|
+
# Specifies the maximum distance between instances.
|
42472
42746
|
# Corresponds to the JSON property `maxTopologyDistance`
|
42473
42747
|
# @return [String]
|
42474
42748
|
attr_accessor :max_topology_distance
|
42475
42749
|
|
42476
|
-
#
|
42750
|
+
# Specifies the intent of the instance placement in the MIG.
|
42477
42751
|
# Corresponds to the JSON property `type`
|
42478
42752
|
# @return [String]
|
42479
42753
|
attr_accessor :type
|
@@ -54131,10 +54405,10 @@ module Google
|
|
54131
54405
|
# HTTPS Proxy resources: * [Global](/compute/docs/reference/rest/beta/
|
54132
54406
|
# targetHttpsProxies) * [Regional](/compute/docs/reference/rest/beta/
|
54133
54407
|
# regionTargetHttpsProxies) A target HTTPS proxy is a component of Google Cloud
|
54134
|
-
# HTTPS load balancers. *
|
54408
|
+
# HTTPS load balancers. * targetHttpsProxies are used by global external
|
54135
54409
|
# Application Load Balancers, classic Application Load Balancers, cross-region
|
54136
54410
|
# internal Application Load Balancers, and Traffic Director. *
|
54137
|
-
#
|
54411
|
+
# regionTargetHttpsProxies are used by regional internal Application Load
|
54138
54412
|
# Balancers and regional external Application Load Balancers. Forwarding rules
|
54139
54413
|
# reference a target HTTPS proxy, and the target proxy then references a URL map.
|
54140
54414
|
# For more information, read Using Target Proxies and Forwarding rule concepts.
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeBeta
|
18
18
|
# Version of the google-apis-compute_beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.120.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250807"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3658,6 +3658,12 @@ module Google
|
|
3658
3658
|
include Google::Apis::Core::JsonObjectSupport
|
3659
3659
|
end
|
3660
3660
|
|
3661
|
+
class ManagedInstanceScheduling
|
3662
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3663
|
+
|
3664
|
+
include Google::Apis::Core::JsonObjectSupport
|
3665
|
+
end
|
3666
|
+
|
3661
3667
|
class ManagedInstanceVersion
|
3662
3668
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3663
3669
|
|
@@ -3700,6 +3706,42 @@ module Google
|
|
3700
3706
|
include Google::Apis::Core::JsonObjectSupport
|
3701
3707
|
end
|
3702
3708
|
|
3709
|
+
class MultiMigStatus
|
3710
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3711
|
+
|
3712
|
+
include Google::Apis::Core::JsonObjectSupport
|
3713
|
+
end
|
3714
|
+
|
3715
|
+
class MultiMigStatusAcceleratorTopology
|
3716
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3717
|
+
|
3718
|
+
include Google::Apis::Core::JsonObjectSupport
|
3719
|
+
end
|
3720
|
+
|
3721
|
+
class MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck
|
3722
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3723
|
+
|
3724
|
+
class Error
|
3725
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3726
|
+
|
3727
|
+
class Error
|
3728
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3729
|
+
|
3730
|
+
class ErrorDetail
|
3731
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3732
|
+
|
3733
|
+
include Google::Apis::Core::JsonObjectSupport
|
3734
|
+
end
|
3735
|
+
|
3736
|
+
include Google::Apis::Core::JsonObjectSupport
|
3737
|
+
end
|
3738
|
+
|
3739
|
+
include Google::Apis::Core::JsonObjectSupport
|
3740
|
+
end
|
3741
|
+
|
3742
|
+
include Google::Apis::Core::JsonObjectSupport
|
3743
|
+
end
|
3744
|
+
|
3703
3745
|
class MultiMigsList
|
3704
3746
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3705
3747
|
|
@@ -5302,6 +5344,12 @@ module Google
|
|
5302
5344
|
include Google::Apis::Core::JsonObjectSupport
|
5303
5345
|
end
|
5304
5346
|
|
5347
|
+
class ReservationAdvancedDeploymentControl
|
5348
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5349
|
+
|
5350
|
+
include Google::Apis::Core::JsonObjectSupport
|
5351
|
+
end
|
5352
|
+
|
5305
5353
|
class ReservationAffinity
|
5306
5354
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5307
5355
|
|
@@ -8725,11 +8773,15 @@ module Google
|
|
8725
8773
|
property :max_connections, as: 'maxConnections'
|
8726
8774
|
property :max_connections_per_endpoint, as: 'maxConnectionsPerEndpoint'
|
8727
8775
|
property :max_connections_per_instance, as: 'maxConnectionsPerInstance'
|
8776
|
+
property :max_in_flight_requests, as: 'maxInFlightRequests'
|
8777
|
+
property :max_in_flight_requests_per_endpoint, as: 'maxInFlightRequestsPerEndpoint'
|
8778
|
+
property :max_in_flight_requests_per_instance, as: 'maxInFlightRequestsPerInstance'
|
8728
8779
|
property :max_rate, as: 'maxRate'
|
8729
8780
|
property :max_rate_per_endpoint, as: 'maxRatePerEndpoint'
|
8730
8781
|
property :max_rate_per_instance, as: 'maxRatePerInstance'
|
8731
8782
|
property :max_utilization, as: 'maxUtilization'
|
8732
8783
|
property :preference, as: 'preference'
|
8784
|
+
property :traffic_duration, as: 'trafficDuration'
|
8733
8785
|
end
|
8734
8786
|
end
|
8735
8787
|
|
@@ -14878,6 +14930,8 @@ module Google
|
|
14878
14930
|
|
14879
14931
|
property :properties_from_flexibility_policy, as: 'propertiesFromFlexibilityPolicy', class: Google::Apis::ComputeBeta::ManagedInstancePropertiesFromFlexibilityPolicy, decorator: Google::Apis::ComputeBeta::ManagedInstancePropertiesFromFlexibilityPolicy::Representation
|
14880
14932
|
|
14933
|
+
property :scheduling, as: 'scheduling', class: Google::Apis::ComputeBeta::ManagedInstanceScheduling, decorator: Google::Apis::ComputeBeta::ManagedInstanceScheduling::Representation
|
14934
|
+
|
14881
14935
|
property :target_status, as: 'targetStatus'
|
14882
14936
|
property :version, as: 'version', class: Google::Apis::ComputeBeta::ManagedInstanceVersion, decorator: Google::Apis::ComputeBeta::ManagedInstanceVersion::Representation
|
14883
14937
|
|
@@ -14948,6 +15002,13 @@ module Google
|
|
14948
15002
|
end
|
14949
15003
|
end
|
14950
15004
|
|
15005
|
+
class ManagedInstanceScheduling
|
15006
|
+
# @private
|
15007
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15008
|
+
property :termination_timestamp, as: 'terminationTimestamp'
|
15009
|
+
end
|
15010
|
+
end
|
15011
|
+
|
14951
15012
|
class ManagedInstanceVersion
|
14952
15013
|
# @private
|
14953
15014
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -15003,6 +15064,8 @@ module Google
|
|
15003
15064
|
property :resource_policies, as: 'resourcePolicies', class: Google::Apis::ComputeBeta::MultiMigResourcePolicies, decorator: Google::Apis::ComputeBeta::MultiMigResourcePolicies::Representation
|
15004
15065
|
|
15005
15066
|
property :self_link, as: 'selfLink'
|
15067
|
+
property :status, as: 'status', class: Google::Apis::ComputeBeta::MultiMigStatus, decorator: Google::Apis::ComputeBeta::MultiMigStatus::Representation
|
15068
|
+
|
15006
15069
|
end
|
15007
15070
|
end
|
15008
15071
|
|
@@ -15013,6 +15076,66 @@ module Google
|
|
15013
15076
|
end
|
15014
15077
|
end
|
15015
15078
|
|
15079
|
+
class MultiMigStatus
|
15080
|
+
# @private
|
15081
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15082
|
+
collection :applied_accelerator_topologies, as: 'appliedAcceleratorTopologies', class: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopology, decorator: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopology::Representation
|
15083
|
+
|
15084
|
+
end
|
15085
|
+
end
|
15086
|
+
|
15087
|
+
class MultiMigStatusAcceleratorTopology
|
15088
|
+
# @private
|
15089
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15090
|
+
property :accelerator_topology, as: 'acceleratorTopology'
|
15091
|
+
property :accelerator_topology_state, as: 'acceleratorTopologyState'
|
15092
|
+
property :accelerator_topology_state_last_check, as: 'acceleratorTopologyStateLastCheck', class: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck, decorator: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Representation
|
15093
|
+
|
15094
|
+
end
|
15095
|
+
end
|
15096
|
+
|
15097
|
+
class MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck
|
15098
|
+
# @private
|
15099
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15100
|
+
property :error, as: 'error', class: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error, decorator: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error::Representation
|
15101
|
+
|
15102
|
+
property :timestamp, as: 'timestamp'
|
15103
|
+
end
|
15104
|
+
|
15105
|
+
class Error
|
15106
|
+
# @private
|
15107
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15108
|
+
collection :errors, as: 'errors', class: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error::Error, decorator: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error::Error::Representation
|
15109
|
+
|
15110
|
+
end
|
15111
|
+
|
15112
|
+
class Error
|
15113
|
+
# @private
|
15114
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15115
|
+
property :code, as: 'code'
|
15116
|
+
collection :error_details, as: 'errorDetails', class: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error::Error::ErrorDetail, decorator: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error::Error::ErrorDetail::Representation
|
15117
|
+
|
15118
|
+
property :location, as: 'location'
|
15119
|
+
property :message, as: 'message'
|
15120
|
+
end
|
15121
|
+
|
15122
|
+
class ErrorDetail
|
15123
|
+
# @private
|
15124
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15125
|
+
property :error_info, as: 'errorInfo', class: Google::Apis::ComputeBeta::ErrorInfo, decorator: Google::Apis::ComputeBeta::ErrorInfo::Representation
|
15126
|
+
|
15127
|
+
property :help, as: 'help', class: Google::Apis::ComputeBeta::Help, decorator: Google::Apis::ComputeBeta::Help::Representation
|
15128
|
+
|
15129
|
+
property :localized_message, as: 'localizedMessage', class: Google::Apis::ComputeBeta::LocalizedMessage, decorator: Google::Apis::ComputeBeta::LocalizedMessage::Representation
|
15130
|
+
|
15131
|
+
property :quota_info, as: 'quotaInfo', class: Google::Apis::ComputeBeta::QuotaExceededInfo, decorator: Google::Apis::ComputeBeta::QuotaExceededInfo::Representation
|
15132
|
+
|
15133
|
+
end
|
15134
|
+
end
|
15135
|
+
end
|
15136
|
+
end
|
15137
|
+
end
|
15138
|
+
|
15016
15139
|
class MultiMigsList
|
15017
15140
|
# @private
|
15018
15141
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -17921,6 +18044,8 @@ module Google
|
|
17921
18044
|
class Reservation
|
17922
18045
|
# @private
|
17923
18046
|
class Representation < Google::Apis::Core::JsonRepresentation
|
18047
|
+
property :advanced_deployment_control, as: 'advancedDeploymentControl', class: Google::Apis::ComputeBeta::ReservationAdvancedDeploymentControl, decorator: Google::Apis::ComputeBeta::ReservationAdvancedDeploymentControl::Representation
|
18048
|
+
|
17924
18049
|
property :aggregate_reservation, as: 'aggregateReservation', class: Google::Apis::ComputeBeta::AllocationAggregateReservation, decorator: Google::Apis::ComputeBeta::AllocationAggregateReservation::Representation
|
17925
18050
|
|
17926
18051
|
property :commitment, as: 'commitment'
|
@@ -17955,6 +18080,13 @@ module Google
|
|
17955
18080
|
end
|
17956
18081
|
end
|
17957
18082
|
|
18083
|
+
class ReservationAdvancedDeploymentControl
|
18084
|
+
# @private
|
18085
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
18086
|
+
property :reservation_operational_mode, as: 'reservationOperationalMode'
|
18087
|
+
end
|
18088
|
+
end
|
18089
|
+
|
17958
18090
|
class ReservationAffinity
|
17959
18091
|
# @private
|
17960
18092
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.120.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.120.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|