google-apis-compute_alpha 0.56.0 → 0.57.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: 78e53b717fe47447b0a1013ef1cfe4a41b3260fb836ff5d40b0055df0ed7bdaf
4
- data.tar.gz: 01fa905b9cfb9a76e8dec478706874c206f01e9449431a945dad926c09a132a1
3
+ metadata.gz: 0b41fc19a2d3361b00cda9389b97e79d68f4562811b17e9d2ed1ff6b51c81faf
4
+ data.tar.gz: eccb33435fde38e1ce32057a02f3f41de432905dfe5fae82e3b1675adf99a731
5
5
  SHA512:
6
- metadata.gz: 68bfd43799f144155b283f1a6e87a364bcc5a6d6a6d19244e8e6eeb889c19f6756ce2375bf4b98039d6d03307a5ec8fedaa2f218c8fe396537589cc3d8f8e9f8
7
- data.tar.gz: 2818b9ee2e4a85e2c9390a550e2f574138abc4dd706725525138be6b4e8577b70b45b73485b789a3fadbed51e2adc345d2057580698a572ca1add99793ef7842
6
+ metadata.gz: 882e1eb267570fb38be9e8824e1f10e033cc382c611ce6363c6c374dc54587fe55444724a9f4f062b0e07245a98611e02a7f8794dec2820f4d1867cfaba40f72
7
+ data.tar.gz: 2e4216931d50682047af306a1d8cc8b57dd9fac2f8df796ffff89719196613a593a023bc40e8ea90d3433d623d8ed17c1c080214474ba9b61248ad1611a3f095
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_alpha
2
2
 
3
+ ### v0.57.0 (2023-01-22)
4
+
5
+ * Regenerated from discovery document revision 20230103
6
+
3
7
  ### v0.56.0 (2023-01-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20221224
@@ -27262,6 +27262,12 @@ module Google
27262
27262
  # @return [String]
27263
27263
  attr_accessor :nic_type
27264
27264
 
27265
+ # Name of the parent network interface of a VLAN based nic. If this field is
27266
+ # specified, vlan must be set.
27267
+ # Corresponds to the JSON property `parentNicName`
27268
+ # @return [String]
27269
+ attr_accessor :parent_nic_name
27270
+
27265
27271
  # The networking queue count that's specified by users for the network interface.
27266
27272
  # Both Rx and Tx queues will be set to this number. It'll be empty if not
27267
27273
  # specified by the users.
@@ -27296,6 +27302,13 @@ module Google
27296
27302
  # @return [String]
27297
27303
  attr_accessor :subnetwork
27298
27304
 
27305
+ # VLAN tag of a VLAN based network interface, must be in range from 2 to 4094
27306
+ # inclusively. This field is mandatory if the parent network interface name is
27307
+ # set.
27308
+ # Corresponds to the JSON property `vlan`
27309
+ # @return [Fixnum]
27310
+ attr_accessor :vlan
27311
+
27299
27312
  def initialize(**args)
27300
27313
  update!(**args)
27301
27314
  end
@@ -27315,10 +27328,12 @@ module Google
27315
27328
  @network_attachment = args[:network_attachment] if args.key?(:network_attachment)
27316
27329
  @network_ip = args[:network_ip] if args.key?(:network_ip)
27317
27330
  @nic_type = args[:nic_type] if args.key?(:nic_type)
27331
+ @parent_nic_name = args[:parent_nic_name] if args.key?(:parent_nic_name)
27318
27332
  @queue_count = args[:queue_count] if args.key?(:queue_count)
27319
27333
  @stack_type = args[:stack_type] if args.key?(:stack_type)
27320
27334
  @subinterfaces = args[:subinterfaces] if args.key?(:subinterfaces)
27321
27335
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
27336
+ @vlan = args[:vlan] if args.key?(:vlan)
27322
27337
  end
27323
27338
  end
27324
27339
 
@@ -43500,7 +43515,7 @@ module Google
43500
43515
  include Google::Apis::Core::Hashable
43501
43516
 
43502
43517
  # Attached disks configuration. If not provided, defaults are applied: For boot
43503
- # disk and any other R/W disks, new custom images will be created from each disk.
43518
+ # disk and any other R/W disks, the source images for each disk will be used.
43504
43519
  # For read-only disks, they will be attached in read-only mode. Local SSD disks
43505
43520
  # will be created as blank volumes.
43506
43521
  # Corresponds to the JSON property `diskConfigs`
@@ -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.56.0"
19
+ GEM_VERSION = "0.57.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221224"
25
+ REVISION = "20230103"
26
26
  end
27
27
  end
28
28
  end
@@ -13506,11 +13506,13 @@ module Google
13506
13506
  property :network_attachment, as: 'networkAttachment'
13507
13507
  property :network_ip, as: 'networkIP'
13508
13508
  property :nic_type, as: 'nicType'
13509
+ property :parent_nic_name, as: 'parentNicName'
13509
13510
  property :queue_count, as: 'queueCount'
13510
13511
  property :stack_type, as: 'stackType'
13511
13512
  collection :subinterfaces, as: 'subinterfaces', class: Google::Apis::ComputeAlpha::NetworkInterfaceSubInterface, decorator: Google::Apis::ComputeAlpha::NetworkInterfaceSubInterface::Representation
13512
13513
 
13513
13514
  property :subnetwork, as: 'subnetwork'
13515
+ property :vlan, as: 'vlan'
13514
13516
  end
13515
13517
  end
13516
13518
 
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.56.0
4
+ version: 0.57.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-01-15 00:00:00.000000000 Z
11
+ date: 2023-01-22 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.56.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.57.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: []