google-apis-compute_beta 0.21.0 → 0.22.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: d516b3110327bb6582cf6e8ae1d0bb57d47ad827eeaf241d4964fa6101fd03a7
4
- data.tar.gz: b96852fd5e7dee87efc3d2f583ebc3673e1ec80e9b96c191874c4ad85772bc01
3
+ metadata.gz: a7540d744029ca8a4cd16e11d7d5928b6954a9327e4a293a3fd4abd8ebe69a23
4
+ data.tar.gz: 879d531bef4720ded4d65b38a3d5c5322635a7cfd0984af3ca8db86905b2fa7f
5
5
  SHA512:
6
- metadata.gz: 2441311d6940330e935d96f4aef2e3610a528606b4181c402a18061038f3b548ac70cb883105748098f4b90a8a6776ed99d841acae2f85844fd5adc9bfb96717
7
- data.tar.gz: 16f8d48e0670632f4e08d796b5d144b10e12f7d38319e33be27b770b217b01b664de5136320bf19c36ce010574669c8049ec6d0d0d4e90cdaa25e48ab2310d46
6
+ metadata.gz: 668581511e2415bd7084e6f5d3f51cdc4f27ba99ae1676a9c23ffd40311d84b653b802fd5349db6868ac5c27031f73c8e48752e643e1258a30cbdae1636a9776
7
+ data.tar.gz: 83bd24d7c4443ce598bdceba3851c567017676bfa36d8f7ed0347e410c88ea3bfdc80ff0a45bc06b8fcf6a53e69cd07f70829f740e139194419bdb41ea67ff8e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_beta
2
2
 
3
+ ### v0.22.0 (2021-12-11)
4
+
5
+ * Regenerated from discovery document revision 20211208
6
+
3
7
  ### v0.21.0 (2021-12-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20211130
@@ -464,15 +464,15 @@ module Google
464
464
  class AccessConfig
465
465
  include Google::Apis::Core::Hashable
466
466
 
467
- # [Output Only] The first IPv6 address of the external IPv6 range associated
468
- # with this instance, prefix length is stored in externalIpv6PrefixLength in
467
+ # The first IPv6 address of the external IPv6 range associated with this
468
+ # instance, prefix length is stored in externalIpv6PrefixLength in
469
469
  # ipv6AccessConfig. The field is output only, an IPv6 address from a subnetwork
470
470
  # associated with the instance will be allocated dynamically.
471
471
  # Corresponds to the JSON property `externalIpv6`
472
472
  # @return [String]
473
473
  attr_accessor :external_ipv6
474
474
 
475
- # [Output Only] The prefix length of the external IPv6 range.
475
+ # The prefix length of the external IPv6 range.
476
476
  # Corresponds to the JSON property `externalIpv6PrefixLength`
477
477
  # @return [Fixnum]
478
478
  attr_accessor :external_ipv6_prefix_length
@@ -1462,6 +1462,11 @@ module Google
1462
1462
  # @return [Hash<String,String>]
1463
1463
  attr_accessor :labels
1464
1464
 
1465
+ # A list of publicly visible licenses. Reserved for Google's use.
1466
+ # Corresponds to the JSON property `licenses`
1467
+ # @return [Array<String>]
1468
+ attr_accessor :licenses
1469
+
1465
1470
  # Indicates whether or not the disk can be read/write attached to more than one
1466
1471
  # instance.
1467
1472
  # Corresponds to the JSON property `multiWriter`
@@ -1542,6 +1547,7 @@ module Google
1542
1547
  @disk_type = args[:disk_type] if args.key?(:disk_type)
1543
1548
  @guest_os_features = args[:guest_os_features] if args.key?(:guest_os_features)
1544
1549
  @labels = args[:labels] if args.key?(:labels)
1550
+ @licenses = args[:licenses] if args.key?(:licenses)
1545
1551
  @multi_writer = args[:multi_writer] if args.key?(:multi_writer)
1546
1552
  @on_update_action = args[:on_update_action] if args.key?(:on_update_action)
1547
1553
  @provisioned_iops = args[:provisioned_iops] if args.key?(:provisioned_iops)
@@ -12603,6 +12609,11 @@ module Google
12603
12609
  # @return [Google::Apis::ComputeBeta::NetworkPerformanceConfig]
12604
12610
  attr_accessor :network_performance_config
12605
12611
 
12612
+ # Additional instance params.
12613
+ # Corresponds to the JSON property `params`
12614
+ # @return [Google::Apis::ComputeBeta::InstanceParams]
12615
+ attr_accessor :params
12616
+
12606
12617
  # PostKeyRevocationActionType of the instance.
12607
12618
  # Corresponds to the JSON property `postKeyRevocationActionType`
12608
12619
  # @return [String]
@@ -12746,6 +12757,7 @@ module Google
12746
12757
  @name = args[:name] if args.key?(:name)
