google-apis-baremetalsolution_v2 0.47.0 → 0.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/google/apis/baremetalsolution_v2/classes.rb +10 -1
- data/lib/google/apis/baremetalsolution_v2/gem_version.rb +3 -3
- data/lib/google/apis/baremetalsolution_v2/representations.rb +1 -0
- data/lib/google/apis/baremetalsolution_v2/service.rb +5 -1
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 145ef1c2f705a58d5f7d953be79ff02b9af6aa2279b64251b6ca485363a1b8e5
|
4
|
+
data.tar.gz: a202ba1e347fb35ef4abb9ebe822215869c60216e6b89039517a80e8f77b738b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e987aec717390eb9a1a23a7edb5834f372642fdccc76701fe52cb6d55a7ec223f337e374709b94e9b6945e292f380e677ff875c5277255e329153598b3711260
|
7
|
+
data.tar.gz: edc92cc24a360c21eabc0166ca5fae2ed2c830a2664fa61b15ef9531324a3f0304e0f42645e30c92a36855ef1df6249ccb183cb6f8e6b263d59c03028da914bf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-baremetalsolution_v2
|
2
2
|
|
3
|
+
### v0.49.0 (2025-04-20)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250414
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.48.0 (2024-09-08)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240830
|
11
|
+
* Regenerated using generator version 0.15.1
|
12
|
+
|
3
13
|
### v0.47.0 (2024-05-19)
|
4
14
|
|
5
15
|
* Regenerated using generator version 0.15.0
|
@@ -1425,7 +1425,8 @@ module Google
|
|
1425
1425
|
attr_accessor :user_note
|
1426
1426
|
|
1427
1427
|
# List of VLAN attachments. As of now there are always 2 attachments, but it is
|
1428
|
-
# going to change in the future (multi vlan).
|
1428
|
+
# going to change in the future (multi vlan). Use only one of vlan_attachments
|
1429
|
+
# or vrf
|
1429
1430
|
# Corresponds to the JSON property `vlanAttachments`
|
1430
1431
|
# @return [Array<Google::Apis::BaremetalsolutionV2::IntakeVlanAttachment>]
|
1431
1432
|
attr_accessor :vlan_attachments
|
@@ -1436,6 +1437,13 @@ module Google
|
|
1436
1437
|
attr_accessor :vlan_same_project
|
1437
1438
|
alias_method :vlan_same_project?, :vlan_same_project
|
1438
1439
|
|
1440
|
+
# Optional. The name of a pre-existing Vrf that the network should be attached
|
1441
|
+
# to. Format is `vrfs/`vrf``. If vrf is specified, vlan_attachments must be
|
1442
|
+
# empty.
|
1443
|
+
# Corresponds to the JSON property `vrf`
|
1444
|
+
# @return [String]
|
1445
|
+
attr_accessor :vrf
|
1446
|
+
|
1439
1447
|
def initialize(**args)
|
1440
1448
|
update!(**args)
|
1441
1449
|
end
|
@@ -1453,6 +1461,7 @@ module Google
|
|
1453
1461
|
@user_note = args[:user_note] if args.key?(:user_note)
|
1454
1462
|
@vlan_attachments = args[:vlan_attachments] if args.key?(:vlan_attachments)
|
1455
1463
|
@vlan_same_project = args[:vlan_same_project] if args.key?(:vlan_same_project)
|
1464
|
+
@vrf = args[:vrf] if args.key?(:vrf)
|
1456
1465
|
end
|
1457
1466
|
end
|
1458
1467
|
|
@@ -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.49.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250414"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -837,6 +837,7 @@ module Google
|
|
837
837
|
collection :vlan_attachments, as: 'vlanAttachments', class: Google::Apis::BaremetalsolutionV2::IntakeVlanAttachment, decorator: Google::Apis::BaremetalsolutionV2::IntakeVlanAttachment::Representation
|
838
838
|
|
839
839
|
property :vlan_same_project, as: 'vlanSameProject'
|
840
|
+
property :vrf, as: 'vrf'
|
840
841
|
end
|
841
842
|
end
|
842
843
|
|
@@ -85,6 +85,9 @@ module Google
|
|
85
85
|
# Lists information about the supported locations for this service.
|
86
86
|
# @param [String] name
|
87
87
|
# The resource that owns the locations collection, if applicable.
|
88
|
+
# @param [Array<String>, String] extra_location_types
|
89
|
+
# Optional. A list of extra location types that should be used as conditions for
|
90
|
+
# controlling the visibility of the locations.
|
88
91
|
# @param [String] filter
|
89
92
|
# A filter to narrow down results to a preferred subset. The filtering language
|
90
93
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
@@ -112,11 +115,12 @@ module Google
|
|
112
115
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
113
116
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
114
117
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
115
|
-
def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
118
|
+
def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
116
119
|
command = make_simple_command(:get, 'v2/{+name}/locations', options)
|
117
120
|
command.response_representation = Google::Apis::BaremetalsolutionV2::ListLocationsResponse::Representation
|
118
121
|
command.response_class = Google::Apis::BaremetalsolutionV2::ListLocationsResponse
|
119
122
|
command.params['name'] = name unless name.nil?
|
123
|
+
command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
|
120
124
|
command.query['filter'] = filter unless filter.nil?
|
121
125
|
command.query['pageSize'] = page_size unless page_size.nil?
|
122
126
|
command.query['pageToken'] = page_token unless page_token.nil?
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.49.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-04-27 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-baremetalsolution_v2/v0.49.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-baremetalsolution_v2
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Bare Metal Solution API V2
|
82
79
|
test_files: []
|