google-apis-baremetalsolution_v2 0.38.0 → 0.39.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e84fec7a96f12897df20f2b6492b01a5d19b0be2f7b98fe140b8f54e40d38ef
|
4
|
+
data.tar.gz: 84d468646a54a17067e5318ae9c6dad180fb6f8c355b8b8fd523c7dab4961566
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2133dd1e63e6de72470dabf1b4c1bc5db8807e6682927e397462947c3ce22f2a24cc5059ad52d61193a9cc57f42b4d38b16a0016e1c6389d4ad7b1eb248b863
|
7
|
+
data.tar.gz: eb44a557ed609bc34b399887b0c1d6b89a9bcc688deaaa4f6db5b908325aaa697fcd1c75eb2325330e518b68e704b344cf2fd2fdceaeae4e30a47be635b750d1
|
data/CHANGELOG.md
CHANGED
@@ -371,8 +371,8 @@ module Google
|
|
371
371
|
attr_accessor :os_image
|
372
372
|
|
373
373
|
# Immutable. Pod name. Pod is an independent part of infrastructure. Instance
|
374
|
-
# can be connected to the assets (networks, volumes) allocated in the same
|
375
|
-
#
|
374
|
+
# can only be connected to the assets (networks, volumes) allocated in the same
|
375
|
+
# pod.
|
376
376
|
# Corresponds to the JSON property `pod`
|
377
377
|
# @return [String]
|
378
378
|
attr_accessor :pod
|
@@ -466,7 +466,7 @@ module Google
|
|
466
466
|
# @return [Array<Google::Apis::BaremetalsolutionV2::GoogleCloudBaremetalsolutionV2LogicalInterface>]
|
467
467
|
attr_accessor :logical_interfaces
|
468
468
|
|
469
|
-
#
|
469
|
+
# The name of the instance config.
|
470
470
|
# Corresponds to the JSON property `name`
|
471
471
|
# @return [String]
|
472
472
|
attr_accessor :name
|
@@ -493,7 +493,7 @@ module Google
|
|
493
493
|
# @return [Google::Apis::BaremetalsolutionV2::NetworkAddress]
|
494
494
|
attr_accessor :private_network
|
495
495
|
|
496
|
-
# List of names of ssh keys used to provision the instance.
|
496
|
+
# Optional. List of names of ssh keys used to provision the instance.
|
497
497
|
# Corresponds to the JSON property `sshKeyNames`
|
498
498
|
# @return [Array<String>]
|
499
499
|
attr_accessor :ssh_key_names
|
@@ -1162,7 +1162,9 @@ module Google
|
|
1162
1162
|
# @return [String]
|
1163
1163
|
attr_accessor :name
|
1164
1164
|
|
1165
|
-
#
|
1165
|
+
# Immutable. Pod name. Pod is an independent part of infrastructure. Network can
|
1166
|
+
# only be connected to the assets (instances, nfsshares) allocated in the same
|
1167
|
+
# pod.
|
1166
1168
|
# Corresponds to the JSON property `pod`
|
1167
1169
|
# @return [String]
|
1168
1170
|
attr_accessor :pod
|
@@ -1529,6 +1531,13 @@ module Google
|
|
1529
1531
|
# @return [String]
|
1530
1532
|
attr_accessor :nfs_share_id
|
1531
1533
|
|
1534
|
+
# Immutable. Pod name. Pod is an independent part of infrastructure. NFSShare
|
1535
|
+
# can only be connected to the assets (networks, instances) allocated in the
|
1536
|
+
# same pod.
|
1537
|
+
# Corresponds to the JSON property `pod`
|
1538
|
+
# @return [String]
|
1539
|
+
attr_accessor :pod
|
1540
|
+
|
1532
1541
|
# The requested size, in GiB.
|
1533
1542
|
# Corresponds to the JSON property `requestedSizeGib`
|
1534
1543
|
# @return [Fixnum]
|
@@ -1561,6 +1570,7 @@ module Google
|
|
1561
1570
|
@labels = args[:labels] if args.key?(:labels)
|
1562
1571
|
@name = args[:name] if args.key?(:name)
|
1563
1572
|
@nfs_share_id = args[:nfs_share_id] if args.key?(:nfs_share_id)
|
1573
|
+
@pod = args[:pod] if args.key?(:pod)
|
1564
1574
|
@requested_size_gib = args[:requested_size_gib] if args.key?(:requested_size_gib)
|
1565
1575
|
@state = args[:state] if args.key?(:state)
|
1566
1576
|
@storage_type = args[:storage_type] if args.key?(:storage_type)
|
@@ -1722,6 +1732,13 @@ module Google
|
|
1722
1732
|
# @return [Array<Google::Apis::BaremetalsolutionV2::NetworkConfig>]
|
1723
1733
|
attr_accessor :networks
|
1724
1734
|
|
1735
|
+
# Optional. Pod name. Pod is an independent part of infrastructure. Instance can
|
1736
|
+
# be connected to the assets (networks, volumes, nfsshares) allocated in the
|
1737
|
+
# same pod only.
|
1738
|
+
# Corresponds to the JSON property `pod`
|
1739
|
+
# @return [String]
|
1740
|
+
attr_accessor :pod
|
1741
|
+
|
1725
1742
|
# Output only. State of ProvisioningConfig.
|
1726
1743
|
# Corresponds to the JSON property `state`
|
1727
1744
|
# @return [String]
|
@@ -1767,6 +1784,7 @@ module Google
|
|
1767
1784
|
@location = args[:location] if args.key?(:location)
|
1768
1785
|
@name = args[:name] if args.key?(:name)
|
1769
1786
|
@networks = args[:networks] if args.key?(:networks)
|
1787
|
+
@pod = args[:pod] if args.key?(:pod)
|
1770
1788
|
@state = args[:state] if args.key?(:state)
|
1771
1789
|
@status_message = args[:status_message] if args.key?(:status_message)
|
1772
1790
|
@ticket_id = args[:ticket_id] if args.key?(:ticket_id)
|
@@ -2417,7 +2435,8 @@ module Google
|
|
2417
2435
|
# @return [String]
|
2418
2436
|
attr_accessor :performance_tier
|
2419
2437
|
|
2420
|
-
# Immutable. Pod name.
|
2438
|
+
# Immutable. Pod name. Pod is an independent part of infrastructure. Volume can
|
2439
|
+
# only be connected to the instances allocated in the same pod.
|
2421
2440
|
# Corresponds to the JSON property `pod`
|
2422
2441
|
# @return [String]
|
2423
2442
|
attr_accessor :pod
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BaremetalsolutionV2
|
18
18
|
# Version of the google-apis-baremetalsolution_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.39.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 = "
|
25
|
+
REVISION = "20230831"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -825,6 +825,7 @@ module Google
|
|
825
825
|
hash :labels, as: 'labels'
|
826
826
|
property :name, as: 'name'
|
827
827
|
property :nfs_share_id, as: 'nfsShareId'
|
828
|
+
property :pod, as: 'pod'
|
828
829
|
property :requested_size_gib, :numeric_string => true, as: 'requestedSizeGib'
|
829
830
|
property :state, as: 'state'
|
830
831
|
property :storage_type, as: 'storageType'
|
@@ -868,6 +869,7 @@ module Google
|
|
868
869
|
property :name, as: 'name'
|
869
870
|
collection :networks, as: 'networks', class: Google::Apis::BaremetalsolutionV2::NetworkConfig, decorator: Google::Apis::BaremetalsolutionV2::NetworkConfig::Representation
|
870
871
|
|
872
|
+
property :pod, as: 'pod'
|
871
873
|
property :state, as: 'state'
|
872
874
|
property :status_message, as: 'statusMessage'
|
873
875
|
property :ticket_id, as: 'ticketId'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-baremetalsolution_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.39.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-
|
11
|
+
date: 2023-09-03 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-baremetalsolution_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-baremetalsolution_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-baremetalsolution_v2/v0.39.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-baremetalsolution_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|