google-apis-compute_alpha 0.69.0 → 0.71.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: 2b4ac4478dbaa059c5561eb42e8c7cc20ade8a128f361a6325aa529a5139e833
4
- data.tar.gz: 8508480abe392057fcc1795d81177c0261bb1b999f7119a12f015f89e19e80e3
3
+ metadata.gz: 124b5bf20876a812516c5b7a9735d7d0045b998e7f49a4a4996ff23d38cf6246
4
+ data.tar.gz: 6a0f807ddb3a12f90928b1ce45b0e35065211d9496008f4ccd0149b59edbd592
5
5
  SHA512:
6
- metadata.gz: 04621f0ba4bcc57df7f2e0f56d284d94426c2c67c9a0654b65f4f73cdfa611f8904313f58d74caf068d805ed70513ec6272455f4b44df362a5e8e372819d82ac
7
- data.tar.gz: 781391b7cabe316d2a2fe7364071df6482fe0d6510771be1d48ce4e4b5be90fabf00b16f819b6decaf170e2ac5622f9d53ccad07e49278b5bf4af9dd66f4f933
6
+ metadata.gz: f93d2e74a078091f8f1f837c86e42314a0678036e7a9debe98bacb80af133354c65a6e67abb4cffd82d5f7ae0e4538544d38e60799b5af193012e29306918dff
7
+ data.tar.gz: d1d78697b8fb848645351fc0741c3e7f91d65e7a4af43c774f7385b041cdded62389baf8028652d206bf201b2d4758546fc957f7e96e424c7a0ba5012c68dec6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-compute_alpha
2
2
 
3
+ ### v0.71.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230610
6
+
7
+ ### v0.70.0 (2023-06-18)
8
+
9
+ * Regenerated from discovery document revision 20230606
10
+
3
11
  ### v0.69.0 (2023-06-11)
4
12
 
5
13
  * Regenerated from discovery document revision 20230530
@@ -665,7 +665,7 @@ module Google
665
665
  attr_accessor :id
666
666
 
667
667
  # The IP version that will be used by this address. Valid options are IPV4 or
668
- # IPV6. This can only be specified for a global address.
668
+ # IPV6.
669
669
  # Corresponds to the JSON property `ipVersion`
670
670
  # @return [String]
671
671
  attr_accessor :ip_version
@@ -6649,7 +6649,9 @@ module Google
6649
6649
 
6650
6650
  # The name of the encryption key that is stored in Google Cloud KMS. For example:
6651
6651
  # "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/
6652
- # cryptoKeys/key
6652
+ # cryptoKeys/key The fully-qualifed key name may be returned for resource GET
6653
+ # requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/
6654
+ # keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
6653
6655
  # Corresponds to the JSON property `kmsKeyName`
6654
6656
  # @return [String]
6655
6657
  attr_accessor :kms_key_name
@@ -10941,6 +10943,32 @@ module Google
10941
10943
  class FutureReservation
10942
10944
  include Google::Apis::Core::Hashable
10943
10945
 
10946
+ # Future timestamp when the FR auto-created reservations will be deleted by GCE.
10947
+ # Format of this field must be a valid href="https://www.ietf.org/rfc/rfc3339.
10948
+ # txt">RFC3339 value.
10949
+ # Corresponds to the JSON property `autoCreatedReservationsDeleteTime`
10950
+ # @return [String]
10951
+ attr_accessor :auto_created_reservations_delete_time
10952
+
10953
+ # A Duration represents a fixed-length span of time represented as a count of
10954
+ # seconds and fractions of seconds at nanosecond resolution. It is independent
10955
+ # of any calendar and concepts like "day" or "month". Range is approximately 10,
10956
+ # 000 years.
10957
+ # Corresponds to the JSON property `autoCreatedReservationsDuration`
10958
+ # @return [Google::Apis::ComputeAlpha::Duration]
10959
+ attr_accessor :auto_created_reservations_duration
10960
+
10961
+ # Setting for enabling or disabling automatic deletion for auto-created
10962
+ # reservation. If omitted or set to true, auto-created reservations will be
10963
+ # deleted at Future Reservation's end time (default) or at user's defined
10964
+ # timestamp if any of the [auto_created_reservations_delete_time,
10965
+ # auto_created_reservations_duration] values is specified. For keeping auto-
10966
+ # created reservation indefinitely, this value should be set to false.
10967
+ # Corresponds to the JSON property `autoDeleteAutoCreatedReservations`
10968
+ # @return [Boolean]
10969
+ attr_accessor :auto_delete_auto_created_reservations
10970
+ alias_method :auto_delete_auto_created_reservations?, :auto_delete_auto_created_reservations
10971
+
10944
10972
  # [Output Only] The creation timestamp for this future reservation in RFC3339