12747
12758
  @network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
12748
12759
  @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
12760
+ @params = args[:params] if args.key?(:params)
12749
12761
  @post_key_revocation_action_type = args[:post_key_revocation_action_type] if args.key?(:post_key_revocation_action_type)
12750
12762
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
12751
12763
  @reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
@@ -15289,6 +15301,28 @@ module Google
15289
15301
  end
15290
15302
  end
15291
15303
 
15304
+ # Additional instance params.
15305
+ class InstanceParams
15306
+ include Google::Apis::Core::Hashable
15307
+
15308
+ # Resource manager tags to be bound to the instance. Tag keys and values have
15309
+ # the same definition as resource manager tags. Keys must be in the format `
15310
+ # tagKeys/`tag_key_id``, and values are in the format `tagValues/456`. The field
15311
+ # is ignored (both PUT & PATCH) when empty.
15312
+ # Corresponds to the JSON property `resourceManagerTags`
15313
+ # @return [Hash<String,String>]
15314
+ attr_accessor :resource_manager_tags
15315
+
15316
+ def initialize(**args)
15317
+ update!(**args)
15318
+ end
15319
+
15320
+ # Update properties of this object
15321
+ def update!(**args)
15322
+ @resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
15323
+ end
15324
+ end
15325
+
15292
15326
  #
15293
15327
  class InstanceProperties
15294
15328
  include Google::Apis::Core::Hashable
@@ -15392,7 +15426,15 @@ module Google
15392
15426
  # @return [Google::Apis::ComputeBeta::ReservationAffinity]
15393
15427
  attr_accessor :reservation_affinity
15394
15428
 
15395
- # Resource policies (names, not ULRs) applied to instances created from these
15429
+ # Resource manager tags to be bound to the instance. Tag keys and values have
15430
+ # the same definition as resource manager tags. Keys must be in the format `
15431
+ # tagKeys/`tag_key_id``, and values are in the format `tagValues/456`. The field
15432
+ # is ignored (both PUT & PATCH) when empty.
15433
+ # Corresponds to the JSON property `resourceManagerTags`
15434
+ # @return [Hash<String,String>]
15435
+ attr_accessor :resource_manager_tags
15436
+
15437
+ # Resource policies (names, not URLs) applied to instances created from these
15396
15438
  # properties. Note that for MachineImage, this is not supported yet.
15397
15439
  # Corresponds to the JSON property `resourcePolicies`
15398
15440
  # @return [Array<String>]
@@ -15448,6 +15490,7 @@ module Google
15448
15490
  @post_key_revocation_action_type = args[:post_key_revocation_action_type] if args.key?(:post_key_revocation_action_type)
15449
15491
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
15450
15492
  @reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
15493
+ @resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
15451
15494
  @resource_policies = args[:resource_policies] if args.key?(:resource_policies)
15452
15495
  @scheduling = args[:scheduling] if args.key?(:scheduling)
15453
15496
  @service_accounts = args[:service_accounts] if args.key?(:service_accounts)
@@ -16402,6 +16445,17 @@ module Google
16402
16445
  # @return [String]
16403
16446
  attr_accessor :bandwidth
16404
16447
 
16448
+ # Up to 16 candidate prefixes that control the allocation of
16449
+ # cloudRouterIpv6Address and customerRouterIpv6Address for this attachment. Each
16450
+ # prefix must be in the Global Unique Address (GUA) space. It is highly
16451
+ # recommended that it be in a range owned by the requestor. A GUA in a range
16452
+ # owned by Google will cause the request to fail. Google will select an
16453
+ # available prefix from the supplied candidates or fail the request. If not
16454
+ # supplied, a /125 from a Google-owned GUA block will be selected.
16455
+ # Corresponds to the JSON property `candidateIpv6Subnets`
16456
+ # @return [Array<String>]
16457
+ attr_accessor :candidate_ipv6_subnets
16458
+
16405
16459
  # Up to 16 candidate prefixes that can be used to restrict the allocation of
16406
16460
  # cloudRouterIpAddress and customerRouterIpAddress for this attachment. All
16407
16461
  # prefixes must be within link-local address space (169.254.0.0/16) and must be /
@@ -16419,6 +16473,20 @@ module Google
16419
16473
  # @return [String]
16420
16474
  attr_accessor :cloud_router_ip_address
16421
16475
 
