google-apis-compute_beta 0.114.0 → 0.115.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: cf6394979a8f0639006de3db96d930e9ffc073e67e8d17640cfe113eed912911
|
4
|
+
data.tar.gz: a7bbef59b6d02119f1fa763d4d2d9e4ccc60614b39590507eea08b67a8baeadf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61867c4c2e13d476714c19c5a8167a1e49291f13ad899400d1d52dfa6c71a236d98e0384af32c118701f65f38cf4df9115812febf4831a34dad2c47496f14703
|
7
|
+
data.tar.gz: 91e31e3f30708196b310a6e1e8c7ef623d295639297f0154364a2812ee6aa9c23585b6d3f2a53077b5a576c96896d4aad67d6428bb9d02ce737406a1ae06eb9c
|
data/CHANGELOG.md
CHANGED
@@ -3961,7 +3961,8 @@ module Google
|
|
3961
3961
|
# be set for Internal Passthrough Network Load Balancers when the haPolicy is
|
3962
3962
|
# enabled, and for External Passthrough Network Load Balancers when the haPolicy
|
3963
3963
|
# fastIpMove is enabled. This field can only be specified when the load
|
3964
|
-
# balancing scheme is set to INTERNAL
|
3964
|
+
# balancing scheme is set to INTERNAL, or when the load balancing scheme is set
|
3965
|
+
# to EXTERNAL and haPolicy fastIpMove is enabled.
|
3965
3966
|
# Corresponds to the JSON property `network`
|
3966
3967
|
# @return [String]
|
3967
3968
|
attr_accessor :network
|
@@ -11052,6 +11053,12 @@ module Google
|
|
11052
11053
|
# @return [String]
|
11053
11054
|
attr_accessor :dest_network_scope
|
11054
11055
|
|
11056
|
+
# Network type of the traffic destination. Allowed values are: - UNSPECIFIED -
|
11057
|
+
# INTERNET - NON_INTERNET
|
11058
|
+
# Corresponds to the JSON property `destNetworkType`
|
11059
|
+
# @return [String]
|
11060
|
+
attr_accessor :dest_network_type
|
11061
|
+
|
11055
11062
|
# Region codes whose IP addresses will be used to match for destination of
|
11056
11063
|
# traffic. Should be specified as 2 letter country code defined as per ISO 3166
|
11057
11064
|
# alpha-2 country codes. ex."US" Maximum number of dest region codes allowed is
|
@@ -11093,6 +11100,12 @@ module Google
|
|
11093
11100
|
# @return [String]
|
11094
11101
|
attr_accessor :src_network_scope
|
11095
11102
|
|
11103
|
+
# Network type of the traffic source. Allowed values are: - UNSPECIFIED -
|
11104
|
+
# INTERNET - INTRA_VPC - NON_INTERNET - VPC_NETWORKS
|
11105
|
+
# Corresponds to the JSON property `srcNetworkType`
|
11106
|
+
# @return [String]
|
11107
|
+
attr_accessor :src_network_type
|
11108
|
+
|
11096
11109
|
# Networks of the traffic source. It can be either a full or partial url.
|
11097
11110
|
# Corresponds to the JSON property `srcNetworks`
|
11098
11111
|
# @return [Array<String>]
|
@@ -11129,6 +11142,7 @@ module Google
|
|
11129
11142
|
@dest_fqdns = args[:dest_fqdns] if args.key?(:dest_fqdns)
|
11130
11143
|
@dest_ip_ranges = args[:dest_ip_ranges] if args.key?(:dest_ip_ranges)
|
11131
11144
|
@dest_network_scope = args[:dest_network_scope] if args.key?(:dest_network_scope)
|
11145
|
+
@dest_network_type = args[:dest_network_type] if args.key?(:dest_network_type)
|
11132
11146
|
@dest_region_codes = args[:dest_region_codes] if args.key?(:dest_region_codes)
|
11133
11147
|
@dest_threat_intelligences = args[:dest_threat_intelligences] if args.key?(:dest_threat_intelligences)
|
11134
11148
|
@layer4_configs = args[:layer4_configs] if args.key?(:layer4_configs)
|
@@ -11136,6 +11150,7 @@ module Google
|
|
11136
11150
|
@src_fqdns = args[:src_fqdns] if args.key?(:src_fqdns)
|
11137
11151
|
@src_ip_ranges = args[:src_ip_ranges] if args.key?(:src_ip_ranges)
|
11138
11152
|
@src_network_scope = args[:src_network_scope] if args.key?(:src_network_scope)
|
11153
|
+
@src_network_type = args[:src_network_type] if args.key?(:src_network_type)
|
11139
11154
|
@src_networks = args[:src_networks] if args.key?(:src_networks)
|
11140
11155
|
@src_region_codes = args[:src_region_codes] if args.key?(:src_region_codes)
|
11141
11156
|
@src_secure_tags = args[:src_secure_tags] if args.key?(:src_secure_tags)
|
@@ -17951,6 +17966,12 @@ module Google
|
|
17951
17966
|
# @return [Fixnum]
|
17952
17967
|
attr_accessor :target_size
|
17953
17968
|
|
17969
|
+
# The policy that specifies how the MIG creates its VMs to achieve the target
|
17970
|
+
# size.
|
17971
|
+
# Corresponds to the JSON property `targetSizePolicy`
|
17972
|
+
# @return [Google::Apis::ComputeBeta::InstanceGroupManagerTargetSizePolicy]
|
17973
|
+
attr_accessor :target_size_policy
|
17974
|
+
|
17954
17975
|
# The target number of stopped instances for this managed instance group. This
|
17955
17976
|
# number changes when you: - Stop instance using the stopInstances method or
|
17956
17977
|
# start instances using the startInstances method. - Manually change the
|
@@ -18026,6 +18047,7 @@ module Google
|
|
18026
18047
|
@status = args[:status] if args.key?(:status)
|
18027
18048
|
@target_pools = args[:target_pools] if args.key?(:target_pools)
|
18028
18049
|
@target_size = args[:target_size] if args.key?(:target_size)
|
18050
|
+
@target_size_policy = args[:target_size_policy] if args.key?(:target_size_policy)
|
18029
18051
|
@target_stopped_size = args[:target_stopped_size] if args.key?(:target_stopped_size)
|
18030
18052
|
@target_suspended_size = args[:target_suspended_size] if args.key?(:target_suspended_size)
|
18031
18053
|
@update_policy = args[:update_policy] if args.key?(:update_policy)
|
@@ -19173,6 +19195,12 @@ module Google
|
|
19173
19195
|
# @return [String]
|
19174
19196
|
attr_accessor :autoscaler
|
19175
19197
|
|
19198
|
+
# Bulk instance operation is the creation of VMs in a MIG when the
|
19199
|
+
# targetSizePolicy.mode is set to BULK.
|
19200
|
+
# Corresponds to the JSON property `bulkInstanceOperation`
|
19201
|
+
# @return [Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperation]
|
19202
|
+
attr_accessor :bulk_instance_operation
|
19203
|
+
|
19176
19204
|
# [Output Only] A bit indicating whether the managed instance group is in a
|
19177
19205
|
# stable state. A stable state means that: none of the instances in the managed
|
19178
19206
|
# instance group is currently undergoing any type of change (for example,
|
@@ -19203,6 +19231,7 @@ module Google
|
|
19203
19231
|
def update!(**args)
|
19204
19232
|
@all_instances_config = args[:all_instances_config] if args.key?(:all_instances_config)
|
19205
19233
|
@autoscaler = args[:autoscaler] if args.key?(:autoscaler)
|
19234
|
+
@bulk_instance_operation = args[:bulk_instance_operation] if args.key?(:bulk_instance_operation)
|
19206
19235
|
@is_stable = args[:is_stable] if args.key?(:is_stable)
|
19207
19236
|
@stateful = args[:stateful] if args.key?(:stateful)
|
19208
19237
|
@version_target = args[:version_target] if args.key?(:version_target)
|
@@ -19237,6 +19266,168 @@ module Google
|
|
19237
19266
|
end
|
19238
19267
|
end
|
19239
19268
|
|
19269
|
+
# Bulk instance operation is the creation of VMs in a MIG when the
|
19270
|
+
# targetSizePolicy.mode is set to BULK.
|
19271
|
+
class InstanceGroupManagerStatusBulkInstanceOperation
|
19272
|
+
include Google::Apis::Core::Hashable
|
19273
|
+
|
19274
|
+
# [Output Only] Informs whether bulk instance operation is in progress.
|
19275
|
+
# Corresponds to the JSON property `inProgress`
|
19276
|
+
# @return [Boolean]
|
19277
|
+
attr_accessor :in_progress
|
19278
|
+
alias_method :in_progress?, :in_progress
|
19279
|
+
|
19280
|
+
# [Output Only] Information from the last progress check of bulk instance
|
19281
|
+
# operation.
|
19282
|
+
# Corresponds to the JSON property `lastProgressCheck`
|
19283
|
+
# @return [Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck]
|
19284
|
+
attr_accessor :last_progress_check
|
19285
|
+
|
19286
|
+
def initialize(**args)
|
19287
|
+
update!(**args)
|
19288
|
+
end
|
19289
|
+
|
19290
|
+
# Update properties of this object
|
19291
|
+
def update!(**args)
|
19292
|
+
@in_progress = args[:in_progress] if args.key?(:in_progress)
|
19293
|
+
@last_progress_check = args[:last_progress_check] if args.key?(:last_progress_check)
|
19294
|
+
end
|
19295
|
+
end
|
19296
|
+
|
19297
|
+
#
|
19298
|
+
class InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck
|
19299
|
+
include Google::Apis::Core::Hashable
|
19300
|
+
|
19301
|
+
# [Output Only] Errors encountered during bulk instance operation.
|
19302
|
+
# Corresponds to the JSON property `error`
|
19303
|
+
# @return [Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck::Error]
|
19304
|
+
attr_accessor :error
|
19305
|
+
|
19306
|
+
# [Output Only] Timestamp of the last progress check of bulk instance operation.
|
19307
|
+
# Timestamp is in RFC3339 text format.
|
19308
|
+
# Corresponds to the JSON property `timestamp`
|
19309
|
+
# @return [String]
|
19310
|
+
attr_accessor :timestamp
|
19311
|
+
|
19312
|
+
def initialize(**args)
|
19313
|
+
update!(**args)
|
19314
|
+
end
|
19315
|
+
|
19316
|
+
# Update properties of this object
|
19317
|
+
def update!(**args)
|
19318
|
+
@error = args[:error] if args.key?(:error)
|
19319
|
+
@timestamp = args[:timestamp] if args.key?(:timestamp)
|
19320
|
+
end
|
19321
|
+
|
19322
|
+
# [Output Only] Errors encountered during bulk instance operation.
|
19323
|
+
class Error
|
19324
|
+
include Google::Apis::Core::Hashable
|
19325
|
+
|
19326
|
+
# [Output Only] The array of errors encountered while processing this operation.
|
19327
|
+
# Corresponds to the JSON property `errors`
|
19328
|
+
# @return [Array<Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck::Error::Error>]
|
19329
|
+
attr_accessor :errors
|
19330
|
+
|
19331
|
+
def initialize(**args)
|
19332
|
+
update!(**args)
|
19333
|
+
end
|
19334
|
+
|
19335
|
+
# Update properties of this object
|
19336
|
+
def update!(**args)
|
19337
|
+
@errors = args[:errors] if args.key?(:errors)
|
19338
|
+
end
|
19339
|
+
|
19340
|
+
#
|
19341
|
+
class Error
|
19342
|
+
include Google::Apis::Core::Hashable
|
19343
|
+
|
19344
|
+
# [Output Only] The error type identifier for this error.
|
19345
|
+
# Corresponds to the JSON property `code`
|
19346
|
+
# @return [String]
|
19347
|
+
attr_accessor :code
|
19348
|
+
|
19349
|
+
# [Output Only] An optional list of messages that contain the error details.
|
19350
|
+
# There is a set of defined message types to use for providing details.The
|
19351
|
+
# syntax depends on the error code. For example, QuotaExceededInfo will have
|
19352
|
+
# details when the error code is QUOTA_EXCEEDED.
|
19353
|
+
# Corresponds to the JSON property `errorDetails`
|
19354
|
+
# @return [Array<Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck::Error::Error::ErrorDetail>]
|
19355
|
+
attr_accessor :error_details
|
19356
|
+
|
19357
|
+
# [Output Only] Indicates the field in the request that caused the error. This
|
19358
|
+
# property is optional.
|
19359
|
+
# Corresponds to the JSON property `location`
|
19360
|
+
# @return [String]
|
19361
|
+
attr_accessor :location
|
19362
|
+
|
19363
|
+
# [Output Only] An optional, human-readable error message.
|
19364
|
+
# Corresponds to the JSON property `message`
|
19365
|
+
# @return [String]
|
19366
|
+
attr_accessor :message
|
19367
|
+
|
19368
|
+
def initialize(**args)
|
19369
|
+
update!(**args)
|
19370
|
+
end
|
19371
|
+
|
19372
|
+
# Update properties of this object
|
19373
|
+
def update!(**args)
|
19374
|
+
@code = args[:code] if args.key?(:code)
|
19375
|
+
@error_details = args[:error_details] if args.key?(:error_details)
|
19376
|
+
@location = args[:location] if args.key?(:location)
|
19377
|
+
@message = args[:message] if args.key?(:message)
|
19378
|
+
end
|
19379
|
+
|
19380
|
+
#
|
19381
|
+
class ErrorDetail
|
19382
|
+
include Google::Apis::Core::Hashable
|
19383
|
+
|
19384
|
+
# Describes the cause of the error with structured details. Example of an error
|
19385
|
+
# when contacting the "pubsub.googleapis.com" API when it is not enabled: ` "
|
19386
|
+
# reason": "API_DISABLED" "domain": "googleapis.com" "metadata": ` "resource": "
|
19387
|
+
# projects/123", "service": "pubsub.googleapis.com" ` ` This response indicates
|
19388
|
+
# that the pubsub.googleapis.com API is not enabled. Example of an error that is
|
19389
|
+
# returned when attempting to create a Spanner instance in a region that is out
|
19390
|
+
# of stock: ` "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata"
|
19391
|
+
# : ` "availableRegions": "us-central1,us-east2" ` `
|
19392
|
+
# Corresponds to the JSON property `errorInfo`
|
19393
|
+
# @return [Google::Apis::ComputeBeta::ErrorInfo]
|
19394
|
+
attr_accessor :error_info
|
19395
|
+
|
19396
|
+
# Provides links to documentation or for performing an out of band action. For
|
19397
|
+
# example, if a quota check failed with an error indicating the calling project
|
19398
|
+
# hasn't enabled the accessed service, this can contain a URL pointing directly
|
19399
|
+
# to the right place in the developer console to flip the bit.
|
19400
|
+
# Corresponds to the JSON property `help`
|
19401
|
+
# @return [Google::Apis::ComputeBeta::Help]
|
19402
|
+
attr_accessor :help
|
19403
|
+
|
19404
|
+
# Provides a localized error message that is safe to return to the user which
|
19405
|
+
# can be attached to an RPC error.
|
19406
|
+
# Corresponds to the JSON property `localizedMessage`
|
19407
|
+
# @return [Google::Apis::ComputeBeta::LocalizedMessage]
|
19408
|
+
attr_accessor :localized_message
|
19409
|
+
|
19410
|
+
# Additional details for quota exceeded error for resource quota.
|
19411
|
+
# Corresponds to the JSON property `quotaInfo`
|
19412
|
+
# @return [Google::Apis::ComputeBeta::QuotaExceededInfo]
|
19413
|
+
attr_accessor :quota_info
|
19414
|
+
|
19415
|
+
def initialize(**args)
|
19416
|
+
update!(**args)
|
19417
|
+
end
|
19418
|
+
|
19419
|
+
# Update properties of this object
|
19420
|
+
def update!(**args)
|
19421
|
+
@error_info = args[:error_info] if args.key?(:error_info)
|
19422
|
+
@help = args[:help] if args.key?(:help)
|
19423
|
+
@localized_message = args[:localized_message] if args.key?(:localized_message)
|
19424
|
+
@quota_info = args[:quota_info] if args.key?(:quota_info)
|
19425
|
+
end
|
19426
|
+
end
|
19427
|
+
end
|
19428
|
+
end
|
19429
|
+
end
|
19430
|
+
|
19240
19431
|
#
|
19241
19432
|
class InstanceGroupManagerStatusStateful
|
19242
19433
|
include Google::Apis::Core::Hashable
|
@@ -19325,6 +19516,26 @@ module Google
|
|
19325
19516
|
end
|
19326
19517
|
end
|
19327
19518
|
|
19519
|
+
#
|
19520
|
+
class InstanceGroupManagerTargetSizePolicy
|
19521
|
+
include Google::Apis::Core::Hashable
|
19522
|
+
|
19523
|
+
# The mode of target size policy based on which the MIG creates its VMs
|
19524
|
+
# individually or all at once.
|
19525
|
+
# Corresponds to the JSON property `mode`
|
19526
|
+
# @return [String]
|
19527
|
+
attr_accessor :mode
|
19528
|
+
|
19529
|
+
def initialize(**args)
|
19530
|
+
update!(**args)
|
19531
|
+
end
|
19532
|
+
|
19533
|
+
# Update properties of this object
|
19534
|
+
def update!(**args)
|
19535
|
+
@mode = args[:mode] if args.key?(:mode)
|
19536
|
+
end
|
19537
|
+
end
|
19538
|
+
|
19328
19539
|
#
|
19329
19540
|
class InstanceGroupManagerUpdatePolicy
|
19330
19541
|
include Google::Apis::Core::Hashable
|
@@ -30959,6 +31170,12 @@ module Google
|
|
30959
31170
|
# @return [String]
|
30960
31171
|
attr_accessor :fingerprint
|
30961
31172
|
|
31173
|
+
# Indicate whether igmp query is enabled on the network interface or not. If
|
31174
|
+
# enabled, also indicates the version of IGMP supported.
|
31175
|
+
# Corresponds to the JSON property `igmpQuery`
|
31176
|
+
# @return [String]
|
31177
|
+
attr_accessor :igmp_query
|
31178
|
+
|
30962
31179
|
# The prefix length of the primary internal IPv6 range.
|
30963
31180
|
# Corresponds to the JSON property `internalIpv6PrefixLength`
|
30964
31181
|
# @return [Fixnum]
|
@@ -31078,6 +31295,7 @@ module Google
|
|
31078
31295
|
@access_configs = args[:access_configs] if args.key?(:access_configs)
|
31079
31296
|
@alias_ip_ranges = args[:alias_ip_ranges] if args.key?(:alias_ip_ranges)
|
31080
31297
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
31298
|
+
@igmp_query = args[:igmp_query] if args.key?(:igmp_query)
|
31081
31299
|
@internal_ipv6_prefix_length = args[:internal_ipv6_prefix_length] if args.key?(:internal_ipv6_prefix_length)
|
31082
31300
|
@ipv6_access_configs = args[:ipv6_access_configs] if args.key?(:ipv6_access_configs)
|
31083
31301
|
@ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
|
@@ -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.115.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250511"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2284,6 +2284,36 @@ module Google
|
|
2284
2284
|
include Google::Apis::Core::JsonObjectSupport
|
2285
2285
|
end
|
2286
2286
|
|
2287
|
+
class InstanceGroupManagerStatusBulkInstanceOperation
|
2288
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2289
|
+
|
2290
|
+
include Google::Apis::Core::JsonObjectSupport
|
2291
|
+
end
|
2292
|
+
|
2293
|
+
class InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck
|
2294
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2295
|
+
|
2296
|
+
class Error
|
2297
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2298
|
+
|
2299
|
+
class Error
|
2300
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2301
|
+
|
2302
|
+
class ErrorDetail
|
2303
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2304
|
+
|
2305
|
+
include Google::Apis::Core::JsonObjectSupport
|
2306
|
+
end
|
2307
|
+
|
2308
|
+
include Google::Apis::Core::JsonObjectSupport
|
2309
|
+
end
|
2310
|
+
|
2311
|
+
include Google::Apis::Core::JsonObjectSupport
|
2312
|
+
end
|
2313
|
+
|
2314
|
+
include Google::Apis::Core::JsonObjectSupport
|
2315
|
+
end
|
2316
|
+
|
2287
2317
|
class InstanceGroupManagerStatusStateful
|
2288
2318
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2289
2319
|
|
@@ -2302,6 +2332,12 @@ module Google
|
|
2302
2332
|
include Google::Apis::Core::JsonObjectSupport
|
2303
2333
|
end
|
2304
2334
|
|
2335
|
+
class InstanceGroupManagerTargetSizePolicy
|
2336
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2337
|
+
|
2338
|
+
include Google::Apis::Core::JsonObjectSupport
|
2339
|
+
end
|
2340
|
+
|
2305
2341
|
class InstanceGroupManagerUpdatePolicy
|
2306
2342
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2307
2343
|
|
@@ -10431,6 +10467,7 @@ module Google
|
|
10431
10467
|
collection :dest_fqdns, as: 'destFqdns'
|
10432
10468
|
collection :dest_ip_ranges, as: 'destIpRanges'
|
10433
10469
|
property :dest_network_scope, as: 'destNetworkScope'
|
10470
|
+
property :dest_network_type, as: 'destNetworkType'
|
10434
10471
|
collection :dest_region_codes, as: 'destRegionCodes'
|
10435
10472
|
collection :dest_threat_intelligences, as: 'destThreatIntelligences'
|
10436
10473
|
collection :layer4_configs, as: 'layer4Configs', class: Google::Apis::ComputeBeta::FirewallPolicyRuleMatcherLayer4Config, decorator: Google::Apis::ComputeBeta::FirewallPolicyRuleMatcherLayer4Config::Representation
|
@@ -10439,6 +10476,7 @@ module Google
|
|
10439
10476
|
collection :src_fqdns, as: 'srcFqdns'
|
10440
10477
|
collection :src_ip_ranges, as: 'srcIpRanges'
|
10441
10478
|
property :src_network_scope, as: 'srcNetworkScope'
|
10479
|
+
property :src_network_type, as: 'srcNetworkType'
|
10442
10480
|
collection :src_networks, as: 'srcNetworks'
|
10443
10481
|
collection :src_region_codes, as: 'srcRegionCodes'
|
10444
10482
|
collection :src_secure_tags, as: 'srcSecureTags', class: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag, decorator: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag::Representation
|
@@ -12008,6 +12046,8 @@ module Google
|
|
12008
12046
|
|
12009
12047
|
collection :target_pools, as: 'targetPools'
|
12010
12048
|
property :target_size, as: 'targetSize'
|
12049
|
+
property :target_size_policy, as: 'targetSizePolicy', class: Google::Apis::ComputeBeta::InstanceGroupManagerTargetSizePolicy, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerTargetSizePolicy::Representation
|
12050
|
+
|
12011
12051
|
property :target_stopped_size, as: 'targetStoppedSize'
|
12012
12052
|
property :target_suspended_size, as: 'targetSuspendedSize'
|
12013
12053
|
property :update_policy, as: 'updatePolicy', class: Google::Apis::ComputeBeta::InstanceGroupManagerUpdatePolicy, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerUpdatePolicy::Representation
|
@@ -12321,6 +12361,8 @@ module Google
|
|
12321
12361
|
property :all_instances_config, as: 'allInstancesConfig', class: Google::Apis::ComputeBeta::InstanceGroupManagerStatusAllInstancesConfig, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerStatusAllInstancesConfig::Representation
|
12322
12362
|
|
12323
12363
|
property :autoscaler, as: 'autoscaler'
|
12364
|
+
property :bulk_instance_operation, as: 'bulkInstanceOperation', class: Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperation, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperation::Representation
|
12365
|
+
|
12324
12366
|
property :is_stable, as: 'isStable'
|
12325
12367
|
property :stateful, as: 'stateful', class: Google::Apis::ComputeBeta::InstanceGroupManagerStatusStateful, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerStatusStateful::Representation
|
12326
12368
|
|
@@ -12337,6 +12379,57 @@ module Google
|
|
12337
12379
|
end
|
12338
12380
|
end
|
12339
12381
|
|
12382
|
+
class InstanceGroupManagerStatusBulkInstanceOperation
|
12383
|
+
# @private
|
12384
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12385
|
+
property :in_progress, as: 'inProgress'
|
12386
|
+
property :last_progress_check, as: 'lastProgressCheck', class: Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck::Representation
|
12387
|
+
|
12388
|
+
end
|
12389
|
+
end
|
12390
|
+
|
12391
|
+
class InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck
|
12392
|
+
# @private
|
12393
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12394
|
+
property :error, as: 'error', class: Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck::Error, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck::Error::Representation
|
12395
|
+
|
12396
|
+
property :timestamp, as: 'timestamp'
|
12397
|
+
end
|
12398
|
+
|
12399
|
+
class Error
|
12400
|
+
# @private
|
12401
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12402
|
+
collection :errors, as: 'errors', class: Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck::Error::Error, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck::Error::Error::Representation
|
12403
|
+
|
12404
|
+
end
|
12405
|
+
|
12406
|
+
class Error
|
12407
|
+
# @private
|
12408
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12409
|
+
property :code, as: 'code'
|
12410
|
+
collection :error_details, as: 'errorDetails', class: Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck::Error::Error::ErrorDetail, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck::Error::Error::ErrorDetail::Representation
|
12411
|
+
|
12412
|
+
property :location, as: 'location'
|
12413
|
+
property :message, as: 'message'
|
12414
|
+
end
|
12415
|
+
|
12416
|
+
class ErrorDetail
|
12417
|
+
# @private
|
12418
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12419
|
+
property :error_info, as: 'errorInfo', class: Google::Apis::ComputeBeta::ErrorInfo, decorator: Google::Apis::ComputeBeta::ErrorInfo::Representation
|
12420
|
+
|
12421
|
+
property :help, as: 'help', class: Google::Apis::ComputeBeta::Help, decorator: Google::Apis::ComputeBeta::Help::Representation
|
12422
|
+
|
12423
|
+
property :localized_message, as: 'localizedMessage', class: Google::Apis::ComputeBeta::LocalizedMessage, decorator: Google::Apis::ComputeBeta::LocalizedMessage::Representation
|
12424
|
+
|
12425
|
+
property :quota_info, as: 'quotaInfo', class: Google::Apis::ComputeBeta::QuotaExceededInfo, decorator: Google::Apis::ComputeBeta::QuotaExceededInfo::Representation
|
12426
|
+
|
12427
|
+
end
|
12428
|
+
end
|
12429
|
+
end
|
12430
|
+
end
|
12431
|
+
end
|
12432
|
+
|
12340
12433
|
class InstanceGroupManagerStatusStateful
|
12341
12434
|
# @private
|
12342
12435
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -12361,6 +12454,13 @@ module Google
|
|
12361
12454
|
end
|
12362
12455
|
end
|
12363
12456
|
|
12457
|
+
class InstanceGroupManagerTargetSizePolicy
|
12458
|
+
# @private
|
12459
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12460
|
+
property :mode, as: 'mode'
|
12461
|
+
end
|
12462
|
+
end
|
12463
|
+
|
12364
12464
|
class InstanceGroupManagerUpdatePolicy
|
12365
12465
|
# @private
|
12366
12466
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -15367,6 +15467,7 @@ module Google
|
|
15367
15467
|
collection :alias_ip_ranges, as: 'aliasIpRanges', class: Google::Apis::ComputeBeta::AliasIpRange, decorator: Google::Apis::ComputeBeta::AliasIpRange::Representation
|
15368
15468
|
|
15369
15469
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
15470
|
+
property :igmp_query, as: 'igmpQuery'
|
15370
15471
|
property :internal_ipv6_prefix_length, as: 'internalIpv6PrefixLength'
|
15371
15472
|
collection :ipv6_access_configs, as: 'ipv6AccessConfigs', class: Google::Apis::ComputeBeta::AccessConfig, decorator: Google::Apis::ComputeBeta::AccessConfig::Representation
|
15372
15473
|
|
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.115.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.115.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:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Compute Engine API Beta
|
79
79
|
test_files: []
|