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
@@ -0,0 +1,71 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2026 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 "gapic/rest"
20
+
21
+ module Google
22
+ ##
23
+ # @example Loading just the REST part of this package, including all its services, and instantiating a REST client
24
+ #
25
+ # require "google/longrunning/rest"
26
+ # client = ::Google::Longrunning::Operations::Rest::Client.new
27
+ #
28
+ module Longrunning
29
+ ##
30
+ # @private
31
+ # Initialize the mixin bindings configuration
32
+ #
33
+ def self.configure
34
+ @configure ||= begin
35
+ namespace = ["Google"]
36
+ parent_config = while namespace.any?
37
+ parent_name = namespace.join "::"
38
+ parent_const = const_get parent_name
39
+ break parent_const.configure if parent_const.respond_to? :configure
40
+ namespace.pop
41
+ end
42
+
43
+ default_config = ::Gapic::Rest::HttpBindingOverrideConfiguration.new parent_config
44
+ default_config.bindings_override["google.cloud.location.Locations.GetLocation"] = [
45
+ Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
46
+ uri_method: :get,
47
+ uri_template: "/v1beta1/{name}",
48
+ matches: [
49
+ ["name", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
50
+ ],
51
+ body: nil
52
+ )
53
+ ]
54
+ default_config.bindings_override["google.cloud.location.Locations.ListLocations"] = [
55
+
56
+ Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
57
+ uri_method: :get,
58
+ uri_template: "/v1beta1/{name}/locations",
59
+ matches: [
60
+ ["name", %r{^projects/[^/]+/?$}, false]
61
+ ],
62
+ body: nil
63
+ )
64
+ ]
65
+ default_config
66
+ end
67
+ yield @configure if block_given?
68
+ @configure
69
+ end
70
+ end
71
+ end