google-apis-compute_v1 0.70.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: a6c5c1526696c5845a810830db39d916b6781f3cb8e51d56e89bdbc10cb1b1fd
4
- data.tar.gz: 28eb9f35a9f9d57ca1fdfb467c2b94639bf15cd734ddb17052ab64ae206ab7a5
3
+ metadata.gz: 11c2160708cc9fd5638860dff7b003ee7933890b73212ef045f18153a9df41b8
4
+ data.tar.gz: 44353c4ab42f618b14063fed9d22a5f9119ed7bb8ba88e1628b89a91d6c1e2ac
5
5
  SHA512:
6
- metadata.gz: aea9b53ff6982cb0c4f2fc0ea73e070748860fa48ba6069fcc97661c17e32b3d61c482a401a328b446b45979ca8f29cd063486ca67e3cc905cbdf819dc675687
7
- data.tar.gz: 8dc05f1a2619d3919481c799dadfacd1756cf01eaa7285a87493d130a36090995a720e17b4bd38b888fe5ce169d7e2df8c8523d8b06f8c7cf15ff1cfd09a2e43
6
+ metadata.gz: 8d8816b079fd98a5e4936baafeea7f31aaaa582696106e5963569a5bdaedca2f7d51cb1800a2fe05ea67e4d3f848321106a6792c9e973ba2996f5d704e985b35
7
+ data.tar.gz: cf9d56eee6cd2c5db479ccdf1b8f43f3923039d0eb0bed8b228eb968d8e0ac26bd4cce1c80c3c2fca00fd7c5acbc82818218e3ac229282b8f78973c057f6ecf6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_v1
2
2
 
3
+ ### v0.71.0 (2023-06-18)
4
+
5
+ * Regenerated from discovery document revision 20230606
6
+
3
7
  ### v0.70.0 (2023-06-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20230530
@@ -5762,7 +5762,9 @@ module Google
5762
5762
 
5763
5763
  # The name of the encryption key that is stored in Google Cloud KMS. For example:
5764
5764
  # "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/
5765
- # cryptoKeys/key
5765
+ # cryptoKeys/key The fully-qualifed key name may be returned for resource GET
5766
+ # requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/
5767
+ # keyRings/ key_region/cryptoKeys/key /cryptoKeyVersions/1
5766
5768
  # Corresponds to the JSON property `kmsKeyName`
5767
5769
  # @return [String]
5768
5770
  attr_accessor :kms_key_name
@@ -13188,6 +13190,16 @@ module Google
13188
13190
  # @return [Fixnum]
13189
13191
  attr_accessor :id
13190
13192
 
13193
+ # Encrypts suspended data for an instance with a customer-managed encryption key.
13194
+ # If you are creating a new instance, this field will encrypt the local SSD and
13195
+ # in-memory contents of the instance during the suspend operation. If you do not
13196
+ # provide an encryption key when creating the instance, then the local SSD and
13197
+ # in-memory contents will be encrypted using an automatically generated key
13198
+ # during the suspend operation.
13199
+ # Corresponds to the JSON property `instanceEncryptionKey`
13200
+ # @return [Google::Apis::ComputeV1::CustomerEncryptionKey]
13201
+ attr_accessor :instance_encryption_key
13202
+
13191
13203
  # KeyRevocationActionType of the instance. Supported options are "STOP" and "
13192
13204
  # NONE". The default value is "NONE" if it is not specified.
13193
13205
  # Corresponds to the JSON property `keyRevocationActionType`
@@ -13407,6 +13419,7 @@ module Google
13407
13419
  @guest_accelerators = args[:guest_accelerators] if args.key?(:guest_accelerators)
13408
13420
  @hostname = args[:hostname] if args.key?(:hostname)
13409
13421
  @id = args[:id] if args.key?(:id)
13422
+ @instance_encryption_key = args[:instance_encryption_key] if args.key?(:instance_encryption_key)
13410
13423
  @key_revocation_action_type = args[:key_revocation_action_type] if args.key?(:key_revocation_action_type)
13411
13424
  @kind = args[:kind] if args.key?(:kind)
13412
13425
  @label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint)
@@ -32174,6 +32187,20 @@ module Google
32174
32187
  # @return [Google::Apis::ComputeV1::RouterBgpPeerBfd]
32175
32188
  attr_accessor :bfd
32176
32189
 
32190
+ # A list of user-defined custom learned route IP address ranges for a BGP
32191
+ # session.
32192
+ # Corresponds to the JSON property `customLearnedIpRanges`
32193
+ # @return [Array<Google::Apis::ComputeV1::RouterBgpPeerCustomLearnedIpRange>]
32194
+ attr_accessor :custom_learned_ip_ranges
32195
+
32196
+ # The user-defined custom learned route priority for a BGP session. This value
32197
+ # is applied to all custom learned route ranges for the session. You can choose
32198
+ # a value from `0` to `65335`. If you don't provide a value, Google Cloud
32199
+ # assigns a priority of `100` to the ranges.
32200
+ # Corresponds to the JSON property `customLearnedRoutePriority`
32201
+ # @return [Fixnum]
32202
+ attr_accessor :custom_learned_route_priority
32203
+
32177
32204
  # The status of the BGP peer connection. If set to FALSE, any active session