16476
+ # [Output Only] IPv6 address + prefix length to be configured on Cloud Router
16477
+ # Interface for this interconnect attachment.
16478
+ # Corresponds to the JSON property `cloudRouterIpv6Address`
16479
+ # @return [String]
16480
+ attr_accessor :cloud_router_ipv6_address
16481
+
16482
+ # If supplied, the interface id (index within the subnet) to be used for the
16483
+ # cloud router address. The id must be in the range of 1 to 6. If a subnet mask
16484
+ # is supplied, it must be /125, and the subnet should either be 0 or match the
16485
+ # selected subnet.
16486
+ # Corresponds to the JSON property `cloudRouterIpv6InterfaceId`
16487
+ # @return [String]
16488
+ attr_accessor :cloud_router_ipv6_interface_id
16489
+
16422
16490
  # [Output Only] Creation timestamp in RFC3339 text format.
16423
16491
  # Corresponds to the JSON property `creationTimestamp`
16424
16492
  # @return [String]
@@ -16430,6 +16498,20 @@ module Google
16430
16498
  # @return [String]
16431
16499
  attr_accessor :customer_router_ip_address
16432
16500
 
16501
+ # [Output Only] IPv6 address + prefix length to be configured on the customer
16502
+ # router subinterface for this interconnect attachment.
16503
+ # Corresponds to the JSON property `customerRouterIpv6Address`
16504
+ # @return [String]
16505
+ attr_accessor :customer_router_ipv6_address
16506
+
16507
+ # If supplied, the interface id (index within the subnet) to be used for the
16508
+ # customer router address. The id must be in the range of 1 to 6. If a subnet
16509
+ # mask is supplied, it must be /125, and the subnet should either be 0 or match
16510
+ # the selected subnet.
16511
+ # Corresponds to the JSON property `customerRouterIpv6InterfaceId`
16512
+ # @return [String]
16513
+ attr_accessor :customer_router_ipv6_interface_id
16514
+
16433
16515
  # [Output only for types PARTNER and DEDICATED. Not present for PARTNER_PROVIDER.
16434
16516
  # ] Dataplane version for this InterconnectAttachment. This field is only
16435
16517
  # present for Dataplane version 2 and higher. Absence of this field in the API
@@ -16611,6 +16693,14 @@ module Google
16611
16693
  # @return [String]
16612
16694
  attr_accessor :self_link
16613
16695
 
16696
+ # The stack type for this interconnect attachment to identify whether the IPv6
16697
+ # feature is enabled or not. If not specified, IPV4_ONLY will be used. This
16698
+ # field can be both set at interconnect attachments creation and update
16699
+ # interconnect attachment operations.
16700
+ # Corresponds to the JSON property `stackType`
16701
+ # @return [String]
16702
+ attr_accessor :stack_type
16703
+
16614
16704
  # [Output Only] The current state of this attachment's functionality. Enum
16615
16705
  # values ACTIVE and UNPROVISIONED are shared by DEDICATED/PRIVATE, PARTNER, and
16616
16706
  # PARTNER_PROVIDER interconnect attachments, while enum values PENDING_PARTNER,
@@ -16653,10 +16743,15 @@ module Google
16653
16743
  def update!(**args)
16654
16744
  @admin_enabled = args[:admin_enabled] if args.key?(:admin_enabled)
16655
16745
  @bandwidth = args[:bandwidth] if args.key?(:bandwidth)
16746
+ @candidate_ipv6_subnets = args[:candidate_ipv6_subnets] if args.key?(:candidate_ipv6_subnets)
16656
16747
  @candidate_subnets = args[:candidate_subnets] if args.key?(:candidate_subnets)
16657
16748
  @cloud_router_ip_address = args[:cloud_router_ip_address] if args.key?(:cloud_router_ip_address)
16749
+ @cloud_router_ipv6_address = args[:cloud_router_ipv6_address] if args.key?(:cloud_router_ipv6_address)
16750
+ @cloud_router_ipv6_interface_id = args[:cloud_router_ipv6_interface_id] if args.key?(:cloud_router_ipv6_interface_id)
16658
16751
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
16659
16752
  @customer_router_ip_address = args[:customer_router_ip_address] if args.key?(:customer_router_ip_address)
16753
+ @customer_router_ipv6_address = args[:customer_router_ipv6_address] if args.key?(:customer_router_ipv6_address)
16754
+ @customer_router_ipv6_interface_id = args[:customer_router_ipv6_interface_id] if args.key?(:customer_router_ipv6_interface_id)
16660
16755
  @dataplane_version = args[:dataplane_version] if args.key?(:dataplane_version)
16661
16756
  @description = args[:description] if args.key?(:description)
16662
16757
  @edge_availability_domain = args[:edge_availability_domain] if args.key?(:edge_availability_domain)
@@ -16679,6 +16774,7 @@ module Google
16679
16774
  @router = args[:router] if args.key?(:router)
16680
16775
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
16681
16776
  @self_link = args[:self_link] if args.key?(:self_link)
16777
+ @stack_type = args[:stack_type] if args.key?(:stack_type)
16682
16778
  @state = args[:state] if args.key?(:state)
16683
16779
  @type = args[:type] if args.key?(:type)
