google-apis-baremetalsolution_v1alpha1 0.3.0 → 0.6.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: 6f955eafe572def29dfb6cc79ba8b168198257cb8b20068c2a8733e7632de061
4
- data.tar.gz: 0027f0d3829ddbab28b654e565a36873bf4abb0baf7a1c87d3926a6413395f74
3
+ metadata.gz: 0c7128c501baa52e531747d0cdc566f51e3a7415cce571c008d1a20ea5f41117
4
+ data.tar.gz: 2a94257ae1339a79f07cd7fc08d17ffc2884cc90e7d92d68ae29d97cb7a89a8c
5
5
  SHA512:
6
- metadata.gz: 8514461d62143357453486a4ead09d8eefc6ee08972f8a545f4e202fcdd89a3b2fe7d6e96dbb9ca587bde22451606584bd6b27ddca584b3f132beb05d958f411
7
- data.tar.gz: 6a0e4572a7d520841492d89061508f580f9d531af7f9faa4fc4b8c6cab568a49e12903c2e98ab63e7c234ee48258018d0298654858c9d2af4f35ad674a31afd6
6
+ metadata.gz: '03783ee69840c87bc1bf9e1c015df517fbcb6c3017f70e890c80f937ee8239be1a1e0588d4cc9b4a72cda263b4fd8d2857f6ba7ba28071372649af0b49225e89'
7
+ data.tar.gz: d34e39c55790d961b3438940fe5bd3e5091e6eb3d391f6b3fda793777f16f0566abd18688f806fe5daea4fc6ba88279e3d1d519d330fa5ac4d53929f7e4aa0e2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Release history for google-apis-baremetalsolution_v1alpha1
2
2
 
3
+ ### v0.6.0 (2022-06-04)
4
+
5
+ * Regenerated from discovery document revision 20220524
6
+ * Regenerated using generator version 0.5.0
7
+
8
+ ### v0.5.0 (2022-02-23)
9
+
10
+ * Regenerated from discovery document revision 20220209
11
+ * Regenerated using generator version 0.4.1
12
+
13
+ ### v0.4.0 (2021-10-27)
14
+
15
+ * Regenerated from discovery document revision 20211015
16
+
3
17
  ### v0.3.0 (2021-10-15)
4
18
 
5
19
  * Regenerated from discovery document revision 20211008
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/baremetalsolution_v1alpha1"
51
51
  client = Google::Apis::BaremetalsolutionV1alpha1::BaremetalsolutionService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Baremetalsolution service in particular.)
67
67
 
@@ -178,7 +178,19 @@ module Google
178
178
  # @return [String]
179
179
  attr_accessor :address
180
180
 
181
- # Id of the network to use, within the same ProvisioningConfig request.
181
+ # Name of the existing network to use. Will be of the format at--vlan for pre-
182
+ # intake UI networks like for eg, at-123456-vlan001 or any user-defined name
183
+ # like for eg, my-network-name for networks provisioned using intake UI. The
184
+ # field is exclusively filled only in case of an already existing network.
185
+ # Mutually exclusive with network_id.
186
+ # Corresponds to the JSON property `existingNetworkId`
187
+ # @return [String]
188
+ attr_accessor :existing_network_id
189
+
190
+ # Name of the network to use, within the same ProvisioningConfig request. This
191
+ # represents a new network being provisioned in the same request. Can have any
192
+ # user-defined name like for eg, my-network-name. Mutually exclusive with
193
+ # existing_network_id.
182
194
  # Corresponds to the JSON property `networkId`
183
195
  # @return [String]
184
196
  attr_accessor :network_id
@@ -190,6 +202,7 @@ module Google
190
202
  # Update properties of this object
191
203
  def update!(**args)
192
204
  @address = args[:address] if args.key?(:address)
205
+ @existing_network_id = args[:existing_network_id] if args.key?(:existing_network_id)
193
206
  @network_id = args[:network_id] if args.key?(:network_id)
194
207
  end
195
208
  end
@@ -279,7 +292,8 @@ module Google
279
292
  # @return [String]
280
293
  attr_accessor :cidr
281
294
 
282
- # A single machine, identified by an ID.
295
+ # Either a single machine, identified by an ID, or a comma-separated list of
296
+ # machine IDs.
283
297
  # Corresponds to the JSON property `machineId`
284
298
  # @return [String]
285
299
  attr_accessor :machine_id
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BaremetalsolutionV1alpha1
18
18
  # Version of the google-apis-baremetalsolution_v1alpha1 gem
19
- GEM_VERSION = "0.3.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.5.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211008"
25
+ REVISION = "20220524"
26
26
  end
27
27
  end
28
28
  end
@@ -140,6 +140,7 @@ module Google
140
140
  # @private
141
141
  class Representation < Google::Apis::Core::JsonRepresentation
142
142
  property :address, as: 'address'
143
+ property :existing_network_id, as: 'existingNetworkId'
143
144
  property :network_id, as: 'networkId'
144
145
  end
145
146
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-baremetalsolution_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.6.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-10-18 00:00:00.000000000 Z
11
+ date: 2022-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.5'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.4'
29
+ version: '0.5'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-baremetalsolution_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-baremetalsolution_v1alpha1/v0.3.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-baremetalsolution_v1alpha1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-baremetalsolution_v1alpha1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-baremetalsolution_v1alpha1/v0.6.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-baremetalsolution_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths:
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Bare Metal Solution API V1alpha1