10945
10973
  # text format.
10946
10974
  # Corresponds to the JSON property `creationTimestamp`
@@ -11030,6 +11058,9 @@ module Google
11030
11058
 
11031
11059
  # Update properties of this object
11032
11060
  def update!(**args)
11061
+ @auto_created_reservations_delete_time = args[:auto_created_reservations_delete_time] if args.key?(:auto_created_reservations_delete_time)
11062
+ @auto_created_reservations_duration = args[:auto_created_reservations_duration] if args.key?(:auto_created_reservations_duration)
11063
+ @auto_delete_auto_created_reservations = args[:auto_delete_auto_created_reservations] if args.key?(:auto_delete_auto_created_reservations)
11033
11064
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
11034
11065
  @description = args[:description] if args.key?(:description)
11035
11066
  @id = args[:id] if args.key?(:id)
@@ -15570,6 +15601,12 @@ module Google
15570
15601
  # @return [Google::Apis::ComputeAlpha::InstanceParams]
15571
15602
  attr_accessor :params
15572
15603
 
15604
+ # Partner Metadata assigned to the instance. A map from a subdomain (namespace)
15605
+ # to entries map.
15606
+ # Corresponds to the JSON property `partnerMetadata`
15607
+ # @return [Hash<String,Google::Apis::ComputeAlpha::StructuredEntries>]
15608
+ attr_accessor :partner_metadata
15609
+
15573
15610
  # PostKeyRevocationActionType of the instance.
15574
15611
  # Corresponds to the JSON property `postKeyRevocationActionType`
15575
15612
  # @return [String]
@@ -15750,6 +15787,7 @@ module Google
15750
15787
  @network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
15751
15788
  @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
15752
15789
  @params = args[:params] if args.key?(:params)
15790
+ @partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
15753
15791
  @post_key_revocation_action_type = args[:post_key_revocation_action_type] if args.key?(:post_key_revocation_action_type)
15754
15792
  @preserved_state_size_gb = args[:preserved_state_size_gb] if args.key?(:preserved_state_size_gb)
15755
15793
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
@@ -16985,7 +17023,11 @@ module Google
16985
17023
  class InstanceGroupManagerInstanceLifecyclePolicy
16986
17024
  include Google::Apis::Core::Hashable
16987
17025
 
16988
- # Defines behaviour for all instance or failures
17026
+ # The action that a MIG performs on a failed or an unhealthy VM. A VM is marked
17027
+ # as unhealthy when the application running on that VM fails a health check.
17028
+ # Valid values are - REPAIR (default): MIG automatically repairs a failed or an
17029
+ # unhealthy VM by recreating it. For more information, see About repairing VMs
17030
+ # in a MIG. - DO_NOTHING: MIG does not repair a failed or an unhealthy VM.
16989
17031
  # Corresponds to the JSON property `defaultActionOnFailure`
16990
17032
  # @return [String]
16991
17033
  attr_accessor :default_action_on_failure
@@ -17742,12 +17784,12 @@ module Google
17742
17784
  attr_accessor :minimal_action
17743
17785
 
17744
17786
  # Most disruptive action that is allowed to be taken on an instance. You can
17745
- # specify either NONE to forbid any actions, REFRESH to allow actions that do
17746
- # not need instance restart, RESTART to allow actions that can be applied
17747
- # without instance replacing or REPLACE to allow all possible actions. If the
17748
- # Updater determines that the minimal update action needed is more disruptive
17749
- # than most disruptive allowed action you specify it will not perform the update
17750
- # at all.
17787
+ # specify either NONE to forbid any actions, REFRESH to avoid restarting the VM
17788
+ # and to limit disruption as much as possible. RESTART to allow actions that can
17789
+ # be applied without instance replacing or REPLACE to allow all possible actions.
17790
+ # If the Updater determines that the minimal update action needed is more
17791
+ # disruptive than most disruptive allowed action you specify it will not perform
17792
+ # the update at all.
17751
17793
  # Corresponds to the JSON property `mostDisruptiveAllowedAction`