16684
16780
  @vlan_tag8021q = args[:vlan_tag8021q] if args.key?(:vlan_tag8021q)
@@ -20595,7 +20691,7 @@ module Google
20595
20691
  # @return [String]
20596
20692
  attr_accessor :ipv6_access_type
20597
20693
 
20598
- # [Output Only] An IPv6 internal network address for this network interface.
20694
+ # An IPv6 internal network address for this network interface.
20599
20695
  # Corresponds to the JSON property `ipv6Address`
20600
20696
  # @return [String]
20601
20697
  attr_accessor :ipv6_address
@@ -32385,6 +32481,13 @@ module Google
32385
32481
  # @return [String]
32386
32482
  attr_accessor :description
32387
32483
 
32484
+ # If specified, the domain name will be used during the integration between the
32485
+ # PSC connected endpoints and the Cloud DNS. For example, this is a valid domain
32486
+ # name: "p.mycompany.com.". Current max number of domain names supported is 1.
32487
+ # Corresponds to the JSON property `domainNames`
32488
+ # @return [Array<String>]
32489
+ attr_accessor :domain_names
32490
+
32388
32491
  # If true, enable the proxy protocol which is for supplying client TCP/IP
32389
32492
  # address data in TCP connections that traverse proxies on their way to
32390
32493
  # destination servers.
@@ -32473,6 +32576,7 @@ module Google
32473
32576
  @consumer_reject_lists = args[:consumer_reject_lists] if args.key?(:consumer_reject_lists)
32474
32577
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
32475
32578
  @description = args[:description] if args.key?(:description)
32579
+ @domain_names = args[:domain_names] if args.key?(:domain_names)
32476
32580
  @enable_proxy_protocol = args[:enable_proxy_protocol] if args.key?(:enable_proxy_protocol)
32477
32581
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
32478
32582
  @id = args[:id] if args.key?(:id)
@@ -34730,7 +34834,7 @@ module Google
34730
34834
  attr_accessor :ipv6_access_type
34731
34835
 
34732
34836
  # [Output Only] The range of internal IPv6 addresses that are owned by this
34733
- # subnetwork.
34837
+ # subnetwork. Note this will be for private google access only eventually.
34734
34838
  # Corresponds to the JSON property `ipv6CidrRange`
34735
34839
  # @return [String]
34736
34840
  attr_accessor :ipv6_cidr_range
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeBeta
18
18
  # Version of the google-apis-compute_beta gem
19
- GEM_VERSION = "0.21.0"
19
+ GEM_VERSION = "0.22.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211130"
25
+ REVISION = "20211208"
26
26
  end
27
27
  end
28
28
  end
@@ -1834,6 +1834,12 @@ module Google
1834
1834
  include Google::Apis::Core::JsonObjectSupport
1835
1835
  end
1836
1836
 
1837
+ class InstanceParams
1838
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1839
+
1840
+ include Google::Apis::Core::JsonObjectSupport
1841
+ end
1842
+
1837
1843
  class InstanceProperties
1838
1844
  class Representation < Google::Apis::Core::JsonRepresentation; end
1839
1845
 
@@ -5854,6 +5860,7 @@ module Google
5854
5860
  collection :guest_os_features, as: 'guestOsFeatures', class: Google::Apis::ComputeBeta::GuestOsFeature, decorator: Google::Apis::ComputeBeta::GuestOsFeature::Representation
5855
5861
 
5856
5862
  hash :labels, as: 'labels'
5863
+ collection :licenses, as: 'licenses'
5857
5864
  property :multi_writer, as: 'multiWriter'
5858
5865
  property :on_update_action, as: 'onUpdateAction'
5859
5866
  property :provisioned_iops, :numeric_string => true, as: 'provisionedIops'
@@ -8358,6 +8365,8 @@ module Google
8358
8365
 
8359
8366
  property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ComputeBeta::NetworkPerformanceConfig, decorator: Google::Apis::ComputeBeta::NetworkPerformanceConfig::Representation
8360
8367
 
8368
+ property :params, as: 'params', class: Google::Apis::ComputeBeta::InstanceParams, decorator: Google::Apis::ComputeBeta::InstanceParams::Representation
8369
+
8361
8370
  property :post_key_revocation_action_type, as: 'postKeyRevocationActionType'
8362
8371
  property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
8363
8372
  property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ComputeBeta::ReservationAffinity, decorator: Google::Apis::ComputeBeta::ReservationAffinity::Representation
@@ -9057,6 +9066,13 @@ module Google
9057
9066
  end
9058
9067
  end
9059
9068
 
9069
+ class InstanceParams
9070
+ # @private
9071
+ class Representation < Google::Apis::Core::JsonRepresentation
9072
+ hash :resource_manager_tags, as: 'resourceManagerTags'
9073
+ end
9074
+ end
9075
+
9060
9076
  class InstanceProperties
