google-apis-compute_alpha 0.144.0 → 0.146.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: e5f50e720e1082ac7560ce6a4261a5c9a70fe1512b7761cdc83a14eb89d6a614
4
- data.tar.gz: f7bc8b0d6fb07ed5ea7fbb58df184227de1fbcae71db82b48cbcc979230e8c03
3
+ metadata.gz: 06fce94c12f3452e4933f1c6cab30c9155444ab393648c1738f3b50de5e6644a
4
+ data.tar.gz: 660c722344a6c7089a004f1d75f72a2155f6d88247af8381d29a63f12581d8af
5
5
  SHA512:
6
- metadata.gz: c304949635d21491281e954d89a9cf40fc6f1b6e8f80e1e0e90707cfbf48da060bd6a0b98ae3a3a4f0b6a8ce301a8744a56534a24196ba3275a14024792fac70
7
- data.tar.gz: '084e6eecffe28514c43bc1daccc2e8bcfffef4d135799713f671e70f1bf0dd82c194616ac99cbc4d3f98b584b2eb1d7f16b18da4d68e50520a0c6fa3698dc279'
6
+ metadata.gz: 4610d98b466f0addd2033cc4161f5a191920c6bf532e0856519e47e68147dc3681a29616dc8dcebc268f33b0e4606a7273e3478b44847bd7f520e4b8f8da72b6
7
+ data.tar.gz: 7ee7bf64fdb09f6251e60c2271a9e8ca8f7f53cb5b1a7be8bf328a1396a03924f7890529e209cf3e65ed64ace6abb8b13039b136d74e69dc3c2d2991e6885592
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-compute_alpha
2
2
 
3
+ ### v0.146.0 (2026-09-20)
4
+
5
+ * Regenerated from discovery document revision 20260910
6
+
7
+ ### v0.145.0 (2026-09-06)
8
+
9
+ * Regenerated from discovery document revision 20260828
10
+
3
11
  ### v0.144.0 (2026-08-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20260821
@@ -5493,6 +5493,13 @@ module Google
5493
5493
  # @return [String]
5494
5494
  attr_accessor :network
5495
5495
 
5496
+ # Optional. The URL of the network attachment that this resource
5497
+ # belongs to.projects/`project`/regions/`region_name`/networkAttachments/`
5498
+ # network_attachment_name`.
5499
+ # Corresponds to the JSON property `networkAttachment`
5500
+ # @return [String]
5501
+ attr_accessor :network_attachment
5502
+
5496
5503
  # Configures traffic steering properties of internal passthrough Network
5497
5504
  # Load Balancers.
5498
5505
  # networkPassThroughLbTrafficPolicy cannot be specified with haPolicy.
@@ -5587,6 +5594,15 @@ module Google
5587
5594
  # @return [Array<String>]
5588
5595
  attr_accessor :service_bindings
5589
5596
 
5597
+ # Optional. The service class ID associated with this resource.
5598
+ # Producer Service's Service class ID for the region of this backend
5599
+ # service. Can only be used with network_attachment. It is not possible to
5600
+ # use on its own; however, network_attachment can be used without
5601
+ # service_class_id.
5602
+ # Corresponds to the JSON property `serviceClassId`
5603
+ # @return [String]
5604
+ attr_accessor :service_class_id
5605
+
5590
5606
  # URL to networkservices.ServiceLbPolicy resource.
5591
5607
  # Can only be set if load balancing scheme is EXTERNAL_MANAGED,
5592
5608
  # INTERNAL_MANAGED or INTERNAL_SELF_MANAGED for a global backend service, and
@@ -5690,6 +5706,7 @@ module Google
5690
5706
  @metadatas = args[:metadatas] if args.key?(:metadatas)
5691
5707
  @name = args[:name] if args.key?(:name)
5692
5708
  @network = args[:network] if args.key?(:network)
5709
+ @network_attachment = args[:network_attachment] if args.key?(:network_attachment)
5693
5710
  @network_pass_through_lb_traffic_policy = args[:network_pass_through_lb_traffic_policy] if args.key?(:network_pass_through_lb_traffic_policy)
5694
5711
  @orchestration_info = args[:orchestration_info] if args.key?(:orchestration_info)
5695
5712
  @outlier_detection = args[:outlier_detection] if args.key?(:outlier_detection)
@@ -5703,6 +5720,7 @@ module Google
5703
5720
  @self_link = args[:self_link] if args.key?(:self_link)
5704
5721
  @self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
5705
5722
  @service_bindings = args[:service_bindings] if args.key?(:service_bindings)
5723
+ @service_class_id = args[:service_class_id] if args.key?(:service_class_id)
5706
5724
  @service_lb_policy = args[:service_lb_policy] if args.key?(:service_lb_policy)
5707
5725
  @session_affinity = args[:session_affinity] if args.key?(:session_affinity)
5708
5726
  @strong_session_affinity_cookie = args[:strong_session_affinity_cookie] if args.key?(:strong_session_affinity_cookie)
@@ -6514,7 +6532,8 @@ module Google
6514
6532
  # The name of the VM instance of the leader network endpoint. The