17752
17794
  # @return [String]
17753
17795
  attr_accessor :most_disruptive_allowed_action
@@ -17874,20 +17916,22 @@ module Google
17874
17916
 
17875
17917
  # The minimal action that you want to perform on each instance during the update:
17876
17918
  # - REPLACE: At minimum, delete the instance and create it again. - RESTART:
17877
- # Stop the instance and start it again. - REFRESH: Do not stop the instance. -
17878
- # NONE: Do not disrupt the instance at all. By default, the minimum action is
17879
- # NONE. If your update requires a more disruptive action than you set with this
17880
- # flag, the necessary action is performed to execute the update.
17919
+ # Stop the instance and start it again. - REFRESH: Do not stop the instance and
17920
+ # limit disruption as much as possible. - NONE: Do not disrupt the instance at
17921
+ # all. By default, the minimum action is NONE. If your update requires a more
17922
+ # disruptive action than you set with this flag, the necessary action is
17923
+ # performed to execute the update.
17881
17924
  # Corresponds to the JSON property `minimalAction`
17882
17925
  # @return [String]
17883
17926
  attr_accessor :minimal_action
17884
17927
 
17885
17928
  # The most disruptive action that you want to perform on each instance during
17886
17929
  # the update: - REPLACE: Delete the instance and create it again. - RESTART:
17887
- # Stop the instance and start it again. - REFRESH: Do not stop the instance. -
17888
- # NONE: Do not disrupt the instance at all. By default, the most disruptive
17889
- # allowed action is REPLACE. If your update requires a more disruptive action
17890
- # than you set with this flag, the update request will fail.
17930
+ # Stop the instance and start it again. - REFRESH: Do not stop the instance and
17931
+ # limit disruption as much as possible. - NONE: Do not disrupt the instance at
17932
+ # all. By default, the most disruptive allowed action is REPLACE. If your update
17933
+ # requires a more disruptive action than you set with this flag, the update
17934
+ # request will fail.
17891
17935
  # Corresponds to the JSON property `mostDisruptiveAllowedAction`
17892
17936
  # @return [String]
17893
17937
  attr_accessor :most_disruptive_allowed_action
@@ -19278,6 +19322,12 @@ module Google
19278
19322
  # @return [Google::Apis::ComputeAlpha::NetworkPerformanceConfig]
19279
19323
  attr_accessor :network_performance_config
19280
19324
 
19325
+ # Partner Metadata assigned to the instance properties. A map from a subdomain (
19326
+ # namespace) to entries map.
19327
+ # Corresponds to the JSON property `partnerMetadata`
19328
+ # @return [Hash<String,Google::Apis::ComputeAlpha::StructuredEntries>]
19329
+ attr_accessor :partner_metadata
19330
+
19281
19331
  # PostKeyRevocationActionType of the instance.
19282
19332
  # Corresponds to the JSON property `postKeyRevocationActionType`
19283
19333
  # @return [String]
@@ -19368,6 +19418,7 @@ module Google
19368
19418
  @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
19369
19419
  @network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
19370
19420
  @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
19421
+ @partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
19371
19422
  @post_key_revocation_action_type = args[:post_key_revocation_action_type] if args.key?(:post_key_revocation_action_type)
19372
19423
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
19373
19424
  @reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
@@ -19446,14 +19497,6 @@ module Google
19446
19497
  # @return [String]
19447
19498
  attr_accessor :kind
19448
19499
 
19449
- # Partial URL of the machine type resource to use for this instance, in the
19450
- # format: machineTypes/machine-type. This is either provided by the client or
19451
- # chosen by the system. For example, the following is a valid partial url to a
19452
- # predefined machine type: machineTypes/n2-standard-1
19453
- # Corresponds to the JSON property `machineType`
19454
- # @return [String]
19455
- attr_accessor :machine_type
19456
-
19457
19500
  # [Output Only] URL of the zone where the resource resides You must specify this
19458
19501
  # field as part of the HTTP request URL. It is not settable as a field in the
19459
19502
  # request body.
@@ -19469,7 +19512,6 @@ module Google
19469
19512
  def update!(**args)
19470
19513
  @email = args[:email] if args.key?(:email)
19471
19514
  @kind = args[:kind] if args.key?(:kind)
