google-apis-compute_beta 0.118.0 → 0.119.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a3ab1e20ef5729c91a19da6cf2418d3b5f2a19a199c56cab364d0d70059f7ba
|
4
|
+
data.tar.gz: 1b5dd16bc6c24f45ad805d3cb48fcfb09940ab7235162bec77c5a24dcce71f0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2590f324defaef0a41f04751ecc9b7d6da67830443c52ff46438cf761b7976a7926024a115e0fbce85e3e7924cbf7175267aacd337e17ed22368ebf7c864dcf7
|
7
|
+
data.tar.gz: ef8d2a661aad6159e7d7be5337895b67fc246b0a8bf0a8be7cdeacf6ed698f0191584c40a7a4642761c5d9c538c90e8723e3a2962434c2df34d46d937be9af59
|
data/CHANGELOG.md
CHANGED
@@ -3120,6 +3120,11 @@ module Google
|
|
3120
3120
|
# @return [String]
|
3121
3121
|
attr_accessor :name
|
3122
3122
|
|
3123
|
+
# Additional Backend Bucket parameters.
|
3124
|
+
# Corresponds to the JSON property `params`
|
3125
|
+
# @return [Google::Apis::ComputeBeta::BackendBucketParams]
|
3126
|
+
attr_accessor :params
|
3127
|
+
|
3123
3128
|
# [Output Only] Server-defined URL for the resource.
|
3124
3129
|
# Corresponds to the JSON property `selfLink`
|
3125
3130
|
# @return [String]
|
@@ -3148,6 +3153,7 @@ module Google
|
|
3148
3153
|
@kind = args[:kind] if args.key?(:kind)
|
3149
3154
|
@load_balancing_scheme = args[:load_balancing_scheme] if args.key?(:load_balancing_scheme)
|
3150
3155
|
@name = args[:name] if args.key?(:name)
|
3156
|
+
@params = args[:params] if args.key?(:params)
|
3151
3157
|
@self_link = args[:self_link] if args.key?(:self_link)
|
3152
3158
|
@used_by = args[:used_by] if args.key?(:used_by)
|
3153
3159
|
end
|
@@ -3623,6 +3629,32 @@ module Google
|
|
3623
3629
|
end
|
3624
3630
|
end
|
3625
3631
|
|
3632
|
+
# Additional Backend Bucket parameters.
|
3633
|
+
class BackendBucketParams
|
3634
|
+
include Google::Apis::Core::Hashable
|
3635
|
+
|
3636
|
+
# Tag keys/values directly bound to this resource. Tag keys and values have the
|
3637
|
+
# same definition as resource manager tags. The field is allowed for INSERT only.
|
3638
|
+
# The keys/values to set on the resource should be specified in either ID ` : `
|
3639
|
+
# or Namespaced format ` : `. For example the following are valid inputs: * `"
|
3640
|
+
# tagKeys/333" : "tagValues/444", "tagKeys/123" : "tagValues/456"` * `"123/
|
3641
|
+
# environment" : "production", "345/abc" : "xyz"` Note: * Invalid combinations
|
3642
|
+
# of ID & namespaced format is not supported. For instance: `"123/environment" :
|
3643
|
+
# "tagValues/444"` is invalid.
|
3644
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
3645
|
+
# @return [Hash<String,String>]
|
3646
|
+
attr_accessor :resource_manager_tags
|
3647
|
+
|
3648
|
+
def initialize(**args)
|
3649
|
+
update!(**args)
|
3650
|
+
end
|
3651
|
+
|
3652
|
+
# Update properties of this object
|
3653
|
+
def update!(**args)
|
3654
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
3655
|
+
end
|
3656
|
+
end
|
3657
|
+
|
3626
3658
|
#
|
3627
3659
|
class BackendBucketUsedBy
|
3628
3660
|
include Google::Apis::Core::Hashable
|
@@ -3660,7 +3692,7 @@ module Google
|
|
3660
3692
|
attr_accessor :max_utilization
|
3661
3693
|
|
3662
3694
|
# Name of a custom utilization signal. The name must be 1-64 characters long and
|
3663
|
-
# match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means the
|
3695
|
+
# match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means that the
|
3664
3696
|
# first character must be a lowercase letter, and all following characters must
|
3665
3697
|
# be a dash, period, underscore, lowercase letter, or digit, except the last
|
3666
3698
|
# character, which cannot be a dash, period, or underscore. For usage guidelines,
|
@@ -3948,11 +3980,16 @@ module Google
|
|
3948
3980
|
# was redirected to the load balancer. - MAGLEV: used as a drop in replacement
|
3949
3981
|
# for the ring hash load balancer. Maglev is not as stable as ring hash but has
|
3950
3982
|
# faster table lookup build times and host selection times. For more information
|
3951
|
-
# about Maglev, see https://ai.google/research/pubs/pub44824
|
3952
|
-
#
|
3953
|
-
#
|
3954
|
-
#
|
3955
|
-
#
|
3983
|
+
# about Maglev, see https://ai.google/research/pubs/pub44824 -
|
3984
|
+
# WEIGHTED_ROUND_ROBIN: Per-endpoint Weighted Round Robin Load Balancing using
|
3985
|
+
# weights computed from Backend reported Custom Metrics. If set, the Backend
|
3986
|
+
# Service responses are expected to contain non-standard HTTP response header
|
3987
|
+
# field Endpoint-Load-Metrics. The reported metrics to use for computing the
|
3988
|
+
# weights are specified via the customMetrics field. This field is applicable to
|
3989
|
+
# either: - A regional backend service with the service_protocol set to HTTP,
|
3990
|
+
# HTTPS, HTTP2 or H2C, and load_balancing_scheme set to INTERNAL_MANAGED. - A
|
3991
|
+
# global backend service with the load_balancing_scheme set to
|
3992
|
+
# INTERNAL_SELF_MANAGED, INTERNAL_MANAGED, or EXTERNAL_MANAGED. If
|
3956
3993
|
# sessionAffinity is not configured—that is, if session affinity remains at the
|
3957
3994
|
# default value of NONE—then the default value for localityLbPolicy is
|
3958
3995
|
# ROUND_ROBIN. If session affinity is set to a value other than NONE, then the
|
@@ -4016,6 +4053,11 @@ module Google
|
|
4016
4053
|
# @return [Google::Apis::ComputeBeta::OutlierDetection]
|
4017
4054
|
attr_accessor :outlier_detection
|
4018
4055
|
|
4056
|
+
# Additional Backend Service parameters.
|
4057
|
+
# Corresponds to the JSON property `params`
|
4058
|
+
# @return [Google::Apis::ComputeBeta::BackendServiceParams]
|
4059
|
+
attr_accessor :params
|
4060
|
+
|
4019
4061
|
# Deprecated in favor of portName. The TCP port to connect on the backend. The
|
4020
4062
|
# default value is 80. For internal passthrough Network Load Balancers and
|
4021
4063
|
# external passthrough Network Load Balancers, omit port.
|
@@ -4168,6 +4210,7 @@ module Google
|
|
4168
4210
|
@network = args[:network] if args.key?(:network)
|
4169
4211
|
@network_pass_through_lb_traffic_policy = args[:network_pass_through_lb_traffic_policy] if args.key?(:network_pass_through_lb_traffic_policy)
|
4170
4212
|
@outlier_detection = args[:outlier_detection] if args.key?(:outlier_detection)
|
4213
|
+
@params = args[:params] if args.key?(:params)
|
4171
4214
|
@port = args[:port] if args.key?(:port)
|
4172
4215
|
@port_name = args[:port_name] if args.key?(:port_name)
|
4173
4216
|
@protocol = args[:protocol] if args.key?(:protocol)
|
@@ -4595,7 +4638,7 @@ module Google
|
|
4595
4638
|
alias_method :dry_run?, :dry_run
|
4596
4639
|
|
4597
4640
|
# Name of a custom utilization signal. The name must be 1-64 characters long and
|
4598
|
-
# match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means the
|
4641
|
+
# match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means that the
|
4599
4642
|
# first character must be a lowercase letter, and all following characters must
|
4600
4643
|
# be a dash, period, underscore, lowercase letter, or digit, except the last
|
4601
4644
|
# character, which cannot be a dash, period, or underscore. For usage guidelines,
|
@@ -5384,6 +5427,32 @@ module Google
|
|
5384
5427
|
end
|
5385
5428
|
end
|
5386
5429
|
|
5430
|
+
# Additional Backend Service parameters.
|
5431
|
+
class BackendServiceParams
|
5432
|
+
include Google::Apis::Core::Hashable
|
5433
|
+
|
5434
|
+
# Tag keys/values directly bound to this resource. Tag keys and values have the
|
5435
|
+
# same definition as resource manager tags. The field is allowed for INSERT only.
|
5436
|
+
# The keys/values to set on the resource should be specified in either ID ` : `
|
5437
|
+
# or Namespaced format ` : `. For example the following are valid inputs: * `"
|
5438
|
+
# tagKeys/333" : "tagValues/444", "tagKeys/123" : "tagValues/456"` * `"123/
|
5439
|
+
# environment" : "production", "345/abc" : "xyz"` Note: * Invalid combinations
|
5440
|
+
# of ID & namespaced format is not supported. For instance: `"123/environment" :
|
5441
|
+
# "tagValues/444"` is invalid.
|
5442
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
5443
|
+
# @return [Hash<String,String>]
|
5444
|
+
attr_accessor :resource_manager_tags
|
5445
|
+
|
5446
|
+
def initialize(**args)
|
5447
|
+
update!(**args)
|
5448
|
+
end
|
5449
|
+
|
5450
|
+
# Update properties of this object
|
5451
|
+
def update!(**args)
|
5452
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
5453
|
+
end
|
5454
|
+
end
|
5455
|
+
|
5387
5456
|
#
|
5388
5457
|
class BackendServiceReference
|
5389
5458
|
include Google::Apis::Core::Hashable
|
@@ -11432,7 +11501,8 @@ module Google
|
|
11432
11501
|
# allowed to inject packets into the consumer's network. If set to true, the
|
11433
11502
|
# target service attachment must have tunneling enabled and TunnelingConfig.
|
11434
11503
|
# RoutingMode set to PACKET_INJECTION Non-PSC forwarding rules should not use
|
11435
|
-
# this field.
|
11504
|
+
# this field. This field was never released to any customers and is deprecated
|
11505
|
+
# and will be removed in the future.
|
11436
11506
|
# Corresponds to the JSON property `allowPscPacketInjection`
|
11437
11507
|
# @return [Boolean]
|
11438
11508
|
attr_accessor :allow_psc_packet_injection
|
@@ -28846,11 +28916,6 @@ module Google
|
|
28846
28916
|
class MultiMigsList
|
28847
28917
|
include Google::Apis::Core::Hashable
|
28848
28918
|
|
28849
|
-
#
|
28850
|
-
# Corresponds to the JSON property `etag`
|
28851
|
-
# @return [String]
|
28852
|
-
attr_accessor :etag
|
28853
|
-
|
28854
28919
|
# Unique identifier for the resource; defined by the server.
|
28855
28920
|
# Corresponds to the JSON property `id`
|
28856
28921
|
# @return [String]
|
@@ -28879,11 +28944,6 @@ module Google
|
|
28879
28944
|
# @return [String]
|
28880
28945
|
attr_accessor :self_link
|
28881
28946
|
|
28882
|
-
# [Output only] Unreachable resources.
|
28883
|
-
# Corresponds to the JSON property `unreachables`
|
28884
|
-
# @return [Array<String>]
|
28885
|
-
attr_accessor :unreachables
|
28886
|
-
|
28887
28947
|
# Informational warning message.
|
28888
28948
|
# Corresponds to the JSON property `warning`
|
28889
28949
|
# @return [Google::Apis::ComputeBeta::MultiMigsList::Warning]
|
@@ -28895,13 +28955,11 @@ module Google
|
|
28895
28955
|
|
28896
28956
|
# Update properties of this object
|
28897
28957
|
def update!(**args)
|
28898
|
-
@etag = args[:etag] if args.key?(:etag)
|
28899
28958
|
@id = args[:id] if args.key?(:id)
|
28900
28959
|
@items = args[:items] if args.key?(:items)
|
28901
28960
|
@kind = args[:kind] if args.key?(:kind)
|
28902
28961
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
28903
28962
|
@self_link = args[:self_link] if args.key?(:self_link)
|
28904
|
-
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
28905
28963
|
@warning = args[:warning] if args.key?(:warning)
|
28906
28964
|
end
|
28907
28965
|
|
@@ -36744,16 +36802,11 @@ module Google
|
|
36744
36802
|
class PreviewFeatureRolloutOperation
|
36745
36803
|
include Google::Apis::Core::Hashable
|
36746
36804
|
|
36747
|
-
#
|
36805
|
+
# Represents the input for the rollout operation.
|
36748
36806
|
# Corresponds to the JSON property `rolloutInput`
|
36749
36807
|
# @return [Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutInput]
|
36750
36808
|
attr_accessor :rollout_input
|
36751
36809
|
|
36752
|
-
#
|
36753
|
-
# Corresponds to the JSON property `rolloutStatus`
|
36754
|
-
# @return [Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutStatus]
|
36755
|
-
attr_accessor :rollout_status
|
36756
|
-
|
36757
36810
|
def initialize(**args)
|
36758
36811
|
update!(**args)
|
36759
36812
|
end
|
@@ -36761,11 +36814,10 @@ module Google
|
|
36761
36814
|
# Update properties of this object
|
36762
36815
|
def update!(**args)
|
36763
36816
|
@rollout_input = args[:rollout_input] if args.key?(:rollout_input)
|
36764
|
-
@rollout_status = args[:rollout_status] if args.key?(:rollout_status)
|
36765
36817
|
end
|
36766
36818
|
end
|
36767
36819
|
|
36768
|
-
#
|
36820
|
+
# Represents the input for the rollout operation.
|
36769
36821
|
class PreviewFeatureRolloutOperationRolloutInput
|
36770
36822
|
include Google::Apis::Core::Hashable
|
36771
36823
|
|
@@ -36781,13 +36833,6 @@ module Google
|
|
36781
36833
|
# @return [String]
|
36782
36834
|
attr_accessor :predefined_rollout_plan
|
36783
36835
|
|
36784
|
-
# The UUID of the retry action. Only needed if this is a retry for an existing
|
36785
|
-
# rollout. This can be used after the user canceled a rollout and want to retry
|
36786
|
-
# it with no changes.
|
36787
|
-
# Corresponds to the JSON property `retryUuid`
|
36788
|
-
# @return [String]
|
36789
|
-
attr_accessor :retry_uuid
|
36790
|
-
|
36791
36836
|
def initialize(**args)
|
36792
36837
|
update!(**args)
|
36793
36838
|
end
|
@@ -36796,68 +36841,6 @@ module Google
|
|
36796
36841
|
def update!(**args)
|
36797
36842
|
@name = args[:name] if args.key?(:name)
|
36798
36843
|
@predefined_rollout_plan = args[:predefined_rollout_plan] if args.key?(:predefined_rollout_plan)
|
36799
|
-
@retry_uuid = args[:retry_uuid] if args.key?(:retry_uuid)
|
36800
|
-
end
|
36801
|
-
end
|
36802
|
-
|
36803
|
-
#
|
36804
|
-
class PreviewFeatureRolloutOperationRolloutStatus
|
36805
|
-
include Google::Apis::Core::Hashable
|
36806
|
-
|
36807
|
-
# Output only. The ongoing rollout resources. There can be multiple ongoing
|
36808
|
-
# rollouts for a resource.
|
36809
|
-
# Corresponds to the JSON property `ongoingRollouts`
|
36810
|
-
# @return [Array<Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutStatusRolloutMetadata>]
|
36811
|
-
attr_accessor :ongoing_rollouts
|
36812
|
-
|
36813
|
-
# Output only. The last completed rollout resource. This field will not be
|
36814
|
-
# populated until the first rollout is completed.
|
36815
|
-
# Corresponds to the JSON property `previousRollout`
|
36816
|
-
# @return [Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutStatusRolloutMetadata]
|
36817
|
-
attr_accessor :previous_rollout
|
36818
|
-
|
36819
|
-
def initialize(**args)
|
36820
|
-
update!(**args)
|
36821
|
-
end
|
36822
|
-
|
36823
|
-
# Update properties of this object
|
36824
|
-
def update!(**args)
|
36825
|
-
@ongoing_rollouts = args[:ongoing_rollouts] if args.key?(:ongoing_rollouts)
|
36826
|
-
@previous_rollout = args[:previous_rollout] if args.key?(:previous_rollout)
|
36827
|
-
end
|
36828
|
-
end
|
36829
|
-
|
36830
|
-
#
|
36831
|
-
class PreviewFeatureRolloutOperationRolloutStatusRolloutMetadata
|
36832
|
-
include Google::Apis::Core::Hashable
|
36833
|
-
|
36834
|
-
# The name of the rollout Ex. organizations//locations/global/rollouts/ Ex.
|
36835
|
-
# folders//locations/global/rollouts/ Ex. projects//locations/global/rollouts/.
|
36836
|
-
# Corresponds to the JSON property `rollout`
|
36837
|
-
# @return [String]
|
36838
|
-
attr_accessor :rollout
|
36839
|
-
|
36840
|
-
# The name of the rollout plan Ex. organizations//locations/global/rolloutPlans/
|
36841
|
-
# Ex. folders//locations/global/rolloutPlans/ Ex. projects//locations/global/
|
36842
|
-
# rolloutPlans/.
|
36843
|
-
# Corresponds to the JSON property `rolloutPlan`
|
36844
|
-
# @return [String]
|
36845
|
-
attr_accessor :rollout_plan
|
36846
|
-
|
36847
|
-
# [Output Only] The status of the feature.
|
36848
|
-
# Corresponds to the JSON property `status`
|
36849
|
-
# @return [Google::Apis::ComputeBeta::PreviewFeatureStatus]
|
36850
|
-
attr_accessor :status
|
36851
|
-
|
36852
|
-
def initialize(**args)
|
36853
|
-
update!(**args)
|
36854
|
-
end
|
36855
|
-
|
36856
|
-
# Update properties of this object
|
36857
|
-
def update!(**args)
|
36858
|
-
@rollout = args[:rollout] if args.key?(:rollout)
|
36859
|
-
@rollout_plan = args[:rollout_plan] if args.key?(:rollout_plan)
|
36860
|
-
@status = args[:status] if args.key?(:status)
|
36861
36844
|
end
|
36862
36845
|
end
|
36863
36846
|
|
@@ -36870,7 +36853,12 @@ module Google
|
|
36870
36853
|
# @return [String]
|
36871
36854
|
attr_accessor :description
|
36872
36855
|
|
36873
|
-
#
|
36856
|
+
# [Output Only] Link to the public documentation for the feature.
|
36857
|
+
# Corresponds to the JSON property `helpLink`
|
36858
|
+
# @return [String]
|
36859
|
+
attr_accessor :help_link
|
36860
|
+
|
36861
|
+
# [Output Only] The release status of the feature.
|
36874
36862
|
# Corresponds to the JSON property `releaseStatus`
|
36875
36863
|
# @return [Google::Apis::ComputeBeta::PreviewFeatureStatusReleaseStatus]
|
36876
36864
|
attr_accessor :release_status
|
@@ -36882,11 +36870,12 @@ module Google
|
|
36882
36870
|
# Update properties of this object
|
36883
36871
|
def update!(**args)
|
36884
36872
|
@description = args[:description] if args.key?(:description)
|
36873
|
+
@help_link = args[:help_link] if args.key?(:help_link)
|
36885
36874
|
@release_status = args[:release_status] if args.key?(:release_status)
|
36886
36875
|
end
|
36887
36876
|
end
|
36888
36877
|
|
36889
|
-
#
|
36878
|
+
# [Output Only] The release status of the feature.
|
36890
36879
|
class PreviewFeatureStatusReleaseStatus
|
36891
36880
|
include Google::Apis::Core::Hashable
|
36892
36881
|
|
@@ -40287,6 +40276,13 @@ module Google
|
|
40287
40276
|
# @return [String]
|
40288
40277
|
attr_accessor :name
|
40289
40278
|
|
40279
|
+
# Protection tier for the workload which specifies the workload expectations in
|
40280
|
+
# the event of infrastructure failures at data center (e.g. power and/or cooling
|
40281
|
+
# failures).
|
40282
|
+
# Corresponds to the JSON property `protectionTier`
|
40283
|
+
# @return [String]
|
40284
|
+
attr_accessor :protection_tier
|
40285
|
+
|
40290
40286
|
# [Output only] Indicates the reservation mode of the reservation.
|
40291
40287
|
# Corresponds to the JSON property `reservationMode`
|
40292
40288
|
# @return [String]
|
@@ -40376,6 +40372,7 @@ module Google
|
|
40376
40372
|
@kind = args[:kind] if args.key?(:kind)
|
40377
40373
|
@linked_commitments = args[:linked_commitments] if args.key?(:linked_commitments)
|
40378
40374
|
@name = args[:name] if args.key?(:name)
|
40375
|
+
@protection_tier = args[:protection_tier] if args.key?(:protection_tier)
|
40379
40376
|
@reservation_mode = args[:reservation_mode] if args.key?(:reservation_mode)
|
40380
40377
|
@reservation_sharing_policy = args[:reservation_sharing_policy] if args.key?(:reservation_sharing_policy)
|
40381
40378
|
@resource_policies = args[:resource_policies] if args.key?(:resource_policies)
|
@@ -47521,7 +47518,9 @@ module Google
|
|
47521
47518
|
# @return [String]
|
47522
47519
|
attr_accessor :target
|
47523
47520
|
|
47524
|
-
# Type of the redirect action.
|
47521
|
+
# Type of the redirect action. Possible values are: - GOOGLE_RECAPTCHA: redirect
|
47522
|
+
# to reCAPTCHA for manual challenge assessment. - EXTERNAL_302: redirect to a
|
47523
|
+
# different URL via a 302 response.
|
47525
47524
|
# Corresponds to the JSON property `type`
|
47526
47525
|
# @return [String]
|
47527
47526
|
attr_accessor :type
|
@@ -47764,7 +47763,8 @@ module Google
|
|
47764
47763
|
# service attachment. Each project or network has a connection limit. A given
|
47765
47764
|
# service attachment can manage connections at either the project or network
|
47766
47765
|
# level. Therefore, both the accept and reject lists for a given service
|
47767
|
-
# attachment must contain either only projects or only networks
|
47766
|
+
# attachment must contain either only projects or only networks or only
|
47767
|
+
# endpoints.
|
47768
47768
|
# Corresponds to the JSON property `consumerAcceptLists`
|
47769
47769
|
# @return [Array<Google::Apis::ComputeBeta::ServiceAttachmentConsumerProjectLimit>]
|
47770
47770
|
attr_accessor :consumer_accept_lists
|
@@ -47828,6 +47828,11 @@ module Google
|
|
47828
47828
|
# @return [String]
|
47829
47829
|
attr_accessor :kind
|
47830
47830
|
|
47831
|
+
# Metadata of the service attachment.
|
47832
|
+
# Corresponds to the JSON property `metadata`
|
47833
|
+
# @return [Hash<String,String>]
|
47834
|
+
attr_accessor :metadata
|
47835
|
+
|
47831
47836
|
# Name of the resource. Provided by the client when the resource is created. The
|
47832
47837
|
# name must be 1-63 characters long, and comply with RFC1035. Specifically, the
|
47833
47838
|
# name must be 1-63 characters long and match the regular expression `[a-z]([-a-
|
@@ -47925,6 +47930,7 @@ module Google
|
|
47925
47930
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
47926
47931
|
@id = args[:id] if args.key?(:id)
|
47927
47932
|
@kind = args[:kind] if args.key?(:kind)
|
47933
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
47928
47934
|
@name = args[:name] if args.key?(:name)
|
47929
47935
|
@nat_subnets = args[:nat_subnets] if args.key?(:nat_subnets)
|
47930
47936
|
@producer_forwarding_rule = args[:producer_forwarding_rule] if args.key?(:producer_forwarding_rule)
|
@@ -48109,7 +48115,8 @@ module Google
|
|
48109
48115
|
class ServiceAttachmentConsumerProjectLimit
|
48110
48116
|
include Google::Apis::Core::Hashable
|
48111
48117
|
|
48112
|
-
# The value of the limit to set.
|
48118
|
+
# The value of the limit to set. For endpoint_url, the limit should be no more
|
48119
|
+
# than 1.
|
48113
48120
|
# Corresponds to the JSON property `connectionLimit`
|
48114
48121
|
# @return [Fixnum]
|
48115
48122
|
attr_accessor :connection_limit
|
@@ -50968,7 +50975,7 @@ module Google
|
|
50968
50975
|
# @return [String]
|
50969
50976
|
attr_accessor :performance_provisioning_type
|
50970
50977
|
|
50971
|
-
# Size
|
50978
|
+
# Size of the storage pool in GiB. For more information about the size limits,
|
50972
50979
|
# see https://cloud.google.com/compute/docs/disks/storage-pools.
|
50973
50980
|
# Corresponds to the JSON property `poolProvisionedCapacityGb`
|
50974
50981
|
# @return [Fixnum]
|
@@ -50980,8 +50987,8 @@ module Google
|
|
50980
50987
|
# @return [Fixnum]
|
50981
50988
|
attr_accessor :pool_provisioned_iops
|
50982
50989
|
|
50983
|
-
# Provisioned throughput of the storage pool. Only relevant if the
|
50984
|
-
# type is hyperdisk-balanced or hyperdisk-throughput.
|
50990
|
+
# Provisioned throughput of the storage pool in MiB/s. Only relevant if the
|
50991
|
+
# storage pool type is hyperdisk-balanced or hyperdisk-throughput.
|
50985
50992
|
# Corresponds to the JSON property `poolProvisionedThroughput`
|
50986
50993
|
# @return [Fixnum]
|
50987
50994
|
attr_accessor :pool_provisioned_throughput
|
@@ -51539,7 +51546,7 @@ module Google
|
|
51539
51546
|
# @return [String]
|
51540
51547
|
attr_accessor :last_resize_timestamp
|
51541
51548
|
|
51542
|
-
# [Output Only] Maximum allowed aggregate disk size in
|
51549
|
+
# [Output Only] Maximum allowed aggregate disk size in GiB.
|
51543
51550
|
# Corresponds to the JSON property `maxTotalProvisionedDiskCapacityGb`
|
51544
51551
|
# @return [Fixnum]
|
51545
51552
|
attr_accessor :max_total_provisioned_disk_capacity_gb
|
@@ -51558,7 +51565,7 @@ module Google
|
|
51558
51565
|
# @return [Fixnum]
|
51559
51566
|
attr_accessor :pool_used_iops
|
51560
51567
|
|
51561
|
-
# [Output Only] Sum of all the disks' provisioned throughput in
|
51568
|
+
# [Output Only] Sum of all the disks' provisioned throughput in MiB/s.
|
51562
51569
|
# Corresponds to the JSON property `poolUsedThroughput`
|
51563
51570
|
# @return [Fixnum]
|
51564
51571
|
attr_accessor :pool_used_throughput
|
@@ -51568,8 +51575,8 @@ module Google
|
|
51568
51575
|
# @return [Fixnum]
|
51569
51576
|
attr_accessor :pool_user_written_bytes
|
51570
51577
|
|
51571
|
-
# [Output Only] Sum of all the
|
51572
|
-
# pool. A disk's provisioned capacity is the same as its total capacity.
|
51578
|
+
# [Output Only] Sum of all the disks' provisioned capacity (in GiB) in this
|
51579
|
+
# storage pool. A disk's provisioned capacity is the same as its total capacity.
|
51573
51580
|
# Corresponds to the JSON property `totalProvisionedDiskCapacityGb`
|
51574
51581
|
# @return [Fixnum]
|
51575
51582
|
attr_accessor :total_provisioned_disk_capacity_gb
|
@@ -51579,9 +51586,9 @@ module Google
|
|
51579
51586
|
# @return [Fixnum]
|
51580
51587
|
attr_accessor :total_provisioned_disk_iops
|
51581
51588
|
|
51582
|
-
# [Output Only] Sum of all the disks' provisioned throughput in
|
51583
|
-
# amount that is allowed per disk that is not counted towards pool's
|
51584
|
-
# capacity.
|
51589
|
+
# [Output Only] Sum of all the disks' provisioned throughput in MiB/s, minus
|
51590
|
+
# some amount that is allowed per disk that is not counted towards pool's
|
51591
|
+
# throughput capacity.
|
51585
51592
|
# Corresponds to the JSON property `totalProvisionedDiskThroughput`
|
51586
51593
|
# @return [Fixnum]
|
51587
51594
|
attr_accessor :total_provisioned_disk_throughput
|
@@ -52350,6 +52357,11 @@ module Google
|
|
52350
52357
|
# @return [String]
|
52351
52358
|
attr_accessor :reserved_internal_range
|
52352
52359
|
|
52360
|
+
# Configures subnet mask resolution for this subnetwork.
|
52361
|
+
# Corresponds to the JSON property `resolveSubnetMask`
|
52362
|
+
# @return [String]
|
52363
|
+
attr_accessor :resolve_subnet_mask
|
52364
|
+
|
52353
52365
|
# The role of subnetwork. Currently, this field is only used when purpose is set
|
52354
52366
|
# to GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY. The value can be set to
|
52355
52367
|
# ACTIVE or BACKUP. An ACTIVE subnetwork is one that is currently being used for
|
@@ -52403,6 +52415,12 @@ module Google
|
|
52403
52415
|
# @return [Array<String>]
|
52404
52416
|
attr_accessor :system_reserved_internal_ipv6_ranges
|
52405
52417
|
|
52418
|
+
# The current IP utilization of all subnetwork ranges. Contains the total number
|
52419
|
+
# of allocated and free IPs in each range.
|
52420
|
+
# Corresponds to the JSON property `utilizationDetails`
|
52421
|
+
# @return [Google::Apis::ComputeBeta::SubnetworkUtilizationDetails]
|
52422
|
+
attr_accessor :utilization_details
|
52423
|
+
|
52406
52424
|
def initialize(**args)
|
52407
52425
|
update!(**args)
|
52408
52426
|
end
|
@@ -52433,6 +52451,7 @@ module Google
|
|
52433
52451
|
@purpose = args[:purpose] if args.key?(:purpose)
|
52434
52452
|
@region = args[:region] if args.key?(:region)
|
52435
52453
|
@reserved_internal_range = args[:reserved_internal_range] if args.key?(:reserved_internal_range)
|
52454
|
+
@resolve_subnet_mask = args[:resolve_subnet_mask] if args.key?(:resolve_subnet_mask)
|
52436
52455
|
@role = args[:role] if args.key?(:role)
|
52437
52456
|
@secondary_ip_ranges = args[:secondary_ip_ranges] if args.key?(:secondary_ip_ranges)
|
52438
52457
|
@self_link = args[:self_link] if args.key?(:self_link)
|
@@ -52440,6 +52459,7 @@ module Google
|
|
52440
52459
|
@state = args[:state] if args.key?(:state)
|
52441
52460
|
@system_reserved_external_ipv6_ranges = args[:system_reserved_external_ipv6_ranges] if args.key?(:system_reserved_external_ipv6_ranges)
|
52442
52461
|
@system_reserved_internal_ipv6_ranges = args[:system_reserved_internal_ipv6_ranges] if args.key?(:system_reserved_internal_ipv6_ranges)
|
52462
|
+
@utilization_details = args[:utilization_details] if args.key?(:utilization_details)
|
52443
52463
|
end
|
52444
52464
|
end
|
52445
52465
|
|
@@ -52814,6 +52834,101 @@ module Google
|
|
52814
52834
|
end
|
52815
52835
|
end
|
52816
52836
|
|
52837
|
+
# The current IP utilization of all subnetwork ranges. Contains the total number
|
52838
|
+
# of allocated and free IPs in each range.
|
52839
|
+
class SubnetworkUtilizationDetails
|
52840
|
+
include Google::Apis::Core::Hashable
|
52841
|
+
|
52842
|
+
# The IPV6 utilization of a single IP range.
|
52843
|
+
# Corresponds to the JSON property `externalIpv6InstanceUtilization`
|
52844
|
+
# @return [Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv6Utilization]
|
52845
|
+
attr_accessor :external_ipv6_instance_utilization
|
52846
|
+
|
52847
|
+
# The IPV6 utilization of a single IP range.
|
52848
|
+
# Corresponds to the JSON property `externalIpv6LbUtilization`
|
52849
|
+
# @return [Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv6Utilization]
|
52850
|
+
attr_accessor :external_ipv6_lb_utilization
|
52851
|
+
|
52852
|
+
# The IPV6 utilization of a single IP range.
|
52853
|
+
# Corresponds to the JSON property `internalIpv6Utilization`
|
52854
|
+
# @return [Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv6Utilization]
|
52855
|
+
attr_accessor :internal_ipv6_utilization
|
52856
|
+
|
52857
|
+
# Utilizations of all IPV4 IP ranges. For primary ranges, the range name will be
|
52858
|
+
# empty.
|
52859
|
+
# Corresponds to the JSON property `ipv4Utilizations`
|
52860
|
+
# @return [Array<Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv4Utilization>]
|
52861
|
+
attr_accessor :ipv4_utilizations
|
52862
|
+
|
52863
|
+
def initialize(**args)
|
52864
|
+
update!(**args)
|
52865
|
+
end
|
52866
|
+
|
52867
|
+
# Update properties of this object
|
52868
|
+
def update!(**args)
|
52869
|
+
@external_ipv6_instance_utilization = args[:external_ipv6_instance_utilization] if args.key?(:external_ipv6_instance_utilization)
|
52870
|
+
@external_ipv6_lb_utilization = args[:external_ipv6_lb_utilization] if args.key?(:external_ipv6_lb_utilization)
|
52871
|
+
@internal_ipv6_utilization = args[:internal_ipv6_utilization] if args.key?(:internal_ipv6_utilization)
|
52872
|
+
@ipv4_utilizations = args[:ipv4_utilizations] if args.key?(:ipv4_utilizations)
|
52873
|
+
end
|
52874
|
+
end
|
52875
|
+
|
52876
|
+
# The IPV4 utilization of a single IP range.
|
52877
|
+
class SubnetworkUtilizationDetailsIpv4Utilization
|
52878
|
+
include Google::Apis::Core::Hashable
|
52879
|
+
|
52880
|
+
# Will be set for secondary range. Empty for primary IPv4 range.
|
52881
|
+
# Corresponds to the JSON property `rangeName`
|
52882
|
+
# @return [String]
|
52883
|
+
attr_accessor :range_name
|
52884
|
+
|
52885
|
+
#
|
52886
|
+
# Corresponds to the JSON property `totalAllocatedIp`
|
52887
|
+
# @return [Fixnum]
|
52888
|
+
attr_accessor :total_allocated_ip
|
52889
|
+
|
52890
|
+
#
|
52891
|
+
# Corresponds to the JSON property `totalFreeIp`
|
52892
|
+
# @return [Fixnum]
|
52893
|
+
attr_accessor :total_free_ip
|
52894
|
+
|
52895
|
+
def initialize(**args)
|
52896
|
+
update!(**args)
|
52897
|
+
end
|
52898
|
+
|
52899
|
+
# Update properties of this object
|
52900
|
+
def update!(**args)
|
52901
|
+
@range_name = args[:range_name] if args.key?(:range_name)
|
52902
|
+
@total_allocated_ip = args[:total_allocated_ip] if args.key?(:total_allocated_ip)
|
52903
|
+
@total_free_ip = args[:total_free_ip] if args.key?(:total_free_ip)
|
52904
|
+
end
|
52905
|
+
end
|
52906
|
+
|
52907
|
+
# The IPV6 utilization of a single IP range.
|
52908
|
+
class SubnetworkUtilizationDetailsIpv6Utilization
|
52909
|
+
include Google::Apis::Core::Hashable
|
52910
|
+
|
52911
|
+
#
|
52912
|
+
# Corresponds to the JSON property `totalAllocatedIp`
|
52913
|
+
# @return [Google::Apis::ComputeBeta::Uint128]
|
52914
|
+
attr_accessor :total_allocated_ip
|
52915
|
+
|
52916
|
+
#
|
52917
|
+
# Corresponds to the JSON property `totalFreeIp`
|
52918
|
+
# @return [Google::Apis::ComputeBeta::Uint128]
|
52919
|
+
attr_accessor :total_free_ip
|
52920
|
+
|
52921
|
+
def initialize(**args)
|
52922
|
+
update!(**args)
|
52923
|
+
end
|
52924
|
+
|
52925
|
+
# Update properties of this object
|
52926
|
+
def update!(**args)
|
52927
|
+
@total_allocated_ip = args[:total_allocated_ip] if args.key?(:total_allocated_ip)
|
52928
|
+
@total_free_ip = args[:total_free_ip] if args.key?(:total_free_ip)
|
52929
|
+
end
|
52930
|
+
end
|
52931
|
+
|
52817
52932
|
#
|
52818
52933
|
class SubnetworksExpandIpCidrRangeRequest
|
52819
52934
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeBeta
|
18
18
|
# Version of the google-apis-compute_beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.119.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250728"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -436,6 +436,12 @@ module Google
|
|
436
436
|
include Google::Apis::Core::JsonObjectSupport
|
437
437
|
end
|
438
438
|
|
439
|
+
class BackendBucketParams
|
440
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
|
+
|
442
|
+
include Google::Apis::Core::JsonObjectSupport
|
443
|
+
end
|
444
|
+
|
439
445
|
class BackendBucketUsedBy
|
440
446
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
447
|
|
@@ -628,6 +634,12 @@ module Google
|
|
628
634
|
include Google::Apis::Core::JsonObjectSupport
|
629
635
|
end
|
630
636
|
|
637
|
+
class BackendServiceParams
|
638
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
639
|
+
|
640
|
+
include Google::Apis::Core::JsonObjectSupport
|
641
|
+
end
|
642
|
+
|
631
643
|
class BackendServiceReference
|
632
644
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
633
645
|
|
@@ -4738,18 +4750,6 @@ module Google
|
|
4738
4750
|
include Google::Apis::Core::JsonObjectSupport
|
4739
4751
|
end
|
4740
4752
|
|
4741
|
-
class PreviewFeatureRolloutOperationRolloutStatus
|
4742
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4743
|
-
|
4744
|
-
include Google::Apis::Core::JsonObjectSupport
|
4745
|
-
end
|
4746
|
-
|
4747
|
-
class PreviewFeatureRolloutOperationRolloutStatusRolloutMetadata
|
4748
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4749
|
-
|
4750
|
-
include Google::Apis::Core::JsonObjectSupport
|
4751
|
-
end
|
4752
|
-
|
4753
4753
|
class PreviewFeatureStatus
|
4754
4754
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4755
4755
|
|
@@ -6940,6 +6940,24 @@ module Google
|
|
6940
6940
|
include Google::Apis::Core::JsonObjectSupport
|
6941
6941
|
end
|
6942
6942
|
|
6943
|
+
class SubnetworkUtilizationDetails
|
6944
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6945
|
+
|
6946
|
+
include Google::Apis::Core::JsonObjectSupport
|
6947
|
+
end
|
6948
|
+
|
6949
|
+
class SubnetworkUtilizationDetailsIpv4Utilization
|
6950
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6951
|
+
|
6952
|
+
include Google::Apis::Core::JsonObjectSupport
|
6953
|
+
end
|
6954
|
+
|
6955
|
+
class SubnetworkUtilizationDetailsIpv6Utilization
|
6956
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6957
|
+
|
6958
|
+
include Google::Apis::Core::JsonObjectSupport
|
6959
|
+
end
|
6960
|
+
|
6943
6961
|
class SubnetworksExpandIpCidrRangeRequest
|
6944
6962
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6945
6963
|
|
@@ -8731,6 +8749,8 @@ module Google
|
|
8731
8749
|
property :kind, as: 'kind'
|
8732
8750
|
property :load_balancing_scheme, as: 'loadBalancingScheme'
|
8733
8751
|
property :name, as: 'name'
|
8752
|
+
property :params, as: 'params', class: Google::Apis::ComputeBeta::BackendBucketParams, decorator: Google::Apis::ComputeBeta::BackendBucketParams::Representation
|
8753
|
+
|
8734
8754
|
property :self_link, as: 'selfLink'
|
8735
8755
|
collection :used_by, as: 'usedBy', class: Google::Apis::ComputeBeta::BackendBucketUsedBy, decorator: Google::Apis::ComputeBeta::BackendBucketUsedBy::Representation
|
8736
8756
|
|
@@ -8845,6 +8865,13 @@ module Google
|
|
8845
8865
|
end
|
8846
8866
|
end
|
8847
8867
|
|
8868
|
+
class BackendBucketParams
|
8869
|
+
# @private
|
8870
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8871
|
+
hash :resource_manager_tags, as: 'resourceManagerTags'
|
8872
|
+
end
|
8873
|
+
end
|
8874
|
+
|
8848
8875
|
class BackendBucketUsedBy
|
8849
8876
|
# @private
|
8850
8877
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8916,6 +8943,8 @@ module Google
|
|
8916
8943
|
|
8917
8944
|
property :outlier_detection, as: 'outlierDetection', class: Google::Apis::ComputeBeta::OutlierDetection, decorator: Google::Apis::ComputeBeta::OutlierDetection::Representation
|
8918
8945
|
|
8946
|
+
property :params, as: 'params', class: Google::Apis::ComputeBeta::BackendServiceParams, decorator: Google::Apis::ComputeBeta::BackendServiceParams::Representation
|
8947
|
+
|
8919
8948
|
property :port, as: 'port'
|
8920
8949
|
property :port_name, as: 'portName'
|
8921
8950
|
property :protocol, as: 'protocol'
|
@@ -9220,6 +9249,13 @@ module Google
|
|
9220
9249
|
end
|
9221
9250
|
end
|
9222
9251
|
|
9252
|
+
class BackendServiceParams
|
9253
|
+
# @private
|
9254
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9255
|
+
hash :resource_manager_tags, as: 'resourceManagerTags'
|
9256
|
+
end
|
9257
|
+
end
|
9258
|
+
|
9223
9259
|
class BackendServiceReference
|
9224
9260
|
# @private
|
9225
9261
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -14980,14 +15016,12 @@ module Google
|
|
14980
15016
|
class MultiMigsList
|
14981
15017
|
# @private
|
14982
15018
|
class Representation < Google::Apis::Core::JsonRepresentation
|
14983
|
-
property :etag, as: 'etag'
|
14984
15019
|
property :id, as: 'id'
|
14985
15020
|
collection :items, as: 'items', class: Google::Apis::ComputeBeta::MultiMig, decorator: Google::Apis::ComputeBeta::MultiMig::Representation
|
14986
15021
|
|
14987
15022
|
property :kind, as: 'kind'
|
14988
15023
|
property :next_page_token, as: 'nextPageToken'
|
14989
15024
|
property :self_link, as: 'selfLink'
|
14990
|
-
collection :unreachables, as: 'unreachables'
|
14991
15025
|
property :warning, as: 'warning', class: Google::Apis::ComputeBeta::MultiMigsList::Warning, decorator: Google::Apis::ComputeBeta::MultiMigsList::Warning::Representation
|
14992
15026
|
|
14993
15027
|
end
|
@@ -16969,8 +17003,6 @@ module Google
|
|
16969
17003
|
class Representation < Google::Apis::Core::JsonRepresentation
|
16970
17004
|
property :rollout_input, as: 'rolloutInput', class: Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutInput, decorator: Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutInput::Representation
|
16971
17005
|
|
16972
|
-
property :rollout_status, as: 'rolloutStatus', class: Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutStatus, decorator: Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutStatus::Representation
|
16973
|
-
|
16974
17006
|
end
|
16975
17007
|
end
|
16976
17008
|
|
@@ -16979,27 +17011,6 @@ module Google
|
|
16979
17011
|
class Representation < Google::Apis::Core::JsonRepresentation
|
16980
17012
|
property :name, as: 'name'
|
16981
17013
|
property :predefined_rollout_plan, as: 'predefinedRolloutPlan'
|
16982
|
-
property :retry_uuid, as: 'retryUuid'
|
16983
|
-
end
|
16984
|
-
end
|
16985
|
-
|
16986
|
-
class PreviewFeatureRolloutOperationRolloutStatus
|
16987
|
-
# @private
|
16988
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
16989
|
-
collection :ongoing_rollouts, as: 'ongoingRollouts', class: Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutStatusRolloutMetadata, decorator: Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutStatusRolloutMetadata::Representation
|
16990
|
-
|
16991
|
-
property :previous_rollout, as: 'previousRollout', class: Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutStatusRolloutMetadata, decorator: Google::Apis::ComputeBeta::PreviewFeatureRolloutOperationRolloutStatusRolloutMetadata::Representation
|
16992
|
-
|
16993
|
-
end
|
16994
|
-
end
|
16995
|
-
|
16996
|
-
class PreviewFeatureRolloutOperationRolloutStatusRolloutMetadata
|
16997
|
-
# @private
|
16998
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
16999
|
-
property :rollout, as: 'rollout'
|
17000
|
-
property :rollout_plan, as: 'rolloutPlan'
|
17001
|
-
property :status, as: 'status', class: Google::Apis::ComputeBeta::PreviewFeatureStatus, decorator: Google::Apis::ComputeBeta::PreviewFeatureStatus::Representation
|
17002
|
-
|
17003
17014
|
end
|
17004
17015
|
end
|
17005
17016
|
|
@@ -17007,6 +17018,7 @@ module Google
|
|
17007
17018
|
# @private
|
17008
17019
|
class Representation < Google::Apis::Core::JsonRepresentation
|
17009
17020
|
property :description, as: 'description'
|
17021
|
+
property :help_link, as: 'helpLink'
|
17010
17022
|
property :release_status, as: 'releaseStatus', class: Google::Apis::ComputeBeta::PreviewFeatureStatusReleaseStatus, decorator: Google::Apis::ComputeBeta::PreviewFeatureStatusReleaseStatus::Representation
|
17011
17023
|
|
17012
17024
|
end
|
@@ -17923,6 +17935,7 @@ module Google
|
|
17923
17935
|
property :kind, as: 'kind'
|
17924
17936
|
collection :linked_commitments, as: 'linkedCommitments'
|
17925
17937
|
property :name, as: 'name'
|
17938
|
+
property :protection_tier, as: 'protectionTier'
|
17926
17939
|
property :reservation_mode, as: 'reservationMode'
|
17927
17940
|
property :reservation_sharing_policy, as: 'reservationSharingPolicy', class: Google::Apis::ComputeBeta::AllocationReservationSharingPolicy, decorator: Google::Apis::ComputeBeta::AllocationReservationSharingPolicy::Representation
|
17928
17941
|
|
@@ -19791,6 +19804,7 @@ module Google
|
|
19791
19804
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
19792
19805
|
property :id, :numeric_string => true, as: 'id'
|
19793
19806
|
property :kind, as: 'kind'
|
19807
|
+
hash :metadata, as: 'metadata'
|
19794
19808
|
property :name, as: 'name'
|
19795
19809
|
collection :nat_subnets, as: 'natSubnets'
|
19796
19810
|
property :producer_forwarding_rule, as: 'producerForwardingRule'
|
@@ -20933,6 +20947,7 @@ module Google
|
|
20933
20947
|
property :purpose, as: 'purpose'
|
20934
20948
|
property :region, as: 'region'
|
20935
20949
|
property :reserved_internal_range, as: 'reservedInternalRange'
|
20950
|
+
property :resolve_subnet_mask, as: 'resolveSubnetMask'
|
20936
20951
|
property :role, as: 'role'
|
20937
20952
|
collection :secondary_ip_ranges, as: 'secondaryIpRanges', class: Google::Apis::ComputeBeta::SubnetworkSecondaryRange, decorator: Google::Apis::ComputeBeta::SubnetworkSecondaryRange::Representation
|
20938
20953
|
|
@@ -20941,6 +20956,8 @@ module Google
|
|
20941
20956
|
property :state, as: 'state'
|
20942
20957
|
collection :system_reserved_external_ipv6_ranges, as: 'systemReservedExternalIpv6Ranges'
|
20943
20958
|
collection :system_reserved_internal_ipv6_ranges, as: 'systemReservedInternalIpv6Ranges'
|
20959
|
+
property :utilization_details, as: 'utilizationDetails', class: Google::Apis::ComputeBeta::SubnetworkUtilizationDetails, decorator: Google::Apis::ComputeBeta::SubnetworkUtilizationDetails::Representation
|
20960
|
+
|
20944
20961
|
end
|
20945
20962
|
end
|
20946
20963
|
|
@@ -21037,6 +21054,39 @@ module Google
|
|
21037
21054
|
end
|
21038
21055
|
end
|
21039
21056
|
|
21057
|
+
class SubnetworkUtilizationDetails
|
21058
|
+
# @private
|
21059
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
21060
|
+
property :external_ipv6_instance_utilization, as: 'externalIpv6InstanceUtilization', class: Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv6Utilization, decorator: Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv6Utilization::Representation
|
21061
|
+
|
21062
|
+
property :external_ipv6_lb_utilization, as: 'externalIpv6LbUtilization', class: Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv6Utilization, decorator: Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv6Utilization::Representation
|
21063
|
+
|
21064
|
+
property :internal_ipv6_utilization, as: 'internalIpv6Utilization', class: Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv6Utilization, decorator: Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv6Utilization::Representation
|
21065
|
+
|
21066
|
+
collection :ipv4_utilizations, as: 'ipv4Utilizations', class: Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv4Utilization, decorator: Google::Apis::ComputeBeta::SubnetworkUtilizationDetailsIpv4Utilization::Representation
|
21067
|
+
|
21068
|
+
end
|
21069
|
+
end
|
21070
|
+
|
21071
|
+
class SubnetworkUtilizationDetailsIpv4Utilization
|
21072
|
+
# @private
|
21073
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
21074
|
+
property :range_name, as: 'rangeName'
|
21075
|
+
property :total_allocated_ip, :numeric_string => true, as: 'totalAllocatedIp'
|
21076
|
+
property :total_free_ip, :numeric_string => true, as: 'totalFreeIp'
|
21077
|
+
end
|
21078
|
+
end
|
21079
|
+
|
21080
|
+
class SubnetworkUtilizationDetailsIpv6Utilization
|
21081
|
+
# @private
|
21082
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
21083
|
+
property :total_allocated_ip, as: 'totalAllocatedIp', class: Google::Apis::ComputeBeta::Uint128, decorator: Google::Apis::ComputeBeta::Uint128::Representation
|
21084
|
+
|
21085
|
+
property :total_free_ip, as: 'totalFreeIp', class: Google::Apis::ComputeBeta::Uint128, decorator: Google::Apis::ComputeBeta::Uint128::Representation
|
21086
|
+
|
21087
|
+
end
|
21088
|
+
end
|
21089
|
+
|
21040
21090
|
class SubnetworksExpandIpCidrRangeRequest
|
21041
21091
|
# @private
|
21042
21092
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8787,9 +8787,9 @@ module Google
|
|
8787
8787
|
# Retrieves the specified Operations resource. Gets a list of operations by
|
8788
8788
|
# making a `list()` request.
|
8789
8789
|
# @param [String] operation
|
8790
|
-
# Name of the Operations resource to return
|
8790
|
+
# Name of the Operations resource to return. Parent is derived from this field.
|
8791
8791
|
# @param [String] parent_id
|
8792
|
-
# Parent ID for this request.
|
8792
|
+
# Parent ID for this request. Not used. Parent is derived from resource_id.
|
8793
8793
|
# @param [String] fields
|
8794
8794
|
# Selector specifying which fields to include in a partial response.
|
8795
8795
|
# @param [String] quota_user
|
@@ -47876,6 +47876,9 @@ module Google
|
|
47876
47876
|
# Name of the region scoping this request.
|
47877
47877
|
# @param [String] subnetwork
|
47878
47878
|
# Name of the Subnetwork resource to return.
|
47879
|
+
# @param [Array<String>, String] views
|
47880
|
+
# Defines the extra views returned back in the subnetwork resource. Supported
|
47881
|
+
# values: - WITH_UTILIZATION: Utilization data is included in the response.
|
47879
47882
|
# @param [String] fields
|
47880
47883
|
# Selector specifying which fields to include in a partial response.
|
47881
47884
|
# @param [String] quota_user
|
@@ -47895,13 +47898,14 @@ module Google
|
|
47895
47898
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
47896
47899
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
47897
47900
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
47898
|
-
def get_subnetwork(project, region, subnetwork, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
47901
|
+
def get_subnetwork(project, region, subnetwork, views: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
47899
47902
|
command = make_simple_command(:get, 'projects/{project}/regions/{region}/subnetworks/{subnetwork}', options)
|
47900
47903
|
command.response_representation = Google::Apis::ComputeBeta::Subnetwork::Representation
|
47901
47904
|
command.response_class = Google::Apis::ComputeBeta::Subnetwork
|
47902
47905
|
command.params['project'] = project unless project.nil?
|
47903
47906
|
command.params['region'] = region unless region.nil?
|
47904
47907
|
command.params['subnetwork'] = subnetwork unless subnetwork.nil?
|
47908
|
+
command.query['views'] = views unless views.nil?
|
47905
47909
|
command.query['fields'] = fields unless fields.nil?
|
47906
47910
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
47907
47911
|
command.query['userIp'] = user_ip unless user_ip.nil?
|
@@ -48060,6 +48064,9 @@ module Google
|
|
48060
48064
|
# failure. The default value is false. For example, when partial success
|
48061
48065
|
# behavior is enabled, aggregatedList for a single zone scope either returns all
|
48062
48066
|
# resources in the zone or no resources, with an error code.
|
48067
|
+
# @param [Array<String>, String] views
|
48068
|
+
# Defines the extra views returned back in the subnetwork resource. Supported
|
48069
|
+
# values: - WITH_UTILIZATION: Utilization data is included in the response.
|
48063
48070
|
# @param [String] fields
|
48064
48071
|
# Selector specifying which fields to include in a partial response.
|
48065
48072
|
# @param [String] quota_user
|
@@ -48079,7 +48086,7 @@ module Google
|
|
48079
48086
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
48080
48087
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
48081
48088
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
48082
|
-
def list_subnetworks(project, region, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
48089
|
+
def list_subnetworks(project, region, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, views: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
48083
48090
|
command = make_simple_command(:get, 'projects/{project}/regions/{region}/subnetworks', options)
|
48084
48091
|
command.response_representation = Google::Apis::ComputeBeta::SubnetworkList::Representation
|
48085
48092
|
command.response_class = Google::Apis::ComputeBeta::SubnetworkList
|
@@ -48090,6 +48097,7 @@ module Google
|
|
48090
48097
|
command.query['orderBy'] = order_by unless order_by.nil?
|
48091
48098
|
command.query['pageToken'] = page_token unless page_token.nil?
|
48092
48099
|
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
48100
|
+
command.query['views'] = views unless views.nil?
|
48093
48101
|
command.query['fields'] = fields unless fields.nil?
|
48094
48102
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
48095
48103
|
command.query['userIp'] = user_ip unless user_ip.nil?
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.119.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.119.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|