6515
6533
  # instance must already be attached to the NEG specified in the
6516
6534
  # haPolicy.leader.backendGroup.
6517
- # The name must be 1-63 characters long, and comply with RFC1035.
6535
+ # The value must be a valid RFC1035 name (1-63 characters) or a valid
6536
+ # instance URL.
6518
6537
  # Authorization requires the following IAM permission on the
6519
6538
  # specified resource instance: compute.instances.use
6520
6539
  # Corresponds to the JSON property `instance`
@@ -8677,18 +8696,18 @@ module Google
8677
8696
  end
8678
8697
  end
8679
8698
 
8680
- # A request to recommend the best duration for extending an existing
8681
- # Future Reservation in CALENDAR mode, that is equal or less than the specified
8682
- # extension duration.
8699
+ # A request to recommend the maximum duration for extending an existing future
8700
+ # reservation in calendar mode. The recommended duration is shorter than or
8701
+ # equal to the specified extension duration.
8683
8702
  class CalendarModeExtensionAdviceRequest
8684
8703
  include Google::Apis::Core::Hashable
8685
8704
 
8686
- # Required. The desired end time after the Future Reservation is extended.
8705
+ # Required. The desired end time for the extension.
8687
8706
  # Corresponds to the JSON property `endTimeNotLaterThan`
8688
8707
  # @return [String]
8689
8708
  attr_accessor :end_time_not_later_than
8690
8709
 
8691
- # Required. Reference to the Future Reservation, in the format:
8710
+ # Required. Reference to the future reservation, in the format:
8692
8711
  # projects/`project`/zones/`zone`/futureReservations/`name`
8693
8712
  # Full URIs that include hostnames (like compute.googleapis.com or
8694
8713
  # www.googleapis.com) are also supported.
@@ -8707,16 +8726,16 @@ module Google
8707
8726
  end
8708
8727
  end
8709
8728
 
8710
- # A response containing the recommended duration to extend a
8711
- # Future Reservation in CALENDAR mode based on the available capacity during
8712
- # the extension period.
8729
+ # A response that contains the recommended duration for extending
8730
+ # a future reservation in calendar mode based on available capacity
8731
+ # during the extension period.
8713
8732
  class CalendarModeExtensionAdviceResponse
8714
8733
  include Google::Apis::Core::Hashable
8715
8734
 
8716
- # The recommended end time for the extension, which will either be
8717
- # the end time requested by the caller or the longest alternative for
8718
- # which there is sufficient capacity. If extension is not possible, this
8719
- # field will be empty, and not_recommended_reason will be populated instead.
8735
+ # The recommended end time for the extension, which is either the end time
8736
+ # requested by the caller or the longest alternative with sufficient
8737
+ # capacity. If the extension is not possible, this field is empty, and
8738
+ # notRecommendedReason is populated instead.
8720
8739
  # Corresponds to the JSON property `endTime`
8721
8740
  # @return [String]
8722
8741
  attr_accessor :end_time
@@ -8726,7 +8745,8 @@ module Google
8726
8745
  # @return [Google::Apis::ComputeAlpha::CalendarModeExtensionAdviceResponseNotRecommendedReason]
8727
8746
  attr_accessor :not_recommended_reason
8728
8747
 
8729
- # Unique id of the recommendation, a UUID string generated by the API.
8748
+ # The unique ID of the recommendation, which is a UUID string generated by
8749
+ # the API.
8730
8750
  # Corresponds to the JSON property `recommendationId`
8731
8751
  # @return [String]
8732
8752
  attr_accessor :recommendation_id
@@ -8747,10 +8767,9 @@ module Google
8747
8767
  class CalendarModeExtensionAdviceResponseNotRecommendedReason
8748
8768
  include Google::Apis::Core::Hashable
8749
8769
 
8750
- # Details (human readable) describing why the recommendation
8751
- # was not provided. For example, if the status is CONDITION_NOT_MET,
8752
- # then this field will contain information about why the requested
8753
- # extension duration is not eligible.
8770
+ # Human-readable details describing why the recommendation wasn't provided.
8771
+ # For example, if the status is CONDITIONS_NOT_MET, this field explains why
8772
+ # the requested extension duration isn't possible.
8754
8773
  # Corresponds to the JSON property `details`
8755
8774
  # @return [String]
8756
8775
  attr_accessor :details
@@ -8956,6 +8975,13 @@ module Google
8956
8975
  # @return [Array<String>]
8957
8976
  attr_accessor :machine_types
8958
8977
 
8978
+ # Optional. Rank when prioritizing the shape flexibilities.
8979
+ # The instance selections are considered in the ascending order of the
8980
+ # rank. If not set, defaults to 0.
8981
+ # Corresponds to the JSON property `rank`
8982
+ # @return [Fixnum]
8983
+ attr_accessor :rank
8984
+
8959
8985
  def initialize(**args)
8960
8986
  update!(**args)
8961
8987
  end
@@ -8965,6 +8991,7 @@ module Google
8965
8991
  @disks = args[:disks] if args.key?(:disks)
8966
8992
  @guest_accelerators = args[:guest_accelerators] if args.key?(:guest_accelerators)