19472
- @machine_type = args[:machine_type] if args.key?(:machine_type)
19473
19515
  @zone = args[:zone] if args.key?(:zone)
19474
19516
  end
19475
19517
  end
@@ -33363,7 +33405,7 @@ module Google
33363
33405
  # @return [String]
33364
33406
  attr_accessor :description
33365
33407
 
33366
- # The IPv4 address to be used for reverse DNS verification.
33408
+ # The address to be used for reverse DNS verification.
33367
33409
  # Corresponds to the JSON property `dnsVerificationIp`
33368
33410
  # @return [String]
33369
33411
  attr_accessor :dns_verification_ip
@@ -33385,7 +33427,7 @@ module Google
33385
33427
  # @return [Fixnum]
33386
33428
  attr_accessor :id
33387
33429
 
33388
- # The IPv4 address range, in CIDR format, represented by this public advertised
33430
+ # The address range, in CIDR format, represented by this public advertised
33389
33431
  # prefix.
33390
33432
  # Corresponds to the JSON property `ipCidrRange`
33391
33433
  # @return [String]
@@ -34849,6 +34891,11 @@ module Google
34849
34891
  # @return [String]
34850
34892
  attr_accessor :metric_name
34851
34893
 
34894
+ # Rollout status of the future quota limit.
34895
+ # Corresponds to the JSON property `rolloutStatus`
34896
+ # @return [String]
34897
+ attr_accessor :rollout_status
34898
+
34852
34899
  def initialize(**args)
34853
34900
  update!(**args)
34854
34901
  end
@@ -34860,6 +34907,7 @@ module Google
34860
34907
  @limit = args[:limit] if args.key?(:limit)
34861
34908
  @limit_name = args[:limit_name] if args.key?(:limit_name)
34862
34909
  @metric_name = args[:metric_name] if args.key?(:metric_name)
34910
+ @rollout_status = args[:rollout_status] if args.key?(:rollout_status)
34863
34911
  end
34864
34912
  end
34865
34913
 
@@ -35729,20 +35777,22 @@ module Google
35729
35777
 
35730
35778
  # The minimal action that you want to perform on each instance during the update:
35731
35779
  # - REPLACE: At minimum, delete the instance and create it again. - RESTART:
35732
- # Stop the instance and start it again. - REFRESH: Do not stop the instance. -
35733
- # NONE: Do not disrupt the instance at all. By default, the minimum action is
35734
- # NONE. If your update requires a more disruptive action than you set with this
35735
- # flag, the necessary action is performed to execute the update.
35780
+ # Stop the instance and start it again. - REFRESH: Do not stop the instance and
35781
+ # limit disruption as much as possible. - NONE: Do not disrupt the instance at
35782
+ # all. By default, the minimum action is NONE. If your update requires a more
35783
+ # disruptive action than you set with this flag, the necessary action is
35784
+ # performed to execute the update.
35736
35785
  # Corresponds to the JSON property `minimalAction`
35737
35786
  # @return [String]
35738
35787
  attr_accessor :minimal_action
35739
35788
 
35740
35789
  # The most disruptive action that you want to perform on each instance during
35741
35790
  # the update: - REPLACE: Delete the instance and create it again. - RESTART:
35742
- # Stop the instance and start it again. - REFRESH: Do not stop the instance. -
35743
- # NONE: Do not disrupt the instance at all. By default, the most disruptive
35744
- # allowed action is REPLACE. If your update requires a more disruptive action
35745
- # than you set with this flag, the update request will fail.
35791
+ # Stop the instance and start it again. - REFRESH: Do not stop the instance and
35792
+ # limit disruption as much as possible. - NONE: Do not disrupt the instance at
35793
+ # all. By default, the most disruptive allowed action is REPLACE. If your update
35794
+ # requires a more disruptive action than you set with this flag, the update
35795
+ # request will fail.
35746
35796
  # Corresponds to the JSON property `mostDisruptiveAllowedAction`
35747
35797
  # @return [String]
35748
35798
  attr_accessor :most_disruptive_allowed_action
@@ -36812,6 +36862,20 @@ module Google
36812
36862
  # @return [String]
36813
36863
  attr_accessor :creation_timestamp
36814
36864
 