32178
32205
  # with the peer is terminated and all associated routing information is removed.
32179
32206
  # If set to TRUE, the peer connection can be established with routing
@@ -32267,6 +32294,8 @@ module Google
32267
32294
  @advertised_ip_ranges = args[:advertised_ip_ranges] if args.key?(:advertised_ip_ranges)
32268
32295
  @advertised_route_priority = args[:advertised_route_priority] if args.key?(:advertised_route_priority)
32269
32296
  @bfd = args[:bfd] if args.key?(:bfd)
32297
+ @custom_learned_ip_ranges = args[:custom_learned_ip_ranges] if args.key?(:custom_learned_ip_ranges)
32298
+ @custom_learned_route_priority = args[:custom_learned_route_priority] if args.key?(:custom_learned_route_priority)
32270
32299
  @enable = args[:enable] if args.key?(:enable)
32271
32300
  @enable_ipv6 = args[:enable_ipv6] if args.key?(:enable_ipv6)
32272
32301
  @interface_name = args[:interface_name] if args.key?(:interface_name)
@@ -32333,6 +32362,27 @@ module Google
32333
32362
  end
32334
32363
  end
32335
32364
 
32365
+ #
32366
+ class RouterBgpPeerCustomLearnedIpRange
32367
+ include Google::Apis::Core::Hashable
32368
+
32369
+ # The custom learned route IP address range. Must be a valid CIDR-formatted
32370
+ # prefix. If an IP address is provided without a subnet mask, it is interpreted
32371
+ # as, for IPv4, a `/32` singular IP address range, and, for IPv6, `/128`.
32372
+ # Corresponds to the JSON property `range`
32373
+ # @return [String]
32374
+ attr_accessor :range
32375
+
32376
+ def initialize(**args)
32377
+ update!(**args)
32378
+ end
32379
+
32380
+ # Update properties of this object
32381
+ def update!(**args)
32382
+ @range = args[:range] if args.key?(:range)
32383
+ end
32384
+ end
32385
+
32336
32386
  #
32337
32387
  class RouterInterface
32338
32388
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeV1
18
18
  # Version of the google-apis-compute_v1 gem
19
- GEM_VERSION = "0.70.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 = "20230606"
26
26
  end
27
27
  end
28
28
  end
@@ -4204,6 +4204,12 @@ module Google
4204
4204
  include Google::Apis::Core::JsonObjectSupport
4205
4205
  end
4206
4206
 
4207
+ class RouterBgpPeerCustomLearnedIpRange
4208
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4209
+
4210
+ include Google::Apis::Core::JsonObjectSupport
4211
+ end
4212
+
4207
4213
  class RouterInterface
4208
4214
  class Representation < Google::Apis::Core::JsonRepresentation; end
4209
4215
 
@@ -8898,6 +8904,8 @@ module Google
8898
8904
 
8899
8905
  property :hostname, as: 'hostname'
8900
8906
  property :id, :numeric_string => true, as: 'id'
8907
+ property :instance_encryption_key, as: 'instanceEncryptionKey', class: Google::Apis::ComputeV1::CustomerEncryptionKey, decorator: Google::Apis::ComputeV1::CustomerEncryptionKey::Representation
8908
+
8901
8909
  property :key_revocation_action_type, as: 'keyRevocationActionType'
8902
8910
  property :kind, as: 'kind'
8903
8911
  property :label_fingerprint, :base64 => true, as: 'labelFingerprint'
@@ -13767,6 +13775,9 @@ module Google
13767
13775
  property :advertised_route_priority, as: 'advertisedRoutePriority'
13768
13776
  property :bfd, as: 'bfd', class: Google::Apis::ComputeV1::RouterBgpPeerBfd, decorator: Google::Apis::ComputeV1::RouterBgpPeerBfd::Representation
13769
13777
 
13778
+ collection :custom_learned_ip_ranges, as: 'customLearnedIpRanges', class: Google::Apis::ComputeV1::RouterBgpPeerCustomLearnedIpRange, decorator: Google::Apis::ComputeV1::RouterBgpPeerCustomLearnedIpRange::Representation
13779
+
13780
+ property :custom_learned_route_priority, as: 'customLearnedRoutePriority'
13770
13781
  property :enable, as: 'enable'
13771
13782
  property :enable_ipv6, as: 'enableIpv6'
13772
13783
  property :interface_name, as: 'interfaceName'
@@ -13792,6 +13803,13 @@ module Google
13792
13803
  end
13793
13804
  end
13794
13805
 
13806
+ class RouterBgpPeerCustomLearnedIpRange
13807
+ # @private
13808
+ class Representation < Google::Apis::Core::JsonRepresentation
13809
+ property :range, as: 'range'
13810
+ end
13811
+ end
13812
+
13795
13813
  class RouterInterface
13796
13814
  # @private
13797
13815
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.70.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-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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.70.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.71.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
63
63
  post_install_message:
64
64
  rdoc_options: []