google-apis-baremetalsolution_v2 0.39.0 → 0.40.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f175c38d31ec7758676fb911aececc139faba8066898865588cb38fbdfb163c4
|
|
4
|
+
data.tar.gz: 847f8a296cffc1dbbebd726796c8d4457f65697f29445329a6c16d1379ebd787
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 907e9f5b4f51efe9fcdbf992f3744026cf7f4a0e13aabe1afae1c9300e666d9c554f3626451ad086f02ed83ae28a696406794841443f1ef60f1ca31df613d55a
|
|
7
|
+
data.tar.gz: 055d87345df93a7e177cc1135c2e68c6f92cc3315a7e64109dae3dd5d7c60402d48fc2440b2cd5176694878ea262ca823a0c36577bb8fac71c796024ef9d3138
|
data/CHANGELOG.md
CHANGED
|
@@ -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.40.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 = "20230927"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -301,7 +301,7 @@ module Google
|
|
|
301
301
|
# @param [Google::Apis::BaremetalsolutionV2::Instance] instance_object
|
|
302
302
|
# @param [String] update_mask
|
|
303
303
|
# The list of fields to update. The currently supported fields are: `labels` `
|
|
304
|
-
# hyperthreading_enabled` `os_image`
|
|
304
|
+
# hyperthreading_enabled` `os_image` `ssh_keys`
|
|
305
305
|
# @param [String] fields
|
|
306
306
|
# Selector specifying which fields to include in a partial response.
|
|
307
307
|
# @param [String] quota_user
|
|
@@ -878,9 +878,39 @@ module Google
|
|
|
878
878
|
execute_or_queue_command(command, &block)
|
|
879
879
|
end
|
|
880
880
|
|
|
881
|
+
# Get details of a single OS image.
|
|
882
|
+
# @param [String] name
|
|
883
|
+
# Required. Name of the OS image.
|
|
884
|
+
# @param [String] fields
|
|
885
|
+
# Selector specifying which fields to include in a partial response.
|
|
886
|
+
# @param [String] quota_user
|
|
887
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
888
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
889
|
+
# @param [Google::Apis::RequestOptions] options
|
|
890
|
+
# Request-specific options
|
|
891
|
+
#
|
|
892
|
+
# @yield [result, err] Result & error if block supplied
|
|
893
|
+
# @yieldparam result [Google::Apis::BaremetalsolutionV2::OsImage] parsed result object
|
|
894
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
895
|
+
#
|
|
896
|
+
# @return [Google::Apis::BaremetalsolutionV2::OsImage]
|
|
897
|
+
#
|
|
898
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
899
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
900
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
901
|
+
def get_project_location_os_image(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
902
|
+
command = make_simple_command(:get, 'v2/{+name}', options)
|
|
903
|
+
command.response_representation = Google::Apis::BaremetalsolutionV2::OsImage::Representation
|
|
904
|
+
command.response_class = Google::Apis::BaremetalsolutionV2::OsImage
|
|
905
|
+
command.params['name'] = name unless name.nil?
|
|
906
|
+
command.query['fields'] = fields unless fields.nil?
|
|
907
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
908
|
+
execute_or_queue_command(command, &block)
|
|
909
|
+
end
|
|
910
|
+
|
|
881
911
|
# Retrieves the list of OS images which are currently approved.
|
|
882
912
|
# @param [String] parent
|
|
883
|
-
# Required. Parent value for
|
|
913
|
+
# Required. Parent value for ListOSImagesRequest.
|
|
884
914
|
# @param [Fixnum] page_size
|
|
885
915
|
# Requested page size. The server might return fewer items than requested. If
|
|
886
916
|
# unspecified, server will pick an appropriate default. Notice that page_size
|
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.40.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-10-01 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.40.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: []
|