36865
+ # A Duration represents a fixed-length span of time represented as a count of
36866
+ # seconds and fractions of seconds at nanosecond resolution. It is independent
36867
+ # of any calendar and concepts like "day" or "month". Range is approximately 10,
36868
+ # 000 years.
36869
+ # Corresponds to the JSON property `deleteAfterDuration`
36870
+ # @return [Google::Apis::ComputeAlpha::Duration]
36871
+ attr_accessor :delete_after_duration
36872
+
36873
+ # Absolute time in future when the reservation will be auto-deleted by GCE.
36874
+ # Timestamp is represented in RFC3339 text format.
36875
+ # Corresponds to the JSON property `deleteAtTime`
36876
+ # @return [String]
36877
+ attr_accessor :delete_at_time
36878
+
36815
36879
  # An optional description of this resource. Provide this property when you
36816
36880
  # create the resource.
36817
36881
  # Corresponds to the JSON property `description`
@@ -36908,6 +36972,8 @@ module Google
36908
36972
  @aggregate_reservation = args[:aggregate_reservation] if args.key?(:aggregate_reservation)
36909
36973
  @commitment = args[:commitment] if args.key?(:commitment)
36910
36974
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
36975
+ @delete_after_duration = args[:delete_after_duration] if args.key?(:delete_after_duration)
36976
+ @delete_at_time = args[:delete_at_time] if args.key?(:delete_at_time)
36911
36977
  @description = args[:description] if args.key?(:description)
36912
36978
  @id = args[:id] if args.key?(:id)
36913
36979
  @kind = args[:kind] if args.key?(:kind)
@@ -38581,8 +38647,8 @@ module Google
38581
38647
  # @return [String]
38582
38648
  attr_accessor :next_hop_gateway
38583
38649
 
38584
- # [Output Only] The full resource name of the network connectivity center hub
38585
- # that should handle matching packets.
38650
+ # [Output Only] The full resource name of the Network Connectivity Center hub
38651
+ # that will handle matching packets.
38586
38652
  # Corresponds to the JSON property `nextHopHub`
38587
38653
  # @return [String]
38588
38654
  attr_accessor :next_hop_hub
@@ -43387,6 +43453,11 @@ module Google
43387
43453
  class ServiceAttachmentConnectedEndpoint
43388
43454
  include Google::Apis::Core::Hashable
43389
43455
 
43456
+ # The url of the consumer network.
43457
+ # Corresponds to the JSON property `consumerNetwork`
43458
+ # @return [String]
43459
+ attr_accessor :consumer_network
43460
+
43390
43461
  # The url of a connected endpoint.
43391
43462
  # Corresponds to the JSON property `endpoint`
43392
43463
  # @return [String]
@@ -43408,6 +43479,7 @@ module Google
43408
43479
 
43409
43480
  # Update properties of this object
43410
43481
  def update!(**args)
43482
+ @consumer_network = args[:consumer_network] if args.key?(:consumer_network)
43411
43483
  @endpoint = args[:endpoint] if args.key?(:endpoint)
43412
43484
  @psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
43413
43485
  @status = args[:status] if args.key?(:status)
@@ -51500,8 +51572,7 @@ module Google
51500
51572
  class UpcomingMaintenance
51501
51573
  include Google::Apis::Core::Hashable
51502
51574
 
51503
- # Indicates if the maintenance can be customer triggered. From more detail, see
51504
- # go/sf-ctm-design.
51575
+ # Indicates if the maintenance can be customer triggered.
51505
51576
  # Corresponds to the JSON property `canReschedule`
51506
51577
  # @return [Boolean]
51507
51578
  attr_accessor :can_reschedule
@@ -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.69.0"
19
+ GEM_VERSION = "0.71.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230530"
25
+ REVISION = "20230610"
26
26
  end
27
27
  end
28
28
  end
@@ -9653,6 +9653,10 @@ module Google
9653
9653
  class FutureReservation
9654
9654
  # @private
9655
9655
  class Representation < Google::Apis::Core::JsonRepresentation
9656
+ property :auto_created_reservations_delete_time, as: 'autoCreatedReservationsDeleteTime'
9657
+ property :auto_created_reservations_duration, as: 'autoCreatedReservationsDuration', class: Google::Apis::ComputeAlpha::Duration, decorator: Google::Apis::ComputeAlpha::Duration::Representation
9658
+
9659
+ property :auto_delete_auto_created_reservations, as: 'autoDeleteAutoCreatedReservations'
9656
9660
  property :creation_timestamp, as: 'creationTimestamp'