8967
8993
  @machine_types = args[:machine_types] if args.key?(:machine_types)
8994
+ @rank = args[:rank] if args.key?(:rank)
8968
8995
  end
8969
8996
  end
8970
8997
 
@@ -9205,6 +9232,16 @@ module Google
9205
9232
  class CapacityHistoryRequestInstanceProperties
9206
9233
  include Google::Apis::Core::Hashable
9207
9234
 
9235
+ # Local SSDs.
9236
+ # Corresponds to the JSON property `disks`
9237
+ # @return [Array<Google::Apis::ComputeAlpha::CapacityHistoryRequestInstancePropertiesAttachedDisk>]
9238
+ attr_accessor :disks
9239
+
9240
+ # Accelerators configuration.
9241
+ # Corresponds to the JSON property `guestAccelerators`
9242
+ # @return [Array<Google::Apis::ComputeAlpha::AcceleratorConfig>]
9243
+ attr_accessor :guest_accelerators
9244
+
9208
9245
  # The machine type for the VM, such as `n2-standard-4`.
9209
9246
  # Corresponds to the JSON property `machineType`
9210
9247
  # @return [String]
@@ -9221,11 +9258,32 @@ module Google
9221
9258
 
9222
9259
  # Update properties of this object
9223
9260
  def update!(**args)
9261
+ @disks = args[:disks] if args.key?(:disks)
9262
+ @guest_accelerators = args[:guest_accelerators] if args.key?(:guest_accelerators)
9224
9263
  @machine_type = args[:machine_type] if args.key?(:machine_type)
9225
9264
  @scheduling = args[:scheduling] if args.key?(:scheduling)
9226
9265
  end
9227
9266
  end
9228
9267
 
9268
+ # AttachedDisk modeled after Instance's AttachedDisk.
9269
+ class CapacityHistoryRequestInstancePropertiesAttachedDisk
9270
+ include Google::Apis::Core::Hashable
9271
+
9272
+ # Specifies the type of the disk.
9273
+ # Corresponds to the JSON property `type`
9274
+ # @return [String]
9275
+ attr_accessor :type
9276
+
9277
+ def initialize(**args)
9278
+ update!(**args)
9279
+ end
9280
+
9281
+ # Update properties of this object
9282
+ def update!(**args)
9283
+ @type = args[:type] if args.key?(:type)
9284
+ end
9285
+ end
9286
+
9229
9287
  # Scheduling options.
9230
9288
  class CapacityHistoryRequestInstancePropertiesScheduling
9231
9289
  include Google::Apis::Core::Hashable
@@ -9727,7 +9785,8 @@ module Google
9727
9785
  # GENERAL_PURPOSE,GENERAL_PURPOSE_C4, GENERAL_PURPOSE_E2,GENERAL_PURPOSE_N2,
9728
9786
  # GENERAL_PURPOSE_N2D,GENERAL_PURPOSE_N4, GENERAL_PURPOSE_T2D,GRAPHICS_OPTIMIZED,
9729
9787
  # GRAPHICS_OPTIMIZED_G4,GRAPHICS_OPTIMIZED_G4_VGPU,MEMORY_OPTIMIZED,
9730
- # MEMORY_OPTIMIZED_M3,MEMORY_OPTIMIZED_X4, STORAGE_OPTIMIZED_Z3. For
9788
+ # MEMORY_OPTIMIZED_M3,MEMORY_OPTIMIZED_X4, STORAGE_OPTIMIZED_Z3,
9789
+ # STORAGE_OPTIMIZED_Z4DS, STORAGE_OPTIMIZED_Z4DH,STORAGE_OPTIMIZED_Z4D4T. For
9731
9790
  # example, type MEMORY_OPTIMIZED specifies a commitment that
9732
9791
  # applies only to eligible resources of memory optimized M1 and M2 machine
9733
9792
  # series. Type GENERAL_PURPOSE specifies a commitment that
@@ -14126,6 +14185,11 @@ module Google
14126
14185
  class DistributionPolicyZoneConfiguration
14127
14186
  include Google::Apis::Core::Hashable
14128
14187
 
14188
+ # Encapsulates numeric value that can be either absolute or relative.
14189
+ # Corresponds to the JSON property `maxSize`
14190
+ # @return [Google::Apis::ComputeAlpha::FixedOrPercent]
14191
+ attr_accessor :max_size
14192
+
14129
14193
  # The URL of thezone.
14130
14194
  # The zone must exist in the region where the managed instance group is
14131
14195
  # located.
@@ -14139,6 +14203,7 @@ module Google
14139
14203
 
14140
14204
  # Update properties of this object
14141
14205
  def update!(**args)
14206
+ @max_size = args[:max_size] if args.key?(:max_size)
14142
14207
  @zone = args[:zone] if args.key?(:zone)
14143
14208
  end
14144
14209
  end
@@ -14176,6 +14241,26 @@ module Google
14176
14241
  end
14177
14242
  end
14178
14243
 
