google-cloud-lustre-v1 0.a → 0.1.1

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.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +12 -0
  3. data/AUTHENTICATION.md +122 -0
  4. data/README.md +154 -8
  5. data/lib/google/cloud/lustre/v1/bindings_override.rb +102 -0
  6. data/lib/google/cloud/lustre/v1/instance_pb.rb +58 -0
  7. data/lib/google/cloud/lustre/v1/lustre/client.rb +1193 -0
  8. data/lib/google/cloud/lustre/v1/lustre/credentials.rb +47 -0
  9. data/lib/google/cloud/lustre/v1/lustre/operations.rb +813 -0
  10. data/lib/google/cloud/lustre/v1/lustre/paths.rb +103 -0
  11. data/lib/google/cloud/lustre/v1/lustre/rest/client.rb +1126 -0
  12. data/lib/google/cloud/lustre/v1/lustre/rest/operations.rb +913 -0
  13. data/lib/google/cloud/lustre/v1/lustre/rest/service_stub.rb +512 -0
  14. data/lib/google/cloud/lustre/v1/lustre/rest.rb +54 -0
  15. data/lib/google/cloud/lustre/v1/lustre.rb +56 -0
  16. data/lib/google/cloud/lustre/v1/lustre_pb.rb +49 -0
  17. data/lib/google/cloud/lustre/v1/lustre_services_pb.rb +57 -0
  18. data/lib/google/cloud/lustre/v1/rest.rb +38 -0
  19. data/lib/google/cloud/lustre/v1/transfer_pb.rb +61 -0
  20. data/lib/google/cloud/lustre/v1/version.rb +7 -2
  21. data/lib/google/cloud/lustre/v1.rb +45 -0
  22. data/lib/google-cloud-lustre-v1.rb +21 -0
  23. data/proto_docs/README.md +4 -0
  24. data/proto_docs/google/api/client.rb +473 -0
  25. data/proto_docs/google/api/field_behavior.rb +85 -0
  26. data/proto_docs/google/api/field_info.rb +88 -0
  27. data/proto_docs/google/api/launch_stage.rb +71 -0
  28. data/proto_docs/google/api/resource.rb +227 -0
  29. data/proto_docs/google/cloud/lustre/v1/instance.rb +287 -0
  30. data/proto_docs/google/cloud/lustre/v1/transfer.rb +296 -0
  31. data/proto_docs/google/longrunning/operations.rb +173 -0
  32. data/proto_docs/google/protobuf/any.rb +145 -0
  33. data/proto_docs/google/protobuf/duration.rb +98 -0
  34. data/proto_docs/google/protobuf/empty.rb +34 -0
  35. data/proto_docs/google/protobuf/field_mask.rb +229 -0
  36. data/proto_docs/google/protobuf/timestamp.rb +127 -0
  37. data/proto_docs/google/rpc/code.rb +185 -0
  38. data/proto_docs/google/rpc/status.rb +48 -0
  39. metadata +86 -10
