google-apis-compute_alpha 0.128.0 → 0.129.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: 21357b16bed08b71f876cbea225ca14fef181544d87437c7646163a3e3a2ff5e
4
- data.tar.gz: da63ddf4b8dd68f83abe47a73e55b0fd000b6726d5651f2a170c7c0a91458480
3
+ metadata.gz: bdbc8b0a2a502d9d005a4bdfafa1b158b2822fb8cb68f9eff6d2b0049a228226
4
+ data.tar.gz: c0b108ca022ffc7bd59e094a272b687e2669b788471c1b03be5082eeca8a8363
5
5
  SHA512:
6
- metadata.gz: '0877ea37a35b5db47875e85eae3cade88d11f0540a59007beac502f234ef72cdd5649d478238cd3aab0dc55edb6045c92413c2085e74d95bfd1a533837581cee'
7
- data.tar.gz: 4fe5e3d4a9026242a710e9618112435fecf197ba624119b57d1b255bd4e0022c4f475e97a833c302a09c6113a58cf2384dee8c3ac89e696c97c35b296144d7a6
6
+ metadata.gz: 64e1369b923a9a8797d912bd34d6ea1a3fd6fdbcf3da47abc6eb8ff2f0e5d63e91d0d82af0299580fb2e50aa00caedf537cb9e2297dc0ec6598b0174dc3002e6
7
+ data.tar.gz: c5e51a3d0e10a1ffa69666250a1db018f8d68ac8a25a6a4b24458ffd4d8f2f633e51b3dc9fbbd2b48c27f398fea279b34c73f803f041eaf4194cc75bdd731c7a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_alpha
2
2
 
3
+ ### v0.129.0 (2026-01-11)
4
+
5
+ * Regenerated from discovery document revision 20251230
6
+
3
7
  ### v0.128.0 (2025-12-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20251210
@@ -9649,6 +9649,56 @@ module Google
9649
9649
  end
9650
9650
  end
9651
9651
 
9652
+ # Response message for RegionCompositeHealthChecks.GetHealth
9653
+ class CompositeHealthChecksGetHealthResponse
9654
+ include Google::Apis::Core::Hashable
9655
+
9656
+ # Health sources and their corresponding health states.
9657
+ # Corresponds to the JSON property `healthSources`
9658
+ # @return [Array<Google::Apis::ComputeAlpha::CompositeHealthChecksGetHealthResponseHealthSourceHealth>]
9659
+ attr_accessor :health_sources
9660
+
9661
+ # Health state of the CompositeHealthCheck.
9662
+ # Corresponds to the JSON property `healthState`
9663
+ # @return [String]
9664
+ attr_accessor :health_state
9665
+
9666
+ def initialize(**args)
9667
+ update!(**args)
9668
+ end
9669
+
9670
+ # Update properties of this object
9671
+ def update!(**args)
9672
+ @health_sources = args[:health_sources] if args.key?(:health_sources)
9673
+ @health_state = args[:health_state] if args.key?(:health_state)
9674
+ end
9675
+ end
9676
+
9677
+ #
9678
+ class CompositeHealthChecksGetHealthResponseHealthSourceHealth
9679
+ include Google::Apis::Core::Hashable
9680
+
9681
+ # Health state of the associated HealthSource resource.
9682
+ # Corresponds to the JSON property `healthState`
9683
+ # @return [String]
9684
+ attr_accessor :health_state
9685
+
9686
+ # URL of the associated HealthSource resource.
9687
+ # Corresponds to the JSON property `source`
9688
+ # @return [String]
9689
+ attr_accessor :source
9690
+
9691
+ def initialize(**args)
9692
+ update!(**args)
9693
+ end
9694
+
9695
+ # Update properties of this object
9696
+ def update!(**args)
9697
+ @health_state = args[:health_state] if args.key?(:health_state)
9698
+ @source = args[:source] if args.key?(:source)
9699
+ end
9700
+ end
9701
+
9652
9702
  #
9653
9703
  class CompositeHealthChecksScopedList
9654
9704
  include Google::Apis::Core::Hashable
@@ -13996,6 +14046,11 @@ module Google
13996
14046
  # @return [String]
13997
14047
  attr_accessor :region
13998
14048
 
14049
+ # Represents progressive rollout input parameters and current status.
14050
+ # Corresponds to the JSON property `rolloutOperation`
14051
+ # @return [Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperation]
14052
+ attr_accessor :rollout_operation
14053
+
13999
14054
  # Output only. [Output Only] Total count of all firewall policy rule tuples. A
14000
14055
  # firewall
14001
14056
  # policy can not exceed a set number of tuples.
@@ -14067,6 +14122,7 @@ module Google
14067
14122
  @policy_source = args[:policy_source] if args.key?(:policy_source)
14068
14123
  @policy_type = args[:policy_type] if args.key?(:policy_type)
14069
14124
  @region = args[:region] if args.key?(:region)
14125
+ @rollout_operation = args[:rollout_operation] if args.key?(:rollout_operation)
14070
14126
  @rule_tuple_count = args[:rule_tuple_count] if args.key?(:rule_tuple_count)
14071
14127
  @rules = args[:rules] if args.key?(:rules)
14072
14128
  @self_link = args[:self_link] if args.key?(:self_link)
@@ -14251,6 +14307,161 @@ module Google
14251
14307
  end