14244
+ # Dynamic compression policy for this URL Map's route.
14245
+ class DynamicCompressionPolicy
14246
+ include Google::Apis::Core::Hashable
14247
+
14248
+ # Compress text responses using Brotli or gzip compression, based on
14249
+ # the client's Accept-Encoding header.
14250
+ # Corresponds to the JSON property `compressionMode`
14251
+ # @return [String]
14252
+ attr_accessor :compression_mode
14253
+
14254
+ def initialize(**args)
14255
+ update!(**args)
14256
+ end
14257
+
14258
+ # Update properties of this object
14259
+ def update!(**args)
14260
+ @compression_mode = args[:compression_mode] if args.key?(:compression_mode)
14261
+ end
14262
+ end
14263
+
14179
14264
  # Describes the cause of the error with structured details.
14180
14265
  # Example of an error when contacting the "pubsub.googleapis.com" API when it
14181
14266
  # is not enabled:
@@ -17039,6 +17124,13 @@ module Google
17039
17124
  # @return [String]
17040
17125
  attr_accessor :network
17041
17126
 
17127
+ # Optional. The URL of the network attachment that this resource
17128
+ # belongs to.projects/`project`/regions/`region_name`/networkAttachments/`
17129
+ # network_attachment_name`.
17130
+ # Corresponds to the JSON property `networkAttachment`
17131
+ # @return [String]
17132
+ attr_accessor :network_attachment
17133
+
17042
17134
  # This signifies the networking tier used for configuring
17043
17135
  # this load balancer and can only take the following values:PREMIUM, STANDARD.
17044
17136
  # For regional ForwardingRule, the valid values are PREMIUM andSTANDARD. For
@@ -17147,6 +17239,14 @@ module Google
17147
17239
  # @return [String]
17148
17240
  attr_accessor :self_link_with_id
17149
17241
 
17242
+ # Optional. Producer Service's Service class ID for the region of this
17243
+ # forwarding rule.
17244
+ # Can only be used with network_attachment. It is not possible to use on its
17245
+ # own; however, network_attachment can be used without service_class_id.
17246
+ # Corresponds to the JSON property `serviceClassId`
17247
+ # @return [String]
17248
+ attr_accessor :service_class_id
17249
+
17150
17250
  # Service Directory resources to register this forwarding rule with.
17151
17251
  # Currently, only supports a single Service Directory resource.
17152
17252
  # Corresponds to the JSON property `serviceDirectoryRegistrations`
@@ -17260,6 +17360,7 @@ module Google
17260
17360
  @metadata_filters = args[:metadata_filters] if args.key?(:metadata_filters)
17261
17361
  @name = args[:name] if args.key?(:name)
17262
17362
  @network = args[:network] if args.key?(:network)
17363
+ @network_attachment = args[:network_attachment] if args.key?(:network_attachment)
17263
17364
  @network_tier = args[:network_tier] if args.key?(:network_tier)
17264
17365
  @no_automate_dns_zone = args[:no_automate_dns_zone] if args.key?(:no_automate_dns_zone)
17265
17366
  @parent_forwarding_rule = args[:parent_forwarding_rule] if args.key?(:parent_forwarding_rule)
@@ -17270,6 +17371,7 @@ module Google
17270
17371
  @region = args[:region] if args.key?(:region)
17271
17372
  @self_link = args[:self_link] if args.key?(:self_link)
17272
17373
  @self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
17374
+ @service_class_id = args[:service_class_id] if args.key?(:service_class_id)
17273
17375
  @service_directory_registrations = args[:service_directory_registrations] if args.key?(:service_directory_registrations)
17274
17376
  @service_label = args[:service_label] if args.key?(:service_label)
17275
17377
  @service_name = args[:service_name] if args.key?(:service_name)
@@ -19360,7 +19462,7 @@ module Google
19360
19462
  # @return [String]
19361
19463
  attr_accessor :description
19362
19464
 
19363
- # Output only. For optimistic locking
19465
+ # Output only. For optimistic locking.
19364
19466
  # Corresponds to the JSON property `etag`
19365
19467
  # @return [String]
19366
19468
  attr_accessor :etag
@@ -25644,6 +25746,11 @@ module Google
25644
25746
  # @return [Google::Apis::ComputeAlpha::CorsPolicy]
25645
25747
  attr_accessor :cors_policy
25646
25748
 
25749
+ # Dynamic compression policy for this URL Map's route.
25750
+ # Corresponds to the JSON property `dynamicCompressionPolicy`
25751
+ # @return [Google::Apis::ComputeAlpha::DynamicCompressionPolicy]
25752
+ attr_accessor :dynamic_compression_policy
25753
+
25647
25754
  # The specification for fault injection introduced into traffic to test
25648
25755
  # the resiliency of clients to backend service failure. As part of fault
25649
25756
  # injection, when clients send requests to a backend service, delays can be
@@ -25721,6 +25828,7 @@ module Google
25721
25828
  def update!(**args)
25722
25829
  @cache_policy = args[:cache_policy] if args.key?(:cache_policy)
25723
25830
  @cors_policy = args[:cors_policy] if args.key?(:cors_policy)
