google-cloud-alloy_db-v1 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -140,6 +140,27 @@ module Google
140
140
  "projects/#{project}/global/networks/#{network}"
141
141
  end
142
142
 
143
+ ##
144
+ # Create a fully-qualified User resource string.
145
+ #
146
+ # The resource will be in the following format:
147
+ #
148
+ # `projects/{project}/locations/{location}/clusters/{cluster}/users/{user}`
149
+ #
150
+ # @param project [String]
151
+ # @param location [String]
152
+ # @param cluster [String]
153
+ # @param user [String]
154
+ #
155
+ # @return [::String]
156
+ def user_path project:, location:, cluster:, user:
157
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
158
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
159
+ raise ::ArgumentError, "cluster cannot contain /" if cluster.to_s.include? "/"
160
+
161
+ "projects/#{project}/locations/#{location}/clusters/#{cluster}/users/#{user}"
162
+ end
163
+
143
164
  extend self
144
165
  end
145
166
  end