9061
9077
  # @private
9062
9078
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -9085,6 +9101,7 @@ module Google
9085
9101
  property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
9086
9102
  property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ComputeBeta::ReservationAffinity, decorator: Google::Apis::ComputeBeta::ReservationAffinity::Representation
9087
9103
 
9104
+ hash :resource_manager_tags, as: 'resourceManagerTags'
9088
9105
  collection :resource_policies, as: 'resourcePolicies'
9089
9106
  property :scheduling, as: 'scheduling', class: Google::Apis::ComputeBeta::Scheduling, decorator: Google::Apis::ComputeBeta::Scheduling::Representation
9090
9107
 
@@ -9350,10 +9367,15 @@ module Google
9350
9367
  class Representation < Google::Apis::Core::JsonRepresentation
9351
9368
  property :admin_enabled, as: 'adminEnabled'
9352
9369
  property :bandwidth, as: 'bandwidth'
9370
+ collection :candidate_ipv6_subnets, as: 'candidateIpv6Subnets'
9353
9371
  collection :candidate_subnets, as: 'candidateSubnets'
9354
9372
  property :cloud_router_ip_address, as: 'cloudRouterIpAddress'
9373
+ property :cloud_router_ipv6_address, as: 'cloudRouterIpv6Address'
9374
+ property :cloud_router_ipv6_interface_id, as: 'cloudRouterIpv6InterfaceId'
9355
9375
  property :creation_timestamp, as: 'creationTimestamp'
9356
9376
  property :customer_router_ip_address, as: 'customerRouterIpAddress'
9377
+ property :customer_router_ipv6_address, as: 'customerRouterIpv6Address'
9378
+ property :customer_router_ipv6_interface_id, as: 'customerRouterIpv6InterfaceId'
9357
9379
  property :dataplane_version, as: 'dataplaneVersion'
9358
9380
  property :description, as: 'description'
9359
9381
  property :edge_availability_domain, as: 'edgeAvailabilityDomain'
@@ -9378,6 +9400,7 @@ module Google
9378
9400
  property :router, as: 'router'
9379
9401
  property :satisfies_pzs, as: 'satisfiesPzs'
9380
9402
  property :self_link, as: 'selfLink'
9403
+ property :stack_type, as: 'stackType'
9381
9404
  property :state, as: 'state'
9382
9405
  property :type, as: 'type'
9383
9406
  property :vlan_tag8021q, as: 'vlanTag8021q'
@@ -13409,6 +13432,7 @@ module Google
13409
13432
  collection :consumer_reject_lists, as: 'consumerRejectLists'
13410
13433
  property :creation_timestamp, as: 'creationTimestamp'
13411
13434
  property :description, as: 'description'
13435
+ collection :domain_names, as: 'domainNames'
13412
13436
  property :enable_proxy_protocol, as: 'enableProxyProtocol'
13413
13437
  property :fingerprint, :base64 => true, as: 'fingerprint'
13414
13438
  property :id, :numeric_string => true, as: 'id'
@@ -2810,7 +2810,10 @@ module Google
2810
2810
  execute_or_queue_command(command, &block)
2811
2811
  end
2812
2812
 
2813
- # Creates a snapshot of a specified persistent disk.
2813
+ # Creates a snapshot of a specified persistent disk. For regular snapshot
2814
+ # creation, consider using snapshots.insert instead, as that method supports
2815
+ # more features, such as creating snapshots in a project different from the
2816
+ # source disk project.
2814
2817
  # @param [String] project
2815
2818
  # Project ID for this request.
2816
2819
  # @param [String] zone
@@ -3386,8 +3389,8 @@ module Google
3386
3389
  execute_or_queue_command(command, &block)
3387
3390
  end
3388
3391
 
3389
- # Update the specified disk with the data included in the request. Update is
3390
- # performed only on selected fields included as part of update-mask. Only the
3392
+ # Updates the specified disk with the data included in the request. The update
3393
+ # is performed only on selected fields included as part of update-mask. Only the
3391
3394
  # following fields can be modified: user_license.
3392
3395
  # @param [String] project
3393
3396
  # Project ID for this request.
@@ -6915,8 +6918,7 @@ module Google
6915
6918
  # operation with the same request ID was received, and if so, will ignore the
6916
6919
  # second request. This prevents clients from accidentally creating duplicate
6917
6920
  # commitments. The request ID must be a valid UUID with the exception that zero
6918
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
6919
- # MixerMutationRequestBuilder
6921
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
6920
6922
  # @param [String] fields
6921
6923
  # Selector specifying which fields to include in a partial response.
6922
6924
  # @param [String] quota_user
@@ -6999,8 +7001,7 @@ module Google
6999
7001
  # operation with the same request ID was received, and if so, will ignore the