14252
14308
  end
14253
14309
 
14310
+ # Represents progressive rollout input parameters and current status.
14311
+ class FirewallPolicyRolloutOperation
14312
+ include Google::Apis::Core::Hashable
14313
+
14314
+ # Represents progressive rollout input parameters.
14315
+ # Corresponds to the JSON property `rolloutInput`
14316
+ # @return [Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutInput]
14317
+ attr_accessor :rollout_input
14318
+
14319
+ # Represents progressive rollout current status.
14320
+ # Corresponds to the JSON property `rolloutStatus`
14321
+ # @return [Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatus]
14322
+ attr_accessor :rollout_status
14323
+
14324
+ def initialize(**args)
14325
+ update!(**args)
14326
+ end
14327
+
14328
+ # Update properties of this object
14329
+ def update!(**args)
14330
+ @rollout_input = args[:rollout_input] if args.key?(:rollout_input)
14331
+ @rollout_status = args[:rollout_status] if args.key?(:rollout_status)
14332
+ end
14333
+ end
14334
+
14335
+ # Represents progressive rollout input parameters.
14336
+ class FirewallPolicyRolloutOperationRolloutInput
14337
+ include Google::Apis::Core::Hashable
14338
+
14339
+ # The name of the rollout plan. Ex.
14340
+ # organizations//locations/global/rolloutPlans/.
14341
+ # Corresponds to the JSON property `name`
14342
+ # @return [String]
14343
+ attr_accessor :name
14344
+
14345
+ # Predefined rollout plan.
14346
+ # Corresponds to the JSON property `predefinedRolloutPlan`
14347
+ # @return [String]
14348
+ attr_accessor :predefined_rollout_plan
14349
+
14350
+ # The UUID of the retry action. Only needed if this is a retry for an
14351
+ # existing rollout. This can be used after the user canceled a rollout
14352
+ # and want to retry it with no changes.
14353
+ # Corresponds to the JSON property `retryUuid`
14354
+ # @return [String]
14355
+ attr_accessor :retry_uuid
14356
+
14357
+ def initialize(**args)
14358
+ update!(**args)
14359
+ end
14360
+
14361
+ # Update properties of this object
14362
+ def update!(**args)
14363
+ @name = args[:name] if args.key?(:name)
14364
+ @predefined_rollout_plan = args[:predefined_rollout_plan] if args.key?(:predefined_rollout_plan)
14365
+ @retry_uuid = args[:retry_uuid] if args.key?(:retry_uuid)
14366
+ end
14367
+ end
14368
+
14369
+ # Represents progressive rollout current status.
14370
+ class FirewallPolicyRolloutOperationRolloutStatus
14371
+ include Google::Apis::Core::Hashable
14372
+
14373
+ # [Output only] The next rollout.
14374
+ # Corresponds to the JSON property `nextRollout`
14375
+ # @return [Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusNextRollout]
14376
+ attr_accessor :next_rollout
14377
+
14378
+ # [Output only] The ongoing rollout.
14379
+ # Corresponds to the JSON property `ongoingRollouts`
14380
+ # @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata>]
14381
+ attr_accessor :ongoing_rollouts
14382
+
14383
+ # Represents the status of the progressive rollout instance, either
14384
+ # completed or ongoing.
14385
+ # Corresponds to the JSON property `previousRollout`
14386
+ # @return [Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata]
14387
+ attr_accessor :previous_rollout
14388
+
14389
+ def initialize(**args)
14390
+ update!(**args)
14391
+ end
14392
+
14393
+ # Update properties of this object
14394
+ def update!(**args)
14395
+ @next_rollout = args[:next_rollout] if args.key?(:next_rollout)
14396
+ @ongoing_rollouts = args[:ongoing_rollouts] if args.key?(:ongoing_rollouts)
14397
+ @previous_rollout = args[:previous_rollout] if args.key?(:previous_rollout)
14398
+ end
14399
+ end
14400
+
14401
+ #
14402
+ class FirewallPolicyRolloutOperationRolloutStatusNextRollout
14403
+ include Google::Apis::Core::Hashable
14404
+
14405
+ # Output only. [Output only] The id of the next rollout.
14406
+ # Corresponds to the JSON property `rolloutId`
14407
+ # @return [String]
14408
+ attr_accessor :rollout_id
14409
+
14410
+ # The name of the rollout plan to be used by the next not yet started
14411
+ # rollout. This field is auto populated based on RolloutInput when a
14412
+ # new rollout is scheduled. This can be manually changed before the
14413
+ # scheduled rollout starts.
14414
+ # Ex.
14415
+ # organizations//locations/global/rolloutPlans/
14416
+ # Corresponds to the JSON property `rolloutPlan`
14417
+ # @return [String]
14418
+ attr_accessor :rollout_plan
14419
+
14420
+ def initialize(**args)
14421
+ update!(**args)
14422
+ end
14423
+
14424
+ # Update properties of this object
14425
+ def update!(**args)
14426
+ @rollout_id = args[:rollout_id] if args.key?(:rollout_id)
14427
+ @rollout_plan = args[:rollout_plan] if args.key?(:rollout_plan)
14428
+ end
14429
+ end
14430
+
14431
+ # Represents the status of the progressive rollout instance, either
14432
+ # completed or ongoing.
14433
+ class FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata
14434
+ include Google::Apis::Core::Hashable
14435
+
14436
+ # Output only. [Output only] The name of the rollout
14437
+ # organizations//locations/global/rollouts/
14438
+ # Corresponds to the JSON property `rollout`
14439
+ # @return [String]
14440
+ attr_accessor :rollout
14441
+
14442
+ # Output only. [Output only] The name of the rollout plan used by this rollout
14443
+ # organizations//locations/global/rolloutPlans/
14444
+ # Corresponds to the JSON property `rolloutPlan`
14445
+ # @return [String]
14446
+ attr_accessor :rollout_plan
14447
+
14448
+ # Output only. [Output only] The state of the rollout.
14449
+ # Corresponds to the JSON property `state`
14450
+ # @return [String]
14451
+ attr_accessor :state
14452
+
14453
+ def initialize(**args)
14454
+ update!(**args)
14455
+ end
14456
+
14457
+ # Update properties of this object
14458
+ def update!(**args)
14459
+ @rollout = args[:rollout] if args.key?(:rollout)
14460
+ @rollout_plan = args[:rollout_plan] if args.key?(:rollout_plan)
14461
+ @state = args[:state] if args.key?(:state)
14462
+ end
14463
+ end
14464
+
14254
14465
  # Represents a rule that describes one or more match conditions along with