@@ -0,0 +1,71 @@
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 Api
22
+ # The launch stage as defined by [Google Cloud Platform
23
+ # Launch Stages](https://cloud.google.com/terms/launch-stages).
24
+ module LaunchStage
25
+ # Do not use this default value.
26
+ LAUNCH_STAGE_UNSPECIFIED = 0
27
+
28
+ # The feature is not yet implemented. Users can not use it.
29
+ UNIMPLEMENTED = 6
30
+
31
+ # Prelaunch features are hidden from users and are only visible internally.
32
+ PRELAUNCH = 7
33
+
34
+ # Early Access features are limited to a closed group of testers. To use
35
+ # these features, you must sign up in advance and sign a Trusted Tester
36
+ # agreement (which includes confidentiality provisions). These features may
37
+ # be unstable, changed in backward-incompatible ways, and are not
38
+ # guaranteed to be released.
39
+ EARLY_ACCESS = 1
40
+
41
+ # Alpha is a limited availability test for releases before they are cleared
42
+ # for widespread use. By Alpha, all significant design issues are resolved
43
+ # and we are in the process of verifying functionality. Alpha customers
44
+ # need to apply for access, agree to applicable terms, and have their
45
+ # projects allowlisted. Alpha releases don't have to be feature complete,
46
+ # no SLAs are provided, and there are no technical support obligations, but
47
+ # they will be far enough along that customers can actually use them in
48
+ # test environments or for limited-use tests -- just like they would in
49
+ # normal production cases.
50
+ ALPHA = 2
51
+
52
+ # Beta is the point at which we are ready to open a release for any
53
+ # customer to use. There are no SLA or technical support obligations in a
54
+ # Beta release. Products will be complete from a feature perspective, but
55
+ # may have some open outstanding issues. Beta releases are suitable for
56
+ # limited production use cases.
57
+ BETA = 3
58
+
59
+ # GA features are open to all developers and are considered stable and
60
+ # fully qualified for production use.
61
+ GA = 4
62
+
63
+ # Deprecated features are scheduled to be shut down and removed. For more
64
+ # information, see the "Deprecation Policy" section of our [Terms of
65
+ # Service](https://cloud.google.com/terms/)
66
+ # and the [Google Cloud Platform Subject to the Deprecation
67
+ # Policy](https://cloud.google.com/terms/deprecation) documentation.
68
+ DEPRECATED = 5
69
+ end
70
+ end
71
+ end
@@ -0,0 +1,227 @@
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 Api
22
+ # A simple descriptor of a resource type.
23
+ #
24
+ # ResourceDescriptor annotates a resource message (either by means of a
25
+ # protobuf annotation or use in the service config), and associates the
26
+ # resource's schema, the resource type, and the pattern of the resource name.
27
+ #
28
+ # Example:
29
+ #
30
+ # message Topic {
31
+ # // Indicates this message defines a resource schema.
32
+ # // Declares the resource type in the format of {service}/{kind}.
33
+ # // For Kubernetes resources, the format is {api group}/{kind}.
34
+ # option (google.api.resource) = {
35
+ # type: "pubsub.googleapis.com/Topic"
36
+ # pattern: "projects/{project}/topics/{topic}"
37
+ # };
38
+ # }
39
+ #
40
+ # The ResourceDescriptor Yaml config will look like:
41
+ #
42
+ # resources:
43
+ # - type: "pubsub.googleapis.com/Topic"
44
+ # pattern: "projects/{project}/topics/{topic}"
45
+ #
46
+ # Sometimes, resources have multiple patterns, typically because they can
47
+ # live under multiple parents.
48
+ #
49
+ # Example:
50
+ #
51
+ # message LogEntry {
52
+ # option (google.api.resource) = {
53
+ # type: "logging.googleapis.com/LogEntry"
54
+ # pattern: "projects/{project}/logs/{log}"
55
+ # pattern: "folders/{folder}/logs/{log}"
56
+ # pattern: "organizations/{organization}/logs/{log}"
57
+ # pattern: "billingAccounts/{billing_account}/logs/{log}"
58
+ # };
59
+ # }
60
+ #
61
+ # The ResourceDescriptor Yaml config will look like:
62
+ #
63
+ # resources:
64
+ # - type: 'logging.googleapis.com/LogEntry'
65
+ # pattern: "projects/{project}/logs/{log}"
66
+ # pattern: "folders/{folder}/logs/{log}"
67
+ # pattern: "organizations/{organization}/logs/{log}"
68
+ # pattern: "billingAccounts/{billing_account}/logs/{log}"
69
+ # @!attribute [rw] type
70
+ # @return [::String]
71
+ # The resource type. It must be in the format of
72
+ # \\{service_name}/\\{resource_type_kind}. The `resource_type_kind` must be
73
+ # singular and must not include version numbers.
74
+ #
75
+ # Example: `storage.googleapis.com/Bucket`
76
+ #
77
+ # The value of the resource_type_kind must follow the regular expression
78
+ # /[A-Za-z][a-zA-Z0-9]+/. It should start with an upper case character and
79
+ # should use PascalCase (UpperCamelCase). The maximum number of
80
+ # characters allowed for the `resource_type_kind` is 100.
81
+ # @!attribute [rw] pattern
82
+ # @return [::Array<::String>]
83
+ # Optional. The relative resource name pattern associated with this resource
84
+ # type. The DNS prefix of the full resource name shouldn't be specified here.
85
+ #
86
+ # The path pattern must follow the syntax, which aligns with HTTP binding
87
+ # syntax:
88
+ #
89
+ # Template = Segment { "/" Segment } ;
90
+ # Segment = LITERAL | Variable ;
91
+ # Variable = "{" LITERAL "}" ;
92
+ #
93
+ # Examples:
94
+ #
95
+ # - "projects/\\{project}/topics/\\{topic}"
96
+ # - "projects/\\{project}/knowledgeBases/\\{knowledge_base}"
97
+ #
98
+ # The components in braces correspond to the IDs for each resource in the
99
+ # hierarchy. It is expected that, if multiple patterns are provided,
100
+ # the same component name (e.g. "project") refers to IDs of the same
101
+ # type of resource.
102
+ # @!attribute [rw] name_field
103
+ # @return [::String]
104
+ # Optional. The field on the resource that designates the resource name
105
+ # field. If omitted, this is assumed to be "name".
106
+ # @!attribute [rw] history
107
+ # @return [::Google::Api::ResourceDescriptor::History]
108
+ # Optional. The historical or future-looking state of the resource pattern.
109
+ #
110
+ # Example:
111
+ #
112
+ # // The InspectTemplate message originally only supported resource
113
+ # // names with organization, and project was added later.
114
+ # message InspectTemplate {
115
+ # option (google.api.resource) = {
116
+ # type: "dlp.googleapis.com/InspectTemplate"
117
+ # pattern:
118
+ # "organizations/{organization}/inspectTemplates/{inspect_template}"
119
+ # pattern: "projects/{project}/inspectTemplates/{inspect_template}"
120
+ # history: ORIGINALLY_SINGLE_PATTERN
121
+ # };
122
+ # }
123
+ # @!attribute [rw] plural
124
+ # @return [::String]
125
+ # The plural name used in the resource name and permission names, such as
126
+ # 'projects' for the resource name of 'projects/\\{project}' and the permission
127
+ # name of 'cloudresourcemanager.googleapis.com/projects.get'. One exception
128
+ # to this is for Nested Collections that have stuttering names, as defined
129
+ # in [AIP-122](https://google.aip.dev/122#nested-collections), where the
130
+ # collection ID in the resource name pattern does not necessarily directly
131
+ # match the `plural` value.
132
+ #
133
+ # It is the same concept of the `plural` field in k8s CRD spec
134
+ # https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/
135
+ #
136
+ # Note: The plural form is required even for singleton resources. See
137
+ # https://aip.dev/156
138
+ # @!attribute [rw] singular
139
+ # @return [::String]
140
+ # The same concept of the `singular` field in k8s CRD spec
141
+ # https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/
142
+ # Such as "project" for the `resourcemanager.googleapis.com/Project` type.
143
+ # @!attribute [rw] style
144
+ # @return [::Array<::Google::Api::ResourceDescriptor::Style>]
145
+ # Style flag(s) for this resource.
146
+ # These indicate that a resource is expected to conform to a given
147
+ # style. See the specific style flags for additional information.
148
+ class ResourceDescriptor
149
+ include ::Google::Protobuf::MessageExts
150
+ extend ::Google::Protobuf::MessageExts::ClassMethods
151
+
152
+ # A description of the historical or future-looking state of the
153
+ # resource pattern.
154
+ module History
155
+ # The "unset" value.
156
+ HISTORY_UNSPECIFIED = 0
157
+
158
+ # The resource originally had one pattern and launched as such, and
159
+ # additional patterns were added later.
160
+ ORIGINALLY_SINGLE_PATTERN = 1
161
+
162
+ # The resource has one pattern, but the API owner expects to add more
163
+ # later. (This is the inverse of ORIGINALLY_SINGLE_PATTERN, and prevents
164
+ # that from being necessary once there are multiple patterns.)
165
+ FUTURE_MULTI_PATTERN = 2
166
+ end
167
+
168
+ # A flag representing a specific style that a resource claims to conform to.
169
+ module Style
170
+ # The unspecified value. Do not use.
171
+ STYLE_UNSPECIFIED = 0
172
+
173
+ # This resource is intended to be "declarative-friendly".
174
+ #
175
+ # Declarative-friendly resources must be more strictly consistent, and
176
+ # setting this to true communicates to tools that this resource should
177
+ # adhere to declarative-friendly expectations.
178
+ #
179
+ # Note: This is used by the API linter (linter.aip.dev) to enable
180
+ # additional checks.
181
+ DECLARATIVE_FRIENDLY = 1
182
+ end
183
+ end
184
+
185
+ # Defines a proto annotation that describes a string field that refers to
186
+ # an API resource.
187
+ # @!attribute [rw] type
188
+ # @return [::String]
189
+ # The resource type that the annotated field references.
190
+ #
191
+ # Example:
192
+ #
193
+ # message Subscription {
194
+ # string topic = 2 [(google.api.resource_reference) = {
195
+ # type: "pubsub.googleapis.com/Topic"
196
+ # }];
197
+ # }
198
+ #
199
+ # Occasionally, a field may reference an arbitrary resource. In this case,
200
+ # APIs use the special value * in their resource reference.
201
+ #
202
+ # Example:
203
+ #
204
+ # message GetIamPolicyRequest {
205
+ # string resource = 2 [(google.api.resource_reference) = {
206
+ # type: "*"
207
+ # }];
208
+ # }
209
+ # @!attribute [rw] child_type
210
+ # @return [::String]
211
+ # The resource type of a child collection that the annotated field
212
+ # references. This is useful for annotating the `parent` field that
213
+ # doesn't have a fixed resource type.
214
+ #
215
+ # Example:
216
+ #
217
+ # message ListLogEntriesRequest {
218
+ # string parent = 1 [(google.api.resource_reference) = {
219
+ # child_type: "logging.googleapis.com/LogEntry"
220
+ # };
221
+ # }
222
+ class ResourceReference
223
+ include ::Google::Protobuf::MessageExts
224
+ extend ::Google::Protobuf::MessageExts::ClassMethods
225
+ end
226
+ end
227
+ end
@@ -0,0 +1,287 @@
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 Cloud
22
+ module Lustre
23
+ module V1
24
+ # A Managed Lustre instance.
25
+ # @!attribute [rw] name
26
+ # @return [::String]
27
+ # Identifier. The name of the instance.
28
+ # @!attribute [rw] filesystem
29
+ # @return [::String]
30
+ # Required. Immutable. The filesystem name for this instance. This name is
31
+ # used by client-side tools, including when mounting the instance. Must be
32
+ # eight characters or less and can only contain letters and numbers.
33
+ # @!attribute [rw] capacity_gib
34
+ # @return [::Integer]
35
+ # Required. The storage capacity of the instance in gibibytes (GiB). Allowed
36
+ # values are from `18000` to `954000`, in increments of 9000.
37
+ # @!attribute [rw] network
38
+ # @return [::String]
39
+ # Required. Immutable. The full name of the VPC network to which the instance
40
+ # is connected. Must be in the format
41
+ # `projects/{project_id}/global/networks/{network_name}`.
42
+ # @!attribute [r] state
43
+ # @return [::Google::Cloud::Lustre::V1::Instance::State]
44
+ # Output only. The state of the instance.
45
+ # @!attribute [r] mount_point
46
+ # @return [::String]
47
+ # Output only. Mount point of the instance in the format
48
+ # `IP_ADDRESS@tcp:/FILESYSTEM`.
49
+ # @!attribute [r] create_time
50
+ # @return [::Google::Protobuf::Timestamp]
51
+ # Output only. Timestamp when the instance was created.
52
+ # @!attribute [r] update_time
53
+ # @return [::Google::Protobuf::Timestamp]
54
+ # Output only. Timestamp when the instance was last updated.
55
+ # @!attribute [rw] description
56
+ # @return [::String]
57
+ # Optional. A user-readable description of the instance.
58
+ # @!attribute [rw] labels
59
+ # @return [::Google::Protobuf::Map{::String => ::String}]
60
+ # Optional. Labels as key value pairs.
61
+ # @!attribute [rw] per_unit_storage_throughput
62
+ # @return [::Integer]
63
+ # Required. The throughput of the instance in MB/s/TiB.
64
+ # Valid values are 125, 250, 500, 1000.
65
+ # @!attribute [rw] gke_support_enabled
66
+ # @return [::Boolean]
67
+ # Optional. Indicates whether you want to enable support for GKE clients. By
68
+ # default, GKE clients are not supported.
69
+ class Instance
70
+ include ::Google::Protobuf::MessageExts
71
+ extend ::Google::Protobuf::MessageExts::ClassMethods
72
+
73
+ # @!attribute [rw] key
74
+ # @return [::String]
75
+ # @!attribute [rw] value
76
+ # @return [::String]
77
+ class LabelsEntry
78
+ include ::Google::Protobuf::MessageExts
79
+ extend ::Google::Protobuf::MessageExts::ClassMethods
80
+ end
81
+
82
+ # The possible states of an instance.
83
+ module State
84
+ # Not set.
85
+ STATE_UNSPECIFIED = 0
86
+
87
+ # The instance is available for use.
88
+ ACTIVE = 1
89
+
90
+ # The instance is being created and is not yet ready for use.
91
+ CREATING = 2
92
+
93
+ # The instance is being deleted.
94
+ DELETING = 3
95
+
96
+ # The instance is being upgraded.
97
+ UPGRADING = 4
98
+
99
+ # The instance is being repaired.
100
+ REPAIRING = 5
101
+
102
+ # The instance is stopped.
103
+ STOPPED = 6
104
+ end
105
+ end
106
+
107
+ # Message for requesting list of Instances
108
+ # @!attribute [rw] parent
109
+ # @return [::String]
110
+ # Required. The project and location for which to retrieve a list of
111
+ # instances, in the format `projects/{projectId}/locations/{location}`.
112
+ #
113
+ # To retrieve instance information for all locations, use "-" as the value
114
+ # of `{location}`.
115
+ # @!attribute [rw] page_size
116
+ # @return [::Integer]
117
+ # Optional. Requested page size. Server might return fewer items than
118
+ # requested. If unspecified, the server will pick an appropriate default.
119
+ # @!attribute [rw] page_token
120
+ # @return [::String]
121
+ # Optional. A token identifying a page of results the server should return.
122
+ # @!attribute [rw] filter
123
+ # @return [::String]
124
+ # Optional. Filtering results.
125
+ # @!attribute [rw] order_by
126
+ # @return [::String]
127
+ # Optional. Desired order of results.
128
+ class ListInstancesRequest
129
+ include ::Google::Protobuf::MessageExts
130
+ extend ::Google::Protobuf::MessageExts::ClassMethods
131
+ end
132
+
133
+ # Message for response to listing Instances
134
+ # @!attribute [rw] instances
135
+ # @return [::Array<::Google::Cloud::Lustre::V1::Instance>]
136
+ # Response from {::Google::Cloud::Lustre::V1::Lustre::Client#list_instances ListInstances}.
137
+ # @!attribute [rw] next_page_token
138
+ # @return [::String]
139
+ # A token identifying a page of results the server should return.
140
+ # @!attribute [rw] unreachable
141
+ # @return [::Array<::String>]
142
+ # Unordered list. Locations that could not be reached.
143
+ class ListInstancesResponse
144
+ include ::Google::Protobuf::MessageExts
145
+ extend ::Google::Protobuf::MessageExts::ClassMethods
146
+ end
147
+
148
+ # Message for getting a Instance
149
+ # @!attribute [rw] name
150
+ # @return [::String]
151
+ # Required. The instance resource name, in the format
152
+ # `projects/{projectId}/locations/{location}/instances/{instanceId}`.
153
+ class GetInstanceRequest
154
+ include ::Google::Protobuf::MessageExts
155
+ extend ::Google::Protobuf::MessageExts::ClassMethods
156
+ end
157
+
158
+ # Message for creating a Instance
159
+ # @!attribute [rw] parent
160
+ # @return [::String]
161
+ # Required. The instance's project and location, in the format
162
+ # `projects/{project}/locations/{location}`. Locations map to Google Cloud
163
+ # zones; for example, `us-west1-b`.
164
+ # @!attribute [rw] instance_id
165
+ # @return [::String]
166
+ # Required. The name of the Managed Lustre instance.
167
+ #
168
+ # * Must contain only lowercase letters, numbers, and hyphens.
169
+ # * Must start with a letter.
170
+ # * Must be between 1-63 characters.
171
+ # * Must end with a number or a letter.
172
+ # @!attribute [rw] instance
173
+ # @return [::Google::Cloud::Lustre::V1::Instance]
174
+ # Required. The resource being created
175
+ # @!attribute [rw] request_id
176
+ # @return [::String]
177
+ # Optional. An optional request ID to identify requests. Specify a unique
178
+ # request ID so that if you must retry your request, the server will know to
179
+ # ignore the request if it has already been completed. The server will
180
+ # guarantee that for at least 60 minutes since the first request.
181
+ #
182
+ # For example, consider a situation where you make an initial request and the
183
+ # request times out. If you make the request again with the same request
184
+ # ID, the server can check if original operation with the same request ID
185
+ # was received, and if so, will ignore the second request. This prevents
186
+ # clients from accidentally creating duplicate commitments.
187
+ #
188
+ # The request ID must be a valid UUID with the exception that zero UUID is
189
+ # not supported (00000000-0000-0000-0000-000000000000).
190
+ class CreateInstanceRequest
191
+ include ::Google::Protobuf::MessageExts
192
+ extend ::Google::Protobuf::MessageExts::ClassMethods
193
+ end
194
+
195
+ # Message for updating a Instance
196
+ # @!attribute [rw] update_mask
197
+ # @return [::Google::Protobuf::FieldMask]
198
+ # Optional. Specifies the fields to be overwritten in the instance resource
199
+ # by the update.
200
+ #
201
+ # The fields specified in the update_mask are relative to the resource, not
202
+ # the full request. A field will be overwritten if it is in the mask. If no
203
+ # mask is provided then all fields present in the request are
204
+ # overwritten.
205
+ # @!attribute [rw] instance
206
+ # @return [::Google::Cloud::Lustre::V1::Instance]
207
+ # Required. The resource name of the instance to update, in the format
208
+ # `projects/{projectId}/locations/{location}/instances/{instanceId}`.
209
+ # @!attribute [rw] request_id
210
+ # @return [::String]
211
+ # Optional. An optional request ID to identify requests. Specify a unique
212
+ # request ID so that if you must retry your request, the server will know to
213
+ # ignore the request if it has already been completed. The server will
214
+ # guarantee that for at least 60 minutes since the first request.
215
+ #
216
+ # For example, consider a situation where you make an initial request and the
217
+ # request times out. If you make the request again with the same request
218
+ # ID, the server can check if original operation with the same request ID
219
+ # was received, and if so, will ignore the second request. This prevents
220
+ # clients from accidentally creating duplicate commitments.
221
+ #
222
+ # The request ID must be a valid UUID with the exception that zero UUID is
223
+ # not supported (00000000-0000-0000-0000-000000000000).
224
+ class UpdateInstanceRequest
225
+ include ::Google::Protobuf::MessageExts
226
+ extend ::Google::Protobuf::MessageExts::ClassMethods
227
+ end
228
+
229
+ # Message for deleting a Instance
230
+ # @!attribute [rw] name
231
+ # @return [::String]
232
+ # Required. The resource name of the instance to delete, in the format
233
+ # `projects/{projectId}/locations/{location}/instances/{instanceId}`.
234
+ # @!attribute [rw] request_id
235
+ # @return [::String]
236
+ # Optional. An optional request ID to identify requests. Specify a unique
237
+ # request ID so that if you must retry your request, the server will know to
238
+ # ignore the request if it has already been completed. The server will
239
+ # guarantee that for at least 60 minutes after the first request.
240
+ #
241
+ # For example, consider a situation where you make an initial request and the
242
+ # request times out. If you make the request again with the same request
243
+ # ID, the server can check if original operation with the same request ID
244
+ # was received, and if so, will ignore the second request. This prevents
245
+ # clients from accidentally creating duplicate commitments.
246
+ #
247
+ # The request ID must be a valid UUID with the exception that zero UUID is
248
+ # not supported (00000000-0000-0000-0000-000000000000).
249
+ class DeleteInstanceRequest
250
+ include ::Google::Protobuf::MessageExts
251
+ extend ::Google::Protobuf::MessageExts::ClassMethods
252
+ end
253
+
254
+ # Represents the metadata of a long-running operation.
255
+ # @!attribute [r] create_time
256
+ # @return [::Google::Protobuf::Timestamp]
257
+ # Output only. The time the operation was created.
258
+ # @!attribute [r] end_time
259
+ # @return [::Google::Protobuf::Timestamp]
260
+ # Output only. The time the operation finished running.
261
+ # @!attribute [r] target
262
+ # @return [::String]
263
+ # Output only. Server-defined resource path for the target of the operation.
264
+ # @!attribute [r] verb
265
+ # @return [::String]
266
+ # Output only. Name of the verb executed by the operation.
267
+ # @!attribute [r] status_message
268
+ # @return [::String]
269
+ # Output only. Human-readable status of the operation, if any.
270
+ # @!attribute [r] requested_cancellation
271
+ # @return [::Boolean]
272
+ # Output only. Identifies whether the user has requested cancellation
273
+ # of the operation. Operations that have been cancelled successfully
274
+ # have [Operation.error][] value with a
275
+ # {::Google::Rpc::Status#code google.rpc.Status.code} of 1, corresponding to
276
+ # `Code.CANCELLED`.
277
+ # @!attribute [r] api_version
278
+ # @return [::String]
279
+ # Output only. API version used to start the operation.
280
+ class OperationMetadata
281
+ include ::Google::Protobuf::MessageExts
282
+ extend ::Google::Protobuf::MessageExts::ClassMethods
283
+ end
284
+ end
285
+ end
286
+ end
287
+ end