google-apis-compute_alpha 0.128.0 → 0.130.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: 19e25e81939d76e27bd67275e0c2ba6f201531eb0f270be392128659e194e391
|
|
4
|
+
data.tar.gz: c8bb099a45a69031ac2fd41d85782f79ede1a18a8ce4936516b8d7af74b16099
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4705e17fe6ee5b73196dc576ec45c0cd320dfebcf1443e5f707593a97158c6a2066ba9af1a2aa283f38b28504a815149455d360936d0b1989357895272d4f1b1
|
|
7
|
+
data.tar.gz: e3d00d6696017c16964e22413634bf222a0e84acb35a77e8ef7463f3b997f9183827300fecc553822682c0974f10524f463aefc5b966bc6f718caebf718e01de
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-compute_alpha
|
|
2
2
|
|
|
3
|
+
### v0.130.0 (2026-01-18)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260113
|
|
6
|
+
|
|
7
|
+
### v0.129.0 (2026-01-11)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251230
|
|
10
|
+
|
|
3
11
|
### v0.128.0 (2025-12-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251210
|
|
@@ -5192,18 +5192,6 @@ module Google
|
|
|
5192
5192
|
# @return [Array<Google::Apis::ComputeAlpha::BackendServiceUsedBy>]
|
|
5193
5193
|
attr_accessor :used_by
|
|
5194
5194
|
|
|
5195
|
-
# The network scope of the backends that can be added to the backend
|
|
5196
|
-
# service. This field can be either GLOBAL_VPC_NETWORK orREGIONAL_VPC_NETWORK.
|
|
5197
|
-
# A backend service with the VPC scope set to GLOBAL_VPC_NETWORK
|
|
5198
|
-
# is only allowed to have backends in global VPC networks.
|
|
5199
|
-
# When the VPC scope is set to REGIONAL_VPC_NETWORK the backend
|
|
5200
|
-
# service is only allowed to have backends in regional networks in the same
|
|
5201
|
-
# scope as the backend service.
|
|
5202
|
-
# Note: if not specified then GLOBAL_VPC_NETWORK will be used.
|
|
5203
|
-
# Corresponds to the JSON property `vpcNetworkScope`
|
|
5204
|
-
# @return [String]
|
|
5205
|
-
attr_accessor :vpc_network_scope
|
|
5206
|
-
|
|
5207
5195
|
def initialize(**args)
|
|
5208
5196
|
update!(**args)
|
|
5209
5197
|
end
|
|
@@ -5264,7 +5252,6 @@ module Google
|
|
|
5264
5252
|
@timeout_sec = args[:timeout_sec] if args.key?(:timeout_sec)
|
|
5265
5253
|
@tls_settings = args[:tls_settings] if args.key?(:tls_settings)
|
|
5266
5254
|
@used_by = args[:used_by] if args.key?(:used_by)
|
|
5267
|
-
@vpc_network_scope = args[:vpc_network_scope] if args.key?(:vpc_network_scope)
|
|
5268
5255
|
end
|
|
5269
5256
|
end
|
|
5270
5257
|
|
|
@@ -9649,6 +9636,56 @@ module Google
|
|
|
9649
9636
|
end
|
|
9650
9637
|
end
|
|
9651
9638
|
|
|
9639
|
+
# Response message for RegionCompositeHealthChecks.GetHealth
|
|
9640
|
+
class CompositeHealthChecksGetHealthResponse
|
|
9641
|
+
include Google::Apis::Core::Hashable
|
|
9642
|
+
|
|
9643
|
+
# Health sources and their corresponding health states.
|
|
9644
|
+
# Corresponds to the JSON property `healthSources`
|
|
9645
|
+
# @return [Array<Google::Apis::ComputeAlpha::CompositeHealthChecksGetHealthResponseHealthSourceHealth>]
|
|
9646
|
+
attr_accessor :health_sources
|
|
9647
|
+
|
|
9648
|
+
# Health state of the CompositeHealthCheck.
|
|
9649
|
+
# Corresponds to the JSON property `healthState`
|
|
9650
|
+
# @return [String]
|
|
9651
|
+
attr_accessor :health_state
|
|
9652
|
+
|
|
9653
|
+
def initialize(**args)
|
|
9654
|
+
update!(**args)
|
|
9655
|
+
end
|
|
9656
|
+
|
|
9657
|
+
# Update properties of this object
|
|
9658
|
+
def update!(**args)
|
|
9659
|
+
@health_sources = args[:health_sources] if args.key?(:health_sources)
|
|
9660
|
+
@health_state = args[:health_state] if args.key?(:health_state)
|
|
9661
|
+
end
|
|
9662
|
+
end
|
|
9663
|
+
|
|
9664
|
+
#
|
|
9665
|
+
class CompositeHealthChecksGetHealthResponseHealthSourceHealth
|
|
9666
|
+
include Google::Apis::Core::Hashable
|
|
9667
|
+
|
|
9668
|
+
# Health state of the associated HealthSource resource.
|
|
9669
|
+
# Corresponds to the JSON property `healthState`
|
|
9670
|
+
# @return [String]
|
|
9671
|
+
attr_accessor :health_state
|
|
9672
|
+
|
|
9673
|
+
# URL of the associated HealthSource resource.
|
|
9674
|
+
# Corresponds to the JSON property `source`
|
|
9675
|
+
# @return [String]
|
|
9676
|
+
attr_accessor :source
|
|
9677
|
+
|
|
9678
|
+
def initialize(**args)
|
|
9679
|
+
update!(**args)
|
|
9680
|
+
end
|
|
9681
|
+
|
|
9682
|
+
# Update properties of this object
|
|
9683
|
+
def update!(**args)
|
|
9684
|
+
@health_state = args[:health_state] if args.key?(:health_state)
|
|
9685
|
+
@source = args[:source] if args.key?(:source)
|
|
9686
|
+
end
|
|
9687
|
+
end
|
|
9688
|
+
|
|
9652
9689
|
#
|
|
9653
9690
|
class CompositeHealthChecksScopedList
|
|
9654
9691
|
include Google::Apis::Core::Hashable
|
|
@@ -13996,6 +14033,11 @@ module Google
|
|
|
13996
14033
|
# @return [String]
|
|
13997
14034
|
attr_accessor :region
|
|
13998
14035
|
|
|
14036
|
+
# Represents progressive rollout input parameters and current status.
|
|
14037
|
+
# Corresponds to the JSON property `rolloutOperation`
|
|
14038
|
+
# @return [Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperation]
|
|
14039
|
+
attr_accessor :rollout_operation
|
|
14040
|
+
|
|
13999
14041
|
# Output only. [Output Only] Total count of all firewall policy rule tuples. A
|
|
14000
14042
|
# firewall
|
|
14001
14043
|
# policy can not exceed a set number of tuples.
|
|
@@ -14067,6 +14109,7 @@ module Google
|
|
|
14067
14109
|
@policy_source = args[:policy_source] if args.key?(:policy_source)
|
|
14068
14110
|
@policy_type = args[:policy_type] if args.key?(:policy_type)
|
|
14069
14111
|
@region = args[:region] if args.key?(:region)
|
|
14112
|
+
@rollout_operation = args[:rollout_operation] if args.key?(:rollout_operation)
|
|
14070
14113
|
@rule_tuple_count = args[:rule_tuple_count] if args.key?(:rule_tuple_count)
|
|
14071
14114
|
@rules = args[:rules] if args.key?(:rules)
|
|
14072
14115
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
@@ -14251,6 +14294,161 @@ module Google
|
|
|
14251
14294
|
end
|
|
14252
14295
|
end
|
|
14253
14296
|
|
|
14297
|
+
# Represents progressive rollout input parameters and current status.
|
|
14298
|
+
class FirewallPolicyRolloutOperation
|
|
14299
|
+
include Google::Apis::Core::Hashable
|
|
14300
|
+
|
|
14301
|
+
# Represents progressive rollout input parameters.
|
|
14302
|
+
# Corresponds to the JSON property `rolloutInput`
|
|
14303
|
+
# @return [Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutInput]
|
|
14304
|
+
attr_accessor :rollout_input
|
|
14305
|
+
|
|
14306
|
+
# Represents progressive rollout current status.
|
|
14307
|
+
# Corresponds to the JSON property `rolloutStatus`
|
|
14308
|
+
# @return [Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatus]
|
|
14309
|
+
attr_accessor :rollout_status
|
|
14310
|
+
|
|
14311
|
+
def initialize(**args)
|
|
14312
|
+
update!(**args)
|
|
14313
|
+
end
|
|
14314
|
+
|
|
14315
|
+
# Update properties of this object
|
|
14316
|
+
def update!(**args)
|
|
14317
|
+
@rollout_input = args[:rollout_input] if args.key?(:rollout_input)
|
|
14318
|
+
@rollout_status = args[:rollout_status] if args.key?(:rollout_status)
|
|
14319
|
+
end
|
|
14320
|
+
end
|
|
14321
|
+
|
|
14322
|
+
# Represents progressive rollout input parameters.
|
|
14323
|
+
class FirewallPolicyRolloutOperationRolloutInput
|
|
14324
|
+
include Google::Apis::Core::Hashable
|
|
14325
|
+
|
|
14326
|
+
# The name of the rollout plan. Ex.
|
|
14327
|
+
# organizations//locations/global/rolloutPlans/.
|
|
14328
|
+
# Corresponds to the JSON property `name`
|
|
14329
|
+
# @return [String]
|
|
14330
|
+
attr_accessor :name
|
|
14331
|
+
|
|
14332
|
+
# Predefined rollout plan.
|
|
14333
|
+
# Corresponds to the JSON property `predefinedRolloutPlan`
|
|
14334
|
+
# @return [String]
|
|
14335
|
+
attr_accessor :predefined_rollout_plan
|
|
14336
|
+
|
|
14337
|
+
# The UUID of the retry action. Only needed if this is a retry for an
|
|
14338
|
+
# existing rollout. This can be used after the user canceled a rollout
|
|
14339
|
+
# and want to retry it with no changes.
|
|
14340
|
+
# Corresponds to the JSON property `retryUuid`
|
|
14341
|
+
# @return [String]
|
|
14342
|
+
attr_accessor :retry_uuid
|
|
14343
|
+
|
|
14344
|
+
def initialize(**args)
|
|
14345
|
+
update!(**args)
|
|
14346
|
+
end
|
|
14347
|
+
|
|
14348
|
+
# Update properties of this object
|
|
14349
|
+
def update!(**args)
|
|
14350
|
+
@name = args[:name] if args.key?(:name)
|
|
14351
|
+
@predefined_rollout_plan = args[:predefined_rollout_plan] if args.key?(:predefined_rollout_plan)
|
|
14352
|
+
@retry_uuid = args[:retry_uuid] if args.key?(:retry_uuid)
|
|
14353
|
+
end
|
|
14354
|
+
end
|
|
14355
|
+
|
|
14356
|
+
# Represents progressive rollout current status.
|
|
14357
|
+
class FirewallPolicyRolloutOperationRolloutStatus
|
|
14358
|
+
include Google::Apis::Core::Hashable
|
|
14359
|
+
|
|
14360
|
+
# [Output only] The next rollout.
|
|
14361
|
+
# Corresponds to the JSON property `nextRollout`
|
|
14362
|
+
# @return [Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusNextRollout]
|
|
14363
|
+
attr_accessor :next_rollout
|
|
14364
|
+
|
|
14365
|
+
# [Output only] The ongoing rollout.
|
|
14366
|
+
# Corresponds to the JSON property `ongoingRollouts`
|
|
14367
|
+
# @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata>]
|
|
14368
|
+
attr_accessor :ongoing_rollouts
|
|
14369
|
+
|
|
14370
|
+
# Represents the status of the progressive rollout instance, either
|
|
14371
|
+
# completed or ongoing.
|
|
14372
|
+
# Corresponds to the JSON property `previousRollout`
|
|
14373
|
+
# @return [Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata]
|
|
14374
|
+
attr_accessor :previous_rollout
|
|
14375
|
+
|
|
14376
|
+
def initialize(**args)
|
|
14377
|
+
update!(**args)
|
|
14378
|
+
end
|
|
14379
|
+
|
|
14380
|
+
# Update properties of this object
|
|
14381
|
+
def update!(**args)
|
|
14382
|
+
@next_rollout = args[:next_rollout] if args.key?(:next_rollout)
|
|
14383
|
+
@ongoing_rollouts = args[:ongoing_rollouts] if args.key?(:ongoing_rollouts)
|
|
14384
|
+
@previous_rollout = args[:previous_rollout] if args.key?(:previous_rollout)
|
|
14385
|
+
end
|
|
14386
|
+
end
|
|
14387
|
+
|
|
14388
|
+
#
|
|
14389
|
+
class FirewallPolicyRolloutOperationRolloutStatusNextRollout
|
|
14390
|
+
include Google::Apis::Core::Hashable
|
|
14391
|
+
|
|
14392
|
+
# Output only. [Output only] The id of the next rollout.
|
|
14393
|
+
# Corresponds to the JSON property `rolloutId`
|
|
14394
|
+
# @return [String]
|
|
14395
|
+
attr_accessor :rollout_id
|
|
14396
|
+
|
|
14397
|
+
# The name of the rollout plan to be used by the next not yet started
|
|
14398
|
+
# rollout. This field is auto populated based on RolloutInput when a
|
|
14399
|
+
# new rollout is scheduled. This can be manually changed before the
|
|
14400
|
+
# scheduled rollout starts.
|
|
14401
|
+
# Ex.
|
|
14402
|
+
# organizations//locations/global/rolloutPlans/
|
|
14403
|
+
# Corresponds to the JSON property `rolloutPlan`
|
|
14404
|
+
# @return [String]
|
|
14405
|
+
attr_accessor :rollout_plan
|
|
14406
|
+
|
|
14407
|
+
def initialize(**args)
|
|
14408
|
+
update!(**args)
|
|
14409
|
+
end
|
|
14410
|
+
|
|
14411
|
+
# Update properties of this object
|
|
14412
|
+
def update!(**args)
|
|
14413
|
+
@rollout_id = args[:rollout_id] if args.key?(:rollout_id)
|
|
14414
|
+
@rollout_plan = args[:rollout_plan] if args.key?(:rollout_plan)
|
|
14415
|
+
end
|
|
14416
|
+
end
|
|
14417
|
+
|
|
14418
|
+
# Represents the status of the progressive rollout instance, either
|
|
14419
|
+
# completed or ongoing.
|
|
14420
|
+
class FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata
|
|
14421
|
+
include Google::Apis::Core::Hashable
|
|
14422
|
+
|
|
14423
|
+
# Output only. [Output only] The name of the rollout
|
|
14424
|
+
# organizations//locations/global/rollouts/
|
|
14425
|
+
# Corresponds to the JSON property `rollout`
|
|
14426
|
+
# @return [String]
|
|
14427
|
+
attr_accessor :rollout
|
|
14428
|
+
|
|
14429
|
+
# Output only. [Output only] The name of the rollout plan used by this rollout
|
|
14430
|
+
# organizations//locations/global/rolloutPlans/
|
|
14431
|
+
# Corresponds to the JSON property `rolloutPlan`
|
|
14432
|
+
# @return [String]
|
|
14433
|
+
attr_accessor :rollout_plan
|
|
14434
|
+
|
|
14435
|
+
# Output only. [Output only] The state of the rollout.
|
|
14436
|
+
# Corresponds to the JSON property `state`
|
|
14437
|
+
# @return [String]
|
|
14438
|
+
attr_accessor :state
|
|
14439
|
+
|
|
14440
|
+
def initialize(**args)
|
|
14441
|
+
update!(**args)
|
|
14442
|
+
end
|
|
14443
|
+
|
|
14444
|
+
# Update properties of this object
|
|
14445
|
+
def update!(**args)
|
|
14446
|
+
@rollout = args[:rollout] if args.key?(:rollout)
|
|
14447
|
+
@rollout_plan = args[:rollout_plan] if args.key?(:rollout_plan)
|
|
14448
|
+
@state = args[:state] if args.key?(:state)
|
|
14449
|
+
end
|
|
14450
|
+
end
|
|
14451
|
+
|
|
14254
14452
|
# Represents a rule that describes one or more match conditions along with
|
|
14255
14453
|
# the action to be taken when traffic matches this condition (allow or deny).
|
|
14256
14454
|
class FirewallPolicyRule
|
|
@@ -26711,6 +26909,12 @@ module Google
|
|
|
26711
26909
|
# @return [Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAllInstancesConfig]
|
|
26712
26910
|
attr_accessor :all_instances_config
|
|
26713
26911
|
|
|
26912
|
+
# Output only. [Output Only] The accelerator topology applied to this MIG.
|
|
26913
|
+
# Currently only one accelerator topology is supported.
|
|
26914
|
+
# Corresponds to the JSON property `appliedAcceleratorTopologies`
|
|
26915
|
+
# @return [Array<Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopology>]
|
|
26916
|
+
attr_accessor :applied_accelerator_topologies
|
|
26917
|
+
|
|
26714
26918
|
# Output only. [Output Only] The URL of theAutoscaler
|
|
26715
26919
|
# that targets this instance group manager.
|
|
26716
26920
|
# Corresponds to the JSON property `autoscaler`
|
|
@@ -26723,6 +26927,14 @@ module Google
|
|
|
26723
26927
|
# @return [Google::Apis::ComputeAlpha::InstanceGroupManagerStatusBulkInstanceOperation]
|
|
26724
26928
|
attr_accessor :bulk_instance_operation
|
|
26725
26929
|
|
|
26930
|
+
# The list of instance statuses and the number of instances in this managed
|
|
26931
|
+
# instance group that have the status. For more information about how to
|
|
26932
|
+
# interpret each status check the instance lifecycle documentation.
|
|
26933
|
+
# Currently only shown for TPU MIGs.
|
|
26934
|
+
# Corresponds to the JSON property `currentInstanceStatuses`
|
|
26935
|
+
# @return [Google::Apis::ComputeAlpha::InstanceGroupManagerStatusInstanceStatusSummary]
|
|
26936
|
+
attr_accessor :current_instance_statuses
|
|
26937
|
+
|
|
26726
26938
|
# Output only. [Output Only] A bit indicating whether the managed instance group
|
|
26727
26939
|
# is in a
|
|
26728
26940
|
# stable state. A stable state means that: none of the instances in the
|
|
@@ -26755,14 +26967,198 @@ module Google
|
|
|
26755
26967
|
# Update properties of this object
|
|
26756
26968
|
def update!(**args)
|
|
26757
26969
|
@all_instances_config = args[:all_instances_config] if args.key?(:all_instances_config)
|
|
26970
|
+
@applied_accelerator_topologies = args[:applied_accelerator_topologies] if args.key?(:applied_accelerator_topologies)
|
|
26758
26971
|
@autoscaler = args[:autoscaler] if args.key?(:autoscaler)
|
|
26759
26972
|
@bulk_instance_operation = args[:bulk_instance_operation] if args.key?(:bulk_instance_operation)
|
|
26973
|
+
@current_instance_statuses = args[:current_instance_statuses] if args.key?(:current_instance_statuses)
|
|
26760
26974
|
@is_stable = args[:is_stable] if args.key?(:is_stable)
|
|
26761
26975
|
@stateful = args[:stateful] if args.key?(:stateful)
|
|
26762
26976
|
@version_target = args[:version_target] if args.key?(:version_target)
|
|
26763
26977
|
end
|
|
26764
26978
|
end
|
|
26765
26979
|
|
|
26980
|
+
#
|
|
26981
|
+
class InstanceGroupManagerStatusAcceleratorTopology
|
|
26982
|
+
include Google::Apis::Core::Hashable
|
|
26983
|
+
|
|
26984
|
+
# Output only. [Output Only] Topology in the format of: "16x16", "4x4x4", etc.
|
|
26985
|
+
# The value is the same as configured in the WorkloadPolicy.
|
|
26986
|
+
# Corresponds to the JSON property `acceleratorTopology`
|
|
26987
|
+
# @return [String]
|
|
26988
|
+
attr_accessor :accelerator_topology
|
|
26989
|
+
|
|
26990
|
+
# Output only. [Output Only] The state of the accelerator topology.
|
|
26991
|
+
# Corresponds to the JSON property `state`
|
|
26992
|
+
# @return [String]
|
|
26993
|
+
attr_accessor :state
|
|
26994
|
+
|
|
26995
|
+
# Output only. [Output Only] The result of the latest accelerator topology state
|
|
26996
|
+
# check.
|
|
26997
|
+
# Corresponds to the JSON property `stateDetails`
|
|
26998
|
+
# @return [Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails]
|
|
26999
|
+
attr_accessor :state_details
|
|
27000
|
+
|
|
27001
|
+
def initialize(**args)
|
|
27002
|
+
update!(**args)
|
|
27003
|
+
end
|
|
27004
|
+
|
|
27005
|
+
# Update properties of this object
|
|
27006
|
+
def update!(**args)
|
|
27007
|
+
@accelerator_topology = args[:accelerator_topology] if args.key?(:accelerator_topology)
|
|
27008
|
+
@state = args[:state] if args.key?(:state)
|
|
27009
|
+
@state_details = args[:state_details] if args.key?(:state_details)
|
|
27010
|
+
end
|
|
27011
|
+
end
|
|
27012
|
+
|
|
27013
|
+
#
|
|
27014
|
+
class InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails
|
|
27015
|
+
include Google::Apis::Core::Hashable
|
|
27016
|
+
|
|
27017
|
+
# Output only. [Output Only] Encountered errors.
|
|
27018
|
+
# Corresponds to the JSON property `error`
|
|
27019
|
+
# @return [Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error]
|
|
27020
|
+
attr_accessor :error
|
|
27021
|
+
|
|
27022
|
+
# Output only. [Output Only] Timestamp is shown only if there is an error. The
|
|
27023
|
+
# field
|
|
27024
|
+
# has // RFC3339 //
|
|
27025
|
+
# text format.
|
|
27026
|
+
# Corresponds to the JSON property `timestamp`
|
|
27027
|
+
# @return [String]
|
|
27028
|
+
attr_accessor :timestamp
|
|
27029
|
+
|
|
27030
|
+
def initialize(**args)
|
|
27031
|
+
update!(**args)
|
|
27032
|
+
end
|
|
27033
|
+
|
|
27034
|
+
# Update properties of this object
|
|
27035
|
+
def update!(**args)
|
|
27036
|
+
@error = args[:error] if args.key?(:error)
|
|
27037
|
+
@timestamp = args[:timestamp] if args.key?(:timestamp)
|
|
27038
|
+
end
|
|
27039
|
+
|
|
27040
|
+
# Output only. [Output Only] Encountered errors.
|
|
27041
|
+
class Error
|
|
27042
|
+
include Google::Apis::Core::Hashable
|
|
27043
|
+
|
|
27044
|
+
# [Output Only] The array of errors encountered while processing this
|
|
27045
|
+
# operation.
|
|
27046
|
+
# Corresponds to the JSON property `errors`
|
|
27047
|
+
# @return [Array<Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Error>]
|
|
27048
|
+
attr_accessor :errors
|
|
27049
|
+
|
|
27050
|
+
def initialize(**args)
|
|
27051
|
+
update!(**args)
|
|
27052
|
+
end
|
|
27053
|
+
|
|
27054
|
+
# Update properties of this object
|
|
27055
|
+
def update!(**args)
|
|
27056
|
+
@errors = args[:errors] if args.key?(:errors)
|
|
27057
|
+
end
|
|
27058
|
+
|
|
27059
|
+
#
|
|
27060
|
+
class Error
|
|
27061
|
+
include Google::Apis::Core::Hashable
|
|
27062
|
+
|
|
27063
|
+
# [Output Only] The error type identifier for this error.
|
|
27064
|
+
# Corresponds to the JSON property `code`
|
|
27065
|
+
# @return [String]
|
|
27066
|
+
attr_accessor :code
|
|
27067
|
+
|
|
27068
|
+
# [Output Only] An optional list of messages that contain the error
|
|
27069
|
+
# details. There is a set of defined message types to use for providing
|
|
27070
|
+
# details.The syntax depends on the error code. For example,
|
|
27071
|
+
# QuotaExceededInfo will have details when the error code is
|
|
27072
|
+
# QUOTA_EXCEEDED.
|
|
27073
|
+
# Corresponds to the JSON property `errorDetails`
|
|
27074
|
+
# @return [Array<Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Error::ErrorDetail>]
|
|
27075
|
+
attr_accessor :error_details
|
|
27076
|
+
|
|
27077
|
+
# [Output Only] Indicates the field in the request that caused the error.
|
|
27078
|
+
# This property is optional.
|
|
27079
|
+
# Corresponds to the JSON property `location`
|
|
27080
|
+
# @return [String]
|
|
27081
|
+
attr_accessor :location
|
|
27082
|
+
|
|
27083
|
+
# [Output Only] An optional, human-readable error message.
|
|
27084
|
+
# Corresponds to the JSON property `message`
|
|
27085
|
+
# @return [String]
|
|
27086
|
+
attr_accessor :message
|
|
27087
|
+
|
|
27088
|
+
def initialize(**args)
|
|
27089
|
+
update!(**args)
|
|
27090
|
+
end
|
|
27091
|
+
|
|
27092
|
+
# Update properties of this object
|
|
27093
|
+
def update!(**args)
|
|
27094
|
+
@code = args[:code] if args.key?(:code)
|
|
27095
|
+
@error_details = args[:error_details] if args.key?(:error_details)
|
|
27096
|
+
@location = args[:location] if args.key?(:location)
|
|
27097
|
+
@message = args[:message] if args.key?(:message)
|
|
27098
|
+
end
|
|
27099
|
+
|
|
27100
|
+
#
|
|
27101
|
+
class ErrorDetail
|
|
27102
|
+
include Google::Apis::Core::Hashable
|
|
27103
|
+
|
|
27104
|
+
# Describes the cause of the error with structured details.
|
|
27105
|
+
# Example of an error when contacting the "pubsub.googleapis.com" API when it
|
|
27106
|
+
# is not enabled:
|
|
27107
|
+
# ` "reason": "API_DISABLED"
|
|
27108
|
+
# "domain": "googleapis.com"
|
|
27109
|
+
# "metadata": `
|
|
27110
|
+
# "resource": "projects/123",
|
|
27111
|
+
# "service": "pubsub.googleapis.com"
|
|
27112
|
+
# `
|
|
27113
|
+
# `
|
|
27114
|
+
# This response indicates that the pubsub.googleapis.com API is not enabled.
|
|
27115
|
+
# Example of an error that is returned when attempting to create a Spanner
|
|
27116
|
+
# instance in a region that is out of stock:
|
|
27117
|
+
# ` "reason": "STOCKOUT"
|
|
27118
|
+
# "domain": "spanner.googleapis.com",
|
|
27119
|
+
# "metadata": `
|
|
27120
|
+
# "availableRegions": "us-central1,us-east2"
|
|
27121
|
+
# `
|
|
27122
|
+
# `
|
|
27123
|
+
# Corresponds to the JSON property `errorInfo`
|
|
27124
|
+
# @return [Google::Apis::ComputeAlpha::ErrorInfo]
|
|
27125
|
+
attr_accessor :error_info
|
|
27126
|
+
|
|
27127
|
+
# Provides links to documentation or for performing an out of band action.
|
|
27128
|
+
# For example, if a quota check failed with an error indicating the calling
|
|
27129
|
+
# project hasn't enabled the accessed service, this can contain a URL pointing
|
|
27130
|
+
# directly to the right place in the developer console to flip the bit.
|
|
27131
|
+
# Corresponds to the JSON property `help`
|
|
27132
|
+
# @return [Google::Apis::ComputeAlpha::Help]
|
|
27133
|
+
attr_accessor :help
|
|
27134
|
+
|
|
27135
|
+
# Provides a localized error message that is safe to return to the user
|
|
27136
|
+
# which can be attached to an RPC error.
|
|
27137
|
+
# Corresponds to the JSON property `localizedMessage`
|
|
27138
|
+
# @return [Google::Apis::ComputeAlpha::LocalizedMessage]
|
|
27139
|
+
attr_accessor :localized_message
|
|
27140
|
+
|
|
27141
|
+
# Additional details for quota exceeded error for resource quota.
|
|
27142
|
+
# Corresponds to the JSON property `quotaInfo`
|
|
27143
|
+
# @return [Google::Apis::ComputeAlpha::QuotaExceededInfo]
|
|
27144
|
+
attr_accessor :quota_info
|
|
27145
|
+
|
|
27146
|
+
def initialize(**args)
|
|
27147
|
+
update!(**args)
|
|
27148
|
+
end
|
|
27149
|
+
|
|
27150
|
+
# Update properties of this object
|
|
27151
|
+
def update!(**args)
|
|
27152
|
+
@error_info = args[:error_info] if args.key?(:error_info)
|
|
27153
|
+
@help = args[:help] if args.key?(:help)
|
|
27154
|
+
@localized_message = args[:localized_message] if args.key?(:localized_message)
|
|
27155
|
+
@quota_info = args[:quota_info] if args.key?(:quota_info)
|
|
27156
|
+
end
|
|
27157
|
+
end
|
|
27158
|
+
end
|
|
27159
|
+
end
|
|
27160
|
+
end
|
|
27161
|
+
|
|
26766
27162
|
#
|
|
26767
27163
|
class InstanceGroupManagerStatusAllInstancesConfig
|
|
26768
27164
|
include Google::Apis::Core::Hashable
|
|
@@ -26969,6 +27365,132 @@ module Google
|
|
|
26969
27365
|
end
|
|
26970
27366
|
end
|
|
26971
27367
|
|
|
27368
|
+
# The list of instance statuses and the number of instances in this managed
|
|
27369
|
+
# instance group that have the status. For more information about how to
|
|
27370
|
+
# interpret each status check the instance lifecycle documentation.
|
|
27371
|
+
# Currently only shown for TPU MIGs.
|
|
27372
|
+
class InstanceGroupManagerStatusInstanceStatusSummary
|
|
27373
|
+
include Google::Apis::Core::Hashable
|
|
27374
|
+
|
|
27375
|
+
# Output only. [Output Only] The number of instances in the managed instance
|
|
27376
|
+
# group
|
|
27377
|
+
# that have DEPROVISIONING status.
|
|
27378
|
+
# Corresponds to the JSON property `deprovisioning`
|
|
27379
|
+
# @return [Fixnum]
|
|
27380
|
+
attr_accessor :deprovisioning
|
|
27381
|
+
|
|
27382
|
+
# Output only. [Output Only] The number of instances that have not been created
|
|
27383
|
+
# yet or
|
|
27384
|
+
# have been deleted. Includes only instances that would be shown in the
|
|
27385
|
+
# listManagedInstances method and not all instances that have been
|
|
27386
|
+
# deleted in the lifetime of the MIG.
|
|
27387
|
+
# Does not include FlexStart instances that are waiting for the resources
|
|
27388
|
+
# availability, they are considered as 'pending'.
|
|
27389
|
+
# Corresponds to the JSON property `nonExistent`
|
|
27390
|
+
# @return [Fixnum]
|
|
27391
|
+
attr_accessor :non_existent
|
|
27392
|
+
|
|
27393
|
+
# Output only. [Output Only] The number of instances in the managed instance
|
|
27394
|
+
# group
|
|
27395
|
+
# that have PENDING status, that is FlexStart instances that are waiting
|
|
27396
|
+
# for resources. Instances that do not exist because of the other reasons
|
|
27397
|
+
# are counted as 'non_existent'.
|
|
27398
|
+
# Corresponds to the JSON property `pending`
|
|
27399
|
+
# @return [Fixnum]
|
|
27400
|
+
attr_accessor :pending
|
|
27401
|
+
|
|
27402
|
+
# Output only. [Output Only] The number of instances in the managed instance
|
|
27403
|
+
# group
|
|
27404
|
+
# that have PENDING_STOP status.
|
|
27405
|
+
# Corresponds to the JSON property `pendingStop`
|
|
27406
|
+
# @return [Fixnum]
|
|
27407
|
+
attr_accessor :pending_stop
|
|
27408
|
+
|
|
27409
|
+
# Output only. [Output Only] The number of instances in the managed instance
|
|
27410
|
+
# group
|
|
27411
|
+
# that have PROVISIONING status.
|
|
27412
|
+
# Corresponds to the JSON property `provisioning`
|
|
27413
|
+
# @return [Fixnum]
|
|
27414
|
+
attr_accessor :provisioning
|
|
27415
|
+
|
|
27416
|
+
# Output only. [Output Only] The number of instances in the managed instance
|
|
27417
|
+
# group
|
|
27418
|
+
# that have REPAIRING status.
|
|
27419
|
+
# Corresponds to the JSON property `repairing`
|
|
27420
|
+
# @return [Fixnum]
|
|
27421
|
+
attr_accessor :repairing
|
|
27422
|
+
|
|
27423
|
+
# Output only. [Output Only] The number of instances in the managed instance
|
|
27424
|
+
# group
|
|
27425
|
+
# that have RUNNING status.
|
|
27426
|
+
# Corresponds to the JSON property `running`
|
|
27427
|
+
# @return [Fixnum]
|
|
27428
|
+
attr_accessor :running
|
|
27429
|
+
|
|
27430
|
+
# Output only. [Output Only] The number of instances in the managed instance
|
|
27431
|
+
# group
|
|
27432
|
+
# that have STAGING status.
|
|
27433
|
+
# Corresponds to the JSON property `staging`
|
|
27434
|
+
# @return [Fixnum]
|
|
27435
|
+
attr_accessor :staging
|
|
27436
|
+
|
|
27437
|
+
# Output only. [Output Only] The number of instances in the managed instance
|
|
27438
|
+
# group
|
|
27439
|
+
# that have STOPPED status.
|
|
27440
|
+
# Corresponds to the JSON property `stopped`
|
|
27441
|
+
# @return [Fixnum]
|
|
27442
|
+
attr_accessor :stopped
|
|
27443
|
+
|
|
27444
|
+
# Output only. [Output Only] The number of instances in the managed instance
|
|
27445
|
+
# group
|
|
27446
|
+
# that have STOPPING status.
|
|
27447
|
+
# Corresponds to the JSON property `stopping`
|
|
27448
|
+
# @return [Fixnum]
|
|
27449
|
+
attr_accessor :stopping
|
|
27450
|
+
|
|
27451
|
+
# Output only. [Output Only] The number of instances in the managed instance
|
|
27452
|
+
# group
|
|
27453
|
+
# that have SUSPENDED status.
|
|
27454
|
+
# Corresponds to the JSON property `suspended`
|
|
27455
|
+
# @return [Fixnum]
|
|
27456
|
+
attr_accessor :suspended
|
|
27457
|
+
|
|
27458
|
+
# Output only. [Output Only] The number of instances in the managed instance
|
|
27459
|
+
# group
|
|
27460
|
+
# that have SUSPENDING status.
|
|
27461
|
+
# Corresponds to the JSON property `suspending`
|
|
27462
|
+
# @return [Fixnum]
|
|
27463
|
+
attr_accessor :suspending
|
|
27464
|
+
|
|
27465
|
+
# Output only. [Output Only] The number of instances in the managed instance
|
|
27466
|
+
# group
|
|
27467
|
+
# that have TERMINATED status.
|
|
27468
|
+
# Corresponds to the JSON property `terminated`
|
|
27469
|
+
# @return [Fixnum]
|
|
27470
|
+
attr_accessor :terminated
|
|
27471
|
+
|
|
27472
|
+
def initialize(**args)
|
|
27473
|
+
update!(**args)
|
|
27474
|
+
end
|
|
27475
|
+
|
|
27476
|
+
# Update properties of this object
|
|
27477
|
+
def update!(**args)
|
|
27478
|
+
@deprovisioning = args[:deprovisioning] if args.key?(:deprovisioning)
|
|
27479
|
+
@non_existent = args[:non_existent] if args.key?(:non_existent)
|
|
27480
|
+
@pending = args[:pending] if args.key?(:pending)
|
|
27481
|
+
@pending_stop = args[:pending_stop] if args.key?(:pending_stop)
|
|
27482
|
+
@provisioning = args[:provisioning] if args.key?(:provisioning)
|
|
27483
|
+
@repairing = args[:repairing] if args.key?(:repairing)
|
|
27484
|
+
@running = args[:running] if args.key?(:running)
|
|
27485
|
+
@staging = args[:staging] if args.key?(:staging)
|
|
27486
|
+
@stopped = args[:stopped] if args.key?(:stopped)
|
|
27487
|
+
@stopping = args[:stopping] if args.key?(:stopping)
|
|
27488
|
+
@suspended = args[:suspended] if args.key?(:suspended)
|
|
27489
|
+
@suspending = args[:suspending] if args.key?(:suspending)
|
|
27490
|
+
@terminated = args[:terminated] if args.key?(:terminated)
|
|
27491
|
+
end
|
|
27492
|
+
end
|
|
27493
|
+
|
|
26972
27494
|
#
|
|
26973
27495
|
class InstanceGroupManagerStatusStateful
|
|
26974
27496
|
include Google::Apis::Core::Hashable
|
|
@@ -31443,6 +31965,7 @@ module Google
|
|
|
31443
31965
|
# - BPS_20G: 20 Gbit/s
|
|
31444
31966
|
# - BPS_50G: 50 Gbit/s
|
|
31445
31967
|
# - BPS_100G: 100 Gbit/s
|
|
31968
|
+
# - BPS_400G: 400 Gbit/s
|
|
31446
31969
|
# Corresponds to the JSON property `bandwidth`
|
|
31447
31970
|
# @return [String]
|
|
31448
31971
|
attr_accessor :bandwidth
|
|
@@ -32578,6 +33101,7 @@ module Google
|
|
|
32578
33101
|
# - BPS_20G: 20 Gbit/s
|
|
32579
33102
|
# - BPS_50G: 50 Gbit/s
|
|
32580
33103
|
# - BPS_100G: 100 Gbit/s
|
|
33104
|
+
# - BPS_400G: 400 Gbit/s
|
|
32581
33105
|
# Corresponds to the JSON property `bandwidth`
|
|
32582
33106
|
# @return [String]
|
|
32583
33107
|
attr_accessor :bandwidth
|
|
@@ -36701,9 +37225,11 @@ module Google
|
|
|
36701
37225
|
# Input only. Resource manager tags to be bound to the license. Tag keys and
|
|
36702
37226
|
# values
|
|
36703
37227
|
# have the same definition as resource
|
|
36704
|
-
# manager tags. Keys
|
|
36705
|
-
#
|
|
36706
|
-
#
|
|
37228
|
+
# manager tags. Keys and values can be either in numeric format,
|
|
37229
|
+
# such as `tagKeys/`tag_key_id`` and `tagValues/456` or in namespaced
|
|
37230
|
+
# format such as ``org_id|project_id`/`tag_key_short_name`` and
|
|
37231
|
+
# ``tag_value_short_name``. The field is ignored (both PUT &
|
|
37232
|
+
# PATCH) when empty.
|
|
36707
37233
|
# Corresponds to the JSON property `resourceManagerTags`
|
|
36708
37234
|
# @return [Hash<String,String>]
|
|
36709
37235
|
attr_accessor :resource_manager_tags
|
|
@@ -37680,6 +38206,18 @@ module Google
|
|
|
37680
38206
|
# @return [Array<String>]
|
|
37681
38207
|
attr_accessor :included_disks
|
|
37682
38208
|
|
|
38209
|
+
# Input only. Resource manager tags to be bound to the machine image. Tag keys
|
|
38210
|
+
# and values
|
|
38211
|
+
# have the same definition as resource
|
|
38212
|
+
# manager tags. Keys and values can be either in numeric format,
|
|
38213
|
+
# such as `tagKeys/`tag_key_id`` and `tagValues/456` or in namespaced
|
|
38214
|
+
# format such as ``org_id|project_id`/`tag_key_short_name`` and
|
|
38215
|
+
# ``tag_value_short_name``. The field is ignored (both PUT &
|
|
38216
|
+
# PATCH) when empty.
|
|
38217
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
|
38218
|
+
# @return [Hash<String,String>]
|
|
38219
|
+
attr_accessor :resource_manager_tags
|
|
38220
|
+
|
|
37683
38221
|
def initialize(**args)
|
|
37684
38222
|
update!(**args)
|
|
37685
38223
|
end
|
|
@@ -37688,6 +38226,7 @@ module Google
|
|
|
37688
38226
|
def update!(**args)
|
|
37689
38227
|
@excluded_disks = args[:excluded_disks] if args.key?(:excluded_disks)
|
|
37690
38228
|
@included_disks = args[:included_disks] if args.key?(:included_disks)
|
|
38229
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
|
37691
38230
|
end
|
|
37692
38231
|
end
|
|
37693
38232
|
|
|
@@ -39071,8 +39610,7 @@ module Google
|
|
|
39071
39610
|
# @return [String]
|
|
39072
39611
|
attr_accessor :kind
|
|
39073
39612
|
|
|
39074
|
-
# Output only. [Output Only]
|
|
39075
|
-
# Google Compute Engine.
|
|
39613
|
+
# Output only. [Output Only] Server-defined name for the multi-MIG member.
|
|
39076
39614
|
# Corresponds to the JSON property `name`
|
|
39077
39615
|
# @return [String]
|
|
39078
39616
|
attr_accessor :name
|
|
@@ -55995,49 +56533,52 @@ module Google
|
|
|
55995
56533
|
class ReservationSlot
|
|
55996
56534
|
include Google::Apis::Core::Hashable
|
|
55997
56535
|
|
|
55998
|
-
# Output only. [Output Only]
|
|
56536
|
+
# Output only. [Output Only] The creation timestamp, formatted asRFC3339 text.
|
|
55999
56537
|
# Corresponds to the JSON property `creationTimestamp`
|
|
56000
56538
|
# @return [String]
|
|
56001
56539
|
attr_accessor :creation_timestamp
|
|
56002
56540
|
|
|
56003
|
-
#
|
|
56004
|
-
# Corresponds to the JSON property `description`
|
|
56005
|
-
# @return [String]
|
|
56006
|
-
attr_accessor :description
|
|
56007
|
-
|
|
56008
|
-
# Output only. [Output Only] The unique identifier for the resource. This
|
|
56541
|
+
# Output only. [Output Only] The unique identifier for this resource. This
|
|
56009
56542
|
# identifier is
|
|
56010
56543
|
# defined by the server.
|
|
56011
56544
|
# Corresponds to the JSON property `id`
|
|
56012
56545
|
# @return [Fixnum]
|
|
56013
56546
|
attr_accessor :id
|
|
56014
56547
|
|
|
56015
|
-
# Output only. [Output Only]
|
|
56548
|
+
# Output only. [Output Only] The type of resource. Alwayscompute#reservationSlot
|
|
56016
56549
|
# for reservation slots.
|
|
56017
56550
|
# Corresponds to the JSON property `kind`
|
|
56018
56551
|
# @return [String]
|
|
56019
56552
|
attr_accessor :kind
|
|
56020
56553
|
|
|
56021
|
-
# Output only. [Output Only] The name of
|
|
56022
|
-
# Compute Engine. The name must be 1-63 characters long, and comply with
|
|
56023
|
-
# RFC1035 @pattern [a-z](?:[-a-z0-9]`0,61`[a-z0-9])?
|
|
56554
|
+
# Output only. [Output Only] The name of the reservation slot.
|
|
56024
56555
|
# Corresponds to the JSON property `name`
|
|
56025
56556
|
# @return [String]
|
|
56026
56557
|
attr_accessor :name
|
|
56027
56558
|
|
|
56028
|
-
# Output only. [Output Only]
|
|
56559
|
+
# Output only. [Output Only] The physical topology of the reservation slot.
|
|
56560
|
+
# Corresponds to the JSON property `physicalTopology`
|
|
56561
|
+
# @return [Google::Apis::ComputeAlpha::ReservationSlotPhysicalTopology]
|
|
56562
|
+
attr_accessor :physical_topology
|
|
56563
|
+
|
|
56564
|
+
# Output only. [Output Only] A server-defined fully-qualified URL for this
|
|
56029
56565
|
# resource.
|
|
56030
56566
|
# Corresponds to the JSON property `selfLink`
|
|
56031
56567
|
# @return [String]
|
|
56032
56568
|
attr_accessor :self_link
|
|
56033
56569
|
|
|
56034
|
-
# Output only. [Output Only]
|
|
56035
|
-
# resource
|
|
56570
|
+
# Output only. [Output Only] A server-defined URL for this resource with the
|
|
56571
|
+
# resource ID.
|
|
56036
56572
|
# Corresponds to the JSON property `selfLinkWithId`
|
|
56037
56573
|
# @return [String]
|
|
56038
56574
|
attr_accessor :self_link_with_id
|
|
56039
56575
|
|
|
56040
|
-
#
|
|
56576
|
+
# The share setting for reservations and sole tenancy node groups.
|
|
56577
|
+
# Corresponds to the JSON property `shareSettings`
|
|
56578
|
+
# @return [Google::Apis::ComputeAlpha::ShareSettings]
|
|
56579
|
+
attr_accessor :share_settings
|
|
56580
|
+
|
|
56581
|
+
# Output only. [Output Only] The state of the reservation slot.
|
|
56041
56582
|
# Corresponds to the JSON property `state`
|
|
56042
56583
|
# @return [String]
|
|
56043
56584
|
attr_accessor :state
|
|
@@ -56047,7 +56588,7 @@ module Google
|
|
|
56047
56588
|
# @return [Google::Apis::ComputeAlpha::ReservationSlotStatus]
|
|
56048
56589
|
attr_accessor :status
|
|
56049
56590
|
|
|
56050
|
-
# Output only. [Output Only]
|
|
56591
|
+
# Output only. [Output Only] The zone in which the reservation slot resides.
|
|
56051
56592
|
# Corresponds to the JSON property `zone`
|
|
56052
56593
|
# @return [String]
|
|
56053
56594
|
attr_accessor :zone
|
|
@@ -56059,12 +56600,13 @@ module Google
|
|
|
56059
56600
|
# Update properties of this object
|
|
56060
56601
|
def update!(**args)
|
|
56061
56602
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
56062
|
-
@description = args[:description] if args.key?(:description)
|
|
56063
56603
|
@id = args[:id] if args.key?(:id)
|
|
56064
56604
|
@kind = args[:kind] if args.key?(:kind)
|
|
56065
56605
|
@name = args[:name] if args.key?(:name)
|
|
56606
|
+
@physical_topology = args[:physical_topology] if args.key?(:physical_topology)
|
|
56066
56607
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
56067
56608
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
|
56609
|
+
@share_settings = args[:share_settings] if args.key?(:share_settings)
|
|
56068
56610
|
@state = args[:state] if args.key?(:state)
|
|
56069
56611
|
@status = args[:status] if args.key?(:status)
|
|
56070
56612
|
@zone = args[:zone] if args.key?(:zone)
|
|
@@ -56075,22 +56617,23 @@ module Google
|
|
|
56075
56617
|
class ReservationSlotPhysicalTopology
|
|
56076
56618
|
include Google::Apis::Core::Hashable
|
|
56077
56619
|
|
|
56078
|
-
# The
|
|
56620
|
+
# The unique identifier of the capacity block within the cluster.
|
|
56079
56621
|
# Corresponds to the JSON property `block`
|
|
56080
56622
|
# @return [String]
|
|
56081
56623
|
attr_accessor :block
|
|
56082
56624
|
|
|
56083
|
-
# The cluster name of the reservation
|
|
56625
|
+
# The cluster name of the reservation sub-block.
|
|
56084
56626
|
# Corresponds to the JSON property `cluster`
|
|
56085
56627
|
# @return [String]
|
|
56086
56628
|
attr_accessor :cluster
|
|
56087
56629
|
|
|
56088
|
-
# The
|
|
56630
|
+
# The unique identifier of the capacity host within the capacity sub-block.
|
|
56089
56631
|
# Corresponds to the JSON property `host`
|
|
56090
56632
|
# @return [String]
|
|
56091
56633
|
attr_accessor :host
|
|
56092
56634
|
|
|
56093
|
-
# The
|
|
56635
|
+
# The unique identifier of the capacity sub-block within the capacity
|
|
56636
|
+
# block.
|
|
56094
56637
|
# Corresponds to the JSON property `subBlock`
|
|
56095
56638
|
# @return [String]
|
|
56096
56639
|
attr_accessor :sub_block
|
|
@@ -56112,7 +56655,7 @@ module Google
|
|
|
56112
56655
|
class ReservationSlotStatus
|
|
56113
56656
|
include Google::Apis::Core::Hashable
|
|
56114
56657
|
|
|
56115
|
-
# Output only. [Output Only] The physical topology of the reservation
|
|
56658
|
+
# Output only. [Output Only] The physical topology of the reservation sub-block.
|
|
56116
56659
|
# Corresponds to the JSON property `physicalTopology`
|
|
56117
56660
|
# @return [Google::Apis::ComputeAlpha::ReservationSlotPhysicalTopology]
|
|
56118
56661
|
attr_accessor :physical_topology
|
|
@@ -56158,11 +56701,11 @@ module Google
|
|
|
56158
56701
|
end
|
|
56159
56702
|
end
|
|
56160
56703
|
|
|
56161
|
-
# A list of reservation slots
|
|
56704
|
+
# A list of reservation slots within a single reservation.
|
|
56162
56705
|
class ReservationSlotsListResponse
|
|
56163
56706
|
include Google::Apis::Core::Hashable
|
|
56164
56707
|
|
|
56165
|
-
#
|
|
56708
|
+
# The unique identifier for the resource; defined by the server.
|
|
56166
56709
|
# Corresponds to the JSON property `id`
|
|
56167
56710
|
# @return [String]
|
|
56168
56711
|
attr_accessor :id
|
|
@@ -56172,7 +56715,7 @@ module Google
|
|
|
56172
56715
|
# @return [Array<Google::Apis::ComputeAlpha::ReservationSlot>]
|
|
56173
56716
|
attr_accessor :items
|
|
56174
56717
|
|
|
56175
|
-
#
|
|
56718
|
+
# The type of resource. Alwayscompute#reservationSlot for a list of reservation
|
|
56176
56719
|
# slots.
|
|
56177
56720
|
# Corresponds to the JSON property `kind`
|
|
56178
56721
|
# @return [String]
|
|
@@ -56188,12 +56731,12 @@ module Google
|
|
|
56188
56731
|
# @return [String]
|
|
56189
56732
|
attr_accessor :next_page_token
|
|
56190
56733
|
|
|
56191
|
-
#
|
|
56734
|
+
# The server-defined URL for this resource.
|
|
56192
56735
|
# Corresponds to the JSON property `selfLink`
|
|
56193
56736
|
# @return [String]
|
|
56194
56737
|
attr_accessor :self_link
|
|
56195
56738
|
|
|
56196
|
-
#
|
|
56739
|
+
# An informational warning message.
|
|
56197
56740
|
# Corresponds to the JSON property `warning`
|
|
56198
56741
|
# @return [Google::Apis::ComputeAlpha::ReservationSlotsListResponse::Warning]
|
|
56199
56742
|
attr_accessor :warning
|
|
@@ -56212,7 +56755,7 @@ module Google
|
|
|
56212
56755
|
@warning = args[:warning] if args.key?(:warning)
|
|
56213
56756
|
end
|
|
56214
56757
|
|
|
56215
|
-
#
|
|
56758
|
+
# An informational warning message.
|
|
56216
56759
|
class Warning
|
|
56217
56760
|
include Google::Apis::Core::Hashable
|
|
56218
56761
|
|
|
@@ -69926,9 +70469,11 @@ module Google
|
|
|
69926
70469
|
# Input only. Resource manager tags to be bound to the storage pool. Tag keys
|
|
69927
70470
|
# and values
|
|
69928
70471
|
# have the same definition as resource
|
|
69929
|
-
# manager tags. Keys
|
|
69930
|
-
#
|
|
69931
|
-
#
|
|
70472
|
+
# manager tags. Keys and values can be either in numeric format,
|
|
70473
|
+
# such as `tagKeys/`tag_key_id`` and `tagValues/456` or in namespaced
|
|
70474
|
+
# format such as ``org_id|project_id`/`tag_key_short_name`` and
|
|
70475
|
+
# ``tag_value_short_name``. The field is ignored (both PUT &
|
|
70476
|
+
# PATCH) when empty.
|
|
69932
70477
|
# Corresponds to the JSON property `resourceManagerTags`
|
|
69933
70478
|
# @return [Hash<String,String>]
|
|
69934
70479
|
attr_accessor :resource_manager_tags
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ComputeAlpha
|
|
18
18
|
# Version of the google-apis-compute_alpha gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.130.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 = "20260113"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1108,6 +1108,18 @@ module Google
|
|
|
1108
1108
|
include Google::Apis::Core::JsonObjectSupport
|
|
1109
1109
|
end
|
|
1110
1110
|
|
|
1111
|
+
class CompositeHealthChecksGetHealthResponse
|
|
1112
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1113
|
+
|
|
1114
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1115
|
+
end
|
|
1116
|
+
|
|
1117
|
+
class CompositeHealthChecksGetHealthResponseHealthSourceHealth
|
|
1118
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1119
|
+
|
|
1120
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1121
|
+
end
|
|
1122
|
+
|
|
1111
1123
|
class CompositeHealthChecksScopedList
|
|
1112
1124
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1113
1125
|
|
|
@@ -1648,6 +1660,36 @@ module Google
|
|
|
1648
1660
|
include Google::Apis::Core::JsonObjectSupport
|
|
1649
1661
|
end
|
|
1650
1662
|
|
|
1663
|
+
class FirewallPolicyRolloutOperation
|
|
1664
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1665
|
+
|
|
1666
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1667
|
+
end
|
|
1668
|
+
|
|
1669
|
+
class FirewallPolicyRolloutOperationRolloutInput
|
|
1670
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1671
|
+
|
|
1672
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1673
|
+
end
|
|
1674
|
+
|
|
1675
|
+
class FirewallPolicyRolloutOperationRolloutStatus
|
|
1676
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1677
|
+
|
|
1678
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1679
|
+
end
|
|
1680
|
+
|
|
1681
|
+
class FirewallPolicyRolloutOperationRolloutStatusNextRollout
|
|
1682
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1683
|
+
|
|
1684
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1685
|
+
end
|
|
1686
|
+
|
|
1687
|
+
class FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata
|
|
1688
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1689
|
+
|
|
1690
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1691
|
+
end
|
|
1692
|
+
|
|
1651
1693
|
class FirewallPolicyRule
|
|
1652
1694
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1653
1695
|
|
|
@@ -3010,6 +3052,36 @@ module Google
|
|
|
3010
3052
|
include Google::Apis::Core::JsonObjectSupport
|
|
3011
3053
|
end
|
|
3012
3054
|
|
|
3055
|
+
class InstanceGroupManagerStatusAcceleratorTopology
|
|
3056
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3057
|
+
|
|
3058
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3059
|
+
end
|
|
3060
|
+
|
|
3061
|
+
class InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails
|
|
3062
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3063
|
+
|
|
3064
|
+
class Error
|
|
3065
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3066
|
+
|
|
3067
|
+
class Error
|
|
3068
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3069
|
+
|
|
3070
|
+
class ErrorDetail
|
|
3071
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3072
|
+
|
|
3073
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3074
|
+
end
|
|
3075
|
+
|
|
3076
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3077
|
+
end
|
|
3078
|
+
|
|
3079
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3080
|
+
end
|
|
3081
|
+
|
|
3082
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3083
|
+
end
|
|
3084
|
+
|
|
3013
3085
|
class InstanceGroupManagerStatusAllInstancesConfig
|
|
3014
3086
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3015
3087
|
|
|
@@ -3046,6 +3118,12 @@ module Google
|
|
|
3046
3118
|
include Google::Apis::Core::JsonObjectSupport
|
|
3047
3119
|
end
|
|
3048
3120
|
|
|
3121
|
+
class InstanceGroupManagerStatusInstanceStatusSummary
|
|
3122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3123
|
+
|
|
3124
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3125
|
+
end
|
|
3126
|
+
|
|
3049
3127
|
class InstanceGroupManagerStatusStateful
|
|
3050
3128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3051
3129
|
|
|
@@ -11080,7 +11158,6 @@ module Google
|
|
|
11080
11158
|
|
|
11081
11159
|
collection :used_by, as: 'usedBy', class: Google::Apis::ComputeAlpha::BackendServiceUsedBy, decorator: Google::Apis::ComputeAlpha::BackendServiceUsedBy::Representation
|
|
11082
11160
|
|
|
11083
|
-
property :vpc_network_scope, as: 'vpcNetworkScope'
|
|
11084
11161
|
end
|
|
11085
11162
|
end
|
|
11086
11163
|
|
|
@@ -12083,6 +12160,23 @@ module Google
|
|
|
12083
12160
|
end
|
|
12084
12161
|
end
|
|
12085
12162
|
|
|
12163
|
+
class CompositeHealthChecksGetHealthResponse
|
|
12164
|
+
# @private
|
|
12165
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
12166
|
+
collection :health_sources, as: 'healthSources', class: Google::Apis::ComputeAlpha::CompositeHealthChecksGetHealthResponseHealthSourceHealth, decorator: Google::Apis::ComputeAlpha::CompositeHealthChecksGetHealthResponseHealthSourceHealth::Representation
|
|
12167
|
+
|
|
12168
|
+
property :health_state, as: 'healthState'
|
|
12169
|
+
end
|
|
12170
|
+
end
|
|
12171
|
+
|
|
12172
|
+
class CompositeHealthChecksGetHealthResponseHealthSourceHealth
|
|
12173
|
+
# @private
|
|
12174
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
12175
|
+
property :health_state, as: 'healthState'
|
|
12176
|
+
property :source, as: 'source'
|
|
12177
|
+
end
|
|
12178
|
+
end
|
|
12179
|
+
|
|
12086
12180
|
class CompositeHealthChecksScopedList
|
|
12087
12181
|
# @private
|
|
12088
12182
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -13016,6 +13110,8 @@ module Google
|
|
|
13016
13110
|
property :policy_source, as: 'policySource'
|
|
13017
13111
|
property :policy_type, as: 'policyType'
|
|
13018
13112
|
property :region, as: 'region'
|
|
13113
|
+
property :rollout_operation, as: 'rolloutOperation', class: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperation, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperation::Representation
|
|
13114
|
+
|
|
13019
13115
|
property :rule_tuple_count, as: 'ruleTupleCount'
|
|
13020
13116
|
collection :rules, as: 'rules', class: Google::Apis::ComputeAlpha::FirewallPolicyRule, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRule::Representation
|
|
13021
13117
|
|
|
@@ -13069,6 +13165,54 @@ module Google
|
|
|
13069
13165
|
end
|
|
13070
13166
|
end
|
|
13071
13167
|
|
|
13168
|
+
class FirewallPolicyRolloutOperation
|
|
13169
|
+
# @private
|
|
13170
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
13171
|
+
property :rollout_input, as: 'rolloutInput', class: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutInput, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutInput::Representation
|
|
13172
|
+
|
|
13173
|
+
property :rollout_status, as: 'rolloutStatus', class: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatus, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatus::Representation
|
|
13174
|
+
|
|
13175
|
+
end
|
|
13176
|
+
end
|
|
13177
|
+
|
|
13178
|
+
class FirewallPolicyRolloutOperationRolloutInput
|
|
13179
|
+
# @private
|
|
13180
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
13181
|
+
property :name, as: 'name'
|
|
13182
|
+
property :predefined_rollout_plan, as: 'predefinedRolloutPlan'
|
|
13183
|
+
property :retry_uuid, as: 'retryUuid'
|
|
13184
|
+
end
|
|
13185
|
+
end
|
|
13186
|
+
|
|
13187
|
+
class FirewallPolicyRolloutOperationRolloutStatus
|
|
13188
|
+
# @private
|
|
13189
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
13190
|
+
property :next_rollout, as: 'nextRollout', class: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusNextRollout, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusNextRollout::Representation
|
|
13191
|
+
|
|
13192
|
+
collection :ongoing_rollouts, as: 'ongoingRollouts', class: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata::Representation
|
|
13193
|
+
|
|
13194
|
+
property :previous_rollout, as: 'previousRollout', class: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata::Representation
|
|
13195
|
+
|
|
13196
|
+
end
|
|
13197
|
+
end
|
|
13198
|
+
|
|
13199
|
+
class FirewallPolicyRolloutOperationRolloutStatusNextRollout
|
|
13200
|
+
# @private
|
|
13201
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
13202
|
+
property :rollout_id, as: 'rolloutId'
|
|
13203
|
+
property :rollout_plan, as: 'rolloutPlan'
|
|
13204
|
+
end
|
|
13205
|
+
end
|
|
13206
|
+
|
|
13207
|
+
class FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata
|
|
13208
|
+
# @private
|
|
13209
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
13210
|
+
property :rollout, as: 'rollout'
|
|
13211
|
+
property :rollout_plan, as: 'rolloutPlan'
|
|
13212
|
+
property :state, as: 'state'
|
|
13213
|
+
end
|
|
13214
|
+
end
|
|
13215
|
+
|
|
13072
13216
|
class FirewallPolicyRule
|
|
13073
13217
|
# @private
|
|
13074
13218
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -15822,9 +15966,13 @@ module Google
|
|
|
15822
15966
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
15823
15967
|
property :all_instances_config, as: 'allInstancesConfig', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAllInstancesConfig, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAllInstancesConfig::Representation
|
|
15824
15968
|
|
|
15969
|
+
collection :applied_accelerator_topologies, as: 'appliedAcceleratorTopologies', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopology, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopology::Representation
|
|
15970
|
+
|
|
15825
15971
|
property :autoscaler, as: 'autoscaler'
|
|
15826
15972
|
property :bulk_instance_operation, as: 'bulkInstanceOperation', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusBulkInstanceOperation, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusBulkInstanceOperation::Representation
|
|
15827
15973
|
|
|
15974
|
+
property :current_instance_statuses, as: 'currentInstanceStatuses', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusInstanceStatusSummary, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusInstanceStatusSummary::Representation
|
|
15975
|
+
|
|
15828
15976
|
property :is_stable, as: 'isStable'
|
|
15829
15977
|
property :stateful, as: 'stateful', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusStateful, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusStateful::Representation
|
|
15830
15978
|
|
|
@@ -15833,6 +15981,58 @@ module Google
|
|
|
15833
15981
|
end
|
|
15834
15982
|
end
|
|
15835
15983
|
|
|
15984
|
+
class InstanceGroupManagerStatusAcceleratorTopology
|
|
15985
|
+
# @private
|
|
15986
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
15987
|
+
property :accelerator_topology, as: 'acceleratorTopology'
|
|
15988
|
+
property :state, as: 'state'
|
|
15989
|
+
property :state_details, as: 'stateDetails', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Representation
|
|
15990
|
+
|
|
15991
|
+
end
|
|
15992
|
+
end
|
|
15993
|
+
|
|
15994
|
+
class InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails
|
|
15995
|
+
# @private
|
|
15996
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
15997
|
+
property :error, as: 'error', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Representation
|
|
15998
|
+
|
|
15999
|
+
property :timestamp, as: 'timestamp'
|
|
16000
|
+
end
|
|
16001
|
+
|
|
16002
|
+
class Error
|
|
16003
|
+
# @private
|
|
16004
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16005
|
+
collection :errors, as: 'errors', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Error, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Error::Representation
|
|
16006
|
+
|
|
16007
|
+
end
|
|
16008
|
+
|
|
16009
|
+
class Error
|
|
16010
|
+
# @private
|
|
16011
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16012
|
+
property :code, as: 'code'
|
|
16013
|
+
collection :error_details, as: 'errorDetails', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Error::ErrorDetail, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Error::ErrorDetail::Representation
|
|
16014
|
+
|
|
16015
|
+
property :location, as: 'location'
|
|
16016
|
+
property :message, as: 'message'
|
|
16017
|
+
end
|
|
16018
|
+
|
|
16019
|
+
class ErrorDetail
|
|
16020
|
+
# @private
|
|
16021
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16022
|
+
property :error_info, as: 'errorInfo', class: Google::Apis::ComputeAlpha::ErrorInfo, decorator: Google::Apis::ComputeAlpha::ErrorInfo::Representation
|
|
16023
|
+
|
|
16024
|
+
property :help, as: 'help', class: Google::Apis::ComputeAlpha::Help, decorator: Google::Apis::ComputeAlpha::Help::Representation
|
|
16025
|
+
|
|
16026
|
+
property :localized_message, as: 'localizedMessage', class: Google::Apis::ComputeAlpha::LocalizedMessage, decorator: Google::Apis::ComputeAlpha::LocalizedMessage::Representation
|
|
16027
|
+
|
|
16028
|
+
property :quota_info, as: 'quotaInfo', class: Google::Apis::ComputeAlpha::QuotaExceededInfo, decorator: Google::Apis::ComputeAlpha::QuotaExceededInfo::Representation
|
|
16029
|
+
|
|
16030
|
+
end
|
|
16031
|
+
end
|
|
16032
|
+
end
|
|
16033
|
+
end
|
|
16034
|
+
end
|
|
16035
|
+
|
|
15836
16036
|
class InstanceGroupManagerStatusAllInstancesConfig
|
|
15837
16037
|
# @private
|
|
15838
16038
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -15892,6 +16092,25 @@ module Google
|
|
|
15892
16092
|
end
|
|
15893
16093
|
end
|
|
15894
16094
|
|
|
16095
|
+
class InstanceGroupManagerStatusInstanceStatusSummary
|
|
16096
|
+
# @private
|
|
16097
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16098
|
+
property :deprovisioning, as: 'deprovisioning'
|
|
16099
|
+
property :non_existent, as: 'nonExistent'
|
|
16100
|
+
property :pending, as: 'pending'
|
|
16101
|
+
property :pending_stop, as: 'pendingStop'
|
|
16102
|
+
property :provisioning, as: 'provisioning'
|
|
16103
|
+
property :repairing, as: 'repairing'
|
|
16104
|
+
property :running, as: 'running'
|
|
16105
|
+
property :staging, as: 'staging'
|
|
16106
|
+
property :stopped, as: 'stopped'
|
|
16107
|
+
property :stopping, as: 'stopping'
|
|
16108
|
+
property :suspended, as: 'suspended'
|
|
16109
|
+
property :suspending, as: 'suspending'
|
|
16110
|
+
property :terminated, as: 'terminated'
|
|
16111
|
+
end
|
|
16112
|
+
end
|
|
16113
|
+
|
|
15895
16114
|
class InstanceGroupManagerStatusStateful
|
|
15896
16115
|
# @private
|
|
15897
16116
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -18449,6 +18668,7 @@ module Google
|
|
|
18449
18668
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
18450
18669
|
collection :excluded_disks, as: 'excludedDisks'
|
|
18451
18670
|
collection :included_disks, as: 'includedDisks'
|
|
18671
|
+
hash :resource_manager_tags, as: 'resourceManagerTags'
|
|
18452
18672
|
end
|
|
18453
18673
|
end
|
|
18454
18674
|
|
|
@@ -22871,12 +23091,15 @@ module Google
|
|
|
22871
23091
|
# @private
|
|
22872
23092
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
22873
23093
|
property :creation_timestamp, as: 'creationTimestamp'
|
|
22874
|
-
property :description, as: 'description'
|
|
22875
23094
|
property :id, :numeric_string => true, as: 'id'
|
|
22876
23095
|
property :kind, as: 'kind'
|
|
22877
23096
|
property :name, as: 'name'
|
|
23097
|
+
property :physical_topology, as: 'physicalTopology', class: Google::Apis::ComputeAlpha::ReservationSlotPhysicalTopology, decorator: Google::Apis::ComputeAlpha::ReservationSlotPhysicalTopology::Representation
|
|
23098
|
+
|
|
22878
23099
|
property :self_link, as: 'selfLink'
|
|
22879
23100
|
property :self_link_with_id, as: 'selfLinkWithId'
|
|
23101
|
+
property :share_settings, as: 'shareSettings', class: Google::Apis::ComputeAlpha::ShareSettings, decorator: Google::Apis::ComputeAlpha::ShareSettings::Representation
|
|
23102
|
+
|
|
22880
23103
|
property :state, as: 'state'
|
|
22881
23104
|
property :status, as: 'status', class: Google::Apis::ComputeAlpha::ReservationSlotStatus, decorator: Google::Apis::ComputeAlpha::ReservationSlotStatus::Representation
|
|
22882
23105
|
|
|
@@ -37780,6 +37780,46 @@ module Google
|
|
|
37780
37780
|
execute_or_queue_command(command, &block)
|
|
37781
37781
|
end
|
|
37782
37782
|
|
|
37783
|
+
# Gets the most recent health check results for this
|
|
37784
|
+
# regional CompositeHealthCheck.
|
|
37785
|
+
# @param [String] project
|
|
37786
|
+
# Name of the project scoping this request.
|
|
37787
|
+
# @param [String] region
|
|
37788
|
+
# Name of the region scoping this request.
|
|
37789
|
+
# @param [String] composite_health_check
|
|
37790
|
+
# Name of the CompositeHealthCheck resource to get health for.
|
|
37791
|
+
# @param [String] fields
|
|
37792
|
+
# Selector specifying which fields to include in a partial response.
|
|
37793
|
+
# @param [String] quota_user
|
|
37794
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
37795
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
37796
|
+
# @param [String] user_ip
|
|
37797
|
+
# Legacy name for parameter that has been superseded by `quotaUser`.
|
|
37798
|
+
# @param [Google::Apis::RequestOptions] options
|
|
37799
|
+
# Request-specific options
|
|
37800
|
+
#
|
|
37801
|
+
# @yield [result, err] Result & error if block supplied
|
|
37802
|
+
# @yieldparam result [Google::Apis::ComputeAlpha::CompositeHealthChecksGetHealthResponse] parsed result object
|
|
37803
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
37804
|
+
#
|
|
37805
|
+
# @return [Google::Apis::ComputeAlpha::CompositeHealthChecksGetHealthResponse]
|
|
37806
|
+
#
|
|
37807
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
37808
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
37809
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
37810
|
+
def get_region_composite_health_check_health(project, region, composite_health_check, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
37811
|
+
command = make_simple_command(:get, 'projects/{project}/regions/{region}/compositeHealthChecks/{compositeHealthCheck}/getHealth', options)
|
|
37812
|
+
command.response_representation = Google::Apis::ComputeAlpha::CompositeHealthChecksGetHealthResponse::Representation
|
|
37813
|
+
command.response_class = Google::Apis::ComputeAlpha::CompositeHealthChecksGetHealthResponse
|
|
37814
|
+
command.params['project'] = project unless project.nil?
|
|
37815
|
+
command.params['region'] = region unless region.nil?
|
|
37816
|
+
command.params['compositeHealthCheck'] = composite_health_check unless composite_health_check.nil?
|
|
37817
|
+
command.query['fields'] = fields unless fields.nil?
|
|
37818
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
37819
|
+
command.query['userIp'] = user_ip unless user_ip.nil?
|
|
37820
|
+
execute_or_queue_command(command, &block)
|
|
37821
|
+
end
|
|
37822
|
+
|
|
37783
37823
|
# Create a CompositeHealthCheck in the specified project in the given region
|
|
37784
37824
|
# using the parameters that are included in the request.
|
|
37785
37825
|
# @param [String] project
|
|
@@ -53193,16 +53233,16 @@ module Google
|
|
|
53193
53233
|
|
|
53194
53234
|
# Retrieves information about the specified reservation slot.
|
|
53195
53235
|
# @param [String] project
|
|
53196
|
-
#
|
|
53236
|
+
# The project ID for this request.
|
|
53197
53237
|
# @param [String] zone
|
|
53198
|
-
#
|
|
53238
|
+
# The name of the zone for this request, formatted as RFC1035.
|
|
53199
53239
|
# @param [String] parent_name
|
|
53200
|
-
# The name of the parent reservation and parent block
|
|
53240
|
+
# The name of the parent reservation and parent block, formatted as
|
|
53201
53241
|
# reservations/`reservation_name`/reservationBlocks/`reservation_block_name`/
|
|
53202
53242
|
# reservationSubBlocks/`reservation_sub_block_name`
|
|
53203
53243
|
# @param [String] reservation_slot
|
|
53204
|
-
# The name of the reservation slot
|
|
53205
|
-
#
|
|
53244
|
+
# The name of the reservation slot, formatted as RFC1035 or a resource ID
|
|
53245
|
+
# number.
|
|
53206
53246
|
# @param [String] fields
|
|
53207
53247
|
# Selector specifying which fields to include in a partial response.
|
|
53208
53248
|
# @param [String] quota_user
|
|
@@ -53238,11 +53278,11 @@ module Google
|
|
|
53238
53278
|
|
|
53239
53279
|
# Retrieves a list of reservation slots under a single reservation.
|
|
53240
53280
|
# @param [String] project
|
|
53241
|
-
#
|
|
53281
|
+
# The project ID for this request.
|
|
53242
53282
|
# @param [String] zone
|
|
53243
|
-
#
|
|
53283
|
+
# The name of the zone for this request, formatted as RFC1035.
|
|
53244
53284
|
# @param [String] parent_name
|
|
53245
|
-
# The name of the parent reservation and parent block
|
|
53285
|
+
# The name of the parent reservation and parent block, formatted as
|
|
53246
53286
|
# reservations/`reservation_name`/reservationBlocks/`reservation_block_name`/
|
|
53247
53287
|
# reservationSubBlocks/`reservation_sub_block_name`
|
|
53248
53288
|
# @param [String] filter
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-compute_alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.130.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_alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.130.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|