14255
14466
  # the action to be taken when traffic matches this condition (allow or deny).
14256
14467
  class FirewallPolicyRule
@@ -26711,6 +26922,12 @@ module Google
26711
26922
  # @return [Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAllInstancesConfig]
26712
26923
  attr_accessor :all_instances_config
26713
26924
 
26925
+ # Output only. [Output Only] The accelerator topology applied to this MIG.
26926
+ # Currently only one accelerator topology is supported.
26927
+ # Corresponds to the JSON property `appliedAcceleratorTopologies`
26928
+ # @return [Array<Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopology>]
26929
+ attr_accessor :applied_accelerator_topologies
26930
+
26714
26931
  # Output only. [Output Only] The URL of theAutoscaler
26715
26932
  # that targets this instance group manager.
26716
26933
  # Corresponds to the JSON property `autoscaler`
@@ -26723,6 +26940,14 @@ module Google
26723
26940
  # @return [Google::Apis::ComputeAlpha::InstanceGroupManagerStatusBulkInstanceOperation]
26724
26941
  attr_accessor :bulk_instance_operation
26725
26942
 
26943
+ # The list of instance statuses and the number of instances in this managed
26944
+ # instance group that have the status. For more information about how to
26945
+ # interpret each status check the instance lifecycle documentation.
26946
+ # Currently only shown for TPU MIGs.
26947
+ # Corresponds to the JSON property `currentInstanceStatuses`
26948
+ # @return [Google::Apis::ComputeAlpha::InstanceGroupManagerStatusInstanceStatusSummary]
26949
+ attr_accessor :current_instance_statuses
26950
+
26726
26951
  # Output only. [Output Only] A bit indicating whether the managed instance group
26727
26952
  # is in a
26728
26953
  # stable state. A stable state means that: none of the instances in the
@@ -26755,14 +26980,198 @@ module Google
26755
26980
  # Update properties of this object
26756
26981
  def update!(**args)
26757
26982
  @all_instances_config = args[:all_instances_config] if args.key?(:all_instances_config)
26983
+ @applied_accelerator_topologies = args[:applied_accelerator_topologies] if args.key?(:applied_accelerator_topologies)
26758
26984
  @autoscaler = args[:autoscaler] if args.key?(:autoscaler)
26759
26985
  @bulk_instance_operation = args[:bulk_instance_operation] if args.key?(:bulk_instance_operation)
26986
+ @current_instance_statuses = args[:current_instance_statuses] if args.key?(:current_instance_statuses)
26760
26987
  @is_stable = args[:is_stable] if args.key?(:is_stable)
26761
26988
  @stateful = args[:stateful] if args.key?(:stateful)
26762
26989
  @version_target = args[:version_target] if args.key?(:version_target)
26763
26990
  end
26764
26991
  end
26765
26992
 
