google-cloud-storage-control-v2 0.a → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +12 -0
  3. data/AUTHENTICATION.md +122 -0
  4. data/README.md +144 -8
  5. data/lib/google/cloud/storage/control/v2/storage_control/client.rb +1480 -0
  6. data/lib/google/cloud/storage/control/v2/storage_control/credentials.rb +53 -0
  7. data/lib/google/cloud/storage/control/v2/storage_control/operations.rb +803 -0
  8. data/lib/google/cloud/storage/control/v2/storage_control/paths.rb +107 -0
  9. data/lib/google/cloud/storage/control/v2/storage_control.rb +52 -0
  10. data/lib/google/cloud/storage/control/v2/version.rb +7 -2
  11. data/lib/google/cloud/storage/control/v2.rb +42 -0
  12. data/lib/google/storage/control/v2/storage_control_pb.rb +73 -0
  13. data/lib/google/storage/control/v2/storage_control_services_pb.rb +77 -0
  14. data/lib/google-cloud-storage-control-v2.rb +21 -0
  15. data/proto_docs/README.md +4 -0
  16. data/proto_docs/google/api/client.rb +399 -0
  17. data/proto_docs/google/api/field_behavior.rb +85 -0
  18. data/proto_docs/google/api/field_info.rb +65 -0
  19. data/proto_docs/google/api/launch_stage.rb +71 -0
  20. data/proto_docs/google/api/resource.rb +222 -0
  21. data/proto_docs/google/api/routing.rb +459 -0
  22. data/proto_docs/google/longrunning/operations.rb +164 -0
  23. data/proto_docs/google/protobuf/any.rb +145 -0
  24. data/proto_docs/google/protobuf/duration.rb +98 -0
  25. data/proto_docs/google/protobuf/empty.rb +34 -0
  26. data/proto_docs/google/protobuf/timestamp.rb +127 -0
  27. data/proto_docs/google/rpc/status.rb +48 -0
  28. data/proto_docs/google/storage/control/v2/storage_control.rb +474 -0
  29. metadata +77 -10
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2024 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
+ require "googleauth"
20
+
21
+ module Google
22
+ module Cloud
23
+ module Storage
24
+ module Control
25
+ module V2
26
+ module StorageControl
27
+ # Credentials for the StorageControl API.
28
+ class Credentials < ::Google::Auth::Credentials
29
+ self.scope = [
30
+ "https://www.googleapis.com/auth/cloud-platform",
31
+ "https://www.googleapis.com/auth/cloud-platform.read-only",
32
+ "https://www.googleapis.com/auth/devstorage.full_control",
33
+ "https://www.googleapis.com/auth/devstorage.read_only",
34
+ "https://www.googleapis.com/auth/devstorage.read_write"
35
+ ]
36
+ self.env_vars = [
37
+ "GOOGLE_CLOUD_CREDENTIALS",
38
+ "GOOGLE_CLOUD_KEYFILE",
39
+ "GCLOUD_KEYFILE",
40
+ "GOOGLE_CLOUD_CREDENTIALS_JSON",
41
+ "GOOGLE_CLOUD_KEYFILE_JSON",
42
+ "GCLOUD_KEYFILE_JSON"
43
+ ]
44
+ self.paths = [
45
+ "~/.config/google_cloud/application_default_credentials.json"
46
+ ]
47
+ end
48
+ end
49
+ end
50
+ end
51
+ end
52
+ end
53
+ end