7000
7002
  # second request. This prevents clients from accidentally creating duplicate
7001
7003
  # commitments. The request ID must be a valid UUID with the exception that zero
7002
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
7003
- # MixerMutationRequestBuilder
7004
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
7004
7005
  # @param [String] fields
7005
7006
  # Selector specifying which fields to include in a partial response.
7006
7007
  # @param [String] quota_user
@@ -7128,8 +7129,7 @@ module Google
7128
7129
  # operation with the same request ID was received, and if so, will ignore the
7129
7130
  # second request. This prevents clients from accidentally creating duplicate
7130
7131
  # commitments. The request ID must be a valid UUID with the exception that zero
7131
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
7132
- # MixerMutationRequestBuilder
7132
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
7133
7133
  # @param [String] fields
7134
7134
  # Selector specifying which fields to include in a partial response.
7135
7135
  # @param [String] quota_user
@@ -20154,8 +20154,7 @@ module Google
20154
20154
  # operation with the same request ID was received, and if so, will ignore the
20155
20155
  # second request. This prevents clients from accidentally creating duplicate
20156
20156
  # commitments. The request ID must be a valid UUID with the exception that zero
20157
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
20158
- # MixerMutationRequestBuilder
20157
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
20159
20158
  # @param [String] fields
20160
20159
  # Selector specifying which fields to include in a partial response.
20161
20160
  # @param [String] quota_user
@@ -20238,8 +20237,7 @@ module Google
20238
20237
  # operation with the same request ID was received, and if so, will ignore the
20239
20238
  # second request. This prevents clients from accidentally creating duplicate
20240
20239
  # commitments. The request ID must be a valid UUID with the exception that zero
20241
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
20242
- # MixerMutationRequestBuilder
20240
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
20243
20241
  # @param [String] fields
20244
20242
  # Selector specifying which fields to include in a partial response.
20245
20243
  # @param [String] quota_user
@@ -20367,8 +20365,7 @@ module Google
20367
20365
  # operation with the same request ID was received, and if so, will ignore the
20368
20366
  # second request. This prevents clients from accidentally creating duplicate
20369
20367
  # commitments. The request ID must be a valid UUID with the exception that zero
20370
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
20371
- # MixerMutationRequestBuilder
20368
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
20372
20369
  # @param [String] fields
20373
20370
  # Selector specifying which fields to include in a partial response.
20374
20371
  # @param [String] quota_user
@@ -20505,8 +20502,7 @@ module Google
20505
20502
  # operation with the same request ID was received, and if so, will ignore the
20506
20503
  # second request. This prevents clients from accidentally creating duplicate
20507
20504
  # commitments. The request ID must be a valid UUID with the exception that zero
20508
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
20509
- # MixerMutationRequestBuilder
20505
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
20510
20506
  # @param [String] fields
20511
20507
  # Selector specifying which fields to include in a partial response.
20512
20508
  # @param [String] quota_user
@@ -20595,8 +20591,7 @@ module Google
20595
20591
  # operation with the same request ID was received, and if so, will ignore the
20596
20592
  # second request. This prevents clients from accidentally creating duplicate
20597
20593
  # commitments. The request ID must be a valid UUID with the exception that zero
20598
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
20599
- # MixerMutationRequestBuilder
20594
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
20600
20595
  # @param [String] fields
20601
20596
  # Selector specifying which fields to include in a partial response.
20602
20597
  # @param [String] quota_user
@@ -20730,8 +20725,7 @@ module Google
20730
20725
  # operation with the same request ID was received, and if so, will ignore the
20731
20726
  # second request. This prevents clients from accidentally creating duplicate
20732
20727
  # commitments. The request ID must be a valid UUID with the exception that zero
20733
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
20734
- # MixerMutationRequestBuilder
20728
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
20735
20729
  # @param [String] fields
20736
20730
  # Selector specifying which fields to include in a partial response.
20737
20731
  # @param [String] quota_user
@@ -22224,7 +22218,10 @@ module Google
22224
22218
  execute_or_queue_command(command, &block)
22225
22219
  end
22226
22220
 
22227
- # Creates a snapshot of this regional disk.
22221
+ # Creates a snapshot of a specified persistent disk. For regular snapshot
22222
+ # creation, consider using snapshots.insert instead, as that method supports
22223
+ # more features, such as creating snapshots in a project different from the
22224
+ # source disk project.
22228
22225
  # @param [String] project
22229
22226
  # Project ID for this request.
22230
22227
  # @param [String] region
@@ -25519,8 +25516,7 @@ module Google
25519
25516
  # operation with the same request ID was received, and if so, will ignore the
25520
25517
  # second request. This prevents clients from accidentally creating duplicate
25521
25518
  # commitments. The request ID must be a valid UUID with the exception that zero
