google-apis-compute_beta 0.119.0 → 0.121.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/compute_beta/classes.rb +371 -19
- data/lib/google/apis/compute_beta/gem_version.rb +2 -2
- data/lib/google/apis/compute_beta/representations.rb +154 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9097982e132b573932931449f9cba89b2a0cbef586bf35fcfd9962e2fd7391b
|
4
|
+
data.tar.gz: 469da324e42a185fa770ecaeb9cfa2c8e109b3fc1dd82e9f6022b35905343b6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a95392ce7057b7c62a5f268f53380561ee0693adf757754c89d3097cc667cd4eda8a9ac4a7db0e9579a834d906444aa678694ff69fc2b8c2c639c9c203ceed1f
|
7
|
+
data.tar.gz: 5ddf1224f6a974aeabb640ba4d0cc0a77ed4c714bff008664449f3662c7c205e1fdadfd58cdc95f595e420a5c469305fefd3882723435953865457439ae60135
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-compute_beta
|
2
2
|
|
3
|
+
### v0.121.0 (2025-08-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250810
|
6
|
+
|
7
|
+
### v0.120.0 (2025-08-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250807
|
10
|
+
|
3
11
|
### v0.119.0 (2025-08-03)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250728
|
@@ -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
|
@@ -42496,6 +42770,11 @@ module Google
|
|
42496
42770
|
class ResourceStatus
|
42497
42771
|
include Google::Apis::Core::Hashable
|
42498
42772
|
|
42773
|
+
# Effective values of predefined metadata keys for an instance.
|
42774
|
+
# Corresponds to the JSON property `effectiveInstanceMetadata`
|
42775
|
+
# @return [Google::Apis::ComputeBeta::ResourceStatusEffectiveInstanceMetadata]
|
42776
|
+
attr_accessor :effective_instance_metadata
|
42777
|
+
|
42499
42778
|
# [Output Only] The precise location of your instance within the zone's data
|
42500
42779
|
# center, including the block, sub-block, and host. The field is formatted as
|
42501
42780
|
# follows: blockId/subBlockId/hostId.
|
@@ -42529,6 +42808,7 @@ module Google
|
|
42529
42808
|
|
42530
42809
|
# Update properties of this object
|
42531
42810
|
def update!(**args)
|
42811
|
+
@effective_instance_metadata = args[:effective_instance_metadata] if args.key?(:effective_instance_metadata)
|
42532
42812
|
@physical_host = args[:physical_host] if args.key?(:physical_host)
|
42533
42813
|
@physical_host_topology = args[:physical_host_topology] if args.key?(:physical_host_topology)
|
42534
42814
|
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
@@ -42537,6 +42817,74 @@ module Google
|
|
42537
42817
|
end
|
42538
42818
|
end
|
42539
42819
|
|
42820
|
+
# Effective values of predefined metadata keys for an instance.
|
42821
|
+
class ResourceStatusEffectiveInstanceMetadata
|
42822
|
+
include Google::Apis::Core::Hashable
|
42823
|
+
|
42824
|
+
# Effective block-project-ssh-keys value at Instance level.
|
42825
|
+
# Corresponds to the JSON property `blockProjectSshKeysMetadataValue`
|
42826
|
+
# @return [Boolean]
|
42827
|
+
attr_accessor :block_project_ssh_keys_metadata_value
|
42828
|
+
alias_method :block_project_ssh_keys_metadata_value?, :block_project_ssh_keys_metadata_value
|
42829
|
+
|
42830
|
+
# Effective enable-guest-attributes value at Instance level.
|
42831
|
+
# Corresponds to the JSON property `enableGuestAttributesMetadataValue`
|
42832
|
+
# @return [Boolean]
|
42833
|
+
attr_accessor :enable_guest_attributes_metadata_value
|
42834
|
+
alias_method :enable_guest_attributes_metadata_value?, :enable_guest_attributes_metadata_value
|
42835
|
+
|
42836
|
+
# Effective enable-os-inventory value at Instance level.
|
42837
|
+
# Corresponds to the JSON property `enableOsInventoryMetadataValue`
|
42838
|
+
# @return [Boolean]
|
42839
|
+
attr_accessor :enable_os_inventory_metadata_value
|
42840
|
+
alias_method :enable_os_inventory_metadata_value?, :enable_os_inventory_metadata_value
|
42841
|
+
|
42842
|
+
# Effective enable-osconfig value at Instance level.
|
42843
|
+
# Corresponds to the JSON property `enableOsconfigMetadataValue`
|
42844
|
+
# @return [Boolean]
|
42845
|
+
attr_accessor :enable_osconfig_metadata_value
|
42846
|
+
alias_method :enable_osconfig_metadata_value?, :enable_osconfig_metadata_value
|
42847
|
+
|
42848
|
+
# Effective enable-oslogin value at Instance level.
|
42849
|
+
# Corresponds to the JSON property `enableOsloginMetadataValue`
|
42850
|
+
# @return [Boolean]
|
42851
|
+
attr_accessor :enable_oslogin_metadata_value
|
42852
|
+
alias_method :enable_oslogin_metadata_value?, :enable_oslogin_metadata_value
|
42853
|
+
|
42854
|
+
# Effective serial-port-enable value at Instance level.
|
42855
|
+
# Corresponds to the JSON property `serialPortEnableMetadataValue`
|
42856
|
+
# @return [Boolean]
|
42857
|
+
attr_accessor :serial_port_enable_metadata_value
|
42858
|
+
alias_method :serial_port_enable_metadata_value?, :serial_port_enable_metadata_value
|
42859
|
+
|
42860
|
+
# Effective serial-port-logging-enable value at Instance level.
|
42861
|
+
# Corresponds to the JSON property `serialPortLoggingEnableMetadataValue`
|
42862
|
+
# @return [Boolean]
|
42863
|
+
attr_accessor :serial_port_logging_enable_metadata_value
|
42864
|
+
alias_method :serial_port_logging_enable_metadata_value?, :serial_port_logging_enable_metadata_value
|
42865
|
+
|
42866
|
+
# Effective VM DNS setting at Instance level.
|
42867
|
+
# Corresponds to the JSON property `vmDnsSettingMetadataValue`
|
42868
|
+
# @return [String]
|
42869
|
+
attr_accessor :vm_dns_setting_metadata_value
|
42870
|
+
|
42871
|
+
def initialize(**args)
|
42872
|
+
update!(**args)
|
42873
|
+
end
|
42874
|
+
|
42875
|
+
# Update properties of this object
|
42876
|
+
def update!(**args)
|
42877
|
+
@block_project_ssh_keys_metadata_value = args[:block_project_ssh_keys_metadata_value] if args.key?(:block_project_ssh_keys_metadata_value)
|
42878
|
+
@enable_guest_attributes_metadata_value = args[:enable_guest_attributes_metadata_value] if args.key?(:enable_guest_attributes_metadata_value)
|
42879
|
+
@enable_os_inventory_metadata_value = args[:enable_os_inventory_metadata_value] if args.key?(:enable_os_inventory_metadata_value)
|
42880
|
+
@enable_osconfig_metadata_value = args[:enable_osconfig_metadata_value] if args.key?(:enable_osconfig_metadata_value)
|
42881
|
+
@enable_oslogin_metadata_value = args[:enable_oslogin_metadata_value] if args.key?(:enable_oslogin_metadata_value)
|
42882
|
+
@serial_port_enable_metadata_value = args[:serial_port_enable_metadata_value] if args.key?(:serial_port_enable_metadata_value)
|
42883
|
+
@serial_port_logging_enable_metadata_value = args[:serial_port_logging_enable_metadata_value] if args.key?(:serial_port_logging_enable_metadata_value)
|
42884
|
+
@vm_dns_setting_metadata_value = args[:vm_dns_setting_metadata_value] if args.key?(:vm_dns_setting_metadata_value)
|
42885
|
+
end
|
42886
|
+
end
|
42887
|
+
|
42540
42888
|
# Represents the physical host topology of the host on which the VM is running.
|
42541
42889
|
class ResourceStatusPhysicalHostTopology
|
42542
42890
|
include Google::Apis::Core::Hashable
|
@@ -46194,14 +46542,14 @@ module Google
|
|
46194
46542
|
# be configured to filter incoming HTTP requests targeting backend services (
|
46195
46543
|
# including Cloud CDN-enabled) as well as backend buckets (Cloud Storage). They
|
46196
46544
|
# filter requests before the request is served from Google's cache. -
|
46197
|
-
# CLOUD_ARMOR_INTERNAL_SERVICE: Cloud Armor internal service
|
46198
|
-
# configured to filter HTTP requests targeting services managed
|
46199
|
-
# Director in a service mesh. They filter requests before the request
|
46200
|
-
# from the application. - CLOUD_ARMOR_NETWORK: Cloud Armor network
|
46201
|
-
# be configured to filter packets targeting network load balancing
|
46202
|
-
# such as backend services, target pools, target instances, and
|
46203
|
-
# external IPs. They filter requests before the request is served
|
46204
|
-
# application. This field can be set only at resource creation time.
|
46545
|
+
# CLOUD_ARMOR_INTERNAL_SERVICE (preview only): Cloud Armor internal service
|
46546
|
+
# policies can be configured to filter HTTP requests targeting services managed
|
46547
|
+
# by Traffic Director in a service mesh. They filter requests before the request
|
46548
|
+
# is served from the application. - CLOUD_ARMOR_NETWORK: Cloud Armor network
|
46549
|
+
# policies can be configured to filter packets targeting network load balancing
|
46550
|
+
# resources such as backend services, target pools, target instances, and
|
46551
|
+
# instances with external IPs. They filter requests before the request is served
|
46552
|
+
# from the application. This field can be set only at resource creation time.
|
46205
46553
|
# Corresponds to the JSON property `type`
|
46206
46554
|
# @return [String]
|
46207
46555
|
attr_accessor :type
|
@@ -46768,7 +47116,10 @@ module Google
|
|
46768
47116
|
# redirectOptions. This action is only supported in Global Security Policies of
|
46769
47117
|
# type CLOUD_ARMOR. - throttle: limit client traffic to the configured threshold.
|
46770
47118
|
# Configure parameters for this action in rateLimitOptions. Requires
|
46771
|
-
# rate_limit_options to be set for this.
|
47119
|
+
# rate_limit_options to be set for this. - fairshare (preview only): when
|
47120
|
+
# traffic reaches the threshold limit, requests from the clients matching this
|
47121
|
+
# rule begin to be rate-limited using the Fair Share algorithm. This action is
|
47122
|
+
# only allowed in security policies of type `CLOUD_ARMOR_INTERNAL_SERVICE`.
|
46772
47123
|
# Corresponds to the JSON property `action`
|
46773
47124
|
# @return [String]
|
46774
47125
|
attr_accessor :action
|
@@ -46840,8 +47191,8 @@ module Google
|
|
46840
47191
|
# @return [Fixnum]
|
46841
47192
|
attr_accessor :priority
|
46842
47193
|
|
46843
|
-
# Must be specified if the action is "rate_based_ban" or "throttle"
|
46844
|
-
# specified for any other actions.
|
47194
|
+
# Must be specified if the action is "rate_based_ban" or "throttle" or "
|
47195
|
+
# fairshare". Cannot be specified for any other actions.
|
46845
47196
|
# Corresponds to the JSON property `rateLimitOptions`
|
46846
47197
|
# @return [Google::Apis::ComputeBeta::SecurityPolicyRuleRateLimitOptions]
|
46847
47198
|
attr_accessor :rate_limit_options
|
@@ -47370,7 +47721,8 @@ module Google
|
|
47370
47721
|
# configuration or an IP address cannot be resolved from it, the key type
|
47371
47722
|
# defaults to IP. - TLS_JA4_FINGERPRINT: JA4 TLS/SSL fingerprint if the client
|
47372
47723
|
# connects using HTTPS, HTTP/2 or HTTP/3. If not available, the key type
|
47373
|
-
# defaults to ALL.
|
47724
|
+
# defaults to ALL. For "fairshare" action, this value is limited to ALL i.e. a
|
47725
|
+
# single rate limit threshold is enforced for all the requests matching the rule.
|
47374
47726
|
# Corresponds to the JSON property `enforceOnKey`
|
47375
47727
|
# @return [String]
|
47376
47728
|
attr_accessor :enforce_on_key
|
@@ -54131,10 +54483,10 @@ module Google
|
|
54131
54483
|
# HTTPS Proxy resources: * [Global](/compute/docs/reference/rest/beta/
|
54132
54484
|
# targetHttpsProxies) * [Regional](/compute/docs/reference/rest/beta/
|
54133
54485
|
# regionTargetHttpsProxies) A target HTTPS proxy is a component of Google Cloud
|
54134
|
-
# HTTPS load balancers. *
|
54486
|
+
# HTTPS load balancers. * targetHttpsProxies are used by global external
|
54135
54487
|
# Application Load Balancers, classic Application Load Balancers, cross-region
|
54136
54488
|
# internal Application Load Balancers, and Traffic Director. *
|
54137
|
-
#
|
54489
|
+
# regionTargetHttpsProxies are used by regional internal Application Load
|
54138
54490
|
# Balancers and regional external Application Load Balancers. Forwarding rules
|
54139
54491
|
# reference a target HTTPS proxy, and the target proxy then references a URL map.
|
54140
54492
|
# 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.121.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 = "20250810"
|
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
|
|
@@ -5644,6 +5692,12 @@ module Google
|
|
5644
5692
|
include Google::Apis::Core::JsonObjectSupport
|
5645
5693
|
end
|
5646
5694
|
|
5695
|
+
class ResourceStatusEffectiveInstanceMetadata
|
5696
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5697
|
+
|
5698
|
+
include Google::Apis::Core::JsonObjectSupport
|
5699
|
+
end
|
5700
|
+
|
5647
5701
|
class ResourceStatusPhysicalHostTopology
|
5648
5702
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5649
5703
|
|
@@ -8725,11 +8779,15 @@ module Google
|
|
8725
8779
|
property :max_connections, as: 'maxConnections'
|
8726
8780
|
property :max_connections_per_endpoint, as: 'maxConnectionsPerEndpoint'
|
8727
8781
|
property :max_connections_per_instance, as: 'maxConnectionsPerInstance'
|
8782
|
+
property :max_in_flight_requests, as: 'maxInFlightRequests'
|
8783
|
+
property :max_in_flight_requests_per_endpoint, as: 'maxInFlightRequestsPerEndpoint'
|
8784
|
+
property :max_in_flight_requests_per_instance, as: 'maxInFlightRequestsPerInstance'
|
8728
8785
|
property :max_rate, as: 'maxRate'
|
8729
8786
|
property :max_rate_per_endpoint, as: 'maxRatePerEndpoint'
|
8730
8787
|
property :max_rate_per_instance, as: 'maxRatePerInstance'
|
8731
8788
|
property :max_utilization, as: 'maxUtilization'
|
8732
8789
|
property :preference, as: 'preference'
|
8790
|
+
property :traffic_duration, as: 'trafficDuration'
|
8733
8791
|
end
|
8734
8792
|
end
|
8735
8793
|
|
@@ -14878,6 +14936,8 @@ module Google
|
|
14878
14936
|
|
14879
14937
|
property :properties_from_flexibility_policy, as: 'propertiesFromFlexibilityPolicy', class: Google::Apis::ComputeBeta::ManagedInstancePropertiesFromFlexibilityPolicy, decorator: Google::Apis::ComputeBeta::ManagedInstancePropertiesFromFlexibilityPolicy::Representation
|
14880
14938
|
|
14939
|
+
property :scheduling, as: 'scheduling', class: Google::Apis::ComputeBeta::ManagedInstanceScheduling, decorator: Google::Apis::ComputeBeta::ManagedInstanceScheduling::Representation
|
14940
|
+
|
14881
14941
|
property :target_status, as: 'targetStatus'
|
14882
14942
|
property :version, as: 'version', class: Google::Apis::ComputeBeta::ManagedInstanceVersion, decorator: Google::Apis::ComputeBeta::ManagedInstanceVersion::Representation
|
14883
14943
|
|
@@ -14948,6 +15008,13 @@ module Google
|
|
14948
15008
|
end
|
14949
15009
|
end
|
14950
15010
|
|
15011
|
+
class ManagedInstanceScheduling
|
15012
|
+
# @private
|
15013
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15014
|
+
property :termination_timestamp, as: 'terminationTimestamp'
|
15015
|
+
end
|
15016
|
+
end
|
15017
|
+
|
14951
15018
|
class ManagedInstanceVersion
|
14952
15019
|
# @private
|
14953
15020
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -15003,6 +15070,8 @@ module Google
|
|
15003
15070
|
property :resource_policies, as: 'resourcePolicies', class: Google::Apis::ComputeBeta::MultiMigResourcePolicies, decorator: Google::Apis::ComputeBeta::MultiMigResourcePolicies::Representation
|
15004
15071
|
|
15005
15072
|
property :self_link, as: 'selfLink'
|
15073
|
+
property :status, as: 'status', class: Google::Apis::ComputeBeta::MultiMigStatus, decorator: Google::Apis::ComputeBeta::MultiMigStatus::Representation
|
15074
|
+
|
15006
15075
|
end
|
15007
15076
|
end
|
15008
15077
|
|
@@ -15013,6 +15082,66 @@ module Google
|
|
15013
15082
|
end
|
15014
15083
|
end
|
15015
15084
|
|
15085
|
+
class MultiMigStatus
|
15086
|
+
# @private
|
15087
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15088
|
+
collection :applied_accelerator_topologies, as: 'appliedAcceleratorTopologies', class: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopology, decorator: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopology::Representation
|
15089
|
+
|
15090
|
+
end
|
15091
|
+
end
|
15092
|
+
|
15093
|
+
class MultiMigStatusAcceleratorTopology
|
15094
|
+
# @private
|
15095
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15096
|
+
property :accelerator_topology, as: 'acceleratorTopology'
|
15097
|
+
property :accelerator_topology_state, as: 'acceleratorTopologyState'
|
15098
|
+
property :accelerator_topology_state_last_check, as: 'acceleratorTopologyStateLastCheck', class: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck, decorator: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Representation
|
15099
|
+
|
15100
|
+
end
|
15101
|
+
end
|
15102
|
+
|
15103
|
+
class MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck
|
15104
|
+
# @private
|
15105
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15106
|
+
property :error, as: 'error', class: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error, decorator: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error::Representation
|
15107
|
+
|
15108
|
+
property :timestamp, as: 'timestamp'
|
15109
|
+
end
|
15110
|
+
|
15111
|
+
class Error
|
15112
|
+
# @private
|
15113
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15114
|
+
collection :errors, as: 'errors', class: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error::Error, decorator: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error::Error::Representation
|
15115
|
+
|
15116
|
+
end
|
15117
|
+
|
15118
|
+
class Error
|
15119
|
+
# @private
|
15120
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15121
|
+
property :code, as: 'code'
|
15122
|
+
collection :error_details, as: 'errorDetails', class: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error::Error::ErrorDetail, decorator: Google::Apis::ComputeBeta::MultiMigStatusAcceleratorTopologyAcceleratorTopologyStateLastCheck::Error::Error::ErrorDetail::Representation
|
15123
|
+
|
15124
|
+
property :location, as: 'location'
|
15125
|
+
property :message, as: 'message'
|
15126
|
+
end
|
15127
|
+
|
15128
|
+
class ErrorDetail
|
15129
|
+
# @private
|
15130
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15131
|
+
property :error_info, as: 'errorInfo', class: Google::Apis::ComputeBeta::ErrorInfo, decorator: Google::Apis::ComputeBeta::ErrorInfo::Representation
|
15132
|
+
|
15133
|
+
property :help, as: 'help', class: Google::Apis::ComputeBeta::Help, decorator: Google::Apis::ComputeBeta::Help::Representation
|
15134
|
+
|
15135
|
+
property :localized_message, as: 'localizedMessage', class: Google::Apis::ComputeBeta::LocalizedMessage, decorator: Google::Apis::ComputeBeta::LocalizedMessage::Representation
|
15136
|
+
|
15137
|
+
property :quota_info, as: 'quotaInfo', class: Google::Apis::ComputeBeta::QuotaExceededInfo, decorator: Google::Apis::ComputeBeta::QuotaExceededInfo::Representation
|
15138
|
+
|
15139
|
+
end
|
15140
|
+
end
|
15141
|
+
end
|
15142
|
+
end
|
15143
|
+
end
|
15144
|
+
|
15016
15145
|
class MultiMigsList
|
15017
15146
|
# @private
|
15018
15147
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -17921,6 +18050,8 @@ module Google
|
|
17921
18050
|
class Reservation
|
17922
18051
|
# @private
|
17923
18052
|
class Representation < Google::Apis::Core::JsonRepresentation
|
18053
|
+
property :advanced_deployment_control, as: 'advancedDeploymentControl', class: Google::Apis::ComputeBeta::ReservationAdvancedDeploymentControl, decorator: Google::Apis::ComputeBeta::ReservationAdvancedDeploymentControl::Representation
|
18054
|
+
|
17924
18055
|
property :aggregate_reservation, as: 'aggregateReservation', class: Google::Apis::ComputeBeta::AllocationAggregateReservation, decorator: Google::Apis::ComputeBeta::AllocationAggregateReservation::Representation
|
17925
18056
|
|
17926
18057
|
property :commitment, as: 'commitment'
|
@@ -17955,6 +18086,13 @@ module Google
|
|
17955
18086
|
end
|
17956
18087
|
end
|
17957
18088
|
|
18089
|
+
class ReservationAdvancedDeploymentControl
|
18090
|
+
# @private
|
18091
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
18092
|
+
property :reservation_operational_mode, as: 'reservationOperationalMode'
|
18093
|
+
end
|
18094
|
+
end
|
18095
|
+
|
17958
18096
|
class ReservationAffinity
|
17959
18097
|
# @private
|
17960
18098
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -18543,6 +18681,8 @@ module Google
|
|
18543
18681
|
class ResourceStatus
|
18544
18682
|
# @private
|
18545
18683
|
class Representation < Google::Apis::Core::JsonRepresentation
|
18684
|
+
property :effective_instance_metadata, as: 'effectiveInstanceMetadata', class: Google::Apis::ComputeBeta::ResourceStatusEffectiveInstanceMetadata, decorator: Google::Apis::ComputeBeta::ResourceStatusEffectiveInstanceMetadata::Representation
|
18685
|
+
|
18546
18686
|
property :physical_host, as: 'physicalHost'
|
18547
18687
|
property :physical_host_topology, as: 'physicalHostTopology', class: Google::Apis::ComputeBeta::ResourceStatusPhysicalHostTopology, decorator: Google::Apis::ComputeBeta::ResourceStatusPhysicalHostTopology::Representation
|
18548
18688
|
|
@@ -18555,6 +18695,20 @@ module Google
|
|
18555
18695
|
end
|
18556
18696
|
end
|
18557
18697
|
|
18698
|
+
class ResourceStatusEffectiveInstanceMetadata
|
18699
|
+
# @private
|
18700
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
18701
|
+
property :block_project_ssh_keys_metadata_value, as: 'blockProjectSshKeysMetadataValue'
|
18702
|
+
property :enable_guest_attributes_metadata_value, as: 'enableGuestAttributesMetadataValue'
|
18703
|
+
property :enable_os_inventory_metadata_value, as: 'enableOsInventoryMetadataValue'
|
18704
|
+
property :enable_osconfig_metadata_value, as: 'enableOsconfigMetadataValue'
|
18705
|
+
property :enable_oslogin_metadata_value, as: 'enableOsloginMetadataValue'
|
18706
|
+
property :serial_port_enable_metadata_value, as: 'serialPortEnableMetadataValue'
|
18707
|
+
property :serial_port_logging_enable_metadata_value, as: 'serialPortLoggingEnableMetadataValue'
|
18708
|
+
property :vm_dns_setting_metadata_value, as: 'vmDnsSettingMetadataValue'
|
18709
|
+
end
|
18710
|
+
end
|
18711
|
+
|
18558
18712
|
class ResourceStatusPhysicalHostTopology
|
18559
18713
|
# @private
|
18560
18714
|
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.121.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.121.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:
|