26993
+ #
26994
+ class InstanceGroupManagerStatusAcceleratorTopology
26995
+ include Google::Apis::Core::Hashable
26996
+
26997
+ # Output only. [Output Only] Topology in the format of: "16x16", "4x4x4", etc.
26998
+ # The value is the same as configured in the WorkloadPolicy.
26999
+ # Corresponds to the JSON property `acceleratorTopology`
27000
+ # @return [String]
27001
+ attr_accessor :accelerator_topology
27002
+
27003
+ # Output only. [Output Only] The state of the accelerator topology.
27004
+ # Corresponds to the JSON property `state`
27005
+ # @return [String]
27006
+ attr_accessor :state
27007
+
27008
+ # Output only. [Output Only] The result of the latest accelerator topology state
27009
+ # check.
27010
+ # Corresponds to the JSON property `stateDetails`
27011
+ # @return [Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails]
27012
+ attr_accessor :state_details
27013
+
27014
+ def initialize(**args)
27015
+ update!(**args)
27016
+ end
27017
+
27018
+ # Update properties of this object
27019
+ def update!(**args)
27020
+ @accelerator_topology = args[:accelerator_topology] if args.key?(:accelerator_topology)
27021
+ @state = args[:state] if args.key?(:state)
27022
+ @state_details = args[:state_details] if args.key?(:state_details)
27023
+ end
27024
+ end
27025
+
27026
+ #
27027
+ class InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails
27028
+ include Google::Apis::Core::Hashable
27029
+
27030
+ # Output only. [Output Only] Encountered errors.
27031
+ # Corresponds to the JSON property `error`
27032
+ # @return [Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error]
27033
+ attr_accessor :error
27034
+
27035
+ # Output only. [Output Only] Timestamp is shown only if there is an error. The
27036
+ # field
27037
+ # has // RFC3339 //
27038
+ # text format.
27039
+ # Corresponds to the JSON property `timestamp`
27040
+ # @return [String]
27041
+ attr_accessor :timestamp
27042
+
27043
+ def initialize(**args)
27044
+ update!(**args)
27045
+ end
27046
+
27047
+ # Update properties of this object
27048
+ def update!(**args)
27049
+ @error = args[:error] if args.key?(:error)
27050
+ @timestamp = args[:timestamp] if args.key?(:timestamp)
27051
+ end
27052
+
27053
+ # Output only. [Output Only] Encountered errors.
27054
+ class Error
27055
+ include Google::Apis::Core::Hashable
27056
+
27057
+ # [Output Only] The array of errors encountered while processing this
27058
+ # operation.
27059
+ # Corresponds to the JSON property `errors`
27060
+ # @return [Array<Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Error>]
27061
+ attr_accessor :errors
27062
+
27063
+ def initialize(**args)
27064
+ update!(**args)
27065
+ end
27066
+
27067
+ # Update properties of this object
27068
+ def update!(**args)
27069
+ @errors = args[:errors] if args.key?(:errors)
27070
+ end
27071
+
27072
+ #
27073
+ class Error
27074
+ include Google::Apis::Core::Hashable
27075
+
27076
+ # [Output Only] The error type identifier for this error.
27077
+ # Corresponds to the JSON property `code`
27078
+ # @return [String]
27079
+ attr_accessor :code
27080
+
27081
+ # [Output Only] An optional list of messages that contain the error
27082
+ # details. There is a set of defined message types to use for providing
27083
+ # details.The syntax depends on the error code. For example,
27084
+ # QuotaExceededInfo will have details when the error code is
27085
+ # QUOTA_EXCEEDED.
27086
+ # Corresponds to the JSON property `errorDetails`
27087
+ # @return [Array<Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Error::ErrorDetail>]
27088
+ attr_accessor :error_details
27089
+
27090
+ # [Output Only] Indicates the field in the request that caused the error.
27091
+ # This property is optional.
27092
+ # Corresponds to the JSON property `location`
27093
+ # @return [String]
27094
+ attr_accessor :location
27095
+
27096
+ # [Output Only] An optional, human-readable error message.
27097
+ # Corresponds to the JSON property `message`
27098
+ # @return [String]
27099
+ attr_accessor :message
27100
+
27101
+ def initialize(**args)
27102
+ update!(**args)
27103
+ end
27104
+
27105
+ # Update properties of this object
27106
+ def update!(**args)
27107
+ @code = args[:code] if args.key?(:code)
27108
+ @error_details = args[:error_details] if args.key?(:error_details)
27109
+ @location = args[:location] if args.key?(:location)
27110
+ @message = args[:message] if args.key?(:message)
27111
+ end
27112
+
27113
+ #
27114
+ class ErrorDetail
27115
+ include Google::Apis::Core::Hashable
27116
+
27117
+ # Describes the cause of the error with structured details.
27118
+ # Example of an error when contacting the "pubsub.googleapis.com" API when it
27119
+ # is not enabled:
27120
+ # ` "reason": "API_DISABLED"
27121
+ # "domain": "googleapis.com"
27122
+ # "metadata": `
27123
+ # "resource": "projects/123",
27124
+ # "service": "pubsub.googleapis.com"
27125
+ # `
27126
+ # `
27127
+ # This response indicates that the pubsub.googleapis.com API is not enabled.
27128
+ # Example of an error that is returned when attempting to create a Spanner
27129
+ # instance in a region that is out of stock:
27130
+ # ` "reason": "STOCKOUT"
27131
+ # "domain": "spanner.googleapis.com",
27132
+ # "metadata": `
27133
+ # "availableRegions": "us-central1,us-east2"
27134
+ # `
27135
+ # `
27136
+ # Corresponds to the JSON property `errorInfo`
27137
+ # @return [Google::Apis::ComputeAlpha::ErrorInfo]
27138
+ attr_accessor :error_info
27139
+
27140
+ # Provides links to documentation or for performing an out of band action.
27141
+ # For example, if a quota check failed with an error indicating the calling
27142
+ # project hasn't enabled the accessed service, this can contain a URL pointing
27143
+ # directly to the right place in the developer console to flip the bit.
27144
+ # Corresponds to the JSON property `help`
27145
+ # @return [Google::Apis::ComputeAlpha::Help]
27146
+ attr_accessor :help
27147
+
27148
+ # Provides a localized error message that is safe to return to the user
27149
+ # which can be attached to an RPC error.
27150
+ # Corresponds to the JSON property `localizedMessage`
27151
+ # @return [Google::Apis::ComputeAlpha::LocalizedMessage]
27152
+ attr_accessor :localized_message
27153
+
27154
+ # Additional details for quota exceeded error for resource quota.
27155
+ # Corresponds to the JSON property `quotaInfo`
27156
+ # @return [Google::Apis::ComputeAlpha::QuotaExceededInfo]
27157
+ attr_accessor :quota_info
27158
+
27159
+ def initialize(**args)
27160
+ update!(**args)
27161
+ end
27162
+
27163
+ # Update properties of this object
27164
+ def update!(**args)
27165
+ @error_info = args[:error_info] if args.key?(:error_info)
27166
+ @help = args[:help] if args.key?(:help)
27167
+ @localized_message = args[:localized_message] if args.key?(:localized_message)
27168
+ @quota_info = args[:quota_info] if args.key?(:quota_info)
27169
+ end
27170
+ end
27171
+ end
27172
+ end
27173
+ end
27174
+
26766
27175
  #