25831
+ @dynamic_compression_policy = args[:dynamic_compression_policy] if args.key?(:dynamic_compression_policy)
25724
25832
  @fault_injection_policy = args[:fault_injection_policy] if args.key?(:fault_injection_policy)
25725
25833
  @image_optimization_policy = args[:image_optimization_policy] if args.key?(:image_optimization_policy)
25726
25834
  @max_stream_duration = args[:max_stream_duration] if args.key?(:max_stream_duration)
@@ -26870,7 +26978,7 @@ module Google
26870
26978
  class ImageViewsListResponse
26871
26979
  include Google::Apis::Core::Hashable
26872
26980
 
26873
- #
26981
+ # Etag of the resource.
26874
26982
  # Corresponds to the JSON property `etag`
26875
26983
  # @return [String]
26876
26984
  attr_accessor :etag
@@ -28891,6 +28999,11 @@ module Google
28891
28999
  class InstanceGroupManagerInstanceFlexibilityPolicy
28892
29000
  include Google::Apis::Core::Hashable
28893
29001
 
29002
+ # Constraints applied to instance flexibility spreading and selection.
29003
+ # Corresponds to the JSON property `constraints`
29004
+ # @return [Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyConstraints]
29005
+ attr_accessor :constraints
29006
+
28894
29007
  # Named instance selections configuring properties that the group will use
28895
29008
  # when creating new VMs.
28896
29009
  # Corresponds to the JSON property `instanceSelectionLists`
@@ -28915,12 +29028,35 @@ module Google
28915
29028
 
28916
29029
  # Update properties of this object
28917
29030
  def update!(**args)
29031
+ @constraints = args[:constraints] if args.key?(:constraints)
28918
29032
  @instance_selection_lists = args[:instance_selection_lists] if args.key?(:instance_selection_lists)
28919
29033
  @instance_selections = args[:instance_selections] if args.key?(:instance_selections)
28920
29034
  @provisioning_model_mix = args[:provisioning_model_mix] if args.key?(:provisioning_model_mix)
28921
29035
  end
28922
29036
  end
28923
29037
 
29038
+ # Constraints applied to instance flexibility spreading and selection.
29039
+ class InstanceGroupManagerInstanceFlexibilityPolicyConstraints
29040
+ include Google::Apis::Core::Hashable
29041
+
29042
+ # When set to true, all instances in the group will be provisioned with
29043
+ # the exact same machine type, ensuring cluster homogeneity across zones.
29044
+ # Defaults to false.
29045
+ # Corresponds to the JSON property `singleMachineType`
29046
+ # @return [Boolean]
29047
+ attr_accessor :single_machine_type
29048
+ alias_method :single_machine_type?, :single_machine_type
29049
+
29050
+ def initialize(**args)
29051
+ update!(**args)
29052
+ end
29053
+
29054
+ # Update properties of this object
29055
+ def update!(**args)
29056
+ @single_machine_type = args[:single_machine_type] if args.key?(:single_machine_type)
29057
+ end
29058
+ end
29059
+
28924
29060
  #
28925
29061
  class InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection
28926
29062
  include Google::Apis::Core::Hashable
@@ -43194,7 +43330,7 @@ module Google
43194
43330
  # @return [String]
43195
43331
  attr_accessor :id
43196
43332
 
43197
- #
43333
+ # The list of managed rulesets.
43198
43334
  # Corresponds to the JSON property `items`
43199
43335
  # @return [Array<Google::Apis::ComputeAlpha::ManagedRuleset>]
43200
43336
  attr_accessor :items
@@ -44425,6 +44561,11 @@ module Google
44425
44561
  # @return [String]
44426
44562
  attr_accessor :i_pv4_range
44427
44563
 
44564
+ # Output only. [Output Only] Additional tags for this resource.
44565
+ # Corresponds to the JSON property `additionalTags`
44566
+ # @return [Array<String>]
44567
+ attr_accessor :additional_tags
44568
+
44428
44569
  # Must be set to create a VPC network. If not set, a legacy network is
44429
44570
  # created.
44430
44571
  # When set to true, the VPC network is created in auto mode.
@@ -44582,6 +44723,7 @@ module Google
44582
44723
  # Update properties of this object
44583
44724
  def update!(**args)
44584
44725
  @i_pv4_range = args[:i_pv4_range] if args.key?(:i_pv4_range)
44726
+ @additional_tags = args[:additional_tags] if args.key?(:additional_tags)
44585
44727
  @auto_create_subnetworks = args[:auto_create_subnetworks] if args.key?(:auto_create_subnetworks)
44586
44728
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
44587
44729
  @description = args[:description] if args.key?(:description)
@@ -63958,6 +64100,13 @@ module Google
63958
64100
  # @return [String]
63959
64101
  attr_accessor :host
63960
64102
 
64103
+ # Output only. [Output Only] The ID of the machine on which the running instance
64104
+ # is
64105
+ # located. It is only populated for machines which have multiple hosts.
64106
+ # Corresponds to the JSON property `machine`
64107
+ # @return [String]
64108
+ attr_accessor :machine
64109
+
63961
64110
  # [Output Only] The ID of the sub-block in which the running instance is
63962
64111
  # located. Instances in the same sub-block experience lower network latency
