google-apis-compute_beta 0.69.0 → 0.71.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 37f4fe75ef69906ceae35c192b2a34a4411f14a7c19133bc1c3424e8cf6e75c0
4
- data.tar.gz: 83bfaaed914a3c639951274baf53d98ba8663ad5291153e0e7631749d6dc541f
3
+ metadata.gz: e1f6f87734b1cde6b8c951eea8ee441849caf3dc124494662dc01ef02549ebe8
4
+ data.tar.gz: e29ff676d8051e6ee54dabdd73b28e66d699f7196f5edb19a387edcc435864d4
5
5
  SHA512:
6
- metadata.gz: 3dfb848631d669f21181551c6dd749896fcea148c62aa35e1a8a0a1218ed240c2ebe8987b9af7b3b56496a7470bc15ca15d433c1d554698a47ac8edce410f3d0
7
- data.tar.gz: a994d48a3a0f60577131df5f16db15cece4faba98036609d65bce671c7301cde40e7d3d49aa2efd4efec4609729fbb6f7ffa2e8d4b8ef3626e6c27a55ced38c4
6
+ metadata.gz: 123fcdfdbcfaad35dba9023052886b2ea11af2103dc0beaa012802bdf0a6673ba9c8d50c5d20207201051a4150fd0612dd7218fbfe7371c702d506e277ae400d
7
+ data.tar.gz: a328611901c46237673fc0b378442199045dd0db79d0d2a9c6946539fc1f8ff69ad00e977b9b5ff13b77977d81521b93f1d8384d1fdb96b2dcd80392bfca7a92
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-compute_beta
2
2
 
3
+ ### v0.71.0 (2023-06-18)
4
+
5
+ * Regenerated from discovery document revision 20230606
6
+
7
+ ### v0.70.0 (2023-06-11)
8
+
9
+ * Regenerated from discovery document revision 20230530
10
+
3
11
  ### v0.69.0 (2023-05-28)
4
12
 
5
13
  * Regenerated from discovery document revision 20230516
@@ -6032,7 +6032,9 @@ module Google
6032
6032
 
6033
6033
  # The name of the encryption key that is stored in Google Cloud KMS. For example:
6034
6034
  # "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/
6035
- # cryptoKeys/key
6035
+ # cryptoKeys/key The fully-qualifed key name may be returned for resource GET
6036
+ # requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/
6037
+ # keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
6036
6038
  # Corresponds to the JSON property `kmsKeyName`
6037
6039
  # @return [String]
6038
6040
  attr_accessor :kms_key_name
@@ -33374,6 +33376,12 @@ module Google
33374
33376
  # @return [String]
33375
33377
  attr_accessor :next_hop_gateway
33376
33378
 
33379
+ # [Output Only] The full resource name of the Network Connectivity Center hub
33380
+ # that will handle matching packets.
33381
+ # Corresponds to the JSON property `nextHopHub`
33382
+ # @return [String]
33383
+ attr_accessor :next_hop_hub
33384
+
33377
33385
  # The URL to a forwarding rule of type loadBalancingScheme=INTERNAL that should
33378
33386
  # handle matching packets or the IP address of the forwarding Rule. For example,
33379
33387
  # the following are all valid URLs: - 10.128.0.56 - https://www.googleapis.com/
@@ -33473,6 +33481,7 @@ module Google
33473
33481
  @name = args[:name] if args.key?(:name)
33474
33482
  @network = args[:network] if args.key?(:network)
33475
33483
  @next_hop_gateway = args[:next_hop_gateway] if args.key?(:next_hop_gateway)
33484
+ @next_hop_hub = args[:next_hop_hub] if args.key?(:next_hop_hub)
33476
33485
  @next_hop_ilb = args[:next_hop_ilb] if args.key?(:next_hop_ilb)
33477
33486
  @next_hop_instance = args[:next_hop_instance] if args.key?(:next_hop_instance)
33478
33487
  @next_hop_interconnect_attachment = args[:next_hop_interconnect_attachment] if args.key?(:next_hop_interconnect_attachment)
@@ -38577,6 +38586,11 @@ module Google
38577
38586
  # @return [String]
38578
38587
  attr_accessor :source_instant_snapshot
38579
38588
 
38589
+ # Customer provided encryption key when creating Snapshot from Instant Snapshot.
38590
+ # Corresponds to the JSON property `sourceInstantSnapshotEncryptionKey`
38591
+ # @return [Google::Apis::ComputeBeta::CustomerEncryptionKey]
38592
+ attr_accessor :source_instant_snapshot_encryption_key
38593
+
38580
38594
  # [Output Only] The unique ID of the instant snapshot used to create this
38581
38595
  # snapshot. This value identifies the exact instant snapshot that was used to
38582
38596
  # create this persistent disk. For example, if you created the persistent disk
@@ -38660,6 +38674,7 @@ module Google
38660
38674
  @source_disk_encryption_key = args[:source_disk_encryption_key] if args.key?(:source_disk_encryption_key)
38661
38675
  @source_disk_id = args[:source_disk_id] if args.key?(:source_disk_id)
38662
38676
  @source_instant_snapshot = args[:source_instant_snapshot] if args.key?(:source_instant_snapshot)
38677
+ @source_instant_snapshot_encryption_key = args[:source_instant_snapshot_encryption_key] if args.key?(:source_instant_snapshot_encryption_key)
38663
38678
  @source_instant_snapshot_id = args[:source_instant_snapshot_id] if args.key?(:source_instant_snapshot_id)
38664
38679
  @source_snapshot_schedule_policy = args[:source_snapshot_schedule_policy] if args.key?(:source_snapshot_schedule_policy)
38665
38680
  @source_snapshot_schedule_policy_id = args[:source_snapshot_schedule_policy_id] if args.key?(:source_snapshot_schedule_policy_id)
@@ -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.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 = "20230516"
25
+ REVISION = "20230606"
26
26
  end
27
27
  end
28
28
  end
@@ -14415,6 +14415,7 @@ module Google
14415
14415
  property :name, as: 'name'
14416
14416
  property :network, as: 'network'
14417
14417
  property :next_hop_gateway, as: 'nextHopGateway'
14418
+ property :next_hop_hub, as: 'nextHopHub'
14418
14419
  property :next_hop_ilb, as: 'nextHopIlb'
14419
14420
  property :next_hop_instance, as: 'nextHopInstance'
14420
14421
  property :next_hop_interconnect_attachment, as: 'nextHopInterconnectAttachment'
@@ -15675,6 +15676,8 @@ module Google
15675
15676
 
15676
15677
  property :source_disk_id, as: 'sourceDiskId'
15677
15678
  property :source_instant_snapshot, as: 'sourceInstantSnapshot'
15679
+ property :source_instant_snapshot_encryption_key, as: 'sourceInstantSnapshotEncryptionKey', class: Google::Apis::ComputeBeta::CustomerEncryptionKey, decorator: Google::Apis::ComputeBeta::CustomerEncryptionKey::Representation
15680
+
15678
15681
  property :source_instant_snapshot_id, as: 'sourceInstantSnapshotId'
15679
15682
  property :source_snapshot_schedule_policy, as: 'sourceSnapshotSchedulePolicy'
15680
15683
  property :source_snapshot_schedule_policy_id, as: 'sourceSnapshotSchedulePolicyId'
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.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-05-28 00:00:00.000000000 Z
11
+ date: 2023-06-18 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.69.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.71.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: []