25522
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
25523
- # MixerMutationRequestBuilder
25519
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
25524
25520
  # @param [String] fields
25525
25521
  # Selector specifying which fields to include in a partial response.
25526
25522
  # @param [String] quota_user
@@ -25609,8 +25605,7 @@ module Google
25609
25605
  # operation with the same request ID was received, and if so, will ignore the
25610
25606
  # second request. This prevents clients from accidentally creating duplicate
25611
25607
  # commitments. The request ID must be a valid UUID with the exception that zero
25612
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
25613
- # MixerMutationRequestBuilder
25608
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
25614
25609
  # @param [String] fields
25615
25610
  # Selector specifying which fields to include in a partial response.
25616
25611
  # @param [String] quota_user
@@ -25987,8 +25982,7 @@ module Google
25987
25982
  # operation with the same request ID was received, and if so, will ignore the
25988
25983
  # second request. This prevents clients from accidentally creating duplicate
25989
25984
  # commitments. The request ID must be a valid UUID with the exception that zero
25990
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
25991
- # MixerMutationRequestBuilder
25985
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
25992
25986
  # @param [String] fields
25993
25987
  # Selector specifying which fields to include in a partial response.
25994
25988
  # @param [String] quota_user
@@ -26078,8 +26072,7 @@ module Google
26078
26072
  # operation with the same request ID was received, and if so, will ignore the
26079
26073
  # second request. This prevents clients from accidentally creating duplicate
26080
26074
  # commitments. The request ID must be a valid UUID with the exception that zero
26081
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
26082
- # MixerMutationRequestBuilder
26075
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
26083
26076
  # @param [String] fields
26084
26077
  # Selector specifying which fields to include in a partial response.
26085
26078
  # @param [String] quota_user
@@ -26570,8 +26563,7 @@ module Google
26570
26563
  # operation with the same request ID was received, and if so, will ignore the
26571
26564
  # second request. This prevents clients from accidentally creating duplicate
26572
26565
  # commitments. The request ID must be a valid UUID with the exception that zero
26573
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
26574
- # MixerMutationRequestBuilder
26566
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
26575
26567
  # @param [String] fields
26576
26568
  # Selector specifying which fields to include in a partial response.
26577
26569
  # @param [String] quota_user
@@ -26661,8 +26653,7 @@ module Google
26661
26653
  # operation with the same request ID was received, and if so, will ignore the
26662
26654
  # second request. This prevents clients from accidentally creating duplicate
26663
26655
  # commitments. The request ID must be a valid UUID with the exception that zero
26664
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
26665
- # MixerMutationRequestBuilder
26656
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
26666
26657
  # @param [String] fields
26667
26658
  # Selector specifying which fields to include in a partial response.
26668
26659
  # @param [String] quota_user
@@ -26795,8 +26786,7 @@ module Google
26795
26786
  # operation with the same request ID was received, and if so, will ignore the
26796
26787
  # second request. This prevents clients from accidentally creating duplicate
26797
26788
  # commitments. The request ID must be a valid UUID with the exception that zero
26798
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
26799
- # MixerMutationRequestBuilder
26789
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
26800
26790
  # @param [String] fields
26801
26791
  # Selector specifying which fields to include in a partial response.
26802
26792
  # @param [String] quota_user
@@ -26849,8 +26839,7 @@ module Google
26849
26839
  # operation with the same request ID was received, and if so, will ignore the
26850
26840
  # second request. This prevents clients from accidentally creating duplicate
26851
26841
  # commitments. The request ID must be a valid UUID with the exception that zero
26852
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
26853
- # MixerMutationRequestBuilder
26842
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
26854
26843
  # @param [String] fields
26855
26844
  # Selector specifying which fields to include in a partial response.
26856
26845
  # @param [String] quota_user
@@ -30029,8 +30018,7 @@ module Google
30029
30018
  # operation with the same request ID was received, and if so, will ignore the
30030
30019
  # second request. This prevents clients from accidentally creating duplicate
30031
30020
  # commitments. The request ID must be a valid UUID with the exception that zero
30032
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
30033
- # MixerMutationRequestBuilder
30021
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
30034
30022
  # @param [String] fields
30035
30023
  # Selector specifying which fields to include in a partial response.
30036
30024
  # @param [String] quota_user
@@ -30162,8 +30150,7 @@ module Google
30162
30150
  # operation with the same request ID was received, and if so, will ignore the
30163
30151
  # second request. This prevents clients from accidentally creating duplicate
30164
30152
  # commitments. The request ID must be a valid UUID with the exception that zero
30165
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
30166
- # MixerMutationRequestBuilder
30153
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
30167
30154
  # @param [String] fields
30168
30155
  # Selector specifying which fields to include in a partial response.
30169
30156
  # @param [String] quota_user
@@ -30298,8 +30285,7 @@ module Google
30298
30285
  # operation with the same request ID was received, and if so, will ignore the
