google-apis-hypercomputecluster_v1 0.4.0 → 0.6.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 +8 -0
- data/lib/google/apis/hypercomputecluster_v1/classes.rb +11 -2
- data/lib/google/apis/hypercomputecluster_v1/gem_version.rb +2 -2
- data/lib/google/apis/hypercomputecluster_v1/representations.rb +1 -0
- data/lib/google/apis/hypercomputecluster_v1/service.rb +11 -6
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 42a9f414c3d809671576ffba4ce967c0a9b716524c9ffbd72d34ec80aca17f0b
|
|
4
|
+
data.tar.gz: 4245dbe9a601dd7ebbc8dd76d9118d8c525be6aed1655e01a41ccd23f1e2e23d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84125e6ab61250ddd57163d1fcd248a455b7bb11da273fb70f5cb839a2f6520db9042a48d92e4692d4f766dbf76febbead3f0155e9c95ab1af2ffd16be0de8e5
|
|
7
|
+
data.tar.gz: 2683be29fcaf9ceaefe62dc726b5f495570e198a91d51aca78568594b9ee6ddb484d6f7e4fe91f0a5bd5f3bff0ac3569f45c383ee1010eef64f9f3aafff45817
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-hypercomputecluster_v1
|
|
2
2
|
|
|
3
|
+
### v0.6.0 (2026-05-03)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260422
|
|
6
|
+
|
|
7
|
+
### v0.5.0 (2026-04-19)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260401
|
|
10
|
+
|
|
3
11
|
### v0.4.0 (2026-03-22)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260311
|
|
@@ -138,7 +138,7 @@ module Google
|
|
|
138
138
|
# @return [String]
|
|
139
139
|
attr_accessor :name
|
|
140
140
|
|
|
141
|
-
# Optional. Network resources available to the cluster. Must contain
|
|
141
|
+
# Optional. Network resources available to the cluster. Must contain exactly one
|
|
142
142
|
# value. Keys specify the ID of the network resource by which it can be
|
|
143
143
|
# referenced elsewhere, and must conform to [RFC-1034](https://datatracker.ietf.
|
|
144
144
|
# org/doc/html/rfc1034) (lower-case, alphanumeric, and at most 63 characters).
|
|
@@ -1229,6 +1229,14 @@ module Google
|
|
|
1229
1229
|
# @return [String]
|
|
1230
1230
|
attr_accessor :lustre
|
|
1231
1231
|
|
|
1232
|
+
# Optional. Immutable. Throughput of the instance in MB/s/TiB. Valid values are
|
|
1233
|
+
# 125, 250, 500, 1000. See [Performance tiers and maximum storage capacities](
|
|
1234
|
+
# https://cloud.google.com/managed-lustre/docs/create-instance#performance-tiers)
|
|
1235
|
+
# for more information.
|
|
1236
|
+
# Corresponds to the JSON property `perUnitStorageThroughput`
|
|
1237
|
+
# @return [Fixnum]
|
|
1238
|
+
attr_accessor :per_unit_storage_throughput
|
|
1239
|
+
|
|
1232
1240
|
def initialize(**args)
|
|
1233
1241
|
update!(**args)
|
|
1234
1242
|
end
|
|
@@ -1239,6 +1247,7 @@ module Google
|
|
|
1239
1247
|
@description = args[:description] if args.key?(:description)
|
|
1240
1248
|
@filesystem = args[:filesystem] if args.key?(:filesystem)
|
|
1241
1249
|
@lustre = args[:lustre] if args.key?(:lustre)
|
|
1250
|
+
@per_unit_storage_throughput = args[:per_unit_storage_throughput] if args.key?(:per_unit_storage_throughput)
|
|
1242
1251
|
end
|
|
1243
1252
|
end
|
|
1244
1253
|
|
|
@@ -1781,7 +1790,7 @@ module Google
|
|
|
1781
1790
|
class SlurmNodeSet
|
|
1782
1791
|
include Google::Apis::Core::Hashable
|
|
1783
1792
|
|
|
1784
|
-
#
|
|
1793
|
+
# Required. ID of the compute resource on which this nodeset will run. Must
|
|
1785
1794
|
# match a key in the cluster's compute_resources.
|
|
1786
1795
|
# Corresponds to the JSON property `computeId`
|
|
1787
1796
|
# @return [String]
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module HypercomputeclusterV1
|
|
18
18
|
# Version of the google-apis-hypercomputecluster_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.6.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260422"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -822,6 +822,7 @@ module Google
|
|
|
822
822
|
property :description, as: 'description'
|
|
823
823
|
property :filesystem, as: 'filesystem'
|
|
824
824
|
property :lustre, as: 'lustre'
|
|
825
|
+
property :per_unit_storage_throughput, :numeric_string => true, as: 'perUnitStorageThroughput'
|
|
825
826
|
end
|
|
826
827
|
end
|
|
827
828
|
|
|
@@ -83,15 +83,20 @@ module Google
|
|
|
83
83
|
end
|
|
84
84
|
|
|
85
85
|
# Lists information about the supported locations for this service. This method
|
|
86
|
-
#
|
|
87
|
-
#
|
|
88
|
-
#
|
|
89
|
-
#
|
|
86
|
+
# lists locations based on the resource scope provided in the
|
|
87
|
+
# ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
|
|
88
|
+
# the method lists the public locations available to all projects. * **Project-
|
|
89
|
+
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
90
|
+
# method lists locations visible to that specific project. This includes public,
|
|
91
|
+
# private, or other project-specific locations enabled for the project. For gRPC
|
|
92
|
+
# and client library implementations, the resource name is passed as the `name`
|
|
93
|
+
# field. For direct service calls, the resource name is incorporated into the
|
|
94
|
+
# request path based on the specific service implementation and version.
|
|
90
95
|
# @param [String] name
|
|
91
96
|
# The resource that owns the locations collection, if applicable.
|
|
92
97
|
# @param [Array<String>, String] extra_location_types
|
|
93
|
-
# Optional. Do not use this field
|
|
94
|
-
#
|
|
98
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
99
|
+
# is primarily for internal usage.
|
|
95
100
|
# @param [String] filter
|
|
96
101
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
97
102
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-hypercomputecluster_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-hypercomputecluster_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-hypercomputecluster_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-hypercomputecluster_v1/v0.6.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-hypercomputecluster_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|