63963
64112
  # than instances in the same block.
@@ -63975,6 +64124,7 @@ module Google
63975
64124
  @block = args[:block] if args.key?(:block)
63976
64125
  @cluster = args[:cluster] if args.key?(:cluster)
63977
64126
  @host = args[:host] if args.key?(:host)
64127
+ @machine = args[:machine] if args.key?(:machine)
63978
64128
  @subblock = args[:subblock] if args.key?(:subblock)
63979
64129
  end
63980
64130
  end
@@ -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.144.0"
19
+ GEM_VERSION = "0.146.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260821"
25
+ REVISION = "20260910"
26
26
  end
27
27
  end
28
28
  end
@@ -1078,6 +1078,12 @@ module Google
1078
1078
  include Google::Apis::Core::JsonObjectSupport
1079
1079
  end
1080
1080
 
1081
+ class CapacityHistoryRequestInstancePropertiesAttachedDisk
1082
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1083
+
1084
+ include Google::Apis::Core::JsonObjectSupport
1085
+ end
1086
+
1081
1087
  class CapacityHistoryRequestInstancePropertiesScheduling
1082
1088
  class Representation < Google::Apis::Core::JsonRepresentation; end
1083
1089
 
@@ -1672,6 +1678,12 @@ module Google
1672
1678
  include Google::Apis::Core::JsonObjectSupport
1673
1679
  end
1674
1680
 
1681
+ class DynamicCompressionPolicy
1682
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1683
+
1684
+ include Google::Apis::Core::JsonObjectSupport
1685
+ end
1686
+
1675
1687
  class ErrorInfo
1676
1688
  class Representation < Google::Apis::Core::JsonRepresentation; end
1677
1689
 
@@ -3316,6 +3328,12 @@ module Google
3316
3328
  include Google::Apis::Core::JsonObjectSupport
3317
3329
  end
3318
3330
 
3331
+ class InstanceGroupManagerInstanceFlexibilityPolicyConstraints
3332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3333
+
3334
+ include Google::Apis::Core::JsonObjectSupport
3335
+ end
3336
+
3319
3337
  class InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection
3320
3338
  class Representation < Google::Apis::Core::JsonRepresentation; end
3321
3339
 
@@ -12040,6 +12058,7 @@ module Google
12040
12058
  hash :metadatas, as: 'metadatas'
12041
12059
  property :name, as: 'name'
12042
12060
  property :network, as: 'network'
12061
+ property :network_attachment, as: 'networkAttachment'
12043
12062
  property :network_pass_through_lb_traffic_policy, as: 'networkPassThroughLbTrafficPolicy', class: Google::Apis::ComputeAlpha::BackendServiceNetworkPassThroughLbTrafficPolicy, decorator: Google::Apis::ComputeAlpha::BackendServiceNetworkPassThroughLbTrafficPolicy::Representation
12044
12063
 
12045
12064
  property :orchestration_info, as: 'orchestrationInfo', class: Google::Apis::ComputeAlpha::BackendServiceOrchestrationInfo, decorator: Google::Apis::ComputeAlpha::BackendServiceOrchestrationInfo::Representation
@@ -12058,6 +12077,7 @@ module Google
12058
12077
  property :self_link, as: 'selfLink'
12059
12078
  property :self_link_with_id, as: 'selfLinkWithId'
12060
12079
  collection :service_bindings, as: 'serviceBindings'
12080
+ property :service_class_id, as: 'serviceClassId'
12061
12081
  property :service_lb_policy, as: 'serviceLbPolicy'
12062
12082
  property :session_affinity, as: 'sessionAffinity'
12063
12083
  property :strong_session_affinity_cookie, as: 'strongSessionAffinityCookie', class: Google::Apis::ComputeAlpha::BackendServiceHttpCookie, decorator: Google::Apis::ComputeAlpha::BackendServiceHttpCookie::Representation
@@ -12812,6 +12832,7 @@ module Google
12812
12832
  collection :guest_accelerators, as: 'guestAccelerators', class: Google::Apis::ComputeAlpha::AcceleratorConfig, decorator: Google::Apis::ComputeAlpha::AcceleratorConfig::Representation
12813
12833
 
12814
12834
  collection :machine_types, as: 'machineTypes'
12835
+ property :rank, :numeric_string => true, as: 'rank'
12815
12836
  end
12816
12837
  end
12817
12838
 
@@ -12891,12 +12912,23 @@ module Google
12891
12912
  class CapacityHistoryRequestInstanceProperties
12892
12913
  # @private
12893
12914
  class Representation < Google::Apis::Core::JsonRepresentation
12915
+ collection :disks, as: 'disks', class: Google::Apis::ComputeAlpha::CapacityHistoryRequestInstancePropertiesAttachedDisk, decorator: Google::Apis::ComputeAlpha::CapacityHistoryRequestInstancePropertiesAttachedDisk::Representation
12916
+
12917
+ collection :guest_accelerators, as: 'guestAccelerators', class: Google::Apis::ComputeAlpha::AcceleratorConfig, decorator: Google::Apis::ComputeAlpha::AcceleratorConfig::Representation
12918
+
12894
12919
  property :machine_type, as: 'machineType'
