google-cloud-bare_metal_solution-v2 0.4.0 → 0.5.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.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb +2773 -407
  3. data/lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/operations.rb +3 -1
  4. data/lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/paths.rb +135 -0
  5. data/lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/rest/client.rb +2035 -287
  6. data/lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/rest/operations.rb +7 -5
  7. data/lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/rest/service_stub.rb +1684 -253
  8. data/lib/google/cloud/bare_metal_solution/v2/version.rb +1 -1
  9. data/lib/google/cloud/baremetalsolution/v2/baremetalsolution_pb.rb +7 -6
  10. data/lib/google/cloud/baremetalsolution/v2/baremetalsolution_services_pb.rb +62 -0
  11. data/lib/google/cloud/baremetalsolution/v2/common_pb.rb +48 -0
  12. data/lib/google/cloud/baremetalsolution/v2/instance_pb.rb +12 -6
  13. data/lib/google/cloud/baremetalsolution/v2/lun_pb.rb +4 -1
  14. data/lib/google/cloud/baremetalsolution/v2/network_pb.rb +3 -1
  15. data/lib/google/cloud/baremetalsolution/v2/nfs_share_pb.rb +5 -1
  16. data/lib/google/cloud/baremetalsolution/v2/osimage_pb.rb +47 -0
  17. data/lib/google/cloud/baremetalsolution/v2/provisioning_pb.rb +80 -0
  18. data/lib/google/cloud/baremetalsolution/v2/ssh_key_pb.rb +49 -0
  19. data/lib/google/cloud/baremetalsolution/v2/volume_pb.rb +8 -1
  20. data/lib/google/cloud/baremetalsolution/v2/volume_snapshot_pb.rb +54 -0
  21. data/proto_docs/google/cloud/baremetalsolution/v2/{baremetalsolution.rb → common.rb} +36 -14
  22. data/proto_docs/google/cloud/baremetalsolution/v2/instance.rb +95 -68
  23. data/proto_docs/google/cloud/baremetalsolution/v2/lun.rb +19 -0
  24. data/proto_docs/google/cloud/baremetalsolution/v2/network.rb +68 -2
  25. data/proto_docs/google/cloud/baremetalsolution/v2/nfs_share.rb +83 -9
  26. data/proto_docs/google/cloud/baremetalsolution/v2/osimage.rb +80 -0
  27. data/proto_docs/google/cloud/baremetalsolution/v2/provisioning.rb +639 -0
  28. data/proto_docs/google/cloud/baremetalsolution/v2/ssh_key.rb +97 -0
  29. data/proto_docs/google/cloud/baremetalsolution/v2/volume.rb +91 -4
  30. data/proto_docs/google/cloud/baremetalsolution/v2/volume_snapshot.rb +134 -0
  31. data/proto_docs/google/type/expr.rb +75 -0
  32. metadata +15 -5
@@ -0,0 +1,97 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 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 BareMetalSolution
23
+ module V2
24
+ # An SSH key, used for authorizing with the interactive serial console feature.
25
+ # @!attribute [r] name
26
+ # @return [::String]
27
+ # Output only. The name of this SSH key.
28
+ # Currently, the only valid value for the location is "global".
29
+ # @!attribute [rw] public_key
30
+ # @return [::String]
31
+ # The public SSH key. This must be in OpenSSH .authorized_keys format.
32
+ class SSHKey
33
+ include ::Google::Protobuf::MessageExts
34
+ extend ::Google::Protobuf::MessageExts::ClassMethods
35
+ end
36
+
37
+ # Message for listing the public SSH keys in a project.
38
+ # @!attribute [rw] parent
39
+ # @return [::String]
40
+ # Required. The parent containing the SSH keys.
41
+ # Currently, the only valid value for the location is "global".
42
+ # @!attribute [rw] page_size
43
+ # @return [::Integer]
44
+ # The maximum number of items to return.
45
+ # @!attribute [rw] page_token
46
+ # @return [::String]
47
+ # The next_page_token value returned from a previous List request, if any.
48
+ class ListSSHKeysRequest
49
+ include ::Google::Protobuf::MessageExts
50
+ extend ::Google::Protobuf::MessageExts::ClassMethods
51
+ end
52
+
53
+ # Message for response of ListSSHKeys.
54
+ # @!attribute [rw] ssh_keys
55
+ # @return [::Array<::Google::Cloud::BareMetalSolution::V2::SSHKey>]
56
+ # The SSH keys registered in the project.
57
+ # @!attribute [rw] next_page_token
58
+ # @return [::String]
59
+ # Token to retrieve the next page of results, or empty if there are no more
60
+ # results in the list.
61
+ class ListSSHKeysResponse
62
+ include ::Google::Protobuf::MessageExts
63
+ extend ::Google::Protobuf::MessageExts::ClassMethods
64
+ end
65
+
66
+ # Message for registering a public SSH key in a project.
67
+ # @!attribute [rw] parent
68
+ # @return [::String]
69
+ # Required. The parent containing the SSH keys.
70
+ # @!attribute [rw] ssh_key
71
+ # @return [::Google::Cloud::BareMetalSolution::V2::SSHKey]
72
+ # Required. The SSH key to register.
73
+ # @!attribute [rw] ssh_key_id
74
+ # @return [::String]
75
+ # Required. The ID to use for the key, which will become the final component
76
+ # of the key's resource name.
77
+ #
78
+ # This value must match the regex:
79
+ # [a-zA-Z0-9@.\-_]\\{1,64}
80
+ class CreateSSHKeyRequest
81
+ include ::Google::Protobuf::MessageExts
82
+ extend ::Google::Protobuf::MessageExts::ClassMethods
83
+ end
84
+
85
+ # Message for deleting an SSH key from a project.
86
+ # @!attribute [rw] name
87
+ # @return [::String]
88
+ # Required. The name of the SSH key to delete.
89
+ # Currently, the only valid value for the location is "global".
90
+ class DeleteSSHKeyRequest
91
+ include ::Google::Protobuf::MessageExts
92
+ extend ::Google::Protobuf::MessageExts::ClassMethods
93
+ end
94
+ end
95
+ end
96
+ end
97
+ end
@@ -41,6 +41,9 @@ module Google
41
41
  # @!attribute [rw] requested_size_gib