26767
27176
  class InstanceGroupManagerStatusAllInstancesConfig
26768
27177
  include Google::Apis::Core::Hashable
@@ -26969,6 +27378,132 @@ module Google
26969
27378
  end
26970
27379
  end
26971
27380
 
27381
+ # The list of instance statuses and the number of instances in this managed
27382
+ # instance group that have the status. For more information about how to
27383
+ # interpret each status check the instance lifecycle documentation.
27384
+ # Currently only shown for TPU MIGs.
27385
+ class InstanceGroupManagerStatusInstanceStatusSummary
27386
+ include Google::Apis::Core::Hashable
27387
+
27388
+ # Output only. [Output Only] The number of instances in the managed instance
27389
+ # group
27390
+ # that have DEPROVISIONING status.
27391
+ # Corresponds to the JSON property `deprovisioning`
27392
+ # @return [Fixnum]
27393
+ attr_accessor :deprovisioning
27394
+
27395
+ # Output only. [Output Only] The number of instances that have not been created
27396
+ # yet or
27397
+ # have been deleted. Includes only instances that would be shown in the
27398
+ # listManagedInstances method and not all instances that have been
27399
+ # deleted in the lifetime of the MIG.
27400
+ # Does not include FlexStart instances that are waiting for the resources
27401
+ # availability, they are considered as 'pending'.
27402
+ # Corresponds to the JSON property `nonExistent`
27403
+ # @return [Fixnum]
27404
+ attr_accessor :non_existent
27405
+
27406
+ # Output only. [Output Only] The number of instances in the managed instance
27407
+ # group
27408
+ # that have PENDING status, that is FlexStart instances that are waiting
27409
+ # for resources. Instances that do not exist because of the other reasons
27410
+ # are counted as 'non_existent'.
27411
+ # Corresponds to the JSON property `pending`
27412
+ # @return [Fixnum]
27413
+ attr_accessor :pending
27414
+
27415
+ # Output only. [Output Only] The number of instances in the managed instance
27416
+ # group
27417
+ # that have PENDING_STOP status.
27418
+ # Corresponds to the JSON property `pendingStop`
27419
+ # @return [Fixnum]
27420
+ attr_accessor :pending_stop
27421
+
27422
+ # Output only. [Output Only] The number of instances in the managed instance
27423
+ # group
27424
+ # that have PROVISIONING status.
27425
+ # Corresponds to the JSON property `provisioning`
27426
+ # @return [Fixnum]
27427
+ attr_accessor :provisioning
27428
+
27429
+ # Output only. [Output Only] The number of instances in the managed instance
27430
+ # group
27431
+ # that have REPAIRING status.
27432
+ # Corresponds to the JSON property `repairing`
27433
+ # @return [Fixnum]
27434
+ attr_accessor :repairing
27435
+
27436
+ # Output only. [Output Only] The number of instances in the managed instance
27437
+ # group
27438
+ # that have RUNNING status.
27439
+ # Corresponds to the JSON property `running`
27440
+ # @return [Fixnum]
27441
+ attr_accessor :running
27442
+
27443
+ # Output only. [Output Only] The number of instances in the managed instance
27444
+ # group
27445
+ # that have STAGING status.
27446
+ # Corresponds to the JSON property `staging`
27447
+ # @return [Fixnum]
27448
+ attr_accessor :staging
27449
+
27450
+ # Output only. [Output Only] The number of instances in the managed instance
27451
+ # group
27452
+ # that have STOPPED status.
27453
+ # Corresponds to the JSON property `stopped`
27454
+ # @return [Fixnum]
27455
+ attr_accessor :stopped
27456
+
27457
+ # Output only. [Output Only] The number of instances in the managed instance
27458
+ # group
27459
+ # that have STOPPING status.
27460
+ # Corresponds to the JSON property `stopping`
27461
+ # @return [Fixnum]
27462
+ attr_accessor :stopping
27463
+
27464
+ # Output only. [Output Only] The number of instances in the managed instance
27465
+ # group
27466
+ # that have SUSPENDED status.
27467
+ # Corresponds to the JSON property `suspended`
27468
+ # @return [Fixnum]
27469
+ attr_accessor :suspended
27470
+
27471
+ # Output only. [Output Only] The number of instances in the managed instance
27472
+ # group
27473
+ # that have SUSPENDING status.
27474
+ # Corresponds to the JSON property `suspending`
27475
+ # @return [Fixnum]
27476
+ attr_accessor :suspending
27477
+
27478
+ # Output only. [Output Only] The number of instances in the managed instance
27479
+ # group
27480
+ # that have TERMINATED status.
27481
+ # Corresponds to the JSON property `terminated`
27482
+ # @return [Fixnum]
27483
+ attr_accessor :terminated
27484
+
27485
+ def initialize(**args)
27486
+ update!(**args)
27487
+ end
27488
+
27489
+ # Update properties of this object
27490
+ def update!(**args)
27491
+ @deprovisioning = args[:deprovisioning] if args.key?(:deprovisioning)
27492
+ @non_existent = args[:non_existent] if args.key?(:non_existent)
27493
+ @pending = args[:pending] if args.key?(:pending)
27494
+ @pending_stop = args[:pending_stop] if args.key?(:pending_stop)
27495
+ @provisioning = args[:provisioning] if args.key?(:provisioning)
27496
+ @repairing = args[:repairing] if args.key?(:repairing)
27497
+ @running = args[:running] if args.key?(:running)
27498
+ @staging = args[:staging] if args.key?(:staging)
27499
+ @stopped = args[:stopped] if args.key?(:stopped)
27500
+ @stopping = args[:stopping] if args.key?(:stopping)
27501
+ @suspended = args[:suspended] if args.key?(:suspended)
27502
+ @suspending = args[:suspending] if args.key?(:suspending)
27503
+ @terminated = args[:terminated] if args.key?(:terminated)
27504
+ end
27505
+ end
27506
+
26972
27507
  #