30299
30286
  # second request. This prevents clients from accidentally creating duplicate
30300
30287
  # commitments. The request ID must be a valid UUID with the exception that zero
30301
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
30302
- # MixerMutationRequestBuilder
30288
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
30303
30289
  # @param [String] fields
30304
30290
  # Selector specifying which fields to include in a partial response.
30305
30291
  # @param [String] quota_user
@@ -30549,7 +30535,9 @@ module Google
30549
30535
  end
30550
30536
 
30551
30537
  # Creates a snapshot in the specified project using the data included in the
30552
- # request.
30538
+ # request. For regular snapshot creation, consider using this method instead of
30539
+ # disks.createSnapshot, as this method supports more features, such as creating
30540
+ # snapshots in a project different from the source disk project.
30553
30541
  # @param [String] project
30554
30542
  # Project ID for this request.
30555
30543
  # @param [Google::Apis::ComputeBeta::Snapshot] snapshot_object
@@ -30893,8 +30881,7 @@ module Google
30893
30881
  # operation with the same request ID was received, and if so, will ignore the
30894
30882
  # second request. This prevents clients from accidentally creating duplicate
30895
30883
  # commitments. The request ID must be a valid UUID with the exception that zero
30896
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
30897
- # MixerMutationRequestBuilder
30884
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
30898
30885
  # @param [String] fields
30899
30886
  # Selector specifying which fields to include in a partial response.
30900
30887
  # @param [String] quota_user
@@ -30978,8 +30965,7 @@ module Google
30978
30965
  # operation with the same request ID was received, and if so, will ignore the
30979
30966
  # second request. This prevents clients from accidentally creating duplicate
30980
30967
  # commitments. The request ID must be a valid UUID with the exception that zero
30981
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
30982
- # MixerMutationRequestBuilder
30968
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
30983
30969
  # @param [String] fields
30984
30970
  # Selector specifying which fields to include in a partial response.
30985
30971
  # @param [String] quota_user
@@ -32211,8 +32197,7 @@ module Google
32211
32197
  # operation with the same request ID was received, and if so, will ignore the
32212
32198
  # second request. This prevents clients from accidentally creating duplicate
32213
32199
  # commitments. The request ID must be a valid UUID with the exception that zero
32214
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
32215
- # MixerMutationRequestBuilder
32200
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
32216
32201
  # @param [String] fields
32217
32202
  # Selector specifying which fields to include in a partial response.
32218
32203
  # @param [String] quota_user
@@ -32295,8 +32280,7 @@ module Google
32295
32280
  # operation with the same request ID was received, and if so, will ignore the
32296
32281
  # second request. This prevents clients from accidentally creating duplicate
32297
32282
  # commitments. The request ID must be a valid UUID with the exception that zero
32298
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
32299
- # MixerMutationRequestBuilder
32283
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
32300
32284
  # @param [String] fields
32301
32285
  # Selector specifying which fields to include in a partial response.
32302
32286
  # @param [String] quota_user
@@ -32424,8 +32408,7 @@ module Google
32424
32408
  # operation with the same request ID was received, and if so, will ignore the
32425
32409
  # second request. This prevents clients from accidentally creating duplicate
32426
32410
  # commitments. The request ID must be a valid UUID with the exception that zero
32427
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
32428
- # MixerMutationRequestBuilder
32411
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
32429
32412
  # @param [String] fields
32430
32413
  # Selector specifying which fields to include in a partial response.
32431
32414
  # @param [String] quota_user
@@ -32812,8 +32795,7 @@ module Google
32812
32795
  # operation with the same request ID was received, and if so, will ignore the
32813
32796
  # second request. This prevents clients from accidentally creating duplicate
32814
32797
  # commitments. The request ID must be a valid UUID with the exception that zero
32815
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
32816
- # MixerMutationRequestBuilder
32798
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
32817
32799
  # @param [String] fields
32818
32800
  # Selector specifying which fields to include in a partial response.
32819
32801
  # @param [String] quota_user
@@ -33250,8 +33232,7 @@ module Google
33250
33232
  # operation with the same request ID was received, and if so, will ignore the
33251
33233
  # second request. This prevents clients from accidentally creating duplicate
33252
33234
  # commitments. The request ID must be a valid UUID with the exception that zero
33253
- # UUID is not supported ( 00000000-0000-0000-0000-000000000000). end_interface:
33254
- # MixerMutationRequestBuilder
33235
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
33255
33236
  # @param [String] fields
33256
33237
  # Selector specifying which fields to include in a partial response.
33257
33238
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.0
4
+ version: 0.22.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: 2021-12-06 00:00:00.000000000 Z
11
+ date: 2021-12-13 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_beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.21.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.22.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
63
63
  post_install_message:
64
64
  rdoc_options: []