12895
12920
  property :scheduling, as: 'scheduling', class: Google::Apis::ComputeAlpha::CapacityHistoryRequestInstancePropertiesScheduling, decorator: Google::Apis::ComputeAlpha::CapacityHistoryRequestInstancePropertiesScheduling::Representation
12896
12921
 
12897
12922
  end
12898
12923
  end
12899
12924
 
12925
+ class CapacityHistoryRequestInstancePropertiesAttachedDisk
12926
+ # @private
12927
+ class Representation < Google::Apis::Core::JsonRepresentation
12928
+ property :type, as: 'type'
12929
+ end
12930
+ end
12931
+
12900
12932
  class CapacityHistoryRequestInstancePropertiesScheduling
12901
12933
  # @private
12902
12934
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -13981,6 +14013,8 @@ module Google
13981
14013
  class DistributionPolicyZoneConfiguration
13982
14014
  # @private
13983
14015
  class Representation < Google::Apis::Core::JsonRepresentation
14016
+ property :max_size, as: 'maxSize', class: Google::Apis::ComputeAlpha::FixedOrPercent, decorator: Google::Apis::ComputeAlpha::FixedOrPercent::Representation
14017
+
13984
14018
  property :zone, as: 'zone'
13985
14019
  end
13986
14020
  end
@@ -13993,6 +14027,13 @@ module Google
13993
14027
  end
13994
14028
  end
13995
14029
 
14030
+ class DynamicCompressionPolicy
14031
+ # @private
14032
+ class Representation < Google::Apis::Core::JsonRepresentation
14033
+ property :compression_mode, as: 'compressionMode'
14034
+ end
14035
+ end
14036
+
13996
14037
  class ErrorInfo
13997
14038
  # @private
13998
14039
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -14547,6 +14588,7 @@ module Google
14547
14588
 
14548
14589
  property :name, as: 'name'
14549
14590
  property :network, as: 'network'
14591
+ property :network_attachment, as: 'networkAttachment'
14550
14592
  property :network_tier, as: 'networkTier'
14551
14593
  property :no_automate_dns_zone, as: 'noAutomateDnsZone'
14552
14594
  property :parent_forwarding_rule, as: 'parentForwardingRule'
@@ -14557,6 +14599,7 @@ module Google
14557
14599
  property :region, as: 'region'
14558
14600
  property :self_link, as: 'selfLink'
14559
14601
  property :self_link_with_id, as: 'selfLinkWithId'
14602
+ property :service_class_id, as: 'serviceClassId'
14560
14603
  collection :service_directory_registrations, as: 'serviceDirectoryRegistrations', class: Google::Apis::ComputeAlpha::ForwardingRuleServiceDirectoryRegistration, decorator: Google::Apis::ComputeAlpha::ForwardingRuleServiceDirectoryRegistration::Representation
14561
14604
 
14562
14605
  property :service_label, as: 'serviceLabel'
@@ -16580,6 +16623,8 @@ module Google
16580
16623
 
16581
16624
  property :cors_policy, as: 'corsPolicy', class: Google::Apis::ComputeAlpha::CorsPolicy, decorator: Google::Apis::ComputeAlpha::CorsPolicy::Representation
16582
16625
 
16626
+ property :dynamic_compression_policy, as: 'dynamicCompressionPolicy', class: Google::Apis::ComputeAlpha::DynamicCompressionPolicy, decorator: Google::Apis::ComputeAlpha::DynamicCompressionPolicy::Representation
16627
+
16583
16628
  property :fault_injection_policy, as: 'faultInjectionPolicy', class: Google::Apis::ComputeAlpha::HttpFaultInjection, decorator: Google::Apis::ComputeAlpha::HttpFaultInjection::Representation
16584
16629
 
16585
16630
  property :image_optimization_policy, as: 'imageOptimizationPolicy', class: Google::Apis::ComputeAlpha::ImageOptimizationPolicy, decorator: Google::Apis::ComputeAlpha::ImageOptimizationPolicy::Representation
@@ -17259,6 +17304,8 @@ module Google
17259
17304
  class InstanceGroupManagerInstanceFlexibilityPolicy
17260
17305
  # @private
17261
17306
  class Representation < Google::Apis::Core::JsonRepresentation
17307
+ property :constraints, as: 'constraints', class: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyConstraints, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyConstraints::Representation
17308
+
17262
17309
  hash :instance_selection_lists, as: 'instanceSelectionLists', class: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection::Representation
17263
17310
 
17264
17311
  hash :instance_selections, as: 'instanceSelections', class: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection::Representation
@@ -17268,6 +17315,13 @@ module Google
17268
17315
  end
17269
17316
  end
17270
17317
 
17318
+ class InstanceGroupManagerInstanceFlexibilityPolicyConstraints
17319
+ # @private
17320
+ class Representation < Google::Apis::Core::JsonRepresentation
17321
+ property :single_machine_type, as: 'singleMachineType'
17322
+ end
17323
+ end
17324
+
17271
17325
  class InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection
17272
17326
  # @private