9657
9661
  property :description, as: 'description'
9658
9662
  property :id, :numeric_string => true, as: 'id'
@@ -10741,6 +10745,8 @@ module Google
10741
10745
 
10742
10746
  property :params, as: 'params', class: Google::Apis::ComputeAlpha::InstanceParams, decorator: Google::Apis::ComputeAlpha::InstanceParams::Representation
10743
10747
 
10748
+ hash :partner_metadata, as: 'partnerMetadata', class: Google::Apis::ComputeAlpha::StructuredEntries, decorator: Google::Apis::ComputeAlpha::StructuredEntries::Representation
10749
+
10744
10750
  property :post_key_revocation_action_type, as: 'postKeyRevocationActionType'
10745
10751
  property :preserved_state_size_gb, :numeric_string => true, as: 'preservedStateSizeGb'
10746
10752
  property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
@@ -11716,6 +11722,8 @@ module Google
11716
11722
 
11717
11723
  property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ComputeAlpha::NetworkPerformanceConfig, decorator: Google::Apis::ComputeAlpha::NetworkPerformanceConfig::Representation
11718
11724
 
11725
+ hash :partner_metadata, as: 'partnerMetadata', class: Google::Apis::ComputeAlpha::StructuredEntries, decorator: Google::Apis::ComputeAlpha::StructuredEntries::Representation
11726
+
11719
11727
  property :post_key_revocation_action_type, as: 'postKeyRevocationActionType'
11720
11728
  property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
11721
11729
  property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ComputeAlpha::ReservationAffinity, decorator: Google::Apis::ComputeAlpha::ReservationAffinity::Representation
@@ -11758,7 +11766,6 @@ module Google
11758
11766
  class Representation < Google::Apis::Core::JsonRepresentation
11759
11767
  property :email, as: 'email'
11760
11768
  property :kind, as: 'kind'
11761
- property :machine_type, as: 'machineType'
11762
11769
  property :zone, as: 'zone'
11763
11770
  end
11764
11771
  end
@@ -15672,6 +15679,7 @@ module Google
15672
15679
  property :limit, as: 'limit'
15673
15680
  property :limit_name, as: 'limitName'
15674
15681
  property :metric_name, as: 'metricName'
15682
+ property :rollout_status, as: 'rolloutStatus'
15675
15683
  end
15676
15684
  end
15677
15685
 
@@ -16235,6 +16243,9 @@ module Google
16235
16243
 
16236
16244
  property :commitment, as: 'commitment'
16237
16245
  property :creation_timestamp, as: 'creationTimestamp'
16246
+ property :delete_after_duration, as: 'deleteAfterDuration', class: Google::Apis::ComputeAlpha::Duration, decorator: Google::Apis::ComputeAlpha::Duration::Representation
16247
+
16248
+ property :delete_at_time, as: 'deleteAtTime'
16238
16249
  property :description, as: 'description'
16239
16250
  property :id, :numeric_string => true, as: 'id'
16240
16251
  property :kind, as: 'kind'
@@ -17856,6 +17867,7 @@ module Google
17856
17867
  class ServiceAttachmentConnectedEndpoint
17857
17868
  # @private
17858
17869
  class Representation < Google::Apis::Core::JsonRepresentation
17870
+ property :consumer_network, as: 'consumerNetwork'
17859
17871
  property :endpoint, as: 'endpoint'
17860
17872
  property :psc_connection_id, :numeric_string => true, as: 'pscConnectionId'
17861
17873
  property :status, as: 'status'
@@ -13070,6 +13070,8 @@ module Google
13070
13070
  # Project ID for this request.
13071
13071
  # @param [String] instance_template
13072
13072
  # The name of the instance template.
13073
+ # @param [String] view
13074
+ # View of the instance template.
13073
13075
  # @param [String] fields
13074
13076
  # Selector specifying which fields to include in a partial response.
13075
13077
  # @param [String] quota_user
@@ -13089,12 +13091,13 @@ module Google
13089
13091
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
13090
13092
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
13091
13093
  # @raise [Google::Apis::AuthorizationError] Authorization is required
