google-apis-compute_beta 0.109.0 → 0.111.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 +1998 -122
- data/lib/google/apis/compute_beta/gem_version.rb +2 -2
- data/lib/google/apis/compute_beta/representations.rb +878 -48
- data/lib/google/apis/compute_beta/service.rb +2504 -701
- metadata +4 -4
@@ -3467,6 +3467,124 @@ module Google
|
|
3467
3467
|
end
|
3468
3468
|
end
|
3469
3469
|
|
3470
|
+
#
|
3471
|
+
class BackendBucketListUsable
|
3472
|
+
include Google::Apis::Core::Hashable
|
3473
|
+
|
3474
|
+
# [Output Only] Unique identifier for the resource; defined by the server.
|
3475
|
+
# Corresponds to the JSON property `id`
|
3476
|
+
# @return [String]
|
3477
|
+
attr_accessor :id
|
3478
|
+
|
3479
|
+
# A list of BackendBucket resources.
|
3480
|
+
# Corresponds to the JSON property `items`
|
3481
|
+
# @return [Array<Google::Apis::ComputeBeta::BackendBucket>]
|
3482
|
+
attr_accessor :items
|
3483
|
+
|
3484
|
+
# [Output Only] Type of resource. Always compute#usableBackendBucketList for
|
3485
|
+
# lists of usable backend buckets.
|
3486
|
+
# Corresponds to the JSON property `kind`
|
3487
|
+
# @return [String]
|
3488
|
+
attr_accessor :kind
|
3489
|
+
|
3490
|
+
# [Output Only] This token allows you to get the next page of results for list
|
3491
|
+
# requests. If the number of results is larger than maxResults, use the
|
3492
|
+
# nextPageToken as a value for the query parameter pageToken in the next list
|
3493
|
+
# request. Subsequent list requests will have their own nextPageToken to
|
3494
|
+
# continue paging through the results.
|
3495
|
+
# Corresponds to the JSON property `nextPageToken`
|
3496
|
+
# @return [String]
|
3497
|
+
attr_accessor :next_page_token
|
3498
|
+
|
3499
|
+
# [Output Only] Server-defined URL for this resource.
|
3500
|
+
# Corresponds to the JSON property `selfLink`
|
3501
|
+
# @return [String]
|
3502
|
+
attr_accessor :self_link
|
3503
|
+
|
3504
|
+
# [Output Only] Informational warning message.
|
3505
|
+
# Corresponds to the JSON property `warning`
|
3506
|
+
# @return [Google::Apis::ComputeBeta::BackendBucketListUsable::Warning]
|
3507
|
+
attr_accessor :warning
|
3508
|
+
|
3509
|
+
def initialize(**args)
|
3510
|
+
update!(**args)
|
3511
|
+
end
|
3512
|
+
|
3513
|
+
# Update properties of this object
|
3514
|
+
def update!(**args)
|
3515
|
+
@id = args[:id] if args.key?(:id)
|
3516
|
+
@items = args[:items] if args.key?(:items)
|
3517
|
+
@kind = args[:kind] if args.key?(:kind)
|
3518
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3519
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
3520
|
+
@warning = args[:warning] if args.key?(:warning)
|
3521
|
+
end
|
3522
|
+
|
3523
|
+
# [Output Only] Informational warning message.
|
3524
|
+
class Warning
|
3525
|
+
include Google::Apis::Core::Hashable
|
3526
|
+
|
3527
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
3528
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
3529
|
+
# Corresponds to the JSON property `code`
|
3530
|
+
# @return [String]
|
3531
|
+
attr_accessor :code
|
3532
|
+
|
3533
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
3534
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
3535
|
+
# Corresponds to the JSON property `data`
|
3536
|
+
# @return [Array<Google::Apis::ComputeBeta::BackendBucketListUsable::Warning::Datum>]
|
3537
|
+
attr_accessor :data
|
3538
|
+
|
3539
|
+
# [Output Only] A human-readable description of the warning code.
|
3540
|
+
# Corresponds to the JSON property `message`
|
3541
|
+
# @return [String]
|
3542
|
+
attr_accessor :message
|
3543
|
+
|
3544
|
+
def initialize(**args)
|
3545
|
+
update!(**args)
|
3546
|
+
end
|
3547
|
+
|
3548
|
+
# Update properties of this object
|
3549
|
+
def update!(**args)
|
3550
|
+
@code = args[:code] if args.key?(:code)
|
3551
|
+
@data = args[:data] if args.key?(:data)
|
3552
|
+
@message = args[:message] if args.key?(:message)
|
3553
|
+
end
|
3554
|
+
|
3555
|
+
#
|
3556
|
+
class Datum
|
3557
|
+
include Google::Apis::Core::Hashable
|
3558
|
+
|
3559
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
3560
|
+
# For example, for warnings where there are no results in a list request for a
|
3561
|
+
# particular zone, this key might be scope and the key value might be the zone
|
3562
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
3563
|
+
# suggested replacement, or a warning about invalid network settings (for
|
3564
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
3565
|
+
# for IP forwarding).
|
3566
|
+
# Corresponds to the JSON property `key`
|
3567
|
+
# @return [String]
|
3568
|
+
attr_accessor :key
|
3569
|
+
|
3570
|
+
# [Output Only] A warning data value corresponding to the key.
|
3571
|
+
# Corresponds to the JSON property `value`
|
3572
|
+
# @return [String]
|
3573
|
+
attr_accessor :value
|
3574
|
+
|
3575
|
+
def initialize(**args)
|
3576
|
+
update!(**args)
|
3577
|
+
end
|
3578
|
+
|
3579
|
+
# Update properties of this object
|
3580
|
+
def update!(**args)
|
3581
|
+
@key = args[:key] if args.key?(:key)
|
3582
|
+
@value = args[:value] if args.key?(:value)
|
3583
|
+
end
|
3584
|
+
end
|
3585
|
+
end
|
3586
|
+
end
|
3587
|
+
|
3470
3588
|
#
|
3471
3589
|
class BackendBucketUsedBy
|
3472
3590
|
include Google::Apis::Core::Hashable
|
@@ -3503,7 +3621,7 @@ module Google
|
|
3503
3621
|
# @return [Float]
|
3504
3622
|
attr_accessor :max_utilization
|
3505
3623
|
|
3506
|
-
# Name of a custom utilization signal. The name must be 1-
|
3624
|
+
# Name of a custom utilization signal. The name must be 1-64 characters long and
|
3507
3625
|
# match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means the
|
3508
3626
|
# first character must be a lowercase letter, and all following characters must
|
3509
3627
|
# be a dash, period, underscore, lowercase letter, or digit, except the last
|
@@ -3618,6 +3736,11 @@ module Google
|
|
3618
3736
|
# @return [String]
|
3619
3737
|
attr_accessor :description
|
3620
3738
|
|
3739
|
+
# Defines a dynamic forwarding configuration for the backend service.
|
3740
|
+
# Corresponds to the JSON property `dynamicForwarding`
|
3741
|
+
# @return [Google::Apis::ComputeBeta::BackendServiceDynamicForwarding]
|
3742
|
+
attr_accessor :dynamic_forwarding
|
3743
|
+
|
3621
3744
|
# [Output Only] The resource URL for the edge security policy associated with
|
3622
3745
|
# this backend service.
|
3623
3746
|
# Corresponds to the JSON property `edgeSecurityPolicy`
|
@@ -3816,6 +3939,12 @@ module Google
|
|
3816
3939
|
# @return [String]
|
3817
3940
|
attr_accessor :network
|
3818
3941
|
|
3942
|
+
# Configures traffic steering properties of internal passthrough Network Load
|
3943
|
+
# Balancers.
|
3944
|
+
# Corresponds to the JSON property `networkPassThroughLbTrafficPolicy`
|
3945
|
+
# @return [Google::Apis::ComputeBeta::BackendServiceNetworkPassThroughLbTrafficPolicy]
|
3946
|
+
attr_accessor :network_pass_through_lb_traffic_policy
|
3947
|
+
|
3819
3948
|
# Settings controlling the eviction of unhealthy hosts from the load balancing
|
3820
3949
|
# pool for the backend service.
|
3821
3950
|
# Corresponds to the JSON property `outlierDetection`
|
@@ -3950,6 +4079,7 @@ module Google
|
|
3950
4079
|
@custom_request_headers = args[:custom_request_headers] if args.key?(:custom_request_headers)
|
3951
4080
|
@custom_response_headers = args[:custom_response_headers] if args.key?(:custom_response_headers)
|
3952
4081
|
@description = args[:description] if args.key?(:description)
|
4082
|
+
@dynamic_forwarding = args[:dynamic_forwarding] if args.key?(:dynamic_forwarding)
|
3953
4083
|
@edge_security_policy = args[:edge_security_policy] if args.key?(:edge_security_policy)
|
3954
4084
|
@enable_cdn = args[:enable_cdn] if args.key?(:enable_cdn)
|
3955
4085
|
@external_managed_migration_state = args[:external_managed_migration_state] if args.key?(:external_managed_migration_state)
|
@@ -3969,6 +4099,7 @@ module Google
|
|
3969
4099
|
@metadatas = args[:metadatas] if args.key?(:metadatas)
|
3970
4100
|
@name = args[:name] if args.key?(:name)
|
3971
4101
|
@network = args[:network] if args.key?(:network)
|
4102
|
+
@network_pass_through_lb_traffic_policy = args[:network_pass_through_lb_traffic_policy] if args.key?(:network_pass_through_lb_traffic_policy)
|
3972
4103
|
@outlier_detection = args[:outlier_detection] if args.key?(:outlier_detection)
|
3973
4104
|
@port = args[:port] if args.key?(:port)
|
3974
4105
|
@port_name = args[:port_name] if args.key?(:port_name)
|
@@ -4396,7 +4527,7 @@ module Google
|
|
4396
4527
|
attr_accessor :dry_run
|
4397
4528
|
alias_method :dry_run?, :dry_run
|
4398
4529
|
|
4399
|
-
# Name of a custom utilization signal. The name must be 1-
|
4530
|
+
# Name of a custom utilization signal. The name must be 1-64 characters long and
|
4400
4531
|
# match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means the
|
4401
4532
|
# first character must be a lowercase letter, and all following characters must
|
4402
4533
|
# be a dash, period, underscore, lowercase letter, or digit, except the last
|
@@ -4419,6 +4550,47 @@ module Google
|
|
4419
4550
|
end
|
4420
4551
|
end
|
4421
4552
|
|
4553
|
+
# Defines a dynamic forwarding configuration for the backend service.
|
4554
|
+
class BackendServiceDynamicForwarding
|
4555
|
+
include Google::Apis::Core::Hashable
|
4556
|
+
|
4557
|
+
# Defines a IP:PORT based dynamic forwarding configuration for the backend
|
4558
|
+
# service. Some ranges are restricted: Restricted ranges.
|
4559
|
+
# Corresponds to the JSON property `ipPortSelection`
|
4560
|
+
# @return [Google::Apis::ComputeBeta::BackendServiceDynamicForwardingIpPortSelection]
|
4561
|
+
attr_accessor :ip_port_selection
|
4562
|
+
|
4563
|
+
def initialize(**args)
|
4564
|
+
update!(**args)
|
4565
|
+
end
|
4566
|
+
|
4567
|
+
# Update properties of this object
|
4568
|
+
def update!(**args)
|
4569
|
+
@ip_port_selection = args[:ip_port_selection] if args.key?(:ip_port_selection)
|
4570
|
+
end
|
4571
|
+
end
|
4572
|
+
|
4573
|
+
# Defines a IP:PORT based dynamic forwarding configuration for the backend
|
4574
|
+
# service. Some ranges are restricted: Restricted ranges.
|
4575
|
+
class BackendServiceDynamicForwardingIpPortSelection
|
4576
|
+
include Google::Apis::Core::Hashable
|
4577
|
+
|
4578
|
+
# A boolean flag enabling IP:PORT based dynamic forwarding.
|
4579
|
+
# Corresponds to the JSON property `enabled`
|
4580
|
+
# @return [Boolean]
|
4581
|
+
attr_accessor :enabled
|
4582
|
+
alias_method :enabled?, :enabled
|
4583
|
+
|
4584
|
+
def initialize(**args)
|
4585
|
+
update!(**args)
|
4586
|
+
end
|
4587
|
+
|
4588
|
+
# Update properties of this object
|
4589
|
+
def update!(**args)
|
4590
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
4591
|
+
end
|
4592
|
+
end
|
4593
|
+
|
4422
4594
|
# For load balancers that have configurable failover: [Internal passthrough
|
4423
4595
|
# Network Load Balancers](https://cloud.google.com/load-balancing/docs/internal/
|
4424
4596
|
# failover-overview) and [external passthrough Network Load Balancers](https://
|
@@ -4951,6 +5123,68 @@ module Google
|
|
4951
5123
|
end
|
4952
5124
|
end
|
4953
5125
|
|
5126
|
+
#
|
5127
|
+
class BackendServiceNetworkPassThroughLbTrafficPolicy
|
5128
|
+
include Google::Apis::Core::Hashable
|
5129
|
+
|
5130
|
+
# When configured, new connections are load balanced across healthy backend
|
5131
|
+
# endpoints in the local zone.
|
5132
|
+
# Corresponds to the JSON property `zonalAffinity`
|
5133
|
+
# @return [Google::Apis::ComputeBeta::BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity]
|
5134
|
+
attr_accessor :zonal_affinity
|
5135
|
+
|
5136
|
+
def initialize(**args)
|
5137
|
+
update!(**args)
|
5138
|
+
end
|
5139
|
+
|
5140
|
+
# Update properties of this object
|
5141
|
+
def update!(**args)
|
5142
|
+
@zonal_affinity = args[:zonal_affinity] if args.key?(:zonal_affinity)
|
5143
|
+
end
|
5144
|
+
end
|
5145
|
+
|
5146
|
+
#
|
5147
|
+
class BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity
|
5148
|
+
include Google::Apis::Core::Hashable
|
5149
|
+
|
5150
|
+
# This field indicates whether zonal affinity is enabled or not. The possible
|
5151
|
+
# values are: - ZONAL_AFFINITY_DISABLED: Default Value. Zonal Affinity is
|
5152
|
+
# disabled. The load balancer distributes new connections to all healthy backend
|
5153
|
+
# endpoints across all zones. - ZONAL_AFFINITY_STAY_WITHIN_ZONE: Zonal Affinity
|
5154
|
+
# is enabled. The load balancer distributes new connections to all healthy
|
5155
|
+
# backend endpoints in the local zone only. If there are no healthy backend
|
5156
|
+
# endpoints in the local zone, the load balancer distributes new connections to
|
5157
|
+
# all backend endpoints in the local zone. - ZONAL_AFFINITY_SPILL_CROSS_ZONE:
|
5158
|
+
# Zonal Affinity is enabled. The load balancer distributes new connections to
|
5159
|
+
# all healthy backend endpoints in the local zone only. If there aren't enough
|
5160
|
+
# healthy backend endpoints in the local zone, the load balancer distributes new
|
5161
|
+
# connections to all healthy backend endpoints across all zones.
|
5162
|
+
# Corresponds to the JSON property `spillover`
|
5163
|
+
# @return [String]
|
5164
|
+
attr_accessor :spillover
|
5165
|
+
|
5166
|
+
# The value of the field must be in [0, 1]. When the ratio of the count of
|
5167
|
+
# healthy backend endpoints in a zone to the count of backend endpoints in that
|
5168
|
+
# same zone is equal to or above this threshold, the load balancer distributes
|
5169
|
+
# new connections to all healthy endpoints in the local zone only. When the
|
5170
|
+
# ratio of the count of healthy backend endpoints in a zone to the count of
|
5171
|
+
# backend endpoints in that same zone is below this threshold, the load balancer
|
5172
|
+
# distributes all new connections to all healthy endpoints across all zones.
|
5173
|
+
# Corresponds to the JSON property `spilloverRatio`
|
5174
|
+
# @return [Float]
|
5175
|
+
attr_accessor :spillover_ratio
|
5176
|
+
|
5177
|
+
def initialize(**args)
|
5178
|
+
update!(**args)
|
5179
|
+
end
|
5180
|
+
|
5181
|
+
# Update properties of this object
|
5182
|
+
def update!(**args)
|
5183
|
+
@spillover = args[:spillover] if args.key?(:spillover)
|
5184
|
+
@spillover_ratio = args[:spillover_ratio] if args.key?(:spillover_ratio)
|
5185
|
+
end
|
5186
|
+
end
|
5187
|
+
|
4954
5188
|
#
|
4955
5189
|
class BackendServiceReference
|
4956
5190
|
include Google::Apis::Core::Hashable
|
@@ -5823,6 +6057,16 @@ module Google
|
|
5823
6057
|
class CacheInvalidationRule
|
5824
6058
|
include Google::Apis::Core::Hashable
|
5825
6059
|
|
6060
|
+
# [Preview] A list of cache tags used to identify cached objects. - Cache tags
|
6061
|
+
# are specified when the response is first cached, by setting the `Cache-Tag`
|
6062
|
+
# response header at the origin. - Multiple cache tags in the same invalidation
|
6063
|
+
# request are treated as Boolean `OR` - for example, `tag1 OR tag2 OR tag3`. -
|
6064
|
+
# If other fields are also specified, these are treated as Boolean `AND` with
|
6065
|
+
# any tags. Up to 10 tags can be specified in a single invalidation request.
|
6066
|
+
# Corresponds to the JSON property `cacheTags`
|
6067
|
+
# @return [Array<String>]
|
6068
|
+
attr_accessor :cache_tags
|
6069
|
+
|
5826
6070
|
# If set, this invalidation rule will only apply to requests with a Host header
|
5827
6071
|
# matching host.
|
5828
6072
|
# Corresponds to the JSON property `host`
|
@@ -5840,6 +6084,7 @@ module Google
|
|
5840
6084
|
|
5841
6085
|
# Update properties of this object
|
5842
6086
|
def update!(**args)
|
6087
|
+
@cache_tags = args[:cache_tags] if args.key?(:cache_tags)
|
5843
6088
|
@host = args[:host] if args.key?(:host)
|
5844
6089
|
@path = args[:path] if args.key?(:path)
|
5845
6090
|
end
|
@@ -5914,6 +6159,74 @@ module Google
|
|
5914
6159
|
end
|
5915
6160
|
end
|
5916
6161
|
|
6162
|
+
# A request to recommend the best way to consume the specified resources in the
|
6163
|
+
# future.
|
6164
|
+
class CalendarModeAdviceRequest
|
6165
|
+
include Google::Apis::Core::Hashable
|
6166
|
+
|
6167
|
+
# Specification of resources to create in the future. The key of the map is an
|
6168
|
+
# arbitrary string specified by the caller. Value of the map is a specification
|
6169
|
+
# of required resources and their constraints. Currently only one value is
|
6170
|
+
# allowed in this map.
|
6171
|
+
# Corresponds to the JSON property `futureResourcesSpecs`
|
6172
|
+
# @return [Hash<String,Google::Apis::ComputeBeta::FutureResourcesSpec>]
|
6173
|
+
attr_accessor :future_resources_specs
|
6174
|
+
|
6175
|
+
def initialize(**args)
|
6176
|
+
update!(**args)
|
6177
|
+
end
|
6178
|
+
|
6179
|
+
# Update properties of this object
|
6180
|
+
def update!(**args)
|
6181
|
+
@future_resources_specs = args[:future_resources_specs] if args.key?(:future_resources_specs)
|
6182
|
+
end
|
6183
|
+
end
|
6184
|
+
|
6185
|
+
# A response containing the recommended way of creating the specified resources
|
6186
|
+
# in the future. It contains (will contain) multiple recommendations that can be
|
6187
|
+
# analyzed by the customer and the best one can be picked.
|
6188
|
+
class CalendarModeAdviceResponse
|
6189
|
+
include Google::Apis::Core::Hashable
|
6190
|
+
|
6191
|
+
# Recommendations where, how and when to create the requested resources in order
|
6192
|
+
# to maximize their obtainability and minimize cost.
|
6193
|
+
# Corresponds to the JSON property `recommendations`
|
6194
|
+
# @return [Array<Google::Apis::ComputeBeta::CalendarModeRecommendation>]
|
6195
|
+
attr_accessor :recommendations
|
6196
|
+
|
6197
|
+
def initialize(**args)
|
6198
|
+
update!(**args)
|
6199
|
+
end
|
6200
|
+
|
6201
|
+
# Update properties of this object
|
6202
|
+
def update!(**args)
|
6203
|
+
@recommendations = args[:recommendations] if args.key?(:recommendations)
|
6204
|
+
end
|
6205
|
+
end
|
6206
|
+
|
6207
|
+
# A single recommendation to create requested resources. Contains detailed
|
6208
|
+
# recommendations for every future resources specification specified in
|
6209
|
+
# CalendarModeAdviceRequest.
|
6210
|
+
class CalendarModeRecommendation
|
6211
|
+
include Google::Apis::Core::Hashable
|
6212
|
+
|
6213
|
+
# Recommendations for every future resource specification passed in
|
6214
|
+
# CalendarModeAdviceRequest. Keys of the map correspond to keys specified in the
|
6215
|
+
# request.
|
6216
|
+
# Corresponds to the JSON property `recommendationsPerSpec`
|
6217
|
+
# @return [Hash<String,Google::Apis::ComputeBeta::FutureResourcesRecommendation>]
|
6218
|
+
attr_accessor :recommendations_per_spec
|
6219
|
+
|
6220
|
+
def initialize(**args)
|
6221
|
+
update!(**args)
|
6222
|
+
end
|
6223
|
+
|
6224
|
+
# Update properties of this object
|
6225
|
+
def update!(**args)
|
6226
|
+
@recommendations_per_spec = args[:recommendations_per_spec] if args.key?(:recommendations_per_spec)
|
6227
|
+
end
|
6228
|
+
end
|
6229
|
+
|
5917
6230
|
# Settings controlling the volume of requests, connections and retries to this
|
5918
6231
|
# backend service.
|
5919
6232
|
class CircuitBreakers
|
@@ -5982,29 +6295,33 @@ module Google
|
|
5982
6295
|
end
|
5983
6296
|
end
|
5984
6297
|
|
5985
|
-
# Represents a regional
|
5986
|
-
# means that you are purchasing a committed
|
5987
|
-
# and end time. You can
|
5988
|
-
#
|
5989
|
-
#
|
6298
|
+
# Represents a regional resource-based commitment resource. Creating this
|
6299
|
+
# commitment resource means that you are purchasing a resource-based committed
|
6300
|
+
# use contract, with an explicit start and end time. You can purchase resource-
|
6301
|
+
# based commitments for both hardware and software resources. For more
|
6302
|
+
# information, read Resource-based committed use discounts
|
5990
6303
|
class Commitment
|
5991
6304
|
include Google::Apis::Core::Hashable
|
5992
6305
|
|
5993
|
-
# Specifies whether to
|
5994
|
-
# value is false
|
5995
|
-
#
|
5996
|
-
#
|
5997
|
-
#
|
6306
|
+
# Specifies whether to automatically renew the commitment at the end of its
|
6307
|
+
# current term. The default value is false. If you set the field to true, each
|
6308
|
+
# time your commitment reaches the end of its term, Compute Engine automatically
|
6309
|
+
# renews it for another term. You can update this field anytime before the
|
6310
|
+
# commitment expires. For example, if the commitment is set to expire at 12 AM
|
6311
|
+
# UTC-8 on January 3, 2027, you can update this field until 11:59 PM UTC-8 on
|
6312
|
+
# January 2, 2027.
|
5998
6313
|
# Corresponds to the JSON property `autoRenew`
|
5999
6314
|
# @return [Boolean]
|
6000
6315
|
attr_accessor :auto_renew
|
6001
6316
|
alias_method :auto_renew?, :auto_renew
|
6002
6317
|
|
6003
|
-
# The category of the commitment
|
6004
|
-
#
|
6005
|
-
#
|
6006
|
-
#
|
6007
|
-
#
|
6318
|
+
# The category of the commitment; specifies whether the commitment is for
|
6319
|
+
# hardware or software resources. Category MACHINE specifies that you are
|
6320
|
+
# committing to hardware machine resources such as VCPU or MEMORY, listed in
|
6321
|
+
# resources. Category LICENSE specifies that you are committing to software
|
6322
|
+
# licenses, listed in licenseResources. Note that if you specify MACHINE
|
6323
|
+
# commitments, then you must also specify a type to indicate the machine series
|
6324
|
+
# of the hardware resource that you are committing to.
|
6008
6325
|
# Corresponds to the JSON property `category`
|
6009
6326
|
# @return [String]
|
6010
6327
|
attr_accessor :category
|
@@ -6014,15 +6331,15 @@ module Google
|
|
6014
6331
|
# @return [String]
|
6015
6332
|
attr_accessor :creation_timestamp
|
6016
6333
|
|
6017
|
-
# [Input Only] Optional, specifies the
|
6018
|
-
#
|
6334
|
+
# [Input Only] Optional, specifies the requested commitment end time in RFC3339
|
6335
|
+
# text format. Use this option when the desired commitment's end date is later
|
6019
6336
|
# than the start date + term duration.
|
6020
6337
|
# Corresponds to the JSON property `customEndTimestamp`
|
6021
6338
|
# @return [String]
|
6022
6339
|
attr_accessor :custom_end_timestamp
|
6023
6340
|
|
6024
|
-
# An optional description of
|
6025
|
-
# create the resource.
|
6341
|
+
# An optional description of the commitment. You can provide this property when
|
6342
|
+
# you create the resource.
|
6026
6343
|
# Corresponds to the JSON property `description`
|
6027
6344
|
# @return [String]
|
6028
6345
|
attr_accessor :description
|
@@ -6032,11 +6349,7 @@ module Google
|
|
6032
6349
|
# @return [String]
|
6033
6350
|
attr_accessor :end_timestamp
|
6034
6351
|
|
6035
|
-
#
|
6036
|
-
# field is optional, and it can be a full or partial URL. For example, the
|
6037
|
-
# following are valid URLs to an reservation: - https://www.googleapis.com/
|
6038
|
-
# compute/v1/projects/project/zones/zone /reservations/reservation - projects/
|
6039
|
-
# project/zones/zone/reservations/reservation
|
6352
|
+
#
|
6040
6353
|
# Corresponds to the JSON property `existingReservations`
|
6041
6354
|
# @return [Array<String>]
|
6042
6355
|
attr_accessor :existing_reservations
|
@@ -6057,34 +6370,44 @@ module Google
|
|
6057
6370
|
# @return [Google::Apis::ComputeBeta::LicenseResourceCommitment]
|
6058
6371
|
attr_accessor :license_resource
|
6059
6372
|
|
6060
|
-
#
|
6373
|
+
# The list of source commitments that you are merging to create the new merged
|
6374
|
+
# commitment. For more information, see Merging commitments.
|
6061
6375
|
# Corresponds to the JSON property `mergeSourceCommitments`
|
6062
6376
|
# @return [Array<String>]
|
6063
6377
|
attr_accessor :merge_source_commitments
|
6064
6378
|
|
6065
|
-
# Name of the
|
6066
|
-
# name must be 1-63 characters long, and comply with RFC1035.
|
6067
|
-
# name must be 1-63 characters long and match the regular
|
6068
|
-
# z0-9]*[a-z0-9])?` which means the first character must
|
6069
|
-
# and all following characters must be a dash, lowercase
|
6070
|
-
# except the last character, which cannot be a dash.
|
6379
|
+
# Name of the commitment. You must specify a name when you purchase the
|
6380
|
+
# commitment. The name must be 1-63 characters long, and comply with RFC1035.
|
6381
|
+
# Specifically, the name must be 1-63 characters long and match the regular
|
6382
|
+
# expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must
|
6383
|
+
# be a lowercase letter, and all following characters must be a dash, lowercase
|
6384
|
+
# letter, or digit, except the last character, which cannot be a dash.
|
6071
6385
|
# Corresponds to the JSON property `name`
|
6072
6386
|
# @return [String]
|
6073
6387
|
attr_accessor :name
|
6074
6388
|
|
6075
|
-
# The
|
6076
|
-
#
|
6077
|
-
# years)
|
6389
|
+
# The minimum time duration that you commit to purchasing resources. The plan
|
6390
|
+
# that you choose determines the preset term length of the commitment (which is
|
6391
|
+
# 1 year or 3 years) and affects the discount rate that you receive for your
|
6392
|
+
# resources. Committing to a longer time duration typically gives you a higher
|
6393
|
+
# discount rate. The supported values for this field are TWELVE_MONTH (1 year),
|
6394
|
+
# and THIRTY_SIX_MONTH (3 years).
|
6078
6395
|
# Corresponds to the JSON property `plan`
|
6079
6396
|
# @return [String]
|
6080
6397
|
attr_accessor :plan
|
6081
6398
|
|
6082
|
-
# [Output Only] URL of the region where
|
6399
|
+
# [Output Only] URL of the region where the commitment and committed resources
|
6400
|
+
# are located.
|
6083
6401
|
# Corresponds to the JSON property `region`
|
6084
6402
|
# @return [String]
|
6085
6403
|
attr_accessor :region
|
6086
6404
|
|
6087
|
-
#
|
6405
|
+
# The list of new reservations that you want to create and attach to this
|
6406
|
+
# commitment. You must attach reservations to your commitment if your commitment
|
6407
|
+
# specifies any GPUs or Local SSD disks. For more information, see Attach
|
6408
|
+
# reservations to resource-based commitments. Specify this property only if you
|
6409
|
+
# want to create new reservations to attach. To attach existing reservations,
|
6410
|
+
# specify the existingReservations property instead.
|
6088
6411
|
# Corresponds to the JSON property `reservations`
|
6089
6412
|
# @return [Array<Google::Apis::ComputeBeta::Reservation>]
|
6090
6413
|
attr_accessor :reservations
|
@@ -6094,8 +6417,9 @@ module Google
|
|
6094
6417
|
# @return [Google::Apis::ComputeBeta::CommitmentResourceStatus]
|
6095
6418
|
attr_accessor :resource_status
|
6096
6419
|
|
6097
|
-
#
|
6098
|
-
#
|
6420
|
+
# The list of all the hardware resources, with their types and amounts, that you
|
6421
|
+
# want to commit to. Specify as a separate entry in the list for each individual
|
6422
|
+
# resource type.
|
6099
6423
|
# Corresponds to the JSON property `resources`
|
6100
6424
|
# @return [Array<Google::Apis::ComputeBeta::ResourceCommitment>]
|
6101
6425
|
attr_accessor :resources
|
@@ -6105,7 +6429,8 @@ module Google
|
|
6105
6429
|
# @return [String]
|
6106
6430
|
attr_accessor :self_link
|
6107
6431
|
|
6108
|
-
#
|
6432
|
+
# The source commitment from which you are transferring resources to create the
|
6433
|
+
# new split commitment. For more information, see Split commitments.
|
6109
6434
|
# Corresponds to the JSON property `splitSourceCommitment`
|
6110
6435
|
# @return [String]
|
6111
6436
|
attr_accessor :split_source_commitment
|
@@ -6116,8 +6441,8 @@ module Google
|
|
6116
6441
|
attr_accessor :start_timestamp
|
6117
6442
|
|
6118
6443
|
# [Output Only] Status of the commitment with regards to eventual expiration (
|
6119
|
-
# each commitment has an end date defined).
|
6120
|
-
# NOT_YET_ACTIVE, ACTIVE, EXPIRED.
|
6444
|
+
# each commitment has an end date defined). Status can be one of the following
|
6445
|
+
# values: NOT_YET_ACTIVE, ACTIVE, or EXPIRED.
|
6121
6446
|
# Corresponds to the JSON property `status`
|
6122
6447
|
# @return [String]
|
6123
6448
|
attr_accessor :status
|
@@ -6127,10 +6452,19 @@ module Google
|
|
6127
6452
|
# @return [String]
|
6128
6453
|
attr_accessor :status_message
|
6129
6454
|
|
6130
|
-
# The type of commitment
|
6131
|
-
# resources.
|
6132
|
-
#
|
6133
|
-
#
|
6455
|
+
# The type of commitment; specifies the machine series for which you want to
|
6456
|
+
# commit to purchasing resources. The choice of machine series affects the
|
6457
|
+
# discount rate and the eligible resource types. The type must be one of the
|
6458
|
+
# following: ACCELERATOR_OPTIMIZED, ACCELERATOR_OPTIMIZED_A3,
|
6459
|
+
# ACCELERATOR_OPTIMIZED_A3_MEGA, COMPUTE_OPTIMIZED, COMPUTE_OPTIMIZED_C2D,
|
6460
|
+
# COMPUTE_OPTIMIZED_C3, COMPUTE_OPTIMIZED_C3D, COMPUTE_OPTIMIZED_H3,
|
6461
|
+
# GENERAL_PURPOSE, GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2, GENERAL_PURPOSE_N2,
|
6462
|
+
# GENERAL_PURPOSE_N2D, GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,
|
6463
|
+
# GRAPHICS_OPTIMIZED, MEMORY_OPTIMIZED, MEMORY_OPTIMIZED_M3, MEMORY_OPTIMIZED_X4,
|
6464
|
+
# STORAGE_OPTIMIZED_Z3. For example, type MEMORY_OPTIMIZED specifies a
|
6465
|
+
# commitment that applies only to eligible resources of memory optimized M1 and
|
6466
|
+
# M2 machine series. Type GENERAL_PURPOSE specifies a commitment that applies
|
6467
|
+
# only to eligible resources of general purpose N1 machine series.
|
6134
6468
|
# Corresponds to the JSON property `type`
|
6135
6469
|
# @return [String]
|
6136
6470
|
attr_accessor :type
|
@@ -6434,7 +6768,7 @@ module Google
|
|
6434
6768
|
class CommitmentsScopedList
|
6435
6769
|
include Google::Apis::Core::Hashable
|
6436
6770
|
|
6437
|
-
# [Output Only]
|
6771
|
+
# [Output Only] The list of commitments contained in this scope.
|
6438
6772
|
# Corresponds to the JSON property `commitments`
|
6439
6773
|
# @return [Array<Google::Apis::ComputeBeta::Commitment>]
|
6440
6774
|
attr_accessor :commitments
|
@@ -6714,6 +7048,201 @@ module Google
|
|
6714
7048
|
end
|
6715
7049
|
end
|
6716
7050
|
|
7051
|
+
# A resource that represents a cross-site network. You can use cross-site
|
7052
|
+
# networks to connect your on-premises networks to each other through
|
7053
|
+
# Interconnect connections.
|
7054
|
+
class CrossSiteNetwork
|
7055
|
+
include Google::Apis::Core::Hashable
|
7056
|
+
|
7057
|
+
# [Output Only] Creation timestamp in RFC3339 text format.
|
7058
|
+
# Corresponds to the JSON property `creationTimestamp`
|
7059
|
+
# @return [String]
|
7060
|
+
attr_accessor :creation_timestamp
|
7061
|
+
|
7062
|
+
# An optional description of the cross-site network.
|
7063
|
+
# Corresponds to the JSON property `description`
|
7064
|
+
# @return [String]
|
7065
|
+
attr_accessor :description
|
7066
|
+
|
7067
|
+
# [Output Only] The unique identifier for the resource type. The server
|
7068
|
+
# generates this identifier.
|
7069
|
+
# Corresponds to the JSON property `id`
|
7070
|
+
# @return [Fixnum]
|
7071
|
+
attr_accessor :id
|
7072
|
+
|
7073
|
+
# [Output Only] Type of the resource. Always compute#crossSiteNetwork for cross-
|
7074
|
+
# site networks.
|
7075
|
+
# Corresponds to the JSON property `kind`
|
7076
|
+
# @return [String]
|
7077
|
+
attr_accessor :kind
|
7078
|
+
|
7079
|
+
# Name of the resource. Provided by the client when the resource is created. The
|
7080
|
+
# name must be 1-63 characters long, and comply with RFC1035. Specifically, the
|
7081
|
+
# name must be 1-63 characters long and match the regular expression `[a-z]([-a-
|
7082
|
+
# z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter,
|
7083
|
+
# and all following characters must be a dash, lowercase letter, or digit,
|
7084
|
+
# except the last character, which cannot be a dash.
|
7085
|
+
# Corresponds to the JSON property `name`
|
7086
|
+
# @return [String]
|
7087
|
+
attr_accessor :name
|
7088
|
+
|
7089
|
+
# [Output Only] Server-defined URL for the resource.
|
7090
|
+
# Corresponds to the JSON property `selfLink`
|
7091
|
+
# @return [String]
|
7092
|
+
attr_accessor :self_link
|
7093
|
+
|
7094
|
+
# [Output Only] Server-defined URL for this resource with the resource id.
|
7095
|
+
# Corresponds to the JSON property `selfLinkWithId`
|
7096
|
+
# @return [String]
|
7097
|
+
attr_accessor :self_link_with_id
|
7098
|
+
|
7099
|
+
def initialize(**args)
|
7100
|
+
update!(**args)
|
7101
|
+
end
|
7102
|
+
|
7103
|
+
# Update properties of this object
|
7104
|
+
def update!(**args)
|
7105
|
+
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
7106
|
+
@description = args[:description] if args.key?(:description)
|
7107
|
+
@id = args[:id] if args.key?(:id)
|
7108
|
+
@kind = args[:kind] if args.key?(:kind)
|
7109
|
+
@name = args[:name] if args.key?(:name)
|
7110
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
7111
|
+
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
7112
|
+
end
|
7113
|
+
end
|
7114
|
+
|
7115
|
+
# Response to the list request that contains a list of cross-site networks.
|
7116
|
+
class CrossSiteNetworkList
|
7117
|
+
include Google::Apis::Core::Hashable
|
7118
|
+
|
7119
|
+
#
|
7120
|
+
# Corresponds to the JSON property `etag`
|
7121
|
+
# @return [String]
|
7122
|
+
attr_accessor :etag
|
7123
|
+
|
7124
|
+
# [Output Only] Unique identifier for the resource; defined by the server.
|
7125
|
+
# Corresponds to the JSON property `id`
|
7126
|
+
# @return [String]
|
7127
|
+
attr_accessor :id
|
7128
|
+
|
7129
|
+
# A list of CrossSiteNetwork resources.
|
7130
|
+
# Corresponds to the JSON property `items`
|
7131
|
+
# @return [Array<Google::Apis::ComputeBeta::CrossSiteNetwork>]
|
7132
|
+
attr_accessor :items
|
7133
|
+
|
7134
|
+
# [Output Only] Type of the resource. Always compute#crossSiteNetwork for cross-
|
7135
|
+
# site networks.
|
7136
|
+
# Corresponds to the JSON property `kind`
|
7137
|
+
# @return [String]
|
7138
|
+
attr_accessor :kind
|
7139
|
+
|
7140
|
+
# [Output Only] This token allows you to get the next page of results for list
|
7141
|
+
# requests. If the number of results is larger than maxResults, use the
|
7142
|
+
# nextPageToken as a value for the query parameter pageToken in the next list
|
7143
|
+
# request. Subsequent list requests will have their own nextPageToken to
|
7144
|
+
# continue paging through the results.
|
7145
|
+
# Corresponds to the JSON property `nextPageToken`
|
7146
|
+
# @return [String]
|
7147
|
+
attr_accessor :next_page_token
|
7148
|
+
|
7149
|
+
# [Output Only] Server-defined URL for this resource.
|
7150
|
+
# Corresponds to the JSON property `selfLink`
|
7151
|
+
# @return [String]
|
7152
|
+
attr_accessor :self_link
|
7153
|
+
|
7154
|
+
# [Output Only] Unreachable resources. end_interface:
|
7155
|
+
# MixerListResponseWithEtagBuilder
|
7156
|
+
# Corresponds to the JSON property `unreachables`
|
7157
|
+
# @return [Array<String>]
|
7158
|
+
attr_accessor :unreachables
|
7159
|
+
|
7160
|
+
# [Output Only] Informational warning message.
|
7161
|
+
# Corresponds to the JSON property `warning`
|
7162
|
+
# @return [Google::Apis::ComputeBeta::CrossSiteNetworkList::Warning]
|
7163
|
+
attr_accessor :warning
|
7164
|
+
|
7165
|
+
def initialize(**args)
|
7166
|
+
update!(**args)
|
7167
|
+
end
|
7168
|
+
|
7169
|
+
# Update properties of this object
|
7170
|
+
def update!(**args)
|
7171
|
+
@etag = args[:etag] if args.key?(:etag)
|
7172
|
+
@id = args[:id] if args.key?(:id)
|
7173
|
+
@items = args[:items] if args.key?(:items)
|
7174
|
+
@kind = args[:kind] if args.key?(:kind)
|
7175
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
7176
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
7177
|
+
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
7178
|
+
@warning = args[:warning] if args.key?(:warning)
|
7179
|
+
end
|
7180
|
+
|
7181
|
+
# [Output Only] Informational warning message.
|
7182
|
+
class Warning
|
7183
|
+
include Google::Apis::Core::Hashable
|
7184
|
+
|
7185
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
7186
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
7187
|
+
# Corresponds to the JSON property `code`
|
7188
|
+
# @return [String]
|
7189
|
+
attr_accessor :code
|
7190
|
+
|
7191
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
7192
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
7193
|
+
# Corresponds to the JSON property `data`
|
7194
|
+
# @return [Array<Google::Apis::ComputeBeta::CrossSiteNetworkList::Warning::Datum>]
|
7195
|
+
attr_accessor :data
|
7196
|
+
|
7197
|
+
# [Output Only] A human-readable description of the warning code.
|
7198
|
+
# Corresponds to the JSON property `message`
|
7199
|
+
# @return [String]
|
7200
|
+
attr_accessor :message
|
7201
|
+
|
7202
|
+
def initialize(**args)
|
7203
|
+
update!(**args)
|
7204
|
+
end
|
7205
|
+
|
7206
|
+
# Update properties of this object
|
7207
|
+
def update!(**args)
|
7208
|
+
@code = args[:code] if args.key?(:code)
|
7209
|
+
@data = args[:data] if args.key?(:data)
|
7210
|
+
@message = args[:message] if args.key?(:message)
|
7211
|
+
end
|
7212
|
+
|
7213
|
+
#
|
7214
|
+
class Datum
|
7215
|
+
include Google::Apis::Core::Hashable
|
7216
|
+
|
7217
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
7218
|
+
# For example, for warnings where there are no results in a list request for a
|
7219
|
+
# particular zone, this key might be scope and the key value might be the zone
|
7220
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
7221
|
+
# suggested replacement, or a warning about invalid network settings (for
|
7222
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
7223
|
+
# for IP forwarding).
|
7224
|
+
# Corresponds to the JSON property `key`
|
7225
|
+
# @return [String]
|
7226
|
+
attr_accessor :key
|
7227
|
+
|
7228
|
+
# [Output Only] A warning data value corresponding to the key.
|
7229
|
+
# Corresponds to the JSON property `value`
|
7230
|
+
# @return [String]
|
7231
|
+
attr_accessor :value
|
7232
|
+
|
7233
|
+
def initialize(**args)
|
7234
|
+
update!(**args)
|
7235
|
+
end
|
7236
|
+
|
7237
|
+
# Update properties of this object
|
7238
|
+
def update!(**args)
|
7239
|
+
@key = args[:key] if args.key?(:key)
|
7240
|
+
@value = args[:value] if args.key?(:value)
|
7241
|
+
end
|
7242
|
+
end
|
7243
|
+
end
|
7244
|
+
end
|
7245
|
+
|
6717
7246
|
# Specifies the custom error response policy that must be applied when the
|
6718
7247
|
# backend service or backend bucket responds with an error.
|
6719
7248
|
class CustomErrorResponsePolicy
|
@@ -7900,6 +8429,69 @@ module Google
|
|
7900
8429
|
end
|
7901
8430
|
end
|
7902
8431
|
|
8432
|
+
#
|
8433
|
+
class DiskSettings
|
8434
|
+
include Google::Apis::Core::Hashable
|
8435
|
+
|
8436
|
+
# Policy of which locations are allowed to create regional snapshots.
|
8437
|
+
# Corresponds to the JSON property `accessLocation`
|
8438
|
+
# @return [Google::Apis::ComputeBeta::DiskSettingsAccessLocation]
|
8439
|
+
attr_accessor :access_location
|
8440
|
+
|
8441
|
+
def initialize(**args)
|
8442
|
+
update!(**args)
|
8443
|
+
end
|
8444
|
+
|
8445
|
+
# Update properties of this object
|
8446
|
+
def update!(**args)
|
8447
|
+
@access_location = args[:access_location] if args.key?(:access_location)
|
8448
|
+
end
|
8449
|
+
end
|
8450
|
+
|
8451
|
+
#
|
8452
|
+
class DiskSettingsAccessLocation
|
8453
|
+
include Google::Apis::Core::Hashable
|
8454
|
+
|
8455
|
+
#
|
8456
|
+
# Corresponds to the JSON property `locations`
|
8457
|
+
# @return [Hash<String,Google::Apis::ComputeBeta::DiskSettingsAccessLocationAccessLocationPreference>]
|
8458
|
+
attr_accessor :locations
|
8459
|
+
|
8460
|
+
#
|
8461
|
+
# Corresponds to the JSON property `policy`
|
8462
|
+
# @return [String]
|
8463
|
+
attr_accessor :policy
|
8464
|
+
|
8465
|
+
def initialize(**args)
|
8466
|
+
update!(**args)
|
8467
|
+
end
|
8468
|
+
|
8469
|
+
# Update properties of this object
|
8470
|
+
def update!(**args)
|
8471
|
+
@locations = args[:locations] if args.key?(:locations)
|
8472
|
+
@policy = args[:policy] if args.key?(:policy)
|
8473
|
+
end
|
8474
|
+
end
|
8475
|
+
|
8476
|
+
#
|
8477
|
+
class DiskSettingsAccessLocationAccessLocationPreference
|
8478
|
+
include Google::Apis::Core::Hashable
|
8479
|
+
|
8480
|
+
#
|
8481
|
+
# Corresponds to the JSON property `region`
|
8482
|
+
# @return [String]
|
8483
|
+
attr_accessor :region
|
8484
|
+
|
8485
|
+
def initialize(**args)
|
8486
|
+
update!(**args)
|
8487
|
+
end
|
8488
|
+
|
8489
|
+
# Update properties of this object
|
8490
|
+
def update!(**args)
|
8491
|
+
@region = args[:region] if args.key?(:region)
|
8492
|
+
end
|
8493
|
+
end
|
8494
|
+
|
7903
8495
|
# Represents a Disk Type resource. Google Compute Engine has two Disk Type
|
7904
8496
|
# resources: * [Regional](/compute/docs/reference/rest/beta/regionDiskTypes) * [
|
7905
8497
|
# Zonal](/compute/docs/reference/rest/beta/diskTypes) You can choose from a
|
@@ -10358,6 +10950,58 @@ module Google
|
|
10358
10950
|
end
|
10359
10951
|
end
|
10360
10952
|
|
10953
|
+
# A flexible specification of a time range that has 3 points of flexibility: (1)
|
10954
|
+
# a flexible start time, (2) a flexible end time, (3) a flexible duration. It is
|
10955
|
+
# possible to specify a contradictory time range that cannot be matched by any
|
10956
|
+
# Interval. This causes a validation error.
|
10957
|
+
class FlexibleTimeRange
|
10958
|
+
include Google::Apis::Core::Hashable
|
10959
|
+
|
10960
|
+
#
|
10961
|
+
# Corresponds to the JSON property `endTimeNotEarlierThan`
|
10962
|
+
# @return [String]
|
10963
|
+
attr_accessor :end_time_not_earlier_than
|
10964
|
+
|
10965
|
+
#
|
10966
|
+
# Corresponds to the JSON property `endTimeNotLaterThan`
|
10967
|
+
# @return [String]
|
10968
|
+
attr_accessor :end_time_not_later_than
|
10969
|
+
|
10970
|
+
#
|
10971
|
+
# Corresponds to the JSON property `maxDuration`
|
10972
|
+
# @return [String]
|
10973
|
+
attr_accessor :max_duration
|
10974
|
+
|
10975
|
+
#
|
10976
|
+
# Corresponds to the JSON property `minDuration`
|
10977
|
+
# @return [String]
|
10978
|
+
attr_accessor :min_duration
|
10979
|
+
|
10980
|
+
#
|
10981
|
+
# Corresponds to the JSON property `startTimeNotEarlierThan`
|
10982
|
+
# @return [String]
|
10983
|
+
attr_accessor :start_time_not_earlier_than
|
10984
|
+
|
10985
|
+
#
|
10986
|
+
# Corresponds to the JSON property `startTimeNotLaterThan`
|
10987
|
+
# @return [String]
|
10988
|
+
attr_accessor :start_time_not_later_than
|
10989
|
+
|
10990
|
+
def initialize(**args)
|
10991
|
+
update!(**args)
|
10992
|
+
end
|
10993
|
+
|
10994
|
+
# Update properties of this object
|
10995
|
+
def update!(**args)
|
10996
|
+
@end_time_not_earlier_than = args[:end_time_not_earlier_than] if args.key?(:end_time_not_earlier_than)
|
10997
|
+
@end_time_not_later_than = args[:end_time_not_later_than] if args.key?(:end_time_not_later_than)
|
10998
|
+
@max_duration = args[:max_duration] if args.key?(:max_duration)
|
10999
|
+
@min_duration = args[:min_duration] if args.key?(:min_duration)
|
11000
|
+
@start_time_not_earlier_than = args[:start_time_not_earlier_than] if args.key?(:start_time_not_earlier_than)
|
11001
|
+
@start_time_not_later_than = args[:start_time_not_later_than] if args.key?(:start_time_not_later_than)
|
11002
|
+
end
|
11003
|
+
end
|
11004
|
+
|
10361
11005
|
# Represents a Forwarding Rule resource. Forwarding rule resources in Google
|
10362
11006
|
# Cloud can be either regional or global in scope: * [Global](https://cloud.
|
10363
11007
|
# google.com/compute/docs/reference/rest/beta/globalForwardingRules) * [Regional]
|
@@ -11195,6 +11839,13 @@ module Google
|
|
11195
11839
|
class FutureReservation
|
11196
11840
|
include Google::Apis::Core::Hashable
|
11197
11841
|
|
11842
|
+
# This reservation type is specified by total resource amounts (e.g. total count
|
11843
|
+
# of CPUs) and can account for multiple instance SKUs. In other words, one can
|
11844
|
+
# create instances of varying shapes against this reservation.
|
11845
|
+
# Corresponds to the JSON property `aggregateReservation`
|
11846
|
+
# @return [Google::Apis::ComputeBeta::AllocationAggregateReservation]
|
11847
|
+
attr_accessor :aggregate_reservation
|
11848
|
+
|
11198
11849
|
# Future timestamp when the FR auto-created reservations will be deleted by
|
11199
11850
|
# Compute Engine. Format of this field must be a valid href="https://www.ietf.
|
11200
11851
|
# org/rfc/rfc3339.txt">RFC3339 value.
|
@@ -11279,6 +11930,12 @@ module Google
|
|
11279
11930
|
# @return [String]
|
11280
11931
|
attr_accessor :planning_status
|
11281
11932
|
|
11933
|
+
# The reservation mode which determines reservation-termination behavior and
|
11934
|
+
# expected pricing.
|
11935
|
+
# Corresponds to the JSON property `reservationMode`
|
11936
|
+
# @return [String]
|
11937
|
+
attr_accessor :reservation_mode
|
11938
|
+
|
11282
11939
|
# Name of reservations where the capacity is provisioned at the time of delivery
|
11283
11940
|
# of future reservations. If the reservation with the given name does not exist
|
11284
11941
|
# already, it is created automatically at the time of Approval with INACTIVE
|
@@ -11343,6 +12000,7 @@ module Google
|
|
11343
12000
|
|
11344
12001
|
# Update properties of this object
|
11345
12002
|
def update!(**args)
|
12003
|
+
@aggregate_reservation = args[:aggregate_reservation] if args.key?(:aggregate_reservation)
|
11346
12004
|
@auto_created_reservations_delete_time = args[:auto_created_reservations_delete_time] if args.key?(:auto_created_reservations_delete_time)
|
11347
12005
|
@auto_created_reservations_duration = args[:auto_created_reservations_duration] if args.key?(:auto_created_reservations_duration)
|
11348
12006
|
@auto_delete_auto_created_reservations = args[:auto_delete_auto_created_reservations] if args.key?(:auto_delete_auto_created_reservations)
|
@@ -11355,6 +12013,7 @@ module Google
|
|
11355
12013
|
@name = args[:name] if args.key?(:name)
|
11356
12014
|
@name_prefix = args[:name_prefix] if args.key?(:name_prefix)
|
11357
12015
|
@planning_status = args[:planning_status] if args.key?(:planning_status)
|
12016
|
+
@reservation_mode = args[:reservation_mode] if args.key?(:reservation_mode)
|
11358
12017
|
@reservation_name = args[:reservation_name] if args.key?(:reservation_name)
|
11359
12018
|
@scheduling_type = args[:scheduling_type] if args.key?(:scheduling_type)
|
11360
12019
|
@self_link = args[:self_link] if args.key?(:self_link)
|
@@ -12023,6 +12682,286 @@ module Google
|
|
12023
12682
|
end
|
12024
12683
|
end
|
12025
12684
|
|
12685
|
+
# Recommendation for single resources specification, to be created in the future.
|
12686
|
+
class FutureResourcesRecommendation
|
12687
|
+
include Google::Apis::Core::Hashable
|
12688
|
+
|
12689
|
+
#
|
12690
|
+
# Corresponds to the JSON property `endTime`
|
12691
|
+
# @return [String]
|
12692
|
+
attr_accessor :end_time
|
12693
|
+
|
12694
|
+
# The advised location for resource usage. When a zone, in format 'zones/'. If
|
12695
|
+
# not set, it means that no location is recommended - see other_locations for
|
12696
|
+
# details.
|
12697
|
+
# Corresponds to the JSON property `location`
|
12698
|
+
# @return [String]
|
12699
|
+
attr_accessor :location
|
12700
|
+
|
12701
|
+
# List of locations in the request scope that were not recommended. Keys of the
|
12702
|
+
# map are zones, in format 'zones/'. The values are status information
|
12703
|
+
# indicating the recommendation status.
|
12704
|
+
# Corresponds to the JSON property `otherLocations`
|
12705
|
+
# @return [Hash<String,Google::Apis::ComputeBeta::FutureResourcesRecommendationOtherLocation>]
|
12706
|
+
attr_accessor :other_locations
|
12707
|
+
|
12708
|
+
# Unique id of the recommendation, a UUID string generated by the API.
|
12709
|
+
# Corresponds to the JSON property `recommendationId`
|
12710
|
+
# @return [String]
|
12711
|
+
attr_accessor :recommendation_id
|
12712
|
+
|
12713
|
+
# Type of recommendation. Currently only FUTURE_RESERVATION is supported.
|
12714
|
+
# Corresponds to the JSON property `recommendationType`
|
12715
|
+
# @return [String]
|
12716
|
+
attr_accessor :recommendation_type
|
12717
|
+
|
12718
|
+
#
|
12719
|
+
# Corresponds to the JSON property `startTime`
|
12720
|
+
# @return [String]
|
12721
|
+
attr_accessor :start_time
|
12722
|
+
|
12723
|
+
def initialize(**args)
|
12724
|
+
update!(**args)
|
12725
|
+
end
|
12726
|
+
|
12727
|
+
# Update properties of this object
|
12728
|
+
def update!(**args)
|
12729
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
12730
|
+
@location = args[:location] if args.key?(:location)
|
12731
|
+
@other_locations = args[:other_locations] if args.key?(:other_locations)
|
12732
|
+
@recommendation_id = args[:recommendation_id] if args.key?(:recommendation_id)
|
12733
|
+
@recommendation_type = args[:recommendation_type] if args.key?(:recommendation_type)
|
12734
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
12735
|
+
end
|
12736
|
+
end
|
12737
|
+
|
12738
|
+
# Information about recommendation status for locations that were allowed but
|
12739
|
+
# not used by the response.
|
12740
|
+
class FutureResourcesRecommendationOtherLocation
|
12741
|
+
include Google::Apis::Core::Hashable
|
12742
|
+
|
12743
|
+
# Details (human readable) describing the situation. For example, if status is
|
12744
|
+
# CONDITION_NOT_MET, then details contain information about the parameters of
|
12745
|
+
# the time window that did not meet the required conditions.
|
12746
|
+
# Corresponds to the JSON property `details`
|
12747
|
+
# @return [String]
|
12748
|
+
attr_accessor :details
|
12749
|
+
|
12750
|
+
# Status of recommendation in this location.
|
12751
|
+
# Corresponds to the JSON property `status`
|
12752
|
+
# @return [String]
|
12753
|
+
attr_accessor :status
|
12754
|
+
|
12755
|
+
def initialize(**args)
|
12756
|
+
update!(**args)
|
12757
|
+
end
|
12758
|
+
|
12759
|
+
# Update properties of this object
|
12760
|
+
def update!(**args)
|
12761
|
+
@details = args[:details] if args.key?(:details)
|
12762
|
+
@status = args[:status] if args.key?(:status)
|
12763
|
+
end
|
12764
|
+
end
|
12765
|
+
|
12766
|
+
# Specification of resources to be created at some time in the future within an
|
12767
|
+
# optionally specified set of locations, and within the specified time range.
|
12768
|
+
class FutureResourcesSpec
|
12769
|
+
include Google::Apis::Core::Hashable
|
12770
|
+
|
12771
|
+
# Indicates if the reservation allocation strategy is static (DENSE) or dynamic (
|
12772
|
+
# STANDARD). Defaults to DENSE.
|
12773
|
+
# Corresponds to the JSON property `deploymentType`
|
12774
|
+
# @return [String]
|
12775
|
+
attr_accessor :deployment_type
|
12776
|
+
|
12777
|
+
# Specification of locations to create resources in.
|
12778
|
+
# Corresponds to the JSON property `locationPolicy`
|
12779
|
+
# @return [Google::Apis::ComputeBeta::FutureResourcesSpecLocationPolicy]
|
12780
|
+
attr_accessor :location_policy
|
12781
|
+
|
12782
|
+
# Specification of reserved resources.
|
12783
|
+
# Corresponds to the JSON property `targetResources`
|
12784
|
+
# @return [Google::Apis::ComputeBeta::FutureResourcesSpecTargetResources]
|
12785
|
+
attr_accessor :target_resources
|
12786
|
+
|
12787
|
+
# A flexible specification of a time range that has 3 points of flexibility: (1)
|
12788
|
+
# a flexible start time, (2) a flexible end time, (3) a flexible duration. It is
|
12789
|
+
# possible to specify a contradictory time range that cannot be matched by any
|
12790
|
+
# Interval. This causes a validation error.
|
12791
|
+
# Corresponds to the JSON property `timeRangeSpec`
|
12792
|
+
# @return [Google::Apis::ComputeBeta::FlexibleTimeRange]
|
12793
|
+
attr_accessor :time_range_spec
|
12794
|
+
|
12795
|
+
def initialize(**args)
|
12796
|
+
update!(**args)
|
12797
|
+
end
|
12798
|
+
|
12799
|
+
# Update properties of this object
|
12800
|
+
def update!(**args)
|
12801
|
+
@deployment_type = args[:deployment_type] if args.key?(:deployment_type)
|
12802
|
+
@location_policy = args[:location_policy] if args.key?(:location_policy)
|
12803
|
+
@target_resources = args[:target_resources] if args.key?(:target_resources)
|
12804
|
+
@time_range_spec = args[:time_range_spec] if args.key?(:time_range_spec)
|
12805
|
+
end
|
12806
|
+
end
|
12807
|
+
|
12808
|
+
#
|
12809
|
+
class FutureResourcesSpecAggregateResources
|
12810
|
+
include Google::Apis::Core::Hashable
|
12811
|
+
|
12812
|
+
# Size of the request, in accelerator (chip) count.
|
12813
|
+
# Corresponds to the JSON property `acceleratorCount`
|
12814
|
+
# @return [Fixnum]
|
12815
|
+
attr_accessor :accelerator_count
|
12816
|
+
|
12817
|
+
# The VM family that all instances scheduled against this reservation must
|
12818
|
+
# belong to. Use for TPU reservations.
|
12819
|
+
# Corresponds to the JSON property `vmFamily`
|
12820
|
+
# @return [String]
|
12821
|
+
attr_accessor :vm_family
|
12822
|
+
|
12823
|
+
# Workload type. Use for TPU reservations.
|
12824
|
+
# Corresponds to the JSON property `workloadType`
|
12825
|
+
# @return [String]
|
12826
|
+
attr_accessor :workload_type
|
12827
|
+
|
12828
|
+
def initialize(**args)
|
12829
|
+
update!(**args)
|
12830
|
+
end
|
12831
|
+
|
12832
|
+
# Update properties of this object
|
12833
|
+
def update!(**args)
|
12834
|
+
@accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count)
|
12835
|
+
@vm_family = args[:vm_family] if args.key?(:vm_family)
|
12836
|
+
@workload_type = args[:workload_type] if args.key?(:workload_type)
|
12837
|
+
end
|
12838
|
+
end
|
12839
|
+
|
12840
|
+
#
|
12841
|
+
class FutureResourcesSpecLocalSsdPartition
|
12842
|
+
include Google::Apis::Core::Hashable
|
12843
|
+
|
12844
|
+
# Disk interface. Defaults to SCSI.
|
12845
|
+
# Corresponds to the JSON property `diskInterface`
|
12846
|
+
# @return [String]
|
12847
|
+
attr_accessor :disk_interface
|
12848
|
+
|
12849
|
+
# The size of the disk in GB.
|
12850
|
+
# Corresponds to the JSON property `diskSizeGb`
|
12851
|
+
# @return [Fixnum]
|
12852
|
+
attr_accessor :disk_size_gb
|
12853
|
+
|
12854
|
+
def initialize(**args)
|
12855
|
+
update!(**args)
|
12856
|
+
end
|
12857
|
+
|
12858
|
+
# Update properties of this object
|
12859
|
+
def update!(**args)
|
12860
|
+
@disk_interface = args[:disk_interface] if args.key?(:disk_interface)
|
12861
|
+
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
12862
|
+
end
|
12863
|
+
end
|
12864
|
+
|
12865
|
+
# Specification of locations to create resources in.
|
12866
|
+
class FutureResourcesSpecLocationPolicy
|
12867
|
+
include Google::Apis::Core::Hashable
|
12868
|
+
|
12869
|
+
# Preferences for specified locations. Keys of the map are locations - zones, in
|
12870
|
+
# format of 'zones/'. Values are preferences for the zones. If a zone is not
|
12871
|
+
# specified in this map, it is ALLOWed.
|
12872
|
+
# Corresponds to the JSON property `locations`
|
12873
|
+
# @return [Hash<String,Google::Apis::ComputeBeta::FutureResourcesSpecLocationPolicyLocation>]
|
12874
|
+
attr_accessor :locations
|
12875
|
+
|
12876
|
+
def initialize(**args)
|
12877
|
+
update!(**args)
|
12878
|
+
end
|
12879
|
+
|
12880
|
+
# Update properties of this object
|
12881
|
+
def update!(**args)
|
12882
|
+
@locations = args[:locations] if args.key?(:locations)
|
12883
|
+
end
|
12884
|
+
end
|
12885
|
+
|
12886
|
+
# Preference for a single specified location.
|
12887
|
+
class FutureResourcesSpecLocationPolicyLocation
|
12888
|
+
include Google::Apis::Core::Hashable
|
12889
|
+
|
12890
|
+
# Preference for this location.
|
12891
|
+
# Corresponds to the JSON property `preference`
|
12892
|
+
# @return [String]
|
12893
|
+
attr_accessor :preference
|
12894
|
+
|
12895
|
+
def initialize(**args)
|
12896
|
+
update!(**args)
|
12897
|
+
end
|
12898
|
+
|
12899
|
+
# Update properties of this object
|
12900
|
+
def update!(**args)
|
12901
|
+
@preference = args[:preference] if args.key?(:preference)
|
12902
|
+
end
|
12903
|
+
end
|
12904
|
+
|
12905
|
+
#
|
12906
|
+
class FutureResourcesSpecSpecificSkuResources
|
12907
|
+
include Google::Apis::Core::Hashable
|
12908
|
+
|
12909
|
+
# Size of the request, in instance count.
|
12910
|
+
# Corresponds to the JSON property `instanceCount`
|
12911
|
+
# @return [Fixnum]
|
12912
|
+
attr_accessor :instance_count
|
12913
|
+
|
12914
|
+
# Local SSD partitions. You do not have to include SSD partitions that are built
|
12915
|
+
# in the machine type.
|
12916
|
+
# Corresponds to the JSON property `localSsdPartitions`
|
12917
|
+
# @return [Array<Google::Apis::ComputeBeta::FutureResourcesSpecLocalSsdPartition>]
|
12918
|
+
attr_accessor :local_ssd_partitions
|
12919
|
+
|
12920
|
+
# The machine type to use for instances that will use the reservation. This
|
12921
|
+
# field only accepts machine type names. e.g. n2-standard-4 and does not accept
|
12922
|
+
# machine type full or partial url. e.g. projects/my-l7ilb-project/zones/us-
|
12923
|
+
# central1-a/machineTypes/n2-standard-4. Use for GPU reservations.
|
12924
|
+
# Corresponds to the JSON property `machineType`
|
12925
|
+
# @return [String]
|
12926
|
+
attr_accessor :machine_type
|
12927
|
+
|
12928
|
+
def initialize(**args)
|
12929
|
+
update!(**args)
|
12930
|
+
end
|
12931
|
+
|
12932
|
+
# Update properties of this object
|
12933
|
+
def update!(**args)
|
12934
|
+
@instance_count = args[:instance_count] if args.key?(:instance_count)
|
12935
|
+
@local_ssd_partitions = args[:local_ssd_partitions] if args.key?(:local_ssd_partitions)
|
12936
|
+
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
12937
|
+
end
|
12938
|
+
end
|
12939
|
+
|
12940
|
+
# Specification of reserved resources.
|
12941
|
+
class FutureResourcesSpecTargetResources
|
12942
|
+
include Google::Apis::Core::Hashable
|
12943
|
+
|
12944
|
+
#
|
12945
|
+
# Corresponds to the JSON property `aggregateResources`
|
12946
|
+
# @return [Google::Apis::ComputeBeta::FutureResourcesSpecAggregateResources]
|
12947
|
+
attr_accessor :aggregate_resources
|
12948
|
+
|
12949
|
+
#
|
12950
|
+
# Corresponds to the JSON property `specificSkuResources`
|
12951
|
+
# @return [Google::Apis::ComputeBeta::FutureResourcesSpecSpecificSkuResources]
|
12952
|
+
attr_accessor :specific_sku_resources
|
12953
|
+
|
12954
|
+
def initialize(**args)
|
12955
|
+
update!(**args)
|
12956
|
+
end
|
12957
|
+
|
12958
|
+
# Update properties of this object
|
12959
|
+
def update!(**args)
|
12960
|
+
@aggregate_resources = args[:aggregate_resources] if args.key?(:aggregate_resources)
|
12961
|
+
@specific_sku_resources = args[:specific_sku_resources] if args.key?(:specific_sku_resources)
|
12962
|
+
end
|
12963
|
+
end
|
12964
|
+
|
12026
12965
|
#
|
12027
12966
|
class GrpcHealthCheck
|
12028
12967
|
include Google::Apis::Core::Hashable
|
@@ -16144,11 +17083,11 @@ module Google
|
|
16144
17083
|
# @return [String]
|
16145
17084
|
attr_accessor :name
|
16146
17085
|
|
16147
|
-
# Assigns a name to a port number. For example: `name: "http", port:
|
16148
|
-
# allows the system to reference ports by the assigned name instead of
|
16149
|
-
# number. Named ports can also contain multiple ports. For example: [`
|
16150
|
-
# app1", port: 8080`, `name: "app1", port: 8081`, `name: "app2", port:
|
16151
|
-
# Named ports apply to all instances in this instance group.
|
17086
|
+
# Optional. Assigns a name to a port number. For example: `name: "http", port:
|
17087
|
+
# 80` This allows the system to reference ports by the assigned name instead of
|
17088
|
+
# a port number. Named ports can also contain multiple ports. For example: [`
|
17089
|
+
# name: "app1", port: 8080`, `name: "app1", port: 8081`, `name: "app2", port:
|
17090
|
+
# 8082`] Named ports apply to all instances in this instance group.
|
16152
17091
|
# Corresponds to the JSON property `namedPorts`
|
16153
17092
|
# @return [Array<Google::Apis::ComputeBeta::NamedPort>]
|
16154
17093
|
attr_accessor :named_ports
|
@@ -17138,6 +18077,17 @@ module Google
|
|
17138
18077
|
# @return [String]
|
17139
18078
|
attr_accessor :force_update_on_repair
|
17140
18079
|
|
18080
|
+
# The action that a MIG performs on an unhealthy VM. A VM is marked as unhealthy
|
18081
|
+
# when the application running on that VM fails a health check. Valid values are:
|
18082
|
+
# - DEFAULT_ACTION (default): MIG uses the same action configured for
|
18083
|
+
# instanceLifecyclePolicy.defaultActionOnFailure field. - REPAIR: MIG
|
18084
|
+
# automatically repairs an unhealthy VM by recreating it. - DO_NOTHING: MIG
|
18085
|
+
# doesn't repair an unhealthy VM. For more information, see About repairing VMs
|
18086
|
+
# in a MIG.
|
18087
|
+
# Corresponds to the JSON property `onFailedHealthCheck`
|
18088
|
+
# @return [String]
|
18089
|
+
attr_accessor :on_failed_health_check
|
18090
|
+
|
17141
18091
|
def initialize(**args)
|
17142
18092
|
update!(**args)
|
17143
18093
|
end
|
@@ -17146,6 +18096,7 @@ module Google
|
|
17146
18096
|
def update!(**args)
|
17147
18097
|
@default_action_on_failure = args[:default_action_on_failure] if args.key?(:default_action_on_failure)
|
17148
18098
|
@force_update_on_repair = args[:force_update_on_repair] if args.key?(:force_update_on_repair)
|
18099
|
+
@on_failed_health_check = args[:on_failed_health_check] if args.key?(:on_failed_health_check)
|
17149
18100
|
end
|
17150
18101
|
end
|
17151
18102
|
|
@@ -20429,6 +21380,56 @@ module Google
|
|
20429
21380
|
end
|
20430
21381
|
end
|
20431
21382
|
|
21383
|
+
#
|
21384
|
+
class InstancesReportHostAsFaultyRequest
|
21385
|
+
include Google::Apis::Core::Hashable
|
21386
|
+
|
21387
|
+
# The disruption schedule for the VM. Default to IMMEDIATE.
|
21388
|
+
# Corresponds to the JSON property `disruptionSchedule`
|
21389
|
+
# @return [String]
|
21390
|
+
attr_accessor :disruption_schedule
|
21391
|
+
|
21392
|
+
#
|
21393
|
+
# Corresponds to the JSON property `faultReasons`
|
21394
|
+
# @return [Array<Google::Apis::ComputeBeta::InstancesReportHostAsFaultyRequestFaultReason>]
|
21395
|
+
attr_accessor :fault_reasons
|
21396
|
+
|
21397
|
+
def initialize(**args)
|
21398
|
+
update!(**args)
|
21399
|
+
end
|
21400
|
+
|
21401
|
+
# Update properties of this object
|
21402
|
+
def update!(**args)
|
21403
|
+
@disruption_schedule = args[:disruption_schedule] if args.key?(:disruption_schedule)
|
21404
|
+
@fault_reasons = args[:fault_reasons] if args.key?(:fault_reasons)
|
21405
|
+
end
|
21406
|
+
end
|
21407
|
+
|
21408
|
+
#
|
21409
|
+
class InstancesReportHostAsFaultyRequestFaultReason
|
21410
|
+
include Google::Apis::Core::Hashable
|
21411
|
+
|
21412
|
+
#
|
21413
|
+
# Corresponds to the JSON property `behavior`
|
21414
|
+
# @return [String]
|
21415
|
+
attr_accessor :behavior
|
21416
|
+
|
21417
|
+
#
|
21418
|
+
# Corresponds to the JSON property `description`
|
21419
|
+
# @return [String]
|
21420
|
+
attr_accessor :description
|
21421
|
+
|
21422
|
+
def initialize(**args)
|
21423
|
+
update!(**args)
|
21424
|
+
end
|
21425
|
+
|
21426
|
+
# Update properties of this object
|
21427
|
+
def update!(**args)
|
21428
|
+
@behavior = args[:behavior] if args.key?(:behavior)
|
21429
|
+
@description = args[:description] if args.key?(:description)
|
21430
|
+
end
|
21431
|
+
end
|
21432
|
+
|
20432
21433
|
#
|
20433
21434
|
class InstancesResumeRequest
|
20434
21435
|
include Google::Apis::Core::Hashable
|
@@ -21512,6 +22513,13 @@ module Google
|
|
21512
22513
|
# @return [String]
|
21513
22514
|
attr_accessor :state
|
21514
22515
|
|
22516
|
+
# [Output Only] A list of the URLs of all CrossSiteNetwork WireGroups configured
|
22517
|
+
# to use this Interconnect. The Interconnect cannot be deleted if this list is
|
22518
|
+
# non-empty.
|
22519
|
+
# Corresponds to the JSON property `wireGroups`
|
22520
|
+
# @return [Array<String>]
|
22521
|
+
attr_accessor :wire_groups
|
22522
|
+
|
21515
22523
|
def initialize(**args)
|
21516
22524
|
update!(**args)
|
21517
22525
|
end
|
@@ -21550,6 +22558,7 @@ module Google
|
|
21550
22558
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
21551
22559
|
@self_link = args[:self_link] if args.key?(:self_link)
|
21552
22560
|
@state = args[:state] if args.key?(:state)
|
22561
|
+
@wire_groups = args[:wire_groups] if args.key?(:wire_groups)
|
21553
22562
|
end
|
21554
22563
|
end
|
21555
22564
|
|
@@ -22915,6 +23924,14 @@ module Google
|
|
22915
23924
|
# @return [String]
|
22916
23925
|
attr_accessor :creation_timestamp
|
22917
23926
|
|
23927
|
+
# [Output Only] A list of InterconnectLocation.CrossSiteInterconnectInfo objects,
|
23928
|
+
# that describe where Cross-Site Interconnect wires may connect to from this
|
23929
|
+
# location and associated connection parameters. Cross-Site Interconnect isn't
|
23930
|
+
# allowed to locations which are not listed.
|
23931
|
+
# Corresponds to the JSON property `crossSiteInterconnectInfos`
|
23932
|
+
# @return [Array<Google::Apis::ComputeBeta::InterconnectLocationCrossSiteInterconnectInfo>]
|
23933
|
+
attr_accessor :cross_site_interconnect_infos
|
23934
|
+
|
22918
23935
|
# [Output Only] An optional description of the resource.
|
22919
23936
|
# Corresponds to the JSON property `description`
|
22920
23937
|
# @return [String]
|
@@ -22993,6 +24010,7 @@ module Google
|
|
22993
24010
|
@city = args[:city] if args.key?(:city)
|
22994
24011
|
@continent = args[:continent] if args.key?(:continent)
|
22995
24012
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
24013
|
+
@cross_site_interconnect_infos = args[:cross_site_interconnect_infos] if args.key?(:cross_site_interconnect_infos)
|
22996
24014
|
@description = args[:description] if args.key?(:description)
|
22997
24015
|
@facility_provider = args[:facility_provider] if args.key?(:facility_provider)
|
22998
24016
|
@facility_provider_facility_id = args[:facility_provider_facility_id] if args.key?(:facility_provider_facility_id)
|
@@ -23007,6 +24025,28 @@ module Google
|
|
23007
24025
|
end
|
23008
24026
|
end
|
23009
24027
|
|
24028
|
+
# Information about Cross-Site Interconnect wires which may be created between
|
24029
|
+
# the containing location and another remote location.
|
24030
|
+
class InterconnectLocationCrossSiteInterconnectInfo
|
24031
|
+
include Google::Apis::Core::Hashable
|
24032
|
+
|
24033
|
+
# The remote location for Cross-Site Interconnect wires. This specifies an
|
24034
|
+
# InterconnectLocation city (metropolitan area designator), which itself may
|
24035
|
+
# match multiple InterconnectLocations.
|
24036
|
+
# Corresponds to the JSON property `city`
|
24037
|
+
# @return [String]
|
24038
|
+
attr_accessor :city
|
24039
|
+
|
24040
|
+
def initialize(**args)
|
24041
|
+
update!(**args)
|
24042
|
+
end
|
24043
|
+
|
24044
|
+
# Update properties of this object
|
24045
|
+
def update!(**args)
|
24046
|
+
@city = args[:city] if args.key?(:city)
|
24047
|
+
end
|
24048
|
+
end
|
24049
|
+
|
23010
24050
|
# Response to the list request, and contains a list of interconnect locations.
|
23011
24051
|
class InterconnectLocationList
|
23012
24052
|
include Google::Apis::Core::Hashable
|
@@ -23965,17 +25005,17 @@ module Google
|
|
23965
25005
|
class LicenseResourceCommitment
|
23966
25006
|
include Google::Apis::Core::Hashable
|
23967
25007
|
|
23968
|
-
# The number of licenses
|
25008
|
+
# The number of licenses you plan to purchase.
|
23969
25009
|
# Corresponds to the JSON property `amount`
|
23970
25010
|
# @return [Fixnum]
|
23971
25011
|
attr_accessor :amount
|
23972
25012
|
|
23973
|
-
#
|
25013
|
+
# The number of cores per license.
|
23974
25014
|
# Corresponds to the JSON property `coresPerLicense`
|
23975
25015
|
# @return [String]
|
23976
25016
|
attr_accessor :cores_per_license
|
23977
25017
|
|
23978
|
-
#
|
25018
|
+
# The applicable license URI.
|
23979
25019
|
# Corresponds to the JSON property `license`
|
23980
25020
|
# @return [String]
|
23981
25021
|
attr_accessor :license
|
@@ -26807,13 +27847,13 @@ module Google
|
|
26807
27847
|
class NetworkEndpoint
|
26808
27848
|
include Google::Apis::Core::Hashable
|
26809
27849
|
|
26810
|
-
#
|
27850
|
+
# Optional metadata defined as annotations on the network endpoint.
|
26811
27851
|
# Corresponds to the JSON property `annotations`
|
26812
27852
|
# @return [Hash<String,String>]
|
26813
27853
|
attr_accessor :annotations
|
26814
27854
|
|
26815
|
-
# Represents the port number to which PSC consumer sends packets. Only
|
26816
|
-
# network endpoint groups created with GCE_VM_IP_PORTMAP endpoint type.
|
27855
|
+
# Represents the port number to which PSC consumer sends packets. Optional. Only
|
27856
|
+
# valid for network endpoint groups created with GCE_VM_IP_PORTMAP endpoint type.
|
26817
27857
|
# Corresponds to the JSON property `clientDestinationPort`
|
26818
27858
|
# @return [Fixnum]
|
26819
27859
|
attr_accessor :client_destination_port
|
@@ -26824,12 +27864,13 @@ module Google
|
|
26824
27864
|
# @return [String]
|
26825
27865
|
attr_accessor :fqdn
|
26826
27866
|
|
26827
|
-
# The name or a URL of VM instance of this network endpoint.
|
26828
|
-
#
|
26829
|
-
#
|
26830
|
-
#
|
26831
|
-
#
|
26832
|
-
#
|
27867
|
+
# The name or a URL of VM instance of this network endpoint. Optional, the field
|
27868
|
+
# presence depends on the network endpoint type. The field is required for
|
27869
|
+
# network endpoints of type GCE_VM_IP and GCE_VM_IP_PORT. The instance must be
|
27870
|
+
# in the same zone of network endpoint group (for zonal NEGs) or in the zone
|
27871
|
+
# within the region of the NEG (for regional NEGs). If the ipAddress is
|
27872
|
+
# specified, it must belongs to the VM instance. The name must be 1-63
|
27873
|
+
# characters long, and comply with RFC1035 or be a valid URL pointing to an
|
26833
27874
|
# existing instance.
|
26834
27875
|
# Corresponds to the JSON property `instance`
|
26835
27876
|
# @return [String]
|
@@ -26883,7 +27924,7 @@ module Google
|
|
26883
27924
|
class NetworkEndpointGroup
|
26884
27925
|
include Google::Apis::Core::Hashable
|
26885
27926
|
|
26886
|
-
# Metadata defined as annotations on the network endpoint group.
|
27927
|
+
# Optional. Metadata defined as annotations on the network endpoint group.
|
26887
27928
|
# Corresponds to the JSON property `annotations`
|
26888
27929
|
# @return [Hash<String,String>]
|
26889
27930
|
attr_accessor :annotations
|
@@ -26918,8 +27959,8 @@ module Google
|
|
26918
27959
|
attr_accessor :creation_timestamp
|
26919
27960
|
|
26920
27961
|
# The default port used if the port number is not specified in the network
|
26921
|
-
# endpoint. If the network endpoint type is either GCE_VM_IP,
|
26922
|
-
# PRIVATE_SERVICE_CONNECT, this field must not be specified.
|
27962
|
+
# endpoint. Optional. If the network endpoint type is either GCE_VM_IP,
|
27963
|
+
# SERVERLESS or PRIVATE_SERVICE_CONNECT, this field must not be specified.
|
26923
27964
|
# Corresponds to the JSON property `defaultPort`
|
26924
27965
|
# @return [Fixnum]
|
26925
27966
|
attr_accessor :default_port
|
@@ -26978,7 +28019,8 @@ module Google
|
|
26978
28019
|
|
26979
28020
|
# The target service url used to set up private service connection to a Google
|
26980
28021
|
# API or a PSC Producer Service Attachment. An example value is: asia-northeast3-
|
26981
|
-
# cloudkms.googleapis.com
|
28022
|
+
# cloudkms.googleapis.com. Optional. Only valid when networkEndpointType is
|
28023
|
+
# PRIVATE_SERVICE_CONNECT.
|
26982
28024
|
# Corresponds to the JSON property `pscTargetService`
|
26983
28025
|
# @return [String]
|
26984
28026
|
attr_accessor :psc_target_service
|
@@ -27842,7 +28884,8 @@ module Google
|
|
27842
28884
|
class NetworkEndpointWithHealthStatus
|
27843
28885
|
include Google::Apis::Core::Hashable
|
27844
28886
|
|
27845
|
-
# [Output only] The health status of network endpoint
|
28887
|
+
# [Output only] The health status of network endpoint. Optional. Displayed only
|
28888
|
+
# if the network endpoint has centralized health checking configured.
|
27846
28889
|
# Corresponds to the JSON property `healths`
|
27847
28890
|
# @return [Array<Google::Apis::ComputeBeta::HealthStatusForNetworkEndpoint>]
|
27848
28891
|
attr_accessor :healths
|
@@ -28086,6 +29129,11 @@ module Google
|
|
28086
29129
|
# @return [String]
|
28087
29130
|
attr_accessor :nic_type
|
28088
29131
|
|
29132
|
+
# Name of the parent network interface of a dynamic network interface.
|
29133
|
+
# Corresponds to the JSON property `parentNicName`
|
29134
|
+
# @return [String]
|
29135
|
+
attr_accessor :parent_nic_name
|
29136
|
+
|
28089
29137
|
# The networking queue count that's specified by users for the network interface.
|
28090
29138
|
# Both Rx and Tx queues will be set to this number. It'll be empty if not
|
28091
29139
|
# specified by the users.
|
@@ -28113,6 +29161,12 @@ module Google
|
|
28113
29161
|
# @return [String]
|
28114
29162
|
attr_accessor :subnetwork
|
28115
29163
|
|
29164
|
+
# VLAN tag of a dynamic network interface, must be an integer in the range from
|
29165
|
+
# 2 to 255 inclusively.
|
29166
|
+
# Corresponds to the JSON property `vlan`
|
29167
|
+
# @return [Fixnum]
|
29168
|
+
attr_accessor :vlan
|
29169
|
+
|
28116
29170
|
def initialize(**args)
|
28117
29171
|
update!(**args)
|
28118
29172
|
end
|
@@ -28132,9 +29186,11 @@ module Google
|
|
28132
29186
|
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
28133
29187
|
@network_ip = args[:network_ip] if args.key?(:network_ip)
|
28134
29188
|
@nic_type = args[:nic_type] if args.key?(:nic_type)
|
29189
|
+
@parent_nic_name = args[:parent_nic_name] if args.key?(:parent_nic_name)
|
28135
29190
|
@queue_count = args[:queue_count] if args.key?(:queue_count)
|
28136
29191
|
@stack_type = args[:stack_type] if args.key?(:stack_type)
|
28137
29192
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
29193
|
+
@vlan = args[:vlan] if args.key?(:vlan)
|
28138
29194
|
end
|
28139
29195
|
end
|
28140
29196
|
|
@@ -28442,11 +29498,6 @@ module Google
|
|
28442
29498
|
# @return [String]
|
28443
29499
|
attr_accessor :self_link_with_id
|
28444
29500
|
|
28445
|
-
# [Output Only] Zone to which the network is restricted.
|
28446
|
-
# Corresponds to the JSON property `zone`
|
28447
|
-
# @return [String]
|
28448
|
-
attr_accessor :zone
|
28449
|
-
|
28450
29501
|
def initialize(**args)
|
28451
29502
|
update!(**args)
|
28452
29503
|
end
|
@@ -28462,7 +29513,6 @@ module Google
|
|
28462
29513
|
@name = args[:name] if args.key?(:name)
|
28463
29514
|
@self_link = args[:self_link] if args.key?(:self_link)
|
28464
29515
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
28465
|
-
@zone = args[:zone] if args.key?(:zone)
|
28466
29516
|
end
|
28467
29517
|
end
|
28468
29518
|
|
@@ -30425,6 +31475,11 @@ module Google
|
|
30425
31475
|
# @return [Fixnum]
|
30426
31476
|
attr_accessor :local_ssd_gb
|
30427
31477
|
|
31478
|
+
# [Output Only] Maximum number of VMs that can be created for this node type.
|
31479
|
+
# Corresponds to the JSON property `maxVms`
|
31480
|
+
# @return [Fixnum]
|
31481
|
+
attr_accessor :max_vms
|
31482
|
+
|
30428
31483
|
# [Output Only] The amount of physical memory available to the node type,
|
30429
31484
|
# defined in MB.
|
30430
31485
|
# Corresponds to the JSON property `memoryMb`
|
@@ -30461,6 +31516,7 @@ module Google
|
|
30461
31516
|
@id = args[:id] if args.key?(:id)
|
30462
31517
|
@kind = args[:kind] if args.key?(:kind)
|
30463
31518
|
@local_ssd_gb = args[:local_ssd_gb] if args.key?(:local_ssd_gb)
|
31519
|
+
@max_vms = args[:max_vms] if args.key?(:max_vms)
|
30464
31520
|
@memory_mb = args[:memory_mb] if args.key?(:memory_mb)
|
30465
31521
|
@name = args[:name] if args.key?(:name)
|
30466
31522
|
@self_link = args[:self_link] if args.key?(:self_link)
|
@@ -34600,7 +35656,7 @@ module Google
|
|
34600
35656
|
class RegionCommitmentsUpdateReservationsRequest
|
34601
35657
|
include Google::Apis::Core::Hashable
|
34602
35658
|
|
34603
|
-
# A list of two reservations to transfer GPUs and
|
35659
|
+
# A list of two reservations to transfer GPUs and Local SSD disks between.
|
34604
35660
|
# Corresponds to the JSON property `reservations`
|
34605
35661
|
# @return [Array<Google::Apis::ComputeBeta::Reservation>]
|
34606
35662
|
attr_accessor :reservations
|
@@ -36409,6 +37465,11 @@ module Google
|
|
36409
37465
|
# @return [String]
|
36410
37466
|
attr_accessor :name
|
36411
37467
|
|
37468
|
+
# [Output only] Indicates the reservation mode of the reservation.
|
37469
|
+
# Corresponds to the JSON property `reservationMode`
|
37470
|
+
# @return [String]
|
37471
|
+
attr_accessor :reservation_mode
|
37472
|
+
|
36412
37473
|
# Specify the reservation sharing policy. If unspecified, the reservation will
|
36413
37474
|
# not be shared with Google Cloud managed services.
|
36414
37475
|
# Corresponds to the JSON property `reservationSharingPolicy`
|
@@ -36486,6 +37547,7 @@ module Google
|
|
36486
37547
|
@id = args[:id] if args.key?(:id)
|
36487
37548
|
@kind = args[:kind] if args.key?(:kind)
|
36488
37549
|
@name = args[:name] if args.key?(:name)
|
37550
|
+
@reservation_mode = args[:reservation_mode] if args.key?(:reservation_mode)
|
36489
37551
|
@reservation_sharing_policy = args[:reservation_sharing_policy] if args.key?(:reservation_sharing_policy)
|
36490
37552
|
@resource_policies = args[:resource_policies] if args.key?(:resource_policies)
|
36491
37553
|
@resource_status = args[:resource_status] if args.key?(:resource_status)
|
@@ -37032,6 +38094,44 @@ module Google
|
|
37032
38094
|
end
|
37033
38095
|
end
|
37034
38096
|
|
38097
|
+
#
|
38098
|
+
class ReservationsBlocksPerformMaintenanceRequest
|
38099
|
+
include Google::Apis::Core::Hashable
|
38100
|
+
|
38101
|
+
# Specifies if all, running or unused hosts are in scope for this request.
|
38102
|
+
# Corresponds to the JSON property `maintenanceScope`
|
38103
|
+
# @return [String]
|
38104
|
+
attr_accessor :maintenance_scope
|
38105
|
+
|
38106
|
+
def initialize(**args)
|
38107
|
+
update!(**args)
|
38108
|
+
end
|
38109
|
+
|
38110
|
+
# Update properties of this object
|
38111
|
+
def update!(**args)
|
38112
|
+
@maintenance_scope = args[:maintenance_scope] if args.key?(:maintenance_scope)
|
38113
|
+
end
|
38114
|
+
end
|
38115
|
+
|
38116
|
+
#
|
38117
|
+
class ReservationsPerformMaintenanceRequest
|
38118
|
+
include Google::Apis::Core::Hashable
|
38119
|
+
|
38120
|
+
# Specifies if all, running or unused hosts are in scope for this request.
|
38121
|
+
# Corresponds to the JSON property `maintenanceScope`
|
38122
|
+
# @return [String]
|
38123
|
+
attr_accessor :maintenance_scope
|
38124
|
+
|
38125
|
+
def initialize(**args)
|
38126
|
+
update!(**args)
|
38127
|
+
end
|
38128
|
+
|
38129
|
+
# Update properties of this object
|
38130
|
+
def update!(**args)
|
38131
|
+
@maintenance_scope = args[:maintenance_scope] if args.key?(:maintenance_scope)
|
38132
|
+
end
|
38133
|
+
end
|
38134
|
+
|
37035
38135
|
#
|
37036
38136
|
class ReservationsResizeRequest
|
37037
38137
|
include Google::Apis::Core::Hashable
|
@@ -37143,27 +38243,30 @@ module Google
|
|
37143
38243
|
end
|
37144
38244
|
end
|
37145
38245
|
|
37146
|
-
# Commitment for a particular resource (a
|
37147
|
-
# of these).
|
38246
|
+
# Commitment for a particular hardware resource (a commitment is composed of one
|
38247
|
+
# or more of these).
|
37148
38248
|
class ResourceCommitment
|
37149
38249
|
include Google::Apis::Core::Hashable
|
37150
38250
|
|
37151
|
-
# Name of the accelerator type resource.
|
37152
|
-
# ACCELERATOR.
|
38251
|
+
# Name of the accelerator type or GPU resource. Specify this field only when the
|
38252
|
+
# type of hardware resource is ACCELERATOR.
|
37153
38253
|
# Corresponds to the JSON property `acceleratorType`
|
37154
38254
|
# @return [String]
|
37155
38255
|
attr_accessor :accelerator_type
|
37156
38256
|
|
37157
|
-
# The
|
37158
|
-
#
|
37159
|
-
#
|
37160
|
-
# vCPU.
|
38257
|
+
# The quantity of the hardware resource that you want to commit to purchasing (
|
38258
|
+
# in a type-dependent unit). - For vCPUs, you must specify an integer value. -
|
38259
|
+
# For memory, you specify the amount of MB that you want. The value you specify
|
38260
|
+
# must be a multiple of 256 MB, with up to 6.5 GB of memory per every vCPU. -
|
38261
|
+
# For GPUs, you must specify an integer value. - For Local SSD disks, you must
|
38262
|
+
# specify the amount in GB. The size of a single Local SSD disk is 375 GB.
|
37161
38263
|
# Corresponds to the JSON property `amount`
|
37162
38264
|
# @return [Fixnum]
|
37163
38265
|
attr_accessor :amount
|
37164
38266
|
|
37165
|
-
#
|
37166
|
-
# MEMORY
|
38267
|
+
# The type of hardware resource that you want to specify. You can specify any of
|
38268
|
+
# the following values: - VCPU - MEMORY - LOCAL_SSD - ACCELERATOR Specify as a
|
38269
|
+
# separate entry in the list for each individual resource type.
|
37167
38270
|
# Corresponds to the JSON property `type`
|
37168
38271
|
# @return [String]
|
37169
38272
|
attr_accessor :type
|
@@ -37598,6 +38701,11 @@ module Google
|
|
37598
38701
|
# @return [String]
|
37599
38702
|
attr_accessor :collocation
|
37600
38703
|
|
38704
|
+
# Specifies the shape of the GPU slice, in slice based GPU families eg. A4X.
|
38705
|
+
# Corresponds to the JSON property `gpuTopology`
|
38706
|
+
# @return [String]
|
38707
|
+
attr_accessor :gpu_topology
|
38708
|
+
|
37601
38709
|
# Specifies the number of max logical switches.
|
37602
38710
|
# Corresponds to the JSON property `maxDistance`
|
37603
38711
|
# @return [Fixnum]
|
@@ -37628,6 +38736,7 @@ module Google
|
|
37628
38736
|
def update!(**args)
|
37629
38737
|
@availability_domain_count = args[:availability_domain_count] if args.key?(:availability_domain_count)
|
37630
38738
|
@collocation = args[:collocation] if args.key?(:collocation)
|
38739
|
+
@gpu_topology = args[:gpu_topology] if args.key?(:gpu_topology)
|
37631
38740
|
@max_distance = args[:max_distance] if args.key?(:max_distance)
|
37632
38741
|
@slice_count = args[:slice_count] if args.key?(:slice_count)
|
37633
38742
|
@tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
|
@@ -38097,6 +39206,16 @@ module Google
|
|
38097
39206
|
class ResourcePolicyWorkloadPolicy
|
38098
39207
|
include Google::Apis::Core::Hashable
|
38099
39208
|
|
39209
|
+
#
|
39210
|
+
# Corresponds to the JSON property `acceleratorTopology`
|
39211
|
+
# @return [String]
|
39212
|
+
attr_accessor :accelerator_topology
|
39213
|
+
|
39214
|
+
#
|
39215
|
+
# Corresponds to the JSON property `maxTopologyDistance`
|
39216
|
+
# @return [String]
|
39217
|
+
attr_accessor :max_topology_distance
|
39218
|
+
|
38100
39219
|
#
|
38101
39220
|
# Corresponds to the JSON property `type`
|
38102
39221
|
# @return [String]
|
@@ -38108,6 +39227,8 @@ module Google
|
|
38108
39227
|
|
38109
39228
|
# Update properties of this object
|
38110
39229
|
def update!(**args)
|
39230
|
+
@accelerator_topology = args[:accelerator_topology] if args.key?(:accelerator_topology)
|
39231
|
+
@max_topology_distance = args[:max_topology_distance] if args.key?(:max_topology_distance)
|
38111
39232
|
@type = args[:type] if args.key?(:type)
|
38112
39233
|
end
|
38113
39234
|
end
|
@@ -39232,16 +40353,14 @@ module Google
|
|
39232
40353
|
|
39233
40354
|
# List of export policies applied to this peer, in the order they must be
|
39234
40355
|
# evaluated. The name must correspond to an existing policy that has
|
39235
|
-
# ROUTE_POLICY_TYPE_EXPORT type.
|
39236
|
-
# available in preview. Please use Beta API to use Route Policies.
|
40356
|
+
# ROUTE_POLICY_TYPE_EXPORT type.
|
39237
40357
|
# Corresponds to the JSON property `exportPolicies`
|
39238
40358
|
# @return [Array<String>]
|
39239
40359
|
attr_accessor :export_policies
|
39240
40360
|
|
39241
40361
|
# List of import policies applied to this peer, in the order they must be
|
39242
40362
|
# evaluated. The name must correspond to an existing policy that has
|
39243
|
-
# ROUTE_POLICY_TYPE_IMPORT type.
|
39244
|
-
# available in preview. Please use Beta API to use Route Policies.
|
40363
|
+
# ROUTE_POLICY_TYPE_IMPORT type.
|
39245
40364
|
# Corresponds to the JSON property `importPolicies`
|
39246
40365
|
# @return [Array<String>]
|
39247
40366
|
attr_accessor :import_policies
|
@@ -39437,9 +40556,9 @@ module Google
|
|
39437
40556
|
# truncate the IP address, as it represents the IP address of the interface. -
|
39438
40557
|
# For Internet Protocol version 6 (IPv6), the value must be a unique local
|
39439
40558
|
# address (ULA) range from fdff:1::/64 with a mask length of 126 or less. This
|
39440
|
-
# value should be a CIDR-formatted string, for example,
|
39441
|
-
#
|
39442
|
-
#
|
40559
|
+
# value should be a CIDR-formatted string, for example, fdff:1::1/112. Within
|
40560
|
+
# the router's VPC, this IPv6 prefix will be reserved exclusively for this
|
40561
|
+
# connection and cannot be used for any other purpose.
|
39443
40562
|
# Corresponds to the JSON property `ipRange`
|
39444
40563
|
# @return [String]
|
39445
40564
|
attr_accessor :ip_range
|
@@ -44412,6 +45531,12 @@ module Google
|
|
44412
45531
|
# @return [String]
|
44413
45532
|
attr_accessor :name
|
44414
45533
|
|
45534
|
+
# [Output Only] URL of the region where the snapshot resides. Only applicable
|
45535
|
+
# for regional snapshots.
|
45536
|
+
# Corresponds to the JSON property `region`
|
45537
|
+
# @return [String]
|
45538
|
+
attr_accessor :region
|
45539
|
+
|
44415
45540
|
# Output only. Reserved for future use.
|
44416
45541
|
# Corresponds to the JSON property `satisfiesPzi`
|
44417
45542
|
# @return [Boolean]
|
@@ -44485,10 +45610,9 @@ module Google
|
|
44485
45610
|
|
44486
45611
|
# [Output Only] The unique ID of the instant snapshot used to create this
|
44487
45612
|
# snapshot. This value identifies the exact instant snapshot that was used to
|
44488
|
-
# create this
|
44489
|
-
#
|
44490
|
-
#
|
44491
|
-
# that was used.
|
45613
|
+
# create this snapshot. For example, if you created the snapshot from an instant
|
45614
|
+
# snapshot that was later deleted and recreated under the same name, the source
|
45615
|
+
# instant snapshot ID would identify the exact instant snapshot that was used.
|
44492
45616
|
# Corresponds to the JSON property `sourceInstantSnapshotId`
|
44493
45617
|
# @return [String]
|
44494
45618
|
attr_accessor :source_instant_snapshot_id
|
@@ -44560,6 +45684,7 @@ module Google
|
|
44560
45684
|
@licenses = args[:licenses] if args.key?(:licenses)
|
44561
45685
|
@location_hint = args[:location_hint] if args.key?(:location_hint)
|
44562
45686
|
@name = args[:name] if args.key?(:name)
|
45687
|
+
@region = args[:region] if args.key?(:region)
|
44563
45688
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
44564
45689
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
44565
45690
|
@self_link = args[:self_link] if args.key?(:self_link)
|
@@ -44582,6 +45707,136 @@ module Google
|
|
44582
45707
|
end
|
44583
45708
|
end
|
44584
45709
|
|
45710
|
+
#
|
45711
|
+
class SnapshotAggregatedList
|
45712
|
+
include Google::Apis::Core::Hashable
|
45713
|
+
|
45714
|
+
#
|
45715
|
+
# Corresponds to the JSON property `etag`
|
45716
|
+
# @return [String]
|
45717
|
+
attr_accessor :etag
|
45718
|
+
|
45719
|
+
# [Output Only] Unique identifier for the resource; defined by the server.
|
45720
|
+
# Corresponds to the JSON property `id`
|
45721
|
+
# @return [String]
|
45722
|
+
attr_accessor :id
|
45723
|
+
|
45724
|
+
# A list of SnapshotsScopedList resources.
|
45725
|
+
# Corresponds to the JSON property `items`
|
45726
|
+
# @return [Hash<String,Google::Apis::ComputeBeta::SnapshotsScopedList>]
|
45727
|
+
attr_accessor :items
|
45728
|
+
|
45729
|
+
# [Output Only] Type of resource. Always compute#snapshotAggregatedList for
|
45730
|
+
# aggregated lists of snapshots.
|
45731
|
+
# Corresponds to the JSON property `kind`
|
45732
|
+
# @return [String]
|
45733
|
+
attr_accessor :kind
|
45734
|
+
|
45735
|
+
# [Output Only] This token allows you to get the next page of results for list
|
45736
|
+
# requests. If the number of results is larger than maxResults, use the
|
45737
|
+
# nextPageToken as a value for the query parameter pageToken in the next list
|
45738
|
+
# request. Subsequent list requests will have their own nextPageToken to
|
45739
|
+
# continue paging through the results.
|
45740
|
+
# Corresponds to the JSON property `nextPageToken`
|
45741
|
+
# @return [String]
|
45742
|
+
attr_accessor :next_page_token
|
45743
|
+
|
45744
|
+
# [Output Only] Server-defined URL for this resource.
|
45745
|
+
# Corresponds to the JSON property `selfLink`
|
45746
|
+
# @return [String]
|
45747
|
+
attr_accessor :self_link
|
45748
|
+
|
45749
|
+
# [Output Only] Unreachable resources.
|
45750
|
+
# Corresponds to the JSON property `unreachables`
|
45751
|
+
# @return [Array<String>]
|
45752
|
+
attr_accessor :unreachables
|
45753
|
+
|
45754
|
+
# [Output Only] Informational warning message.
|
45755
|
+
# Corresponds to the JSON property `warning`
|
45756
|
+
# @return [Google::Apis::ComputeBeta::SnapshotAggregatedList::Warning]
|
45757
|
+
attr_accessor :warning
|
45758
|
+
|
45759
|
+
def initialize(**args)
|
45760
|
+
update!(**args)
|
45761
|
+
end
|
45762
|
+
|
45763
|
+
# Update properties of this object
|
45764
|
+
def update!(**args)
|
45765
|
+
@etag = args[:etag] if args.key?(:etag)
|
45766
|
+
@id = args[:id] if args.key?(:id)
|
45767
|
+
@items = args[:items] if args.key?(:items)
|
45768
|
+
@kind = args[:kind] if args.key?(:kind)
|
45769
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
45770
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
45771
|
+
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
45772
|
+
@warning = args[:warning] if args.key?(:warning)
|
45773
|
+
end
|
45774
|
+
|
45775
|
+
# [Output Only] Informational warning message.
|
45776
|
+
class Warning
|
45777
|
+
include Google::Apis::Core::Hashable
|
45778
|
+
|
45779
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
45780
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
45781
|
+
# Corresponds to the JSON property `code`
|
45782
|
+
# @return [String]
|
45783
|
+
attr_accessor :code
|
45784
|
+
|
45785
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
45786
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
45787
|
+
# Corresponds to the JSON property `data`
|
45788
|
+
# @return [Array<Google::Apis::ComputeBeta::SnapshotAggregatedList::Warning::Datum>]
|
45789
|
+
attr_accessor :data
|
45790
|
+
|
45791
|
+
# [Output Only] A human-readable description of the warning code.
|
45792
|
+
# Corresponds to the JSON property `message`
|
45793
|
+
# @return [String]
|
45794
|
+
attr_accessor :message
|
45795
|
+
|
45796
|
+
def initialize(**args)
|
45797
|
+
update!(**args)
|
45798
|
+
end
|
45799
|
+
|
45800
|
+
# Update properties of this object
|
45801
|
+
def update!(**args)
|
45802
|
+
@code = args[:code] if args.key?(:code)
|
45803
|
+
@data = args[:data] if args.key?(:data)
|
45804
|
+
@message = args[:message] if args.key?(:message)
|
45805
|
+
end
|
45806
|
+
|
45807
|
+
#
|
45808
|
+
class Datum
|
45809
|
+
include Google::Apis::Core::Hashable
|
45810
|
+
|
45811
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
45812
|
+
# For example, for warnings where there are no results in a list request for a
|
45813
|
+
# particular zone, this key might be scope and the key value might be the zone
|
45814
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
45815
|
+
# suggested replacement, or a warning about invalid network settings (for
|
45816
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
45817
|
+
# for IP forwarding).
|
45818
|
+
# Corresponds to the JSON property `key`
|
45819
|
+
# @return [String]
|
45820
|
+
attr_accessor :key
|
45821
|
+
|
45822
|
+
# [Output Only] A warning data value corresponding to the key.
|
45823
|
+
# Corresponds to the JSON property `value`
|
45824
|
+
# @return [String]
|
45825
|
+
attr_accessor :value
|
45826
|
+
|
45827
|
+
def initialize(**args)
|
45828
|
+
update!(**args)
|
45829
|
+
end
|
45830
|
+
|
45831
|
+
# Update properties of this object
|
45832
|
+
def update!(**args)
|
45833
|
+
@key = args[:key] if args.key?(:key)
|
45834
|
+
@value = args[:value] if args.key?(:value)
|
45835
|
+
end
|
45836
|
+
end
|
45837
|
+
end
|
45838
|
+
end
|
45839
|
+
|
44585
45840
|
# Contains a list of Snapshot resources.
|
44586
45841
|
class SnapshotList
|
44587
45842
|
include Google::Apis::Core::Hashable
|
@@ -44703,6 +45958,12 @@ module Google
|
|
44703
45958
|
class SnapshotSettings
|
44704
45959
|
include Google::Apis::Core::Hashable
|
44705
45960
|
|
45961
|
+
# (Regional snapshots use only)Policy of which location is allowed to access
|
45962
|
+
# snapshot.
|
45963
|
+
# Corresponds to the JSON property `accessLocation`
|
45964
|
+
# @return [Google::Apis::ComputeBeta::SnapshotSettingsAccessLocation]
|
45965
|
+
attr_accessor :access_location
|
45966
|
+
|
44706
45967
|
# Policy of which storage location is going to be resolved, and additional data
|
44707
45968
|
# that particularizes how the policy is going to be carried out.
|
44708
45969
|
# Corresponds to the JSON property `storageLocation`
|
@@ -44715,10 +45976,55 @@ module Google
|
|
44715
45976
|
|
44716
45977
|
# Update properties of this object
|
44717
45978
|
def update!(**args)
|
45979
|
+
@access_location = args[:access_location] if args.key?(:access_location)
|
44718
45980
|
@storage_location = args[:storage_location] if args.key?(:storage_location)
|
44719
45981
|
end
|
44720
45982
|
end
|
44721
45983
|
|
45984
|
+
#
|
45985
|
+
class SnapshotSettingsAccessLocation
|
45986
|
+
include Google::Apis::Core::Hashable
|
45987
|
+
|
45988
|
+
# List of regions that can restore a regional snapshot from the current region
|
45989
|
+
# Corresponds to the JSON property `locations`
|
45990
|
+
# @return [Hash<String,Google::Apis::ComputeBeta::SnapshotSettingsAccessLocationAccessLocationPreference>]
|
45991
|
+
attr_accessor :locations
|
45992
|
+
|
45993
|
+
# Policy of which location is allowed to access snapshot.
|
45994
|
+
# Corresponds to the JSON property `policy`
|
45995
|
+
# @return [String]
|
45996
|
+
attr_accessor :policy
|
45997
|
+
|
45998
|
+
def initialize(**args)
|
45999
|
+
update!(**args)
|
46000
|
+
end
|
46001
|
+
|
46002
|
+
# Update properties of this object
|
46003
|
+
def update!(**args)
|
46004
|
+
@locations = args[:locations] if args.key?(:locations)
|
46005
|
+
@policy = args[:policy] if args.key?(:policy)
|
46006
|
+
end
|
46007
|
+
end
|
46008
|
+
|
46009
|
+
# A structure for specifying an allowed target region.
|
46010
|
+
class SnapshotSettingsAccessLocationAccessLocationPreference
|
46011
|
+
include Google::Apis::Core::Hashable
|
46012
|
+
|
46013
|
+
# Accessible region name
|
46014
|
+
# Corresponds to the JSON property `region`
|
46015
|
+
# @return [String]
|
46016
|
+
attr_accessor :region
|
46017
|
+
|
46018
|
+
def initialize(**args)
|
46019
|
+
update!(**args)
|
46020
|
+
end
|
46021
|
+
|
46022
|
+
# Update properties of this object
|
46023
|
+
def update!(**args)
|
46024
|
+
@region = args[:region] if args.key?(:region)
|
46025
|
+
end
|
46026
|
+
end
|
46027
|
+
|
44722
46028
|
#
|
44723
46029
|
class SnapshotSettingsStorageLocationSettings
|
44724
46030
|
include Google::Apis::Core::Hashable
|
@@ -44766,6 +46072,97 @@ module Google
|
|
44766
46072
|
end
|
44767
46073
|
end
|
44768
46074
|
|
46075
|
+
#
|
46076
|
+
class SnapshotsScopedList
|
46077
|
+
include Google::Apis::Core::Hashable
|
46078
|
+
|
46079
|
+
# [Output Only] A list of snapshots contained in this scope.
|
46080
|
+
# Corresponds to the JSON property `snapshots`
|
46081
|
+
# @return [Array<Google::Apis::ComputeBeta::Snapshot>]
|
46082
|
+
attr_accessor :snapshots
|
46083
|
+
|
46084
|
+
# [Output Only] Informational warning which replaces the list of snapshots when
|
46085
|
+
# the list is empty.
|
46086
|
+
# Corresponds to the JSON property `warning`
|
46087
|
+
# @return [Google::Apis::ComputeBeta::SnapshotsScopedList::Warning]
|
46088
|
+
attr_accessor :warning
|
46089
|
+
|
46090
|
+
def initialize(**args)
|
46091
|
+
update!(**args)
|
46092
|
+
end
|
46093
|
+
|
46094
|
+
# Update properties of this object
|
46095
|
+
def update!(**args)
|
46096
|
+
@snapshots = args[:snapshots] if args.key?(:snapshots)
|
46097
|
+
@warning = args[:warning] if args.key?(:warning)
|
46098
|
+
end
|
46099
|
+
|
46100
|
+
# [Output Only] Informational warning which replaces the list of snapshots when
|
46101
|
+
# the list is empty.
|
46102
|
+
class Warning
|
46103
|
+
include Google::Apis::Core::Hashable
|
46104
|
+
|
46105
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
46106
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
46107
|
+
# Corresponds to the JSON property `code`
|
46108
|
+
# @return [String]
|
46109
|
+
attr_accessor :code
|
46110
|
+
|
46111
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
46112
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
46113
|
+
# Corresponds to the JSON property `data`
|
46114
|
+
# @return [Array<Google::Apis::ComputeBeta::SnapshotsScopedList::Warning::Datum>]
|
46115
|
+
attr_accessor :data
|
46116
|
+
|
46117
|
+
# [Output Only] A human-readable description of the warning code.
|
46118
|
+
# Corresponds to the JSON property `message`
|
46119
|
+
# @return [String]
|
46120
|
+
attr_accessor :message
|
46121
|
+
|
46122
|
+
def initialize(**args)
|
46123
|
+
update!(**args)
|
46124
|
+
end
|
46125
|
+
|
46126
|
+
# Update properties of this object
|
46127
|
+
def update!(**args)
|
46128
|
+
@code = args[:code] if args.key?(:code)
|
46129
|
+
@data = args[:data] if args.key?(:data)
|
46130
|
+
@message = args[:message] if args.key?(:message)
|
46131
|
+
end
|
46132
|
+
|
46133
|
+
#
|
46134
|
+
class Datum
|
46135
|
+
include Google::Apis::Core::Hashable
|
46136
|
+
|
46137
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
46138
|
+
# For example, for warnings where there are no results in a list request for a
|
46139
|
+
# particular zone, this key might be scope and the key value might be the zone
|
46140
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
46141
|
+
# suggested replacement, or a warning about invalid network settings (for
|
46142
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
46143
|
+
# for IP forwarding).
|
46144
|
+
# Corresponds to the JSON property `key`
|
46145
|
+
# @return [String]
|
46146
|
+
attr_accessor :key
|
46147
|
+
|
46148
|
+
# [Output Only] A warning data value corresponding to the key.
|
46149
|
+
# Corresponds to the JSON property `value`
|
46150
|
+
# @return [String]
|
46151
|
+
attr_accessor :value
|
46152
|
+
|
46153
|
+
def initialize(**args)
|
46154
|
+
update!(**args)
|
46155
|
+
end
|
46156
|
+
|
46157
|
+
# Update properties of this object
|
46158
|
+
def update!(**args)
|
46159
|
+
@key = args[:key] if args.key?(:key)
|
46160
|
+
@value = args[:value] if args.key?(:value)
|
46161
|
+
end
|
46162
|
+
end
|
46163
|
+
end
|
46164
|
+
end
|
46165
|
+
|
44769
46166
|
#
|
44770
46167
|
class SourceDiskEncryptionKey
|
44771
46168
|
include Google::Apis::Core::Hashable
|
@@ -47586,16 +48983,18 @@ module Google
|
|
47586
48983
|
attr_accessor :private_ipv6_google_access
|
47587
48984
|
|
47588
48985
|
# The purpose of the resource. This field can be either PRIVATE,
|
47589
|
-
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PEER_MIGRATION
|
47590
|
-
# PRIVATE_SERVICE_CONNECT. PRIVATE is the default purpose for
|
47591
|
-
# subnets or subnets that are automatically created in auto mode
|
47592
|
-
# Subnets with purpose set to GLOBAL_MANAGED_PROXY or
|
47593
|
-
# user-created subnetworks that are reserved for
|
47594
|
-
# subnet with purpose set to
|
47595
|
-
#
|
47596
|
-
#
|
47597
|
-
#
|
47598
|
-
#
|
48986
|
+
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PEER_MIGRATION,
|
48987
|
+
# PRIVATE_SERVICE_CONNECT or PRIVATE_NAT. PRIVATE is the default purpose for
|
48988
|
+
# user-created subnets or subnets that are automatically created in auto mode
|
48989
|
+
# networks. Subnets with purpose set to GLOBAL_MANAGED_PROXY or
|
48990
|
+
# REGIONAL_MANAGED_PROXY are user-created subnetworks that are reserved for
|
48991
|
+
# Envoy-based load balancers. A subnet with purpose set to
|
48992
|
+
# PRIVATE_SERVICE_CONNECT is used to publish services using Private Service
|
48993
|
+
# Connect. A subnet with purpose set to PEER_MIGRATION is used for subnet
|
48994
|
+
# migration from one peered VPC to another. A subnet with purpose set to
|
48995
|
+
# PRIVATE_NAT is used for Private NAT IP address by Private NAT Gateway. If
|
48996
|
+
# unspecified, the subnet purpose defaults to PRIVATE. The enableFlowLogs field
|
48997
|
+
# isn't supported if the subnet purpose field is set to GLOBAL_MANAGED_PROXY or
|
47599
48998
|
# REGIONAL_MANAGED_PROXY.
|
47600
48999
|
# Corresponds to the JSON property `purpose`
|
47601
49000
|
# @return [String]
|
@@ -49297,10 +50696,13 @@ module Google
|
|
49297
50696
|
# describes how the proxy should authenticate inbound traffic. serverTlsPolicy
|
49298
50697
|
# only applies to a global TargetHttpsProxy attached to globalForwardingRules
|
49299
50698
|
# with the loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL or
|
49300
|
-
# EXTERNAL_MANAGED.
|
49301
|
-
#
|
49302
|
-
# loadBalancingScheme
|
49303
|
-
#
|
50699
|
+
# EXTERNAL_MANAGED or INTERNAL_MANAGED. It also applies to a regional
|
50700
|
+
# TargetHttpsProxy attached to regional forwardingRules with the
|
50701
|
+
# loadBalancingScheme set to EXTERNAL_MANAGED or INTERNAL_MANAGED. For details
|
50702
|
+
# which ServerTlsPolicy resources are accepted with INTERNAL_SELF_MANAGED and
|
50703
|
+
# which with EXTERNAL, INTERNAL_MANAGED, EXTERNAL_MANAGED loadBalancingScheme
|
50704
|
+
# consult ServerTlsPolicy documentation. If left blank, communications are not
|
50705
|
+
# encrypted.
|
49304
50706
|
# Corresponds to the JSON property `serverTlsPolicy`
|
49305
50707
|
# @return [String]
|
49306
50708
|
attr_accessor :server_tls_policy
|
@@ -52856,16 +54258,18 @@ module Google
|
|
52856
54258
|
attr_accessor :network
|
52857
54259
|
|
52858
54260
|
# The purpose of the resource. This field can be either PRIVATE,
|
52859
|
-
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PEER_MIGRATION
|
52860
|
-
# PRIVATE_SERVICE_CONNECT. PRIVATE is the default purpose for
|
52861
|
-
# subnets or subnets that are automatically created in auto mode
|
52862
|
-
# Subnets with purpose set to GLOBAL_MANAGED_PROXY or
|
52863
|
-
# user-created subnetworks that are reserved for
|
52864
|
-
# subnet with purpose set to
|
52865
|
-
#
|
52866
|
-
#
|
52867
|
-
#
|
52868
|
-
#
|
54261
|
+
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PEER_MIGRATION,
|
54262
|
+
# PRIVATE_SERVICE_CONNECT or PRIVATE_NAT. PRIVATE is the default purpose for
|
54263
|
+
# user-created subnets or subnets that are automatically created in auto mode
|
54264
|
+
# networks. Subnets with purpose set to GLOBAL_MANAGED_PROXY or
|
54265
|
+
# REGIONAL_MANAGED_PROXY are user-created subnetworks that are reserved for
|
54266
|
+
# Envoy-based load balancers. A subnet with purpose set to
|
54267
|
+
# PRIVATE_SERVICE_CONNECT is used to publish services using Private Service
|
54268
|
+
# Connect. A subnet with purpose set to PEER_MIGRATION is used for subnet
|
54269
|
+
# migration from one peered VPC to another. A subnet with purpose set to
|
54270
|
+
# PRIVATE_NAT is used for Private NAT IP address by Private NAT Gateway. If
|
54271
|
+
# unspecified, the subnet purpose defaults to PRIVATE. The enableFlowLogs field
|
54272
|
+
# isn't supported if the subnet purpose field is set to GLOBAL_MANAGED_PROXY or
|
52869
54273
|
# REGIONAL_MANAGED_PROXY.
|
52870
54274
|
# Corresponds to the JSON property `purpose`
|
52871
54275
|
# @return [String]
|
@@ -54655,6 +56059,478 @@ module Google
|
|
54655
56059
|
end
|
54656
56060
|
end
|
54657
56061
|
|
56062
|
+
# A pseudowire that connects two Interconnect connections.
|
56063
|
+
class Wire
|
56064
|
+
include Google::Apis::Core::Hashable
|
56065
|
+
|
56066
|
+
# [Output Only] Indicates whether the wire is enabled. When false, the wire is
|
56067
|
+
# disabled. When true and when the wire group of the wire is also enabled, the
|
56068
|
+
# wire is enabled. Defaults to true.
|
56069
|
+
# Corresponds to the JSON property `adminEnabled`
|
56070
|
+
# @return [Boolean]
|
56071
|
+
attr_accessor :admin_enabled
|
56072
|
+
alias_method :admin_enabled?, :admin_enabled
|
56073
|
+
|
56074
|
+
# Wire endpoints are specific Interconnect connections.
|
56075
|
+
# Corresponds to the JSON property `endpoints`
|
56076
|
+
# @return [Array<Google::Apis::ComputeBeta::WireEndpoint>]
|
56077
|
+
attr_accessor :endpoints
|
56078
|
+
|
56079
|
+
# [Output Only] A label that identifies the wire. The format of this label
|
56080
|
+
# combines the existing labels of the wire group endpoints and Interconnect
|
56081
|
+
# connections used by this wire in alphabetical order as follows: `ENDPOINT_A+
|
56082
|
+
# CONNECTION_A1,ENDPOINT_B+CONNECTION_B1`, where: - ENDPOINT_A and ENDPOINT_B:
|
56083
|
+
# are the labels that you entered as map keys when you specified the wire group
|
56084
|
+
# endpoint objects. - CONNECTION_A1 and CONNECTION_B1: are the labels that you
|
56085
|
+
# entered as map keys when you specified the wire group Interconnect objects.
|
56086
|
+
# Corresponds to the JSON property `label`
|
56087
|
+
# @return [String]
|
56088
|
+
attr_accessor :label
|
56089
|
+
|
56090
|
+
# The properties of a wire.
|
56091
|
+
# Corresponds to the JSON property `wireProperties`
|
56092
|
+
# @return [Google::Apis::ComputeBeta::WireProperties]
|
56093
|
+
attr_accessor :wire_properties
|
56094
|
+
|
56095
|
+
def initialize(**args)
|
56096
|
+
update!(**args)
|
56097
|
+
end
|
56098
|
+
|
56099
|
+
# Update properties of this object
|
56100
|
+
def update!(**args)
|
56101
|
+
@admin_enabled = args[:admin_enabled] if args.key?(:admin_enabled)
|
56102
|
+
@endpoints = args[:endpoints] if args.key?(:endpoints)
|
56103
|
+
@label = args[:label] if args.key?(:label)
|
56104
|
+
@wire_properties = args[:wire_properties] if args.key?(:wire_properties)
|
56105
|
+
end
|
56106
|
+
end
|
56107
|
+
|
56108
|
+
# Wire endpoints are specific Interconnect connections.
|
56109
|
+
class WireEndpoint
|
56110
|
+
include Google::Apis::Core::Hashable
|
56111
|
+
|
56112
|
+
#
|
56113
|
+
# Corresponds to the JSON property `interconnect`
|
56114
|
+
# @return [String]
|
56115
|
+
attr_accessor :interconnect
|
56116
|
+
|
56117
|
+
#
|
56118
|
+
# Corresponds to the JSON property `vlanTag`
|
56119
|
+
# @return [Fixnum]
|
56120
|
+
attr_accessor :vlan_tag
|
56121
|
+
|
56122
|
+
def initialize(**args)
|
56123
|
+
update!(**args)
|
56124
|
+
end
|
56125
|
+
|
56126
|
+
# Update properties of this object
|
56127
|
+
def update!(**args)
|
56128
|
+
@interconnect = args[:interconnect] if args.key?(:interconnect)
|
56129
|
+
@vlan_tag = args[:vlan_tag] if args.key?(:vlan_tag)
|
56130
|
+
end
|
56131
|
+
end
|
56132
|
+
|
56133
|
+
# A resource that represents a group of redundant wires.
|
56134
|
+
class WireGroup
|
56135
|
+
include Google::Apis::Core::Hashable
|
56136
|
+
|
56137
|
+
# Indicates whether the wires in the wire group are enabled. When false, the
|
56138
|
+
# wires in the wire group are disabled. When true and when there is
|
56139
|
+
# simultaneously no wire-specific override of `adminEnabled` to false, a given
|
56140
|
+
# wire is enabled. Defaults to true.
|
56141
|
+
# Corresponds to the JSON property `adminEnabled`
|
56142
|
+
# @return [Boolean]
|
56143
|
+
attr_accessor :admin_enabled
|
56144
|
+
alias_method :admin_enabled?, :admin_enabled
|
56145
|
+
|
56146
|
+
# [Output Only] Creation timestamp in RFC3339 text format.
|
56147
|
+
# Corresponds to the JSON property `creationTimestamp`
|
56148
|
+
# @return [String]
|
56149
|
+
attr_accessor :creation_timestamp
|
56150
|
+
|
56151
|
+
# An optional description of the wire group.
|
56152
|
+
# Corresponds to the JSON property `description`
|
56153
|
+
# @return [String]
|
56154
|
+
attr_accessor :description
|
56155
|
+
|
56156
|
+
# A map that contains the logical endpoints of the wire group. Specify key-value
|
56157
|
+
# pairs for the map as follows: - Key: an RFC1035 user-specified label. - Value:
|
56158
|
+
# an Endpoint object.
|
56159
|
+
# Corresponds to the JSON property `endpoints`
|
56160
|
+
# @return [Hash<String,Google::Apis::ComputeBeta::WireGroupEndpoint>]
|
56161
|
+
attr_accessor :endpoints
|
56162
|
+
|
56163
|
+
# [Output Only] The unique identifier for the resource type. The server
|
56164
|
+
# generates this identifier.
|
56165
|
+
# Corresponds to the JSON property `id`
|
56166
|
+
# @return [Fixnum]
|
56167
|
+
attr_accessor :id
|
56168
|
+
|
56169
|
+
# [Output Only] Type of the resource. Always compute#wireGroups for wire groups.
|
56170
|
+
# Corresponds to the JSON property `kind`
|
56171
|
+
# @return [String]
|
56172
|
+
attr_accessor :kind
|
56173
|
+
|
56174
|
+
# Name of the resource. Provided by the client when the resource is created. The
|
56175
|
+
# name must be 1-63 characters long, and comply with RFC1035. Specifically, the
|
56176
|
+
# name must be 1-63 characters long and match the regular expression `[a-z]([-a-
|
56177
|
+
# z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter,
|
56178
|
+
# and all following characters must be a dash, lowercase letter, or digit,
|
56179
|
+
# except the last character, which cannot be a dash.
|
56180
|
+
# Corresponds to the JSON property `name`
|
56181
|
+
# @return [String]
|
56182
|
+
attr_accessor :name
|
56183
|
+
|
56184
|
+
# [Output Only] Server-defined URL for the resource.
|
56185
|
+
# Corresponds to the JSON property `selfLink`
|
56186
|
+
# @return [String]
|
56187
|
+
attr_accessor :self_link
|
56188
|
+
|
56189
|
+
#
|
56190
|
+
# Corresponds to the JSON property `selfLinkWithId`
|
56191
|
+
# @return [String]
|
56192
|
+
attr_accessor :self_link_with_id
|
56193
|
+
|
56194
|
+
# Topology details for the wire group.
|
56195
|
+
# Corresponds to the JSON property `topology`
|
56196
|
+
# @return [Google::Apis::ComputeBeta::WireGroupTopology]
|
56197
|
+
attr_accessor :topology
|
56198
|
+
|
56199
|
+
# The properties of a wire group. These properties determine how a group of
|
56200
|
+
# redundant wires are created and managed.
|
56201
|
+
# Corresponds to the JSON property `wireGroupProperties`
|
56202
|
+
# @return [Google::Apis::ComputeBeta::WireGroupProperties]
|
56203
|
+
attr_accessor :wire_group_properties
|
56204
|
+
|
56205
|
+
# The properties of a wire.
|
56206
|
+
# Corresponds to the JSON property `wireProperties`
|
56207
|
+
# @return [Google::Apis::ComputeBeta::WireProperties]
|
56208
|
+
attr_accessor :wire_properties
|
56209
|
+
|
56210
|
+
# The single/redundant wire(s) managed by the wire group.
|
56211
|
+
# Corresponds to the JSON property `wires`
|
56212
|
+
# @return [Array<Google::Apis::ComputeBeta::Wire>]
|
56213
|
+
attr_accessor :wires
|
56214
|
+
|
56215
|
+
def initialize(**args)
|
56216
|
+
update!(**args)
|
56217
|
+
end
|
56218
|
+
|
56219
|
+
# Update properties of this object
|
56220
|
+
def update!(**args)
|
56221
|
+
@admin_enabled = args[:admin_enabled] if args.key?(:admin_enabled)
|
56222
|
+
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
56223
|
+
@description = args[:description] if args.key?(:description)
|
56224
|
+
@endpoints = args[:endpoints] if args.key?(:endpoints)
|
56225
|
+
@id = args[:id] if args.key?(:id)
|
56226
|
+
@kind = args[:kind] if args.key?(:kind)
|
56227
|
+
@name = args[:name] if args.key?(:name)
|
56228
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
56229
|
+
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
56230
|
+
@topology = args[:topology] if args.key?(:topology)
|
56231
|
+
@wire_group_properties = args[:wire_group_properties] if args.key?(:wire_group_properties)
|
56232
|
+
@wire_properties = args[:wire_properties] if args.key?(:wire_properties)
|
56233
|
+
@wires = args[:wires] if args.key?(:wires)
|
56234
|
+
end
|
56235
|
+
end
|
56236
|
+
|
56237
|
+
# A logical endpoint for the wire group. An endpoint represents a metro that
|
56238
|
+
# contains redundant Interconnect connections. A wire group is created between
|
56239
|
+
# two endpoints.
|
56240
|
+
class WireGroupEndpoint
|
56241
|
+
include Google::Apis::Core::Hashable
|
56242
|
+
|
56243
|
+
# A map that contains the redundant Interconnect connections. Specify key-value
|
56244
|
+
# pairs for the map as follows: - Key: an RFC1035 user-specified label. - Value:
|
56245
|
+
# an Interconnect object.
|
56246
|
+
# Corresponds to the JSON property `interconnects`
|
56247
|
+
# @return [Hash<String,Google::Apis::ComputeBeta::WireGroupEndpointInterconnect>]
|
56248
|
+
attr_accessor :interconnects
|
56249
|
+
|
56250
|
+
def initialize(**args)
|
56251
|
+
update!(**args)
|
56252
|
+
end
|
56253
|
+
|
56254
|
+
# Update properties of this object
|
56255
|
+
def update!(**args)
|
56256
|
+
@interconnects = args[:interconnects] if args.key?(:interconnects)
|
56257
|
+
end
|
56258
|
+
end
|
56259
|
+
|
56260
|
+
# The redundant Interconnect connections for this endpoint.
|
56261
|
+
class WireGroupEndpointInterconnect
|
56262
|
+
include Google::Apis::Core::Hashable
|
56263
|
+
|
56264
|
+
# An Interconnect connection. You can specify the connection as a partial or
|
56265
|
+
# full URL. If the connection is in a different project from the cross-site
|
56266
|
+
# network, use a format that specifies the project. See the following examples
|
56267
|
+
# of partial and full URLs: global/interconnects/NAME projects/PROJECT_ID/global/
|
56268
|
+
# interconnects/NAME - https://compute.googleapis.com/compute/projects/
|
56269
|
+
# PROJECT_ID /global/interconnects/NAME
|
56270
|
+
# Corresponds to the JSON property `interconnect`
|
56271
|
+
# @return [String]
|
56272
|
+
attr_accessor :interconnect
|
56273
|
+
|
56274
|
+
# To configure the wire group for VLAN mode, enter a VLAN tag, which is a number
|
56275
|
+
# from `2` to `4093`. You can autoallocate a tag by entering `0`. To configure
|
56276
|
+
# the wire group for port mode, enter `-1`. Review the following guidelines: - A
|
56277
|
+
# VLAN tag must be unique for an Interconnect connection across all attachments
|
56278
|
+
# and wire groups. - Both endpoints of a wire must use the same VLAN tag value. -
|
56279
|
+
# Single wire and redundant type wire groups must have only one VLAN tag. -
|
56280
|
+
# Port mode pseudowires must have a single VLAN tag with a value of `-1` for
|
56281
|
+
# both endpoints. - Box and cross type wire groups must have two VLAN tags. The
|
56282
|
+
# first is for the same-zone pseudowire, and the second is for the cross-zone
|
56283
|
+
# pseudowire.
|
56284
|
+
# Corresponds to the JSON property `vlanTags`
|
56285
|
+
# @return [Array<Fixnum>]
|
56286
|
+
attr_accessor :vlan_tags
|
56287
|
+
|
56288
|
+
def initialize(**args)
|
56289
|
+
update!(**args)
|
56290
|
+
end
|
56291
|
+
|
56292
|
+
# Update properties of this object
|
56293
|
+
def update!(**args)
|
56294
|
+
@interconnect = args[:interconnect] if args.key?(:interconnect)
|
56295
|
+
@vlan_tags = args[:vlan_tags] if args.key?(:vlan_tags)
|
56296
|
+
end
|
56297
|
+
end
|
56298
|
+
|
56299
|
+
# Response for the list request.
|
56300
|
+
class WireGroupList
|
56301
|
+
include Google::Apis::Core::Hashable
|
56302
|
+
|
56303
|
+
#
|
56304
|
+
# Corresponds to the JSON property `etag`
|
56305
|
+
# @return [String]
|
56306
|
+
attr_accessor :etag
|
56307
|
+
|
56308
|
+
# [Output Only] Unique identifier for the resource; defined by the server.
|
56309
|
+
# Corresponds to the JSON property `id`
|
56310
|
+
# @return [String]
|
56311
|
+
attr_accessor :id
|
56312
|
+
|
56313
|
+
# A list of wire group resources.
|
56314
|
+
# Corresponds to the JSON property `items`
|
56315
|
+
# @return [Array<Google::Apis::ComputeBeta::WireGroup>]
|
56316
|
+
attr_accessor :items
|
56317
|
+
|
56318
|
+
# [Output Only] Type of the resource. Always compute#wireGroups for wire groups.
|
56319
|
+
# Corresponds to the JSON property `kind`
|
56320
|
+
# @return [String]
|
56321
|
+
attr_accessor :kind
|
56322
|
+
|
56323
|
+
# [Output Only] This token allows you to get the next page of results for list
|
56324
|
+
# requests. If the number of results is larger than maxResults, use the
|
56325
|
+
# nextPageToken as a value for the query parameter pageToken in the next list
|
56326
|
+
# request. Subsequent list requests will have their own nextPageToken to
|
56327
|
+
# continue paging through the results.
|
56328
|
+
# Corresponds to the JSON property `nextPageToken`
|
56329
|
+
# @return [String]
|
56330
|
+
attr_accessor :next_page_token
|
56331
|
+
|
56332
|
+
# [Output Only] Server-defined URL for this resource.
|
56333
|
+
# Corresponds to the JSON property `selfLink`
|
56334
|
+
# @return [String]
|
56335
|
+
attr_accessor :self_link
|
56336
|
+
|
56337
|
+
# [Output Only] Unreachable resources. end_interface:
|
56338
|
+
# MixerListResponseWithEtagBuilder
|
56339
|
+
# Corresponds to the JSON property `unreachables`
|
56340
|
+
# @return [Array<String>]
|
56341
|
+
attr_accessor :unreachables
|
56342
|
+
|
56343
|
+
# [Output Only] Informational warning message.
|
56344
|
+
# Corresponds to the JSON property `warning`
|
56345
|
+
# @return [Google::Apis::ComputeBeta::WireGroupList::Warning]
|
56346
|
+
attr_accessor :warning
|
56347
|
+
|
56348
|
+
def initialize(**args)
|
56349
|
+
update!(**args)
|
56350
|
+
end
|
56351
|
+
|
56352
|
+
# Update properties of this object
|
56353
|
+
def update!(**args)
|
56354
|
+
@etag = args[:etag] if args.key?(:etag)
|
56355
|
+
@id = args[:id] if args.key?(:id)
|
56356
|
+
@items = args[:items] if args.key?(:items)
|
56357
|
+
@kind = args[:kind] if args.key?(:kind)
|
56358
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
56359
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
56360
|
+
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
56361
|
+
@warning = args[:warning] if args.key?(:warning)
|
56362
|
+
end
|
56363
|
+
|
56364
|
+
# [Output Only] Informational warning message.
|
56365
|
+
class Warning
|
56366
|
+
include Google::Apis::Core::Hashable
|
56367
|
+
|
56368
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
56369
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
56370
|
+
# Corresponds to the JSON property `code`
|
56371
|
+
# @return [String]
|
56372
|
+
attr_accessor :code
|
56373
|
+
|
56374
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
56375
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
56376
|
+
# Corresponds to the JSON property `data`
|
56377
|
+
# @return [Array<Google::Apis::ComputeBeta::WireGroupList::Warning::Datum>]
|
56378
|
+
attr_accessor :data
|
56379
|
+
|
56380
|
+
# [Output Only] A human-readable description of the warning code.
|
56381
|
+
# Corresponds to the JSON property `message`
|
56382
|
+
# @return [String]
|
56383
|
+
attr_accessor :message
|
56384
|
+
|
56385
|
+
def initialize(**args)
|
56386
|
+
update!(**args)
|
56387
|
+
end
|
56388
|
+
|
56389
|
+
# Update properties of this object
|
56390
|
+
def update!(**args)
|
56391
|
+
@code = args[:code] if args.key?(:code)
|
56392
|
+
@data = args[:data] if args.key?(:data)
|
56393
|
+
@message = args[:message] if args.key?(:message)
|
56394
|
+
end
|
56395
|
+
|
56396
|
+
#
|
56397
|
+
class Datum
|
56398
|
+
include Google::Apis::Core::Hashable
|
56399
|
+
|
56400
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
56401
|
+
# For example, for warnings where there are no results in a list request for a
|
56402
|
+
# particular zone, this key might be scope and the key value might be the zone
|
56403
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
56404
|
+
# suggested replacement, or a warning about invalid network settings (for
|
56405
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
56406
|
+
# for IP forwarding).
|
56407
|
+
# Corresponds to the JSON property `key`
|
56408
|
+
# @return [String]
|
56409
|
+
attr_accessor :key
|
56410
|
+
|
56411
|
+
# [Output Only] A warning data value corresponding to the key.
|
56412
|
+
# Corresponds to the JSON property `value`
|
56413
|
+
# @return [String]
|
56414
|
+
attr_accessor :value
|
56415
|
+
|
56416
|
+
def initialize(**args)
|
56417
|
+
update!(**args)
|
56418
|
+
end
|
56419
|
+
|
56420
|
+
# Update properties of this object
|
56421
|
+
def update!(**args)
|
56422
|
+
@key = args[:key] if args.key?(:key)
|
56423
|
+
@value = args[:value] if args.key?(:value)
|
56424
|
+
end
|
56425
|
+
end
|
56426
|
+
end
|
56427
|
+
end
|
56428
|
+
|
56429
|
+
# The properties of a wire group. These properties determine how a group of
|
56430
|
+
# redundant wires are created and managed.
|
56431
|
+
class WireGroupProperties
|
56432
|
+
include Google::Apis::Core::Hashable
|
56433
|
+
|
56434
|
+
# The type of the wire group, one of the following: - WIRE: a single pseudowire
|
56435
|
+
# over two Interconnect connections with no redundancy. - REDUNDANT: two
|
56436
|
+
# pseudowires over four Interconnect connections, with two connections in one
|
56437
|
+
# metro and two connections in another metro. Each redundant pair of
|
56438
|
+
# Interconnect connections spans both edge availability domains of the metro.
|
56439
|
+
# Each pseudowire connects Interconnect connections in matching edge
|
56440
|
+
# availability domains of the two metros. - BOX_AND_CROSS: four pseudowires over
|
56441
|
+
# four Interconnect connections, with two connections in one metro and two
|
56442
|
+
# connections in another metro. Each redundant pair of Interconnect connections
|
56443
|
+
# spans both edge availability domains of the metro. Two pseudowires connect
|
56444
|
+
# Interconnect connections in matching edge availability domains of the two
|
56445
|
+
# metros. Two additional pseudowires connect the non-matching edge availability
|
56446
|
+
# domains of the two metros.
|
56447
|
+
# Corresponds to the JSON property `type`
|
56448
|
+
# @return [String]
|
56449
|
+
attr_accessor :type
|
56450
|
+
|
56451
|
+
def initialize(**args)
|
56452
|
+
update!(**args)
|
56453
|
+
end
|
56454
|
+
|
56455
|
+
# Update properties of this object
|
56456
|
+
def update!(**args)
|
56457
|
+
@type = args[:type] if args.key?(:type)
|
56458
|
+
end
|
56459
|
+
end
|
56460
|
+
|
56461
|
+
# Topology details for the wire group.
|
56462
|
+
class WireGroupTopology
|
56463
|
+
include Google::Apis::Core::Hashable
|
56464
|
+
|
56465
|
+
# Topology details for all endpoints in the wire group.
|
56466
|
+
# Corresponds to the JSON property `endpoints`
|
56467
|
+
# @return [Array<Google::Apis::ComputeBeta::WireGroupTopologyEndpoint>]
|
56468
|
+
attr_accessor :endpoints
|
56469
|
+
|
56470
|
+
def initialize(**args)
|
56471
|
+
update!(**args)
|
56472
|
+
end
|
56473
|
+
|
56474
|
+
# Update properties of this object
|
56475
|
+
def update!(**args)
|
56476
|
+
@endpoints = args[:endpoints] if args.key?(:endpoints)
|
56477
|
+
end
|
56478
|
+
end
|
56479
|
+
|
56480
|
+
# Topology details for a single wire group endpoint.
|
56481
|
+
class WireGroupTopologyEndpoint
|
56482
|
+
include Google::Apis::Core::Hashable
|
56483
|
+
|
56484
|
+
# The InterconnectLocation.city (metropolitan area designator) that all
|
56485
|
+
# interconnects are located in.
|
56486
|
+
# Corresponds to the JSON property `city`
|
56487
|
+
# @return [String]
|
56488
|
+
attr_accessor :city
|
56489
|
+
|
56490
|
+
# Endpoint label from the wire group.
|
56491
|
+
# Corresponds to the JSON property `label`
|
56492
|
+
# @return [String]
|
56493
|
+
attr_accessor :label
|
56494
|
+
|
56495
|
+
def initialize(**args)
|
56496
|
+
update!(**args)
|
56497
|
+
end
|
56498
|
+
|
56499
|
+
# Update properties of this object
|
56500
|
+
def update!(**args)
|
56501
|
+
@city = args[:city] if args.key?(:city)
|
56502
|
+
@label = args[:label] if args.key?(:label)
|
56503
|
+
end
|
56504
|
+
end
|
56505
|
+
|
56506
|
+
# The properties of a wire.
|
56507
|
+
class WireProperties
|
56508
|
+
include Google::Apis::Core::Hashable
|
56509
|
+
|
56510
|
+
# The unmetered bandwidth in Gigabits per second, using decimal units. `10` is
|
56511
|
+
# 10 Gbps, `100` is 100 Gbps.
|
56512
|
+
# Corresponds to the JSON property `bandwidthUnmetered`
|
56513
|
+
# @return [Fixnum]
|
56514
|
+
attr_accessor :bandwidth_unmetered
|
56515
|
+
|
56516
|
+
# Response when a fault is detected in a pseudowire: - NONE: default. -
|
56517
|
+
# DISABLE_PORT: set the port line protocol down when inline probes detect a
|
56518
|
+
# fault. This setting is only permitted on port mode pseudowires.
|
56519
|
+
# Corresponds to the JSON property `faultResponse`
|
56520
|
+
# @return [String]
|
56521
|
+
attr_accessor :fault_response
|
56522
|
+
|
56523
|
+
def initialize(**args)
|
56524
|
+
update!(**args)
|
56525
|
+
end
|
56526
|
+
|
56527
|
+
# Update properties of this object
|
56528
|
+
def update!(**args)
|
56529
|
+
@bandwidth_unmetered = args[:bandwidth_unmetered] if args.key?(:bandwidth_unmetered)
|
56530
|
+
@fault_response = args[:fault_response] if args.key?(:fault_response)
|
56531
|
+
end
|
56532
|
+
end
|
56533
|
+
|
54658
56534
|
#
|
54659
56535
|
class XpnHostList
|
54660
56536
|
include Google::Apis::Core::Hashable
|