google-cloud-dataform-v1beta1 0.14.1 → 0.16.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 (31) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHENTICATION.md +4 -4
  3. data/README.md +5 -5
  4. data/lib/google/cloud/dataform/v1beta1/bindings_override.rb +0 -57
  5. data/lib/google/cloud/dataform/v1beta1/dataform/client.rb +2189 -49
  6. data/lib/google/cloud/dataform/v1beta1/dataform/operations.rb +843 -0
  7. data/lib/google/cloud/dataform/v1beta1/dataform/paths.rb +59 -0
  8. data/lib/google/cloud/dataform/v1beta1/dataform/rest/client.rb +2065 -66
  9. data/lib/google/cloud/dataform/v1beta1/dataform/rest/operations.rb +927 -0
  10. data/lib/google/cloud/dataform/v1beta1/dataform/rest/service_stub.rb +1782 -482
  11. data/lib/google/cloud/dataform/v1beta1/dataform/rest.rb +1 -0
  12. data/lib/google/cloud/dataform/v1beta1/dataform.rb +1 -0
  13. data/lib/google/cloud/dataform/v1beta1/dataform_pb.rb +48 -28
  14. data/lib/google/cloud/dataform/v1beta1/dataform_services_pb.rb +56 -0
  15. data/lib/google/cloud/dataform/v1beta1/version.rb +1 -1
  16. data/lib/google/longrunning/bindings_override.rb +71 -0
  17. data/lib/google/longrunning/operations/client.rb +954 -0
  18. data/lib/google/longrunning/operations/credentials.rb +40 -0
  19. data/lib/google/longrunning/operations/operations.rb +839 -0
  20. data/lib/google/longrunning/operations/rest/client.rb +777 -0
  21. data/lib/google/longrunning/operations/rest/operations.rb +923 -0
  22. data/lib/google/longrunning/operations/rest/service_stub.rb +322 -0
  23. data/lib/google/longrunning/operations/rest.rb +57 -0
  24. data/lib/google/longrunning/operations.rb +59 -0
  25. data/lib/google/longrunning/rest.rb +34 -0
  26. data/lib/google/longrunning.rb +41 -0
  27. data/lib/google-cloud-dataform-v1beta1.rb +1 -0
  28. data/proto_docs/google/api/client.rb +149 -29
  29. data/proto_docs/google/cloud/dataform/v1beta1/dataform.rb +870 -9
  30. data/proto_docs/google/longrunning/operations.rb +191 -0
  31. metadata +32 -4
@@ -106,6 +106,46 @@ module Google
106
106
  "projects/#{project}/locations/#{location}/keyRings/#{key_ring}/cryptoKeys/#{crypto_key}/cryptoKeyVersions/#{crypto_key_version}"
107
107
  end
108
108
 
109
+ ##
110
+ # Create a fully-qualified Folder resource string.
111
+ #
112
+ # The resource will be in the following format:
113
+ #
114
+ # `projects/{project}/locations/{location}/folders/{folder}`
115
+ #
116
+ # @param project [String]
117
+ # @param location [String]
118
+ # @param folder [String]
119
+ #
120
+ # @return [::String]
121
+ def folder_path project:, location:, folder:
122
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
123
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
124
+
125
+ "projects/#{project}/locations/#{location}/folders/#{folder}"
126
+ end
127
+
128
+ ##
129
+ # Create a fully-qualified GitRepositoryLink resource string.
130
+ #
131
+ # The resource will be in the following format:
132
+ #
133
+ # `projects/{project}/locations/{location}/connections/{connection}/gitRepositoryLinks/{git_repository_link}`
134
+ #
135
+ # @param project [String]
136
+ # @param location [String]
137
+ # @param connection [String]
138
+ # @param git_repository_link [String]
139
+ #
140
+ # @return [::String]
141
+ def git_repository_link_path project:, location:, connection:, git_repository_link:
142
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
143
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
144
+ raise ::ArgumentError, "connection cannot contain /" if connection.to_s.include? "/"
145
+
146
+ "projects/#{project}/locations/#{location}/connections/#{connection}/gitRepositoryLinks/#{git_repository_link}"
147
+ end
148
+
109
149
  ##
110
150
  # Create a fully-qualified Location resource string.
111
151
  #
@@ -201,6 +241,25 @@ module Google
201
241
  "projects/#{project}/secrets/#{secret}/versions/#{version}"
202
242
  end
203
243
 
244
+ ##
245
+ # Create a fully-qualified TeamFolder resource string.
246
+ #
247
+ # The resource will be in the following format:
248
+ #
249
+ # `projects/{project}/locations/{location}/teamFolders/{team_folder}`
250
+ #
251
+ # @param project [String]
252
+ # @param location [String]
253
+ # @param team_folder [String]
254
+ #
255
+ # @return [::String]
256
+ def team_folder_path project:, location:, team_folder:
257
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
258
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
259
+
260
+ "projects/#{project}/locations/#{location}/teamFolders/#{team_folder}"
261
+ end
262
+
204
263
  ##
205
264
  # Create a fully-qualified WorkflowConfig resource string.
206
265
  #