13092
- def get_instance_template(project, instance_template, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
13094
+ def get_instance_template(project, instance_template, view: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
13093
13095
  command = make_simple_command(:get, 'projects/{project}/global/instanceTemplates/{instanceTemplate}', options)
13094
13096
  command.response_representation = Google::Apis::ComputeAlpha::InstanceTemplate::Representation
13095
13097
  command.response_class = Google::Apis::ComputeAlpha::InstanceTemplate
13096
13098
  command.params['project'] = project unless project.nil?
13097
13099
  command.params['instanceTemplate'] = instance_template unless instance_template.nil?
13100
+ command.query['view'] = view unless view.nil?
13098
13101
  command.query['fields'] = fields unless fields.nil?
13099
13102
  command.query['quotaUser'] = quota_user unless quota_user.nil?
13100
13103
  command.query['userIp'] = user_ip unless user_ip.nil?
@@ -13245,6 +13248,8 @@ module Google
13245
13248
  # @param [Boolean] return_partial_success
13246
13249
  # Opt-in for partial success behavior which provides partial results in case of
13247
13250
  # failure. The default value is false.
13251
+ # @param [String] view
13252
+ # View of the instance template.
13248
13253
  # @param [String] fields
13249
13254
  # Selector specifying which fields to include in a partial response.
13250
13255
  # @param [String] quota_user
@@ -13264,7 +13269,7 @@ module Google
13264
13269
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
13265
13270
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
13266
13271
  # @raise [Google::Apis::AuthorizationError] Authorization is required
13267
- def list_instance_templates(project, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
13272
+ def list_instance_templates(project, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, view: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
13268
13273
  command = make_simple_command(:get, 'projects/{project}/global/instanceTemplates', options)
13269
13274
  command.response_representation = Google::Apis::ComputeAlpha::InstanceTemplateList::Representation
13270
13275
  command.response_class = Google::Apis::ComputeAlpha::InstanceTemplateList
@@ -13274,6 +13279,7 @@ module Google
13274
13279
  command.query['orderBy'] = order_by unless order_by.nil?
13275
13280
  command.query['pageToken'] = page_token unless page_token.nil?
13276
13281
  command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
13282
+ command.query['view'] = view unless view.nil?
13277
13283
  command.query['fields'] = fields unless fields.nil?
13278
13284
  command.query['quotaUser'] = quota_user unless quota_user.nil?
13279
13285
  command.query['userIp'] = user_ip unless user_ip.nil?
@@ -13848,6 +13854,8 @@ module Google
13848
13854
  # The name of the zone for this request.
13849
13855
  # @param [String] instance
13850
13856
  # Name of the instance resource to return.
13857
+ # @param [String] view
13858
+ # View of the instance.
13851
13859
  # @param [String] fields
13852
13860
  # Selector specifying which fields to include in a partial response.
13853
13861
  # @param [String] quota_user
@@ -13867,13 +13875,14 @@ module Google
13867
13875
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
13868
13876
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
13869
13877
  # @raise [Google::Apis::AuthorizationError] Authorization is required
13870
- def get_instance(project, zone, instance, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
13878
+ def get_instance(project, zone, instance, view: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
13871
13879
  command = make_simple_command(:get, 'projects/{project}/zones/{zone}/instances/{instance}', options)
13872
13880
  command.response_representation = Google::Apis::ComputeAlpha::Instance::Representation
13873
13881
  command.response_class = Google::Apis::ComputeAlpha::Instance
13874
13882
  command.params['project'] = project unless project.nil?
13875
13883
  command.params['zone'] = zone unless zone.nil?
13876
13884
  command.params['instance'] = instance unless instance.nil?
13885
+ command.query['view'] = view unless view.nil?
13877
13886
  command.query['fields'] = fields unless fields.nil?
13878
13887
  command.query['quotaUser'] = quota_user unless quota_user.nil?
13879
13888
  command.query['userIp'] = user_ip unless user_ip.nil?
@@ -14344,6 +14353,8 @@ module Google
14344
14353
  # @param [Boolean] return_partial_success
14345
14354
  # Opt-in for partial success behavior which provides partial results in case of
14346
14355
  # failure. The default value is false.
14356
+ # @param [String] view
14357
+ # View of the instance.
14347
14358
  # @param [String] fields
14348
14359
  # Selector specifying which fields to include in a partial response.
14349
14360
  # @param [String] quota_user
@@ -14363,7 +14374,7 @@ module Google
14363
14374
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
14364
14375
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
14365
14376
  # @raise [Google::Apis::AuthorizationError] Authorization is required
14366
- def list_instances(project, zone, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
14377
+ def list_instances(project, zone, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, view: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
14367
14378
  command = make_simple_command(:get, 'projects/{project}/zones/{zone}/instances', options)
14368
14379
  command.response_representation = Google::Apis::ComputeAlpha::InstanceList::Representation
14369
14380
  command.response_class = Google::Apis::ComputeAlpha::InstanceList
@@ -14374,6 +14385,7 @@ module Google
14374
14385
  command.query['orderBy'] = order_by unless order_by.nil?
14375
14386
  command.query['pageToken'] = page_token unless page_token.nil?
14376
14387
  command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
14388
+ command.query['view'] = view unless view.nil?
14377
14389
  command.query['fields'] = fields unless fields.nil?
14378
14390
  command.query['quotaUser'] = quota_user unless quota_user.nil?
14379
14391
  command.query['userIp'] = user_ip unless user_ip.nil?
@@ -32092,6 +32104,8 @@ module Google
32092
32104
  # The name of the region for this request.
32093
32105
  # @param [String] instance_template
32094
32106
  # The name of the instance template.
32107
+ # @param [String] view
32108
+ # View of the instance template.
32095
32109
  # @param [String] fields
32096
32110
  # Selector specifying which fields to include in a partial response.
32097
32111
  # @param [String] quota_user
@@ -32111,13 +32125,14 @@ module Google
32111
32125
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
32112
32126
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
32113
32127
  # @raise [Google::Apis::AuthorizationError] Authorization is required
32114
- def get_region_instance_template(project, region, instance_template, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
32128
+ def get_region_instance_template(project, region, instance_template, view: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
32115
32129
  command = make_simple_command(:get, 'projects/{project}/regions/{region}/instanceTemplates/{instanceTemplate}', options)
32116
32130
  command.response_representation = Google::Apis::ComputeAlpha::InstanceTemplate::Representation
32117
32131
  command.response_class = Google::Apis::ComputeAlpha::InstanceTemplate
32118
32132
  command.params['project'] = project unless project.nil?
32119
32133
  command.params['region'] = region unless region.nil?
32120
32134
  command.params['instanceTemplate'] = instance_template unless instance_template.nil?
32135
+ command.query['view'] = view unless view.nil?
32121
32136
  command.query['fields'] = fields unless fields.nil?
32122
32137
  command.query['quotaUser'] = quota_user unless quota_user.nil?
32123
32138
  command.query['userIp'] = user_ip unless user_ip.nil?
@@ -32231,6 +32246,8 @@ module Google
32231
32246
  # @param [Boolean] return_partial_success
32232
32247
  # Opt-in for partial success behavior which provides partial results in case of
32233
32248
  # failure. The default value is false.
32249
+ # @param [String] view
32250
+ # View of the instance template.
32234
32251
  # @param [String] fields
32235
32252
  # Selector specifying which fields to include in a partial response.
32236
32253
  # @param [String] quota_user
@@ -32250,7 +32267,7 @@ module Google
32250
32267
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
32251
32268
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
32252
32269
  # @raise [Google::Apis::AuthorizationError] Authorization is required
32253
- def list_region_instance_templates(project, region, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
32270
+ def list_region_instance_templates(project, region, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, view: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
32254
32271
  command = make_simple_command(:get, 'projects/{project}/regions/{region}/instanceTemplates', options)
32255
32272
  command.response_representation = Google::Apis::ComputeAlpha::InstanceTemplateList::Representation
32256
32273
  command.response_class = Google::Apis::ComputeAlpha::InstanceTemplateList
@@ -32261,6 +32278,7 @@ module Google
32261
32278
  command.query['orderBy'] = order_by unless order_by.nil?
32262
32279
  command.query['pageToken'] = page_token unless page_token.nil?
32263
32280
  command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
32281
+ command.query['view'] = view unless view.nil?
32264
32282
  command.query['fields'] = fields unless fields.nil?
32265
32283
  command.query['quotaUser'] = quota_user unless quota_user.nil?
32266
32284
  command.query['userIp'] = user_ip unless user_ip.nil?
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.69.0
4
+ version: 0.71.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-11 00:00:00.000000000 Z
11
+ date: 2023-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.69.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.71.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
63
63
  post_install_message:
64
64
  rdoc_options: []