google-cloud-lustre-v1 0.a → 0.1.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/.yardopts +12 -0
- data/AUTHENTICATION.md +122 -0
- data/README.md +154 -8
- data/lib/google/cloud/lustre/v1/bindings_override.rb +102 -0
- data/lib/google/cloud/lustre/v1/instance_pb.rb +58 -0
- data/lib/google/cloud/lustre/v1/lustre/client.rb +1185 -0
- data/lib/google/cloud/lustre/v1/lustre/credentials.rb +47 -0
- data/lib/google/cloud/lustre/v1/lustre/operations.rb +813 -0
- data/lib/google/cloud/lustre/v1/lustre/paths.rb +103 -0
- data/lib/google/cloud/lustre/v1/lustre/rest/client.rb +1118 -0
- data/lib/google/cloud/lustre/v1/lustre/rest/operations.rb +913 -0
- data/lib/google/cloud/lustre/v1/lustre/rest/service_stub.rb +512 -0
- data/lib/google/cloud/lustre/v1/lustre/rest.rb +54 -0
- data/lib/google/cloud/lustre/v1/lustre.rb +56 -0
- data/lib/google/cloud/lustre/v1/lustre_pb.rb +49 -0
- data/lib/google/cloud/lustre/v1/lustre_services_pb.rb +57 -0
- data/lib/google/cloud/lustre/v1/rest.rb +38 -0
- data/lib/google/cloud/lustre/v1/transfer_pb.rb +61 -0
- data/lib/google/cloud/lustre/v1/version.rb +7 -2
- data/lib/google/cloud/lustre/v1.rb +45 -0
- data/lib/google-cloud-lustre-v1.rb +21 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/client.rb +473 -0
- data/proto_docs/google/api/field_behavior.rb +85 -0
- data/proto_docs/google/api/field_info.rb +88 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/api/resource.rb +227 -0
- data/proto_docs/google/cloud/lustre/v1/instance.rb +288 -0
- data/proto_docs/google/cloud/lustre/v1/transfer.rb +284 -0
- data/proto_docs/google/longrunning/operations.rb +173 -0
- data/proto_docs/google/protobuf/any.rb +145 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/empty.rb +34 -0
- data/proto_docs/google/protobuf/field_mask.rb +229 -0
- data/proto_docs/google/protobuf/timestamp.rb +127 -0
- data/proto_docs/google/rpc/code.rb +185 -0
- data/proto_docs/google/rpc/status.rb +48 -0
- metadata +85 -9
@@ -0,0 +1,48 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2025 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Rpc
|
22
|
+
# The `Status` type defines a logical error model that is suitable for
|
23
|
+
# different programming environments, including REST APIs and RPC APIs. It is
|
24
|
+
# used by [gRPC](https://github.com/grpc). Each `Status` message contains
|
25
|
+
# three pieces of data: error code, error message, and error details.
|
26
|
+
#
|
27
|
+
# You can find out more about this error model and how to work with it in the
|
28
|
+
# [API Design Guide](https://cloud.google.com/apis/design/errors).
|
29
|
+
# @!attribute [rw] code
|
30
|
+
# @return [::Integer]
|
31
|
+
# The status code, which should be an enum value of
|
32
|
+
# {::Google::Rpc::Code google.rpc.Code}.
|
33
|
+
# @!attribute [rw] message
|
34
|
+
# @return [::String]
|
35
|
+
# A developer-facing error message, which should be in English. Any
|
36
|
+
# user-facing error message should be localized and sent in the
|
37
|
+
# {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized
|
38
|
+
# by the client.
|
39
|
+
# @!attribute [rw] details
|
40
|
+
# @return [::Array<::Google::Protobuf::Any>]
|
41
|
+
# A list of messages that carry the error details. There is a common set of
|
42
|
+
# message types for APIs to use.
|
43
|
+
class Status
|
44
|
+
include ::Google::Protobuf::MessageExts
|
45
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
metadata
CHANGED
@@ -1,27 +1,103 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-lustre-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
11
|
-
dependencies:
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: gapic-common
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '1.0'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '1.0'
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: google-cloud-errors
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - "~>"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '1.0'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.0'
|
40
|
+
- !ruby/object:Gem::Dependency
|
41
|
+
name: google-cloud-location
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.0'
|
47
|
+
type: :runtime
|
48
|
+
prerelease: false
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '1.0'
|
54
|
+
description: google-cloud-lustre-v1 is the official client library for the Google
|
55
|
+
Cloud Managed Lustre V1 API. Note that google-cloud-lustre-v1 is a version-specific
|
56
|
+
client library. For most uses, we recommend installing the main client library google-cloud-lustre
|
57
|
+
instead. See the readme for more details.
|
17
58
|
email: googleapis-packages@google.com
|
18
59
|
executables: []
|
19
60
|
extensions: []
|
20
61
|
extra_rdoc_files: []
|
21
62
|
files:
|
63
|
+
- ".yardopts"
|
64
|
+
- AUTHENTICATION.md
|
22
65
|
- LICENSE.md
|
23
66
|
- README.md
|
67
|
+
- lib/google-cloud-lustre-v1.rb
|
68
|
+
- lib/google/cloud/lustre/v1.rb
|
69
|
+
- lib/google/cloud/lustre/v1/bindings_override.rb
|
70
|
+
- lib/google/cloud/lustre/v1/instance_pb.rb
|
71
|
+
- lib/google/cloud/lustre/v1/lustre.rb
|
72
|
+
- lib/google/cloud/lustre/v1/lustre/client.rb
|
73
|
+
- lib/google/cloud/lustre/v1/lustre/credentials.rb
|
74
|
+
- lib/google/cloud/lustre/v1/lustre/operations.rb
|
75
|
+
- lib/google/cloud/lustre/v1/lustre/paths.rb
|
76
|
+
- lib/google/cloud/lustre/v1/lustre/rest.rb
|
77
|
+
- lib/google/cloud/lustre/v1/lustre/rest/client.rb
|
78
|
+
- lib/google/cloud/lustre/v1/lustre/rest/operations.rb
|
79
|
+
- lib/google/cloud/lustre/v1/lustre/rest/service_stub.rb
|
80
|
+
- lib/google/cloud/lustre/v1/lustre_pb.rb
|
81
|
+
- lib/google/cloud/lustre/v1/lustre_services_pb.rb
|
82
|
+
- lib/google/cloud/lustre/v1/rest.rb
|
83
|
+
- lib/google/cloud/lustre/v1/transfer_pb.rb
|
24
84
|
- lib/google/cloud/lustre/v1/version.rb
|
85
|
+
- proto_docs/README.md
|
86
|
+
- proto_docs/google/api/client.rb
|
87
|
+
- proto_docs/google/api/field_behavior.rb
|
88
|
+
- proto_docs/google/api/field_info.rb
|
89
|
+
- proto_docs/google/api/launch_stage.rb
|
90
|
+
- proto_docs/google/api/resource.rb
|
91
|
+
- proto_docs/google/cloud/lustre/v1/instance.rb
|
92
|
+
- proto_docs/google/cloud/lustre/v1/transfer.rb
|
93
|
+
- proto_docs/google/longrunning/operations.rb
|
94
|
+
- proto_docs/google/protobuf/any.rb
|
95
|
+
- proto_docs/google/protobuf/duration.rb
|
96
|
+
- proto_docs/google/protobuf/empty.rb
|
97
|
+
- proto_docs/google/protobuf/field_mask.rb
|
98
|
+
- proto_docs/google/protobuf/timestamp.rb
|
99
|
+
- proto_docs/google/rpc/code.rb
|
100
|
+
- proto_docs/google/rpc/status.rb
|
25
101
|
homepage: https://github.com/googleapis/google-cloud-ruby
|
26
102
|
licenses:
|
27
103
|
- Apache-2.0
|
@@ -33,7 +109,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
33
109
|
requirements:
|
34
110
|
- - ">="
|
35
111
|
- !ruby/object:Gem::Version
|
36
|
-
version: '3.
|
112
|
+
version: '3.1'
|
37
113
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
38
114
|
requirements:
|
39
115
|
- - ">="
|
@@ -42,5 +118,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
42
118
|
requirements: []
|
43
119
|
rubygems_version: 3.6.8
|
44
120
|
specification_version: 4
|
45
|
-
summary:
|
121
|
+
summary: API Client library for the Google Cloud Managed Lustre V1 API
|
46
122
|
test_files: []
|