google-apis-compute_alpha 0.29.0 → 0.30.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: cdecb8230cd13fa0d0330072ac00861c0c0aacd94a603517c9356baa41807716
4
- data.tar.gz: 9e24db4b2c27b4f85633e2169e9baa44cf7a80bba3d1fd43116810eaac7cbfd3
3
+ metadata.gz: c11ac3c8862838ae546f5b1920a6c8be3de284b3bb8d289800125f3b453888b7
4
+ data.tar.gz: 02d774facaa383a92409f1674b97bdf80d95f92bda489818742b934484e3ef53
5
5
  SHA512:
6
- metadata.gz: f5badd56b10eabfdf77cad040255706ecb626c31340888521e5d58e1d569f8678f46dde59c1e813af21aa418ec4cdf7f3fdd7f5be64a2e53474cd274e05a4eae
7
- data.tar.gz: b6ad0bf5726aa7fcb98f21a509df0dcd356aeebcaca64db7a2893b71a43254957a3f7b77d61ee02ccb01d6eb60eb9b06cdd1ba1e617bde29c90fed066fcd50c8
6
+ metadata.gz: 73aabfd19e21609103edf2a24bf7c60b3d5dc61211155d22f19e68820af06289d6985da022b96cf25c9f2835f09803f7267005ab745e4fccf908dffcb7fe2af4
7
+ data.tar.gz: cd86d34a98e2cdd5387edd38799b93e4e28f3a935635a90bf25cf92a7377db7b3f12734f341d3ea6fb12c83088d41e2cce6fef97beda0b7a45eea447322f75f1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_alpha
2
2
 
3
+ ### v0.30.0 (2022-03-23)
4
+
5
+ * Regenerated from discovery document revision 20220315
6
+
3
7
  ### v0.29.0 (2022-03-18)
4
8
 
5
9
  * Regenerated from discovery document revision 20220312
@@ -10762,13 +10762,9 @@ module Google
10762
10762
  # @return [String]
10763
10763
  attr_accessor :label_fingerprint
10764
10764
 
10765
- # A list of labels to apply for this resource. Each label key & value must
10766
- # comply with RFC1035. Specifically, the name must be 1-63 characters long and
10767
- # match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the
10768
- # first character must be a lowercase letter, and all following characters must
10769
- # be a dash, lowercase letter, or digit, except the last character, which cannot
10770
- # be a dash. For example, "webserver-frontend": "images". A label value can also
10771
- # be empty (e.g. "my-label": "").
10765
+ # A list of labels to apply for this resource. Each label must comply with the
10766
+ # requirements for labels. For example, "webserver-frontend": "images". A label
10767
+ # value can also be empty (e.g. "my-label": "").
10772
10768
  # Corresponds to the JSON property `labels`
10773
10769
  # @return [Hash<String,String>]
10774
10770
  attr_accessor :labels
@@ -10985,9 +10981,9 @@ module Google
10985
10981
 
10986
10982
  # The ID of a supported feature. To add multiple values, use commas to separate
10987
10983
  # values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE -
10988
- # WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - SECURE_BOOT - GVNIC -
10989
- # SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_SNP_CAPABLE For more information,
10990
- # see Enabling guest operating system features.
10984
+ # WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE -
10985
+ # SUSPEND_RESUME_COMPATIBLE - SEV_SNP_CAPABLE For more information, see Enabling
10986
+ # guest operating system features.
10991
10987
  # Corresponds to the JSON property `type`
10992
10988
  # @return [String]
10993
10989
  attr_accessor :type
@@ -24260,10 +24256,8 @@ module Google
24260
24256
  class NetworkEndpointGroupServerlessDeployment
24261
24257
  include Google::Apis::Core::Hashable
24262
24258
 
24263
- # The platform of the backend target(s) of this NEG. Possible values include: 1.
24264
- # API Gateway: apigateway.googleapis.com 2. App Engine: appengine.googleapis.com
24265
- # 3. Cloud Functions: cloudfunctions.googleapis.com 4. Cloud Run: run.googleapis.
24266
- # com
24259
+ # The platform of the backend target(s) of this NEG. The only supported value is
24260
+ # API Gateway: apigateway.googleapis.com.
24267
24261
  # Corresponds to the JSON property `platform`
24268
24262
  # @return [String]
24269
24263
  attr_accessor :platform
@@ -25018,6 +25012,12 @@ module Google
25018
25012
  # @return [Fixnum]
25019
25013
  attr_accessor :peer_mtu
25020
25014
 
25015
+ # Which IP version(s) of traffic and routes are allowed to be imported or
25016
+ # exported between peer networks. The default value is IPV4_ONLY.
25017
+ # Corresponds to the JSON property `stackType`
25018
+ # @return [String]
25019
+ attr_accessor :stack_type
25020
+
25021
25021
  # [Output Only] State for the peering, either `ACTIVE` or `INACTIVE`. The
25022
25022
  # peering is `ACTIVE` when there's a matching configuration in the peer network.
25023
25023
  # Corresponds to the JSON property `state`
@@ -25045,6 +25045,7 @@ module Google
25045
25045
  @name = args[:name] if args.key?(:name)
25046
25046
  @network = args[:network] if args.key?(:network)
25047
25047
  @peer_mtu = args[:peer_mtu] if args.key?(:peer_mtu)
25048
+ @stack_type = args[:stack_type] if args.key?(:stack_type)
25048
25049
  @state = args[:state] if args.key?(:state)
25049
25050
  @state_details = args[:state_details] if args.key?(:state_details)
25050
25051
  end
@@ -34184,6 +34185,11 @@ module Google
34184
34185
  # @return [Fixnum]
34185
34186
  attr_accessor :availability_domain
34186
34187
 
34188
+ # Time in future when the instance will be terminated in RFC3339 text format.
34189
+ # Corresponds to the JSON property `terminationTimestamp`
34190
+ # @return [String]
34191
+ attr_accessor :termination_timestamp
34192
+
34187
34193
  def initialize(**args)
34188
34194
  update!(**args)
34189
34195
  end
@@ -34191,6 +34197,7 @@ module Google
34191
34197
  # Update properties of this object
34192
34198
  def update!(**args)
34193
34199
  @availability_domain = args[:availability_domain] if args.key?(:availability_domain)
34200
+ @termination_timestamp = args[:termination_timestamp] if args.key?(:termination_timestamp)
34194
34201
  end
34195
34202
  end
34196
34203
 
@@ -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.29.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220312"
25
+ REVISION = "20220315"
26
26
  end
27
27
  end
28
28
  end
@@ -12372,6 +12372,7 @@ module Google
12372
12372
  property :name, as: 'name'
12373
12373
  property :network, as: 'network'
12374
12374
  property :peer_mtu, as: 'peerMtu'
12375
+ property :stack_type, as: 'stackType'
12375
12376
  property :state, as: 'state'
12376
12377
  property :state_details, as: 'stateDetails'
12377
12378
  end
@@ -14807,6 +14808,7 @@ module Google
14807
14808
  # @private
14808
14809
  class Representation < Google::Apis::Core::JsonRepresentation
14809
14810
  property :availability_domain, as: 'availabilityDomain'
14811
+ property :termination_timestamp, as: 'terminationTimestamp'
14810
14812
  end
14811
14813
  end
14812
14814
 
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.29.0
4
+ version: 0.30.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: 2022-03-21 00:00:00.000000000 Z
11
+ date: 2022-03-28 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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.30.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: []