17273
17327
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -21026,6 +21080,7 @@ module Google
21026
21080
  # @private
21027
21081
  class Representation < Google::Apis::Core::JsonRepresentation
21028
21082
  property :i_pv4_range, as: 'IPv4Range'
21083
+ collection :additional_tags, as: 'additionalTags'
21029
21084
  property :auto_create_subnetworks, as: 'autoCreateSubnetworks'
21030
21085
  property :creation_timestamp, as: 'creationTimestamp'
21031
21086
  property :description, as: 'description'
@@ -25779,6 +25834,7 @@ module Google
25779
25834
  property :block, as: 'block'
25780
25835
  property :cluster, as: 'cluster'
25781
25836
  property :host, as: 'host'
25837
+ property :machine, as: 'machine'
25782
25838
  property :subblock, as: 'subblock'
25783
25839
  end
25784
25840
  end
@@ -1253,10 +1253,10 @@ module Google
1253
1253
  execute_or_queue_command(command, &block)
1254
1254
  end
1255
1255
 
1256
- # Advise on whether extending an existing Future Reservation is possible
1257
- # based on the desired extension end time. If capacity is not available for
1258
- # the entire requested duration, the method will recommend the longest
1259
- # possible extension.
1256
+ # Advises on whether extending an existing future reservation is possible
1257
+ # based on the desired extension end time. If capacity isn't available for
1258
+ # the entire requested duration, the method recommends the longest possible
1259
+ # extension.
1260
1260
  # @param [String] project
1261
1261
  # Project ID for this request.
1262
1262
  # @param [String] region
@@ -8291,6 +8291,7 @@ module Google
8291
8291
  # @param [String] folder
8292
8292
  # Folder ID for this request.
8293
8293
  # @param [String] extension_name
8294
+ # Required. Name of the VM extension for this request.
8294
8295
  # @param [String] fields
8295
8296
  # Selector specifying which fields to include in a partial response.
8296
8297
  # @param [String] quota_user
@@ -8749,6 +8750,7 @@ module Google
8749
8750
  # @param [String] zone
8750
8751
  # Name of the zone for this request.
8751
8752
  # @param [String] extension_name
8753
+ # Required. Name of the VM extension for this request.
8752
8754
  # @param [String] fields
8753
8755
  # Selector specifying which fields to include in a partial response.
8754
8756
  # @param [String] quota_user
@@ -11244,6 +11246,7 @@ module Google
11244
11246
 
11245
11247
  # Gets the Global Frontend Billing Bundle Settings for a project.
11246
11248
  # @param [String] project
11249
+ # Required. Project ID for this request.
11247
11250
  # @param [String] fields
11248
11251
  # Selector specifying which fields to include in a partial response.
11249
11252
  # @param [String] quota_user
@@ -11276,10 +11279,12 @@ module Google
11276
11279
 
11277
11280
  # Updates the Global Frontend Billing Bundle Settings for a project.
11278
11281
  # @param [String] project
11282
+ # Required. Project ID for this request.
11279
11283
  # @param [Google::Apis::ComputeAlpha::GlobalFrontendSettings] global_frontend_settings_object
11280
11284
  # @param [String] request_id
11285
+ # An optional request ID to identify requests.
11281
11286
  # @param [String] update_mask
11282
- # e.g., "type"
11287
+ # Field mask to support patch. E.g., "type".
11283
11288
  # @param [String] fields
11284
11289
  # Selector specifying which fields to include in a partial response.
11285
11290
  # @param [String] quota_user
@@ -12889,6 +12894,7 @@ module Google
12889
12894
  # @param [String] project
12890
12895
  # Project ID for this request.
12891
12896
  # @param [String] extension_name
12897
+ # Required. Name of the VM extension for this request.
12892
12898
  # @param [String] fields
12893
12899
  # Selector specifying which fields to include in a partial response.
12894
12900
  # @param [String] quota_user
@@ -34487,6 +34493,7 @@ module Google
34487
34493
  # @param [String] organization
34488
34494
  # Organization ID for this request.
34489
34495
  # @param [String] extension_name
34496
+ # Required. Name of the VM extension for this request.
34490
34497
  # @param [String] fields
34491
34498
  # Selector specifying which fields to include in a partial response.
34492
34499
  # @param [String] quota_user
@@ -36567,6 +36574,7 @@ module Google
36567
36574
  # @param [String] zone
36568
36575
  # Name of the zone for this request.
36569
36576
  # @param [String] extension_name
36577
+ # Required. Name of the VM extension for this request.
36570
36578
  # @param [String] fields
36571
36579
  # Selector specifying which fields to include in a partial response.
36572
36580
  # @param [String] quota_user
@@ -75993,6 +76001,7 @@ module Google
75993
76001
  # @param [String] zone
75994
76002
  # Name of the zone for this request.
75995
76003
  # @param [String] extension_name
76004
+ # Required. Name of the VM extension for this request.
75996
76005
  # @param [String] fields
75997
76006
  # Selector specifying which fields to include in a partial response.
75998
76007
  # @param [String] quota_user
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.144.0
4
+ version: 0.146.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.144.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.146.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: