google-cloud-dataform-v1beta1 0.13.0 → 0.14.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ca7bb0626a372386772b5f1a4279ff5e501542ec8a976d6076f0d1047c015502
4
- data.tar.gz: 53da23b67a876e57ccaa21e1957a970d5d5fa8e5b1b801cdaff7b1001a524111
3
+ metadata.gz: b098180ec6a63e35a6016d2623229881664f88392ea6913c17bd8d0bb2554203
4
+ data.tar.gz: b002e4149964fd6c869b3b0b5381b09013ff8b4ea00e2e7850c47a127f08388a
5
5
  SHA512:
6
- metadata.gz: 4cea34215d3a03651ca5154f6d8330d7422d9a15bc372692f6e48345bca66cb61f52f8602eb69e0dbd2bad96ce004da07e9664c5eb59036584b7af3cdb241017
7
- data.tar.gz: 95ea10c0dce56a8cda07bd726e49def6d7dd173f230baf2798a160558ee1ef5096de55d54b629ed002da90504f1d6a0abf0700f879bcd9d1ccf36e56760938c4
6
+ metadata.gz: facf2a92b93043248bd886247808868ee679765d440b6663f9f7b17df9b1001bd31e3ca9ecefb4dde0a0fc6166f2f0472c7789bfdd5a681270881aeb8d9958f5
7
+ data.tar.gz: 30622b22532169a34d1a9b0d9b6aa2f44f08f64c3978b6b57157f3c0676b1140644b428ca58c37c61c0cb40c2e5b49dec38e81c714015d7a72cc14cd4c1bb819
@@ -16,7 +16,7 @@
16
16
 
17
17
  # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
18
 
19
- require "gapic/config"
19
+ require "gapic/rest"
20
20
 
21
21
  module Google
22
22
  module Cloud
@@ -42,7 +42,7 @@ module Google
42
42
  namespace.pop
43
43
  end
44
44
 
45
- default_config = Configuration.new parent_config
45
+ default_config = ::Gapic::Rest::HttpBindingOverrideConfiguration.new parent_config
46
46
  default_config.bindings_override["google.cloud.location.Locations.GetLocation"] = [
47
47
  Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
48
48
  uri_method: :get,
@@ -126,33 +126,6 @@ module Google
126
126
  yield @configure if block_given?
127
127
  @configure
128
128
  end
129
-
130
- ##
131
- # @private
132
- # Configuration class for the google.cloud.dataform.v1beta1 package.
133
- #
134
- # This class contains common configuration for all services
135
- # of the google.cloud.dataform.v1beta1 package.
136
- #
137
- # This configuration is for internal use of the client library classes,
138
- # and it is not intended that the end-users will read or change it.
139
- #
140
- class Configuration
141
- extend ::Gapic::Config
142
-
143
- # @private
144
- # Overrides for http bindings for the RPC of the mixins for this package.
145
- # Services in this package should use these when creating clients for the mixin services.
146
- # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
147
- config_attr :bindings_override, {}, ::Hash, nil
148
-
149
- # @private
150
- def initialize parent_config = nil
151
- @parent_config = parent_config unless parent_config.nil?
152
-
153
- yield self if block_given?
154
- end
155
- end
156
129
  end
157
130
  end
158
131
  end
@@ -5241,8 +5241,6 @@ module Google
5241
5241
  # @return [::String,nil]
5242
5242
  # @!attribute [rw] credentials
5243
5243
  # Credentials to send with calls. You may provide any of the following types:
5244
- # * (`String`) The path to a service account key file in JSON format
5245
- # * (`Hash`) A service account key as a Hash
5246
5244
  # * (`Google::Auth::Credentials`) A googleauth credentials object
5247
5245
  # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
5248
5246
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
@@ -5251,7 +5249,26 @@ module Google
5251
5249
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
5252
5250
  # * (`nil`) indicating no credentials
5253
5251
  #
5254
- # Warning: If you accept a credential configuration (JSON file or Hash) from an
5252
+ # @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
5253
+ # is deprecated. Providing an unvalidated credential configuration to
5254
+ # Google APIs can compromise the security of your systems and data.
5255
+ #
5256
+ # @example
5257
+ #
5258
+ # # The recommended way to provide credentials is to use the `make_creds` method
5259
+ # # on the appropriate credentials class for your environment.
5260
+ #
5261
+ # require "googleauth"
5262
+ #
5263
+ # credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
5264
+ # json_key_io: ::File.open("/path/to/keyfile.json")
5265
+ # )
5266
+ #
5267
+ # client = ::Google::Cloud::Dataform::V1beta1::Dataform::Client.new do |config|
5268
+ # config.credentials = credentials
5269
+ # end
5270
+ #
5271
+ # @note Warning: If you accept a credential configuration (JSON file or Hash) from an
5255
5272
  # external source for authentication to Google Cloud, you must validate it before
5256
5273
  # providing it to a Google API client library. Providing an unvalidated credential
5257
5274
  # configuration to Google APIs can compromise the security of your systems and data.
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Dataform
23
23
  module V1beta1
24
- VERSION = "0.13.0"
24
+ VERSION = "0.14.1"
25
25
  end
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-dataform-v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -15,14 +15,14 @@ dependencies:
15
15
  requirements:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: '1.0'
18
+ version: '1.2'
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - "~>"
24
24
  - !ruby/object:Gem::Version
25
- version: '1.0'
25
+ version: '1.2'
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: google-cloud-errors
28
28
  requirement: !ruby/object:Gem::Requirement
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
125
  - !ruby/object:Gem::Version
126
126
  version: '0'
127
127
  requirements: []
128
- rubygems_version: 3.6.8
128
+ rubygems_version: 3.6.9
129
129
  specification_version: 4
130
130
  summary: Service to develop, version control, and operationalize SQL pipelines in
131
131
  BigQuery.