42
42
  # @return [::Integer]
43
43
  # The requested size of this storage volume, in GiB.
44
+ # @!attribute [rw] originally_requested_size_gib
45
+ # @return [::Integer]
46
+ # Originally requested size, in GiB.
44
47
  # @!attribute [rw] current_size_gib
45
48
  # @return [::Integer]
46
49
  # The current size of this storage volume, in GiB, including space reserved
@@ -50,6 +53,9 @@ module Google
50
53
  # @return [::Integer]
51
54
  # Additional emergency size that was requested for this Volume, in GiB.
52
55
  # current_size_gib includes this value.
56
+ # @!attribute [rw] max_size_gib
57
+ # @return [::Integer]
58
+ # Maximum size volume can be expanded to in case of evergency, in GiB.
53
59
  # @!attribute [rw] auto_grown_size_gib
54
60
  # @return [::Integer]
55
61
  # The size, in GiB, that this storage volume has expanded as a result of an
@@ -73,6 +79,37 @@ module Google
73
79
  # @!attribute [rw] pod
74
80
  # @return [::String]
75
81
  # Immutable. Pod name.
82
+ # @!attribute [r] protocol
83
+ # @return [::Google::Cloud::BareMetalSolution::V2::Volume::Protocol]
84
+ # Output only. Storage protocol for the Volume.
85
+ # @!attribute [r] boot_volume
86
+ # @return [::Boolean]
87
+ # Output only. Whether this volume is a boot volume. A boot volume is one
88
+ # which contains a boot LUN.
89
+ # @!attribute [rw] performance_tier
90
+ # @return [::Google::Cloud::BareMetalSolution::V2::VolumePerformanceTier]
91
+ # Immutable. Performance tier of the Volume.
92
+ # Default is SHARED.
93
+ # @!attribute [rw] notes
94
+ # @return [::String]
95
+ # Input only. User-specified notes for new Volume.
96
+ # Used to provision Volumes that require manual intervention.
97
+ # @!attribute [rw] workload_profile
98
+ # @return [::Google::Cloud::BareMetalSolution::V2::Volume::WorkloadProfile]
99
+ # The workload profile for the volume.
100
+ # @!attribute [r] expire_time
101
+ # @return [::Google::Protobuf::Timestamp]
102
+ # Output only. Time after which volume will be fully deleted.
103
+ # It is filled only for volumes in COOLOFF state.
104
+ # @!attribute [r] instances
105
+ # @return [::Array<::String>]
106
+ # Output only. Instances this Volume is attached to.
107
+ # This field is set only in Get requests.
108
+ # @!attribute [r] attached
109
+ # @return [::Boolean]
110
+ # Output only. Is the Volume attached at at least one instance.
111
+ # This field is a lightweight counterpart of `instances` field.
112
+ # It is filled in List responses as well.
76
113
  class Volume
77
114
  include ::Google::Protobuf::MessageExts
78
115
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -137,6 +174,13 @@ module Google
137
174
 
138
175
  # The storage volume has been requested to be deleted.
139
176
  DELETING = 3
177
+
178
+ # The storage volume is being updated.
179
+ UPDATING = 4
180
+
181
+ # The storage volume is in cool off state. It will be deleted after
182
+ # `expire_time`.
183
+ COOL_OFF = 5
140
184
  end
141
185
 
142
186
  # The kinds of auto delete behavior to use when snapshot reserved space is
@@ -155,6 +199,31 @@ module Google
155
199
  # Delete the newest snapshots first.
156
200
  NEWEST_FIRST = 3
157
201
  end
202
+
203
+ # Storage protocol.
204
+ module Protocol
205
+ # Value is not specified.
206
+ PROTOCOL_UNSPECIFIED = 0
207
+
208
+ # Fibre Channel protocol.
209
+ FIBRE_CHANNEL = 1
210
+
211
+ # NFS protocol means Volume is a NFS Share volume.
212
+ # Such volumes cannot be manipulated via Volumes API.
213
+ NFS = 2
214
+ end
215
+
216
+ # The possible values for a workload profile.
217
+ module WorkloadProfile
218
+ # The workload profile is in an unknown state.
219
+ WORKLOAD_PROFILE_UNSPECIFIED = 0
220
+
221
+ # The workload profile is generic.
222
+ GENERIC = 1
223
+
224
+ # The workload profile is hana.
225
+ HANA = 2
226
+ end
158
227
  end
159
228
 
160
229
  # Message for requesting storage volume information.
@@ -211,16 +280,34 @@ module Google
211
280
  # @return [::Google::Protobuf::FieldMask]
212
281
  # The list of fields to update.
213
282
  # The only currently supported fields are:
214
- # `snapshot_auto_delete_behavior`
215
- # `snapshot_schedule_policy_name`
216
283
  # 'labels'
217
- # 'snapshot_enabled'
218
- # 'snapshot_reservation_detail.reserved_space_percent'
219
284
  class UpdateVolumeRequest
220
285
  include ::Google::Protobuf::MessageExts
221
286
  extend ::Google::Protobuf::MessageExts::ClassMethods
222
287
  end
223
288
 
289
+ # Message requesting rename of a server.
290
+ # @!attribute [rw] name
291
+ # @return [::String]
292
+ # Required. The `name` field is used to identify the volume.
293
+ # Format: projects/\\{project}/locations/\\{location}/volumes/\\{volume}
294
+ # @!attribute [rw] new_volume_id
295
+ # @return [::String]
296
+ # Required. The new `id` of the volume.
297
+ class RenameVolumeRequest
298
+ include ::Google::Protobuf::MessageExts
299
+ extend ::Google::Protobuf::MessageExts::ClassMethods
300
+ end
301
+
302
+ # Request for skip volume cooloff and delete it.
303
+ # @!attribute [rw] name
304
+ # @return [::String]
305
+ # Required. The name of the Volume.
306
+ class EvictVolumeRequest
307
+ include ::Google::Protobuf::MessageExts
308
+ extend ::Google::Protobuf::MessageExts::ClassMethods
309
+ end
310
+
224
311
  # Request for emergency resize Volume.
225
312
  # @!attribute [rw] volume
226
313
  # @return [::String]
@@ -0,0 +1,134 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 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 BareMetalSolution
23
+ module V2
24
+ # A snapshot of a volume. Only boot volumes can have snapshots.
25
+ # @!attribute [rw] name
26
+ # @return [::String]
27
+ # The name of the snapshot.
28
+ # @!attribute [r] id
29
+ # @return [::String]
30
+ # Output only. An identifier for the snapshot, generated by the backend.
31
+ # @!attribute [rw] description
32
+ # @return [::String]
33
+ # The description of the snapshot.
34
+ # @!attribute [r] create_time
35
+ # @return [::Google::Protobuf::Timestamp]
36
+ # Output only. The creation time of the snapshot.
37
+ # @!attribute [r] storage_volume
38
+ # @return [::String]
39
+ # Output only. The name of the volume which this snapshot belongs to.
40
+ # @!attribute [r] type
41
+ # @return [::Google::Cloud::BareMetalSolution::V2::VolumeSnapshot::SnapshotType]
42
+ # Output only. The type of the snapshot which indicates whether it was
43
+ # scheduled or manual/ad-hoc.
44
+ class VolumeSnapshot
45
+ include ::Google::Protobuf::MessageExts
46
+ extend ::Google::Protobuf::MessageExts::ClassMethods
47
+
48
+ # Represents the type of a snapshot.
49
+ module SnapshotType
50
+ # Type is not specified.
51
+ SNAPSHOT_TYPE_UNSPECIFIED = 0
52
+
53
+ # Snapshot was taken manually by user.
54
+ AD_HOC = 1
55
+
56
+ # Snapshot was taken automatically as a part of a snapshot schedule.
57
+ SCHEDULED = 2
58
+ end
59
+ end
60
+
61
+ # Message for requesting volume snapshot information.
62
+ # @!attribute [rw] name
63
+ # @return [::String]
64
+ # Required. The name of the snapshot.
65
+ class GetVolumeSnapshotRequest
66
+ include ::Google::Protobuf::MessageExts
67
+ extend ::Google::Protobuf::MessageExts::ClassMethods
68
+ end
69
+
70
+ # Message for requesting a list of volume snapshots.
71
+ # @!attribute [rw] parent
72
+ # @return [::String]
73
+ # Required. Parent value for ListVolumesRequest.
74
+ # @!attribute [rw] page_size
75
+ # @return [::Integer]
76
+ # Requested page size. The server might return fewer items than requested.
77
+ # If unspecified, server will pick an appropriate default.
78
+ # @!attribute [rw] page_token
79
+ # @return [::String]
80
+ # A token identifying a page of results from the server.
81
+ class ListVolumeSnapshotsRequest
82
+ include ::Google::Protobuf::MessageExts
83
+ extend ::Google::Protobuf::MessageExts::ClassMethods
84
+ end
85
+
86
+ # Response message containing the list of volume snapshots.
87
+ # @!attribute [rw] volume_snapshots
88
+ # @return [::Array<::Google::Cloud::BareMetalSolution::V2::VolumeSnapshot>]
89
+ # The list of snapshots.
90
+ # @!attribute [rw] next_page_token
91
+ # @return [::String]
92
+ # A token identifying a page of results from the server.
93
+ # @!attribute [rw] unreachable
94
+ # @return [::Array<::String>]
95
+ # Locations that could not be reached.
96
+ class ListVolumeSnapshotsResponse
97
+ include ::Google::Protobuf::MessageExts
98
+ extend ::Google::Protobuf::MessageExts::ClassMethods
99
+ end
100
+
101
+ # Message for deleting named Volume snapshot.
102
+ # @!attribute [rw] name
103
+ # @return [::String]
104
+ # Required. The name of the snapshot to delete.
105
+ class DeleteVolumeSnapshotRequest
106
+ include ::Google::Protobuf::MessageExts
107
+ extend ::Google::Protobuf::MessageExts::ClassMethods
108
+ end
109
+
110
+ # Message for creating a volume snapshot.
111
+ # @!attribute [rw] parent
112
+ # @return [::String]
113
+ # Required. The volume to snapshot.
114
+ # @!attribute [rw] volume_snapshot
115
+ # @return [::Google::Cloud::BareMetalSolution::V2::VolumeSnapshot]
116
+ # Required. The snapshot to create.
117
+ class CreateVolumeSnapshotRequest
118
+ include ::Google::Protobuf::MessageExts
119
+ extend ::Google::Protobuf::MessageExts::ClassMethods
120
+ end
121
+
122
+ # Message for restoring a volume snapshot.
123
+ # @!attribute [rw] volume_snapshot
124
+ # @return [::String]
125
+ # Required. Name of the snapshot which will be used to restore its parent
126
+ # volume.
127
+ class RestoreVolumeSnapshotRequest
128
+ include ::Google::Protobuf::MessageExts
129
+ extend ::Google::Protobuf::MessageExts::ClassMethods
130
+ end
131
+ end
132
+ end
133
+ end
134
+ end
@@ -0,0 +1,75 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 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 Type
22
+ # Represents a textual expression in the Common Expression Language (CEL)
23
+ # syntax. CEL is a C-like expression language. The syntax and semantics of CEL
24
+ # are documented at https://github.com/google/cel-spec.
25
+ #
26
+ # Example (Comparison):
27
+ #
28
+ # title: "Summary size limit"
29
+ # description: "Determines if a summary is less than 100 chars"
30
+ # expression: "document.summary.size() < 100"
31
+ #
32
+ # Example (Equality):
33
+ #
34
+ # title: "Requestor is owner"
35
+ # description: "Determines if requestor is the document owner"
36
+ # expression: "document.owner == request.auth.claims.email"
37
+ #
38
+ # Example (Logic):
39
+ #
40
+ # title: "Public documents"
41
+ # description: "Determine whether the document should be publicly visible"
42
+ # expression: "document.type != 'private' && document.type != 'internal'"
43
+ #
44
+ # Example (Data Manipulation):
45
+ #
46
+ # title: "Notification string"
47
+ # description: "Create a notification string with a timestamp."
48
+ # expression: "'New message received at ' + string(document.create_time)"
49
+ #
50
+ # The exact variables and functions that may be referenced within an expression
51
+ # are determined by the service that evaluates it. See the service
52
+ # documentation for additional information.
53
+ # @!attribute [rw] expression
54
+ # @return [::String]
55
+ # Textual representation of an expression in Common Expression Language
56
+ # syntax.
57
+ # @!attribute [rw] title
58
+ # @return [::String]
59
+ # Optional. Title for the expression, i.e. a short string describing
60
+ # its purpose. This can be used e.g. in UIs which allow to enter the
61
+ # expression.
62
+ # @!attribute [rw] description
63
+ # @return [::String]
64
+ # Optional. Description of the expression. This is a longer text which
65
+ # describes the expression, e.g. when hovered over it in a UI.
66
+ # @!attribute [rw] location
67
+ # @return [::String]
68
+ # Optional. String indicating the location of the expression for error
69
+ # reporting, e.g. a file name and a position in the file.
70
+ class Expr
71
+ include ::Google::Protobuf::MessageExts
72
+ extend ::Google::Protobuf::MessageExts::ClassMethods
73
+ end
74
+ end
75
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-bare_metal_solution-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.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-05-31 00:00:00.000000000 Z
11
+ date: 2023-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.19.0
19
+ version: 0.19.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.19.0
29
+ version: 0.19.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -227,22 +227,31 @@ files:
227
227
  - lib/google/cloud/bare_metal_solution/v2/version.rb
228
228
  - lib/google/cloud/baremetalsolution/v2/baremetalsolution_pb.rb
229
229
  - lib/google/cloud/baremetalsolution/v2/baremetalsolution_services_pb.rb
230
+ - lib/google/cloud/baremetalsolution/v2/common_pb.rb
230
231
  - lib/google/cloud/baremetalsolution/v2/instance_pb.rb
231
232
  - lib/google/cloud/baremetalsolution/v2/lun_pb.rb
232
233
  - lib/google/cloud/baremetalsolution/v2/network_pb.rb
233
234
  - lib/google/cloud/baremetalsolution/v2/nfs_share_pb.rb
235
+ - lib/google/cloud/baremetalsolution/v2/osimage_pb.rb
236
+ - lib/google/cloud/baremetalsolution/v2/provisioning_pb.rb
237
+ - lib/google/cloud/baremetalsolution/v2/ssh_key_pb.rb
234
238
  - lib/google/cloud/baremetalsolution/v2/volume_pb.rb
239
+ - lib/google/cloud/baremetalsolution/v2/volume_snapshot_pb.rb
235
240
  - proto_docs/README.md
236
241
  - proto_docs/google/api/client.rb
237
242
  - proto_docs/google/api/field_behavior.rb
238
243
  - proto_docs/google/api/launch_stage.rb
239
244
  - proto_docs/google/api/resource.rb
240
- - proto_docs/google/cloud/baremetalsolution/v2/baremetalsolution.rb
245
+ - proto_docs/google/cloud/baremetalsolution/v2/common.rb
241
246
  - proto_docs/google/cloud/baremetalsolution/v2/instance.rb
242
247
  - proto_docs/google/cloud/baremetalsolution/v2/lun.rb
243
248
  - proto_docs/google/cloud/baremetalsolution/v2/network.rb
244
249
  - proto_docs/google/cloud/baremetalsolution/v2/nfs_share.rb
250
+ - proto_docs/google/cloud/baremetalsolution/v2/osimage.rb
251
+ - proto_docs/google/cloud/baremetalsolution/v2/provisioning.rb
252
+ - proto_docs/google/cloud/baremetalsolution/v2/ssh_key.rb
245
253
  - proto_docs/google/cloud/baremetalsolution/v2/volume.rb
254
+ - proto_docs/google/cloud/baremetalsolution/v2/volume_snapshot.rb
246
255
  - proto_docs/google/longrunning/operations.rb
247
256
  - proto_docs/google/protobuf/any.rb
248
257
  - proto_docs/google/protobuf/duration.rb
@@ -250,6 +259,7 @@ files:
250
259
  - proto_docs/google/protobuf/field_mask.rb
251
260
  - proto_docs/google/protobuf/timestamp.rb
252
261
  - proto_docs/google/rpc/status.rb
262
+ - proto_docs/google/type/expr.rb
253
263
  homepage: https://github.com/googleapis/google-cloud-ruby
254
264
  licenses:
255
265
  - Apache-2.0