google-cloud-config_service-v1 0.a → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +12 -0
- data/AUTHENTICATION.md +149 -0
- data/README.md +144 -8
- data/lib/google/cloud/config/v1/config_pb.rb +100 -0
- data/lib/google/cloud/config/v1/config_services_pb.rb +79 -0
- data/lib/google/cloud/config_service/v1/bindings_override.rb +135 -0
- data/lib/google/cloud/config_service/v1/config/client.rb +2064 -0
- data/lib/google/cloud/config_service/v1/config/credentials.rb +47 -0
- data/lib/google/cloud/config_service/v1/config/operations.rb +779 -0
- data/lib/google/cloud/config_service/v1/config/paths.rb +149 -0
- data/lib/google/cloud/config_service/v1/config/rest/client.rb +1929 -0
- data/lib/google/cloud/config_service/v1/config/rest/operations.rb +870 -0
- data/lib/google/cloud/config_service/v1/config/rest/service_stub.rb +1000 -0
- data/lib/google/cloud/config_service/v1/config/rest.rb +55 -0
- data/lib/google/cloud/config_service/v1/config.rb +57 -0
- data/lib/google/cloud/config_service/v1/rest.rb +38 -0
- data/lib/google/cloud/config_service/v1/version.rb +7 -2
- data/lib/google/cloud/config_service/v1.rb +45 -0
- data/lib/google-cloud-config_service-v1.rb +21 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/client.rb +381 -0
- data/proto_docs/google/api/field_behavior.rb +85 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/api/resource.rb +222 -0
- data/proto_docs/google/cloud/config/v1/config.rb +1082 -0
- data/proto_docs/google/longrunning/operations.rb +164 -0
- data/proto_docs/google/protobuf/any.rb +144 -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/struct.rb +96 -0
- data/proto_docs/google/protobuf/timestamp.rb +127 -0
- data/proto_docs/google/rpc/status.rb +48 -0
- data/proto_docs/google/type/expr.rb +75 -0
- metadata +229 -12
@@ -0,0 +1,149 @@
|
|
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 ConfigService
|
23
|
+
module V1
|
24
|
+
module Config
|
25
|
+
# Path helper methods for the Config API.
|
26
|
+
module Paths
|
27
|
+
##
|
28
|
+
# Create a fully-qualified Deployment resource string.
|
29
|
+
#
|
30
|
+
# The resource will be in the following format:
|
31
|
+
#
|
32
|
+
# `projects/{project}/locations/{location}/deployments/{deployment}`
|
33
|
+
#
|
34
|
+
# @param project [String]
|
35
|
+
# @param location [String]
|
36
|
+
# @param deployment [String]
|
37
|
+
#
|
38
|
+
# @return [::String]
|
39
|
+
def deployment_path project:, location:, deployment:
|
40
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
41
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
42
|
+
|
43
|
+
"projects/#{project}/locations/#{location}/deployments/#{deployment}"
|
44
|
+
end
|
45
|
+
|
46
|
+
##
|
47
|
+
# Create a fully-qualified Location resource string.
|
48
|
+
#
|
49
|
+
# The resource will be in the following format:
|
50
|
+
#
|
51
|
+
# `projects/{project}/locations/{location}`
|
52
|
+
#
|
53
|
+
# @param project [String]
|
54
|
+
# @param location [String]
|
55
|
+
#
|
56
|
+
# @return [::String]
|
57
|
+
def location_path project:, location:
|
58
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
59
|
+
|
60
|
+
"projects/#{project}/locations/#{location}"
|
61
|
+
end
|
62
|
+
|
63
|
+
##
|
64
|
+
# Create a fully-qualified Resource resource string.
|
65
|
+
#
|
66
|
+
# The resource will be in the following format:
|
67
|
+
#
|
68
|
+
# `projects/{project}/locations/{location}/deployments/{deployment}/revisions/{revision}/resources/{resource}`
|
69
|
+
#
|
70
|
+
# @param project [String]
|
71
|
+
# @param location [String]
|
72
|
+
# @param deployment [String]
|
73
|
+
# @param revision [String]
|
74
|
+
# @param resource [String]
|
75
|
+
#
|
76
|
+
# @return [::String]
|
77
|
+
def resource_path project:, location:, deployment:, revision:, resource:
|
78
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
79
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
80
|
+
raise ::ArgumentError, "deployment cannot contain /" if deployment.to_s.include? "/"
|
81
|
+
raise ::ArgumentError, "revision cannot contain /" if revision.to_s.include? "/"
|
82
|
+
|
83
|
+
"projects/#{project}/locations/#{location}/deployments/#{deployment}/revisions/#{revision}/resources/#{resource}"
|
84
|
+
end
|
85
|
+
|
86
|
+
##
|
87
|
+
# Create a fully-qualified Revision resource string.
|
88
|
+
#
|
89
|
+
# The resource will be in the following format:
|
90
|
+
#
|
91
|
+
# `projects/{project}/locations/{location}/deployments/{deployment}/revisions/{revision}`
|
92
|
+
#
|
93
|
+
# @param project [String]
|
94
|
+
# @param location [String]
|
95
|
+
# @param deployment [String]
|
96
|
+
# @param revision [String]
|
97
|
+
#
|
98
|
+
# @return [::String]
|
99
|
+
def revision_path project:, location:, deployment:, revision:
|
100
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
101
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
102
|
+
raise ::ArgumentError, "deployment cannot contain /" if deployment.to_s.include? "/"
|
103
|
+
|
104
|
+
"projects/#{project}/locations/#{location}/deployments/#{deployment}/revisions/#{revision}"
|
105
|
+
end
|
106
|
+
|
107
|
+
##
|
108
|
+
# Create a fully-qualified ServiceAccount resource string.
|
109
|
+
#
|
110
|
+
# The resource will be in the following format:
|
111
|
+
#
|
112
|
+
# `projects/{project}/serviceAccounts/{service_account}`
|
113
|
+
#
|
114
|
+
# @param project [String]
|
115
|
+
# @param service_account [String]
|
116
|
+
#
|
117
|
+
# @return [::String]
|
118
|
+
def service_account_path project:, service_account:
|
119
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
120
|
+
|
121
|
+
"projects/#{project}/serviceAccounts/#{service_account}"
|
122
|
+
end
|
123
|
+
|
124
|
+
##
|
125
|
+
# Create a fully-qualified WorkerPool resource string.
|
126
|
+
#
|
127
|
+
# The resource will be in the following format:
|
128
|
+
#
|
129
|
+
# `projects/{project}/locations/{location}/workerPools/{worker_pool}`
|
130
|
+
#
|
131
|
+
# @param project [String]
|
132
|
+
# @param location [String]
|
133
|
+
# @param worker_pool [String]
|
134
|
+
#
|
135
|
+
# @return [::String]
|
136
|
+
def worker_pool_path project:, location:, worker_pool:
|
137
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
138
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
139
|
+
|
140
|
+
"projects/#{project}/locations/#{location}/workerPools/#{worker_pool}"
|
141
|
+
end
|
142
|
+
|
143
|
+
extend self
|
144
|
+
end
|
145
|
+
end
|
146
|
+
end
|
147
|
+
end
|
148
|
+
end
|
149
|
+
end
|