26973
27508
  class InstanceGroupManagerStatusStateful
26974
27509
  include Google::Apis::Core::Hashable
@@ -36701,9 +37236,11 @@ module Google
36701
37236
  # Input only. Resource manager tags to be bound to the license. Tag keys and
36702
37237
  # values
36703
37238
  # have the same definition as resource
36704
- # manager tags. Keys must be in the format `tagKeys/`tag_key_id``, and
36705
- # values are in the format `tagValues/`tag_value_id``. The field is ignored
36706
- # (both PUT & PATCH) when empty.
37239
+ # manager tags. Keys and values can be either in numeric format,
37240
+ # such as `tagKeys/`tag_key_id`` and `tagValues/456` or in namespaced
37241
+ # format such as ``org_id|project_id`/`tag_key_short_name`` and
37242
+ # ``tag_value_short_name``. The field is ignored (both PUT &
37243
+ # PATCH) when empty.
36707
37244
  # Corresponds to the JSON property `resourceManagerTags`
36708
37245
  # @return [Hash<String,String>]
36709
37246
  attr_accessor :resource_manager_tags
@@ -37680,6 +38217,18 @@ module Google
37680
38217
  # @return [Array<String>]
37681
38218
  attr_accessor :included_disks
37682
38219
 
38220
+ # Input only. Resource manager tags to be bound to the machine image. Tag keys
38221
+ # and values
38222
+ # have the same definition as resource
38223
+ # manager tags. Keys and values can be either in numeric format,
38224
+ # such as `tagKeys/`tag_key_id`` and `tagValues/456` or in namespaced
38225
+ # format such as ``org_id|project_id`/`tag_key_short_name`` and
38226
+ # ``tag_value_short_name``. The field is ignored (both PUT &
38227
+ # PATCH) when empty.
38228
+ # Corresponds to the JSON property `resourceManagerTags`
38229
+ # @return [Hash<String,String>]
38230
+ attr_accessor :resource_manager_tags
38231
+
37683
38232
  def initialize(**args)
37684
38233
  update!(**args)
37685
38234
  end
@@ -37688,6 +38237,7 @@ module Google
37688
38237
  def update!(**args)
37689
38238
  @excluded_disks = args[:excluded_disks] if args.key?(:excluded_disks)
37690
38239
  @included_disks = args[:included_disks] if args.key?(:included_disks)
38240
+ @resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
37691
38241
  end
37692
38242
  end
37693
38243
 
@@ -39071,8 +39621,7 @@ module Google
39071
39621
  # @return [String]
39072
39622
  attr_accessor :kind
39073
39623
 
39074
- # Output only. [Output Only] The name of this multi-MIG member generated by
39075
- # Google Compute Engine.
39624
+ # Output only. [Output Only] Server-defined name for the multi-MIG member.
39076
39625
  # Corresponds to the JSON property `name`
39077
39626
  # @return [String]
39078
39627
  attr_accessor :name
@@ -56037,6 +56586,11 @@ module Google
56037
56586
  # @return [String]
56038
56587
  attr_accessor :self_link_with_id
56039
56588
 
56589
+ # The share setting for reservations and sole tenancy node groups.
56590
+ # Corresponds to the JSON property `shareSettings`
56591
+ # @return [Google::Apis::ComputeAlpha::ShareSettings]
56592
+ attr_accessor :share_settings
56593
+
56040
56594
  # Output only. [Output Only] State of the reservation slot.
56041
56595
  # Corresponds to the JSON property `state`
56042
56596
  # @return [String]
@@ -56065,6 +56619,7 @@ module Google
56065
56619
  @name = args[:name] if args.key?(:name)
56066
56620
  @self_link = args[:self_link] if args.key?(:self_link)
56067
56621
  @self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
56622
+ @share_settings = args[:share_settings] if args.key?(:share_settings)
56068
56623
  @state = args[:state] if args.key?(:state)
56069
56624
  @status = args[:status] if args.key?(:status)
56070
56625
  @zone = args[:zone] if args.key?(:zone)
@@ -69926,9 +70481,11 @@ module Google
69926
70481
  # Input only. Resource manager tags to be bound to the storage pool. Tag keys
69927
70482
  # and values
69928
70483
  # have the same definition as resource
69929
- # manager tags. Keys must be in the format `tagKeys/`tag_key_id``, and
69930
- # values are in the format `tagValues/`tag_value_id``. The field is ignored
69931
- # (both PUT & PATCH) when empty.
70484
+ # manager tags. Keys and values can be either in numeric format,
70485
+ # such as `tagKeys/`tag_key_id`` and `tagValues/456` or in namespaced
70486
+ # format such as ``org_id|project_id`/`tag_key_short_name`` and
70487
+ # ``tag_value_short_name``. The field is ignored (both PUT &
70488
+ # PATCH) when empty.
69932
70489
  # Corresponds to the JSON property `resourceManagerTags`
69933
70490
  # @return [Hash<String,String>]
69934
70491
  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.128.0"
19
+ GEM_VERSION = "0.129.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 = "20251210"
25
+ REVISION = "20251230"
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
 
@@ -12083,6 +12161,23 @@ module Google
12083
12161
  end
12084
12162
  end
12085
12163
 
12164
+ class CompositeHealthChecksGetHealthResponse
12165
+ # @private
12166
+ class Representation < Google::Apis::Core::JsonRepresentation
12167
+ collection :health_sources, as: 'healthSources', class: Google::Apis::ComputeAlpha::CompositeHealthChecksGetHealthResponseHealthSourceHealth, decorator: Google::Apis::ComputeAlpha::CompositeHealthChecksGetHealthResponseHealthSourceHealth::Representation
12168
+
12169
+ property :health_state, as: 'healthState'
12170
+ end
12171
+ end
12172
+
12173
+ class CompositeHealthChecksGetHealthResponseHealthSourceHealth
12174
+ # @private
12175
+ class Representation < Google::Apis::Core::JsonRepresentation
12176
+ property :health_state, as: 'healthState'
12177
+ property :source, as: 'source'
12178
+ end
12179
+ end
12180
+
12086
12181
  class CompositeHealthChecksScopedList
12087
12182
  # @private
12088
12183
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -13016,6 +13111,8 @@ module Google
13016
13111
  property :policy_source, as: 'policySource'
13017
13112
  property :policy_type, as: 'policyType'
13018
13113
  property :region, as: 'region'
13114
+ property :rollout_operation, as: 'rolloutOperation', class: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperation, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperation::Representation
13115
+
13019
13116
  property :rule_tuple_count, as: 'ruleTupleCount'
13020
13117
  collection :rules, as: 'rules', class: Google::Apis::ComputeAlpha::FirewallPolicyRule, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRule::Representation
13021
13118
 
@@ -13069,6 +13166,54 @@ module Google
13069
13166
  end
13070
13167
  end
13071
13168
 
13169
+ class FirewallPolicyRolloutOperation
13170
+ # @private
13171
+ class Representation < Google::Apis::Core::JsonRepresentation
13172
+ property :rollout_input, as: 'rolloutInput', class: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutInput, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutInput::Representation
13173
+
13174
+ property :rollout_status, as: 'rolloutStatus', class: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatus, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatus::Representation
13175
+
13176
+ end
13177
+ end
13178
+
13179
+ class FirewallPolicyRolloutOperationRolloutInput
13180
+ # @private
13181
+ class Representation < Google::Apis::Core::JsonRepresentation
13182
+ property :name, as: 'name'
13183
+ property :predefined_rollout_plan, as: 'predefinedRolloutPlan'
13184
+ property :retry_uuid, as: 'retryUuid'
13185
+ end
13186
+ end
13187
+
13188
+ class FirewallPolicyRolloutOperationRolloutStatus
13189
+ # @private
13190
+ class Representation < Google::Apis::Core::JsonRepresentation
13191
+ property :next_rollout, as: 'nextRollout', class: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusNextRollout, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusNextRollout::Representation
13192
+
13193
+ collection :ongoing_rollouts, as: 'ongoingRollouts', class: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata::Representation
13194
+
13195
+ property :previous_rollout, as: 'previousRollout', class: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata::Representation
13196
+
13197
+ end
13198
+ end
13199
+
13200
+ class FirewallPolicyRolloutOperationRolloutStatusNextRollout
13201
+ # @private
13202
+ class Representation < Google::Apis::Core::JsonRepresentation
13203
+ property :rollout_id, as: 'rolloutId'
13204
+ property :rollout_plan, as: 'rolloutPlan'
13205
+ end
13206
+ end
13207
+
13208
+ class FirewallPolicyRolloutOperationRolloutStatusRolloutMetadata
13209
+ # @private
13210
+ class Representation < Google::Apis::Core::JsonRepresentation
13211
+ property :rollout, as: 'rollout'
13212
+ property :rollout_plan, as: 'rolloutPlan'
13213
+ property :state, as: 'state'
13214
+ end
13215
+ end
13216
+
13072
13217
  class FirewallPolicyRule
13073
13218
  # @private
13074
13219
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -15822,9 +15967,13 @@ module Google
15822
15967
  class Representation < Google::Apis::Core::JsonRepresentation
15823
15968
  property :all_instances_config, as: 'allInstancesConfig', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAllInstancesConfig, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAllInstancesConfig::Representation
15824
15969
 
15970
+ collection :applied_accelerator_topologies, as: 'appliedAcceleratorTopologies', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopology, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopology::Representation
15971
+
15825
15972
  property :autoscaler, as: 'autoscaler'
15826
15973
  property :bulk_instance_operation, as: 'bulkInstanceOperation', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusBulkInstanceOperation, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusBulkInstanceOperation::Representation
15827
15974
 
15975
+ property :current_instance_statuses, as: 'currentInstanceStatuses', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusInstanceStatusSummary, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusInstanceStatusSummary::Representation
15976
+
15828
15977
  property :is_stable, as: 'isStable'
15829
15978
  property :stateful, as: 'stateful', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusStateful, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusStateful::Representation
15830
15979
 
@@ -15833,6 +15982,58 @@ module Google
15833
15982
  end
15834
15983
  end
15835
15984
 
15985
+ class InstanceGroupManagerStatusAcceleratorTopology
15986
+ # @private
15987
+ class Representation < Google::Apis::Core::JsonRepresentation
15988
+ property :accelerator_topology, as: 'acceleratorTopology'
15989
+ property :state, as: 'state'
15990
+ property :state_details, as: 'stateDetails', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Representation
15991
+
15992
+ end
15993
+ end
15994
+
15995
+ class InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails
15996
+ # @private
15997
+ class Representation < Google::Apis::Core::JsonRepresentation
15998
+ property :error, as: 'error', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Representation
15999
+
16000
+ property :timestamp, as: 'timestamp'
16001
+ end
16002
+
16003
+ class Error
16004
+ # @private
16005
+ class Representation < Google::Apis::Core::JsonRepresentation
16006
+ collection :errors, as: 'errors', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Error, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Error::Representation
16007
+
16008
+ end
16009
+
16010
+ class Error
16011
+ # @private
16012
+ class Representation < Google::Apis::Core::JsonRepresentation
16013
+ property :code, as: 'code'
16014
+ collection :error_details, as: 'errorDetails', class: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Error::ErrorDetail, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails::Error::Error::ErrorDetail::Representation
16015
+
16016
+ property :location, as: 'location'
16017
+ property :message, as: 'message'
16018
+ end
16019
+
16020
+ class ErrorDetail
16021
+ # @private
16022
+ class Representation < Google::Apis::Core::JsonRepresentation
16023
+ property :error_info, as: 'errorInfo', class: Google::Apis::ComputeAlpha::ErrorInfo, decorator: Google::Apis::ComputeAlpha::ErrorInfo::Representation
16024
+
16025
+ property :help, as: 'help', class: Google::Apis::ComputeAlpha::Help, decorator: Google::Apis::ComputeAlpha::Help::Representation
16026
+
16027
+ property :localized_message, as: 'localizedMessage', class: Google::Apis::ComputeAlpha::LocalizedMessage, decorator: Google::Apis::ComputeAlpha::LocalizedMessage::Representation
16028
+
16029
+ property :quota_info, as: 'quotaInfo', class: Google::Apis::ComputeAlpha::QuotaExceededInfo, decorator: Google::Apis::ComputeAlpha::QuotaExceededInfo::Representation
16030
+
16031
+ end
16032
+ end
16033
+ end
16034
+ end
16035
+ end
16036
+
15836
16037
  class InstanceGroupManagerStatusAllInstancesConfig
15837
16038
  # @private
15838
16039
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -15892,6 +16093,25 @@ module Google
15892
16093
  end
15893
16094
  end
15894
16095
 
16096
+ class InstanceGroupManagerStatusInstanceStatusSummary
16097
+ # @private
16098
+ class Representation < Google::Apis::Core::JsonRepresentation
16099
+ property :deprovisioning, as: 'deprovisioning'
16100
+ property :non_existent, as: 'nonExistent'
16101
+ property :pending, as: 'pending'
16102
+ property :pending_stop, as: 'pendingStop'
16103
+ property :provisioning, as: 'provisioning'
16104
+ property :repairing, as: 'repairing'
16105
+ property :running, as: 'running'
16106
+ property :staging, as: 'staging'
16107
+ property :stopped, as: 'stopped'
16108
+ property :stopping, as: 'stopping'
16109
+ property :suspended, as: 'suspended'
16110
+ property :suspending, as: 'suspending'
16111
+ property :terminated, as: 'terminated'
16112
+ end
16113
+ end
16114
+
15895
16115
  class InstanceGroupManagerStatusStateful
15896
16116
  # @private
15897
16117
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -18449,6 +18669,7 @@ module Google
18449
18669
  class Representation < Google::Apis::Core::JsonRepresentation
18450
18670
  collection :excluded_disks, as: 'excludedDisks'
18451
18671
  collection :included_disks, as: 'includedDisks'
18672
+ hash :resource_manager_tags, as: 'resourceManagerTags'
18452
18673
  end
18453
18674
  end
18454
18675
 
@@ -22877,6 +23098,8 @@ module Google
22877
23098
  property :name, as: 'name'
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
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.128.0
4
+ version: 0.129.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.128.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.129.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: