google-cloud-orchestration-airflow-service-v1 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 810fba97ff1cfb9f8b92bcaaac9229aa52eb66644cb1e079daa20f51ae4c0c37
4
- data.tar.gz: f91e24db4ce4c4fa7c743a068523afdda65c5e120a4d1bfc727a135f14dc15bb
3
+ metadata.gz: d522d39356360108b9fc91e5b47f6b3e7638457795bb86bae304162ca8963735
4
+ data.tar.gz: ebf85b4136b3a64ff2bf706f8cbd0358b431e4592bb93903ca50aacdff0e7185
5
5
  SHA512:
6
- metadata.gz: f0bfc1c64ab4ce17a803294f0f25bb867c18f0faab2ac6f46b06c07e3211a95c2a86cc9317e888fd614fd5d21f8d79d309e15b2949e323c4659923a6e754c633
7
- data.tar.gz: b0eae657fb6f9aa1f98cd0ffcc9d9645dcaf477781d3bc4bebfa161a69db0df7379ddf20572034f0e98e72e6e601d611825fd09e3819c3ac05cf74f86a16ae0f
6
+ metadata.gz: 2bd8ccba4fa83394fe667aab7fe9e79c981335fbf742e1f915e63b027c896869947c8a7acae78fa45875831d5b1209a96e6163f1090bc8cf1ea613c92f9992b4
7
+ data.tar.gz: 5d3d0ea5649ecb513ba18b8a96bd5bee72bed17fb2be9b50fb61ac2233ff18e0d1edfd031cf42e63571bf59710b5aba4cbd9a445d9e1da3b900a5d134397bb49
@@ -125,7 +125,7 @@ module Google
125
125
  credentials = @config.credentials
126
126
  # Use self-signed JWT if the endpoint is unchanged from default,
127
127
  # but only if the default endpoint does not have a region prefix.
128
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
128
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
129
129
  !@config.endpoint.split(".").first.include?("-")
130
130
  credentials ||= Credentials.default scope: @config.scope,
131
131
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -1045,7 +1045,9 @@ module Google
1045
1045
  class Configuration
1046
1046
  extend ::Gapic::Config
1047
1047
 
1048
- config_attr :endpoint, "composer.googleapis.com", ::String
1048
+ DEFAULT_ENDPOINT = "composer.googleapis.com"
1049
+
1050
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
1049
1051
  config_attr :credentials, nil do |value|
1050
1052
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1051
1053
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -666,7 +666,9 @@ module Google
666
666
  class Configuration
667
667
  extend ::Gapic::Config
668
668
 
669
- config_attr :endpoint, "composer.googleapis.com", ::String
669
+ DEFAULT_ENDPOINT = "composer.googleapis.com"
670
+
671
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
670
672
  config_attr :credentials, nil do |value|
671
673
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
672
674
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -121,7 +121,7 @@ module Google
121
121
  credentials = @config.credentials
122
122
  # Use self-signed JWT if the endpoint is unchanged from default,
123
123
  # but only if the default endpoint does not have a region prefix.
124
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
124
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
125
125
  !@config.endpoint.split(".").first.include?("-")
126
126
  credentials ||= Credentials.default scope: @config.scope,
127
127
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -827,7 +827,9 @@ module Google
827
827
  class Configuration
828
828
  extend ::Gapic::Config
829
829
 
830
- config_attr :endpoint, "composer.googleapis.com", ::String
830
+ DEFAULT_ENDPOINT = "composer.googleapis.com"
831
+
832
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
831
833
  config_attr :credentials, nil do |value|
832
834
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
833
835
  allowed.any? { |klass| klass === value }
@@ -448,7 +448,9 @@ module Google
448
448
  class Configuration
449
449
  extend ::Gapic::Config
450
450
 
451
- config_attr :endpoint, "composer.googleapis.com", ::String
451
+ DEFAULT_ENDPOINT = "composer.googleapis.com"
452
+
453
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
452
454
  config_attr :credentials, nil do |value|
453
455
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
454
456
  allowed.any? { |klass| klass === value }
@@ -569,7 +571,7 @@ module Google
569
571
 
570
572
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_list_operations_request request_pb
571
573
  query_string_params = if query_string_params.any?
572
- query_string_params.to_h { |p| p.split("=", 2) }
574
+ query_string_params.to_h { |p| p.split "=", 2 }
573
575
  else
574
576
  {}
575
577
  end
@@ -607,7 +609,7 @@ module Google
607
609
 
608
610
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_get_operation_request request_pb
609
611
  query_string_params = if query_string_params.any?
610
- query_string_params.to_h { |p| p.split("=", 2) }
612
+ query_string_params.to_h { |p| p.split "=", 2 }
611
613
  else
612
614
  {}
613
615
  end
@@ -645,7 +647,7 @@ module Google
645
647
 
646
648
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_delete_operation_request request_pb
647
649
  query_string_params = if query_string_params.any?
648
- query_string_params.to_h { |p| p.split("=", 2) }
650
+ query_string_params.to_h { |p| p.split "=", 2 }
649
651
  else
650
652
  {}
651
653
  end
@@ -683,7 +685,7 @@ module Google
683
685
 
684
686
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_cancel_operation_request request_pb
685
687
  query_string_params = if query_string_params.any?
686
- query_string_params.to_h { |p| p.split("=", 2) }
688
+ query_string_params.to_h { |p| p.split "=", 2 }
687
689
  else
688
690
  {}
689
691
  end
@@ -61,7 +61,7 @@ module Google
61
61
 
62
62
  verb, uri, query_string_params, body = ServiceStub.transcode_create_environment_request request_pb
63
63
  query_string_params = if query_string_params.any?
64
- query_string_params.to_h { |p| p.split("=", 2) }
64
+ query_string_params.to_h { |p| p.split "=", 2 }
65
65
  else
66
66
  {}
67
67
  end
@@ -99,7 +99,7 @@ module Google
99
99
 
100
100
  verb, uri, query_string_params, body = ServiceStub.transcode_get_environment_request request_pb
101
101
  query_string_params = if query_string_params.any?
102
- query_string_params.to_h { |p| p.split("=", 2) }
102
+ query_string_params.to_h { |p| p.split "=", 2 }
103
103
  else
104
104
  {}
105
105
  end
@@ -137,7 +137,7 @@ module Google
137
137
 
138
138
  verb, uri, query_string_params, body = ServiceStub.transcode_list_environments_request request_pb
139
139
  query_string_params = if query_string_params.any?
140
- query_string_params.to_h { |p| p.split("=", 2) }
140
+ query_string_params.to_h { |p| p.split "=", 2 }
141
141
  else
142
142
  {}
143
143
  end
@@ -175,7 +175,7 @@ module Google
175
175
 
176
176
  verb, uri, query_string_params, body = ServiceStub.transcode_update_environment_request request_pb
177
177
  query_string_params = if query_string_params.any?
178
- query_string_params.to_h { |p| p.split("=", 2) }
178
+ query_string_params.to_h { |p| p.split "=", 2 }
179
179
  else
180
180
  {}
181
181
  end
@@ -213,7 +213,7 @@ module Google
213
213
 
214
214
  verb, uri, query_string_params, body = ServiceStub.transcode_delete_environment_request request_pb
215
215
  query_string_params = if query_string_params.any?
216
- query_string_params.to_h { |p| p.split("=", 2) }
216
+ query_string_params.to_h { |p| p.split "=", 2 }
217
217
  else
218
218
  {}
219
219
  end
@@ -251,7 +251,7 @@ module Google
251
251
 
252
252
  verb, uri, query_string_params, body = ServiceStub.transcode_save_snapshot_request request_pb
253
253
  query_string_params = if query_string_params.any?
254
- query_string_params.to_h { |p| p.split("=", 2) }
254
+ query_string_params.to_h { |p| p.split "=", 2 }
255
255
  else
256
256
  {}
257
257
  end
@@ -289,7 +289,7 @@ module Google
289
289
 
290
290
  verb, uri, query_string_params, body = ServiceStub.transcode_load_snapshot_request request_pb
291
291
  query_string_params = if query_string_params.any?
292
- query_string_params.to_h { |p| p.split("=", 2) }
292
+ query_string_params.to_h { |p| p.split "=", 2 }
293
293
  else
294
294
  {}
295
295
  end
@@ -123,7 +123,7 @@ module Google
123
123
  credentials = @config.credentials
124
124
  # Use self-signed JWT if the endpoint is unchanged from default,
125
125
  # but only if the default endpoint does not have a region prefix.
126
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
126
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
127
127
  !@config.endpoint.split(".").first.include?("-")
128
128
  credentials ||= Credentials.default scope: @config.scope,
129
129
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -323,7 +323,9 @@ module Google
323
323
  class Configuration
324
324
  extend ::Gapic::Config
325
325
 
326
- config_attr :endpoint, "composer.googleapis.com", ::String
326
+ DEFAULT_ENDPOINT = "composer.googleapis.com"
327
+
328
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
327
329
  config_attr :credentials, nil do |value|
328
330
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
329
331
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -119,7 +119,7 @@ module Google
119
119
  credentials = @config.credentials
120
120
  # Use self-signed JWT if the endpoint is unchanged from default,
121
121
  # but only if the default endpoint does not have a region prefix.
122
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
122
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
123
123
  !@config.endpoint.split(".").first.include?("-")
124
124
  credentials ||= Credentials.default scope: @config.scope,
125
125
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -278,7 +278,9 @@ module Google
278
278
  class Configuration
279
279
  extend ::Gapic::Config
280
280
 
281
- config_attr :endpoint, "composer.googleapis.com", ::String
281
+ DEFAULT_ENDPOINT = "composer.googleapis.com"
282
+
283
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
282
284
  config_attr :credentials, nil do |value|
283
285
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
284
286
  allowed.any? { |klass| klass === value }
@@ -61,7 +61,7 @@ module Google
61
61
 
62
62
  verb, uri, query_string_params, body = ServiceStub.transcode_list_image_versions_request request_pb
63
63
  query_string_params = if query_string_params.any?
64
- query_string_params.to_h { |p| p.split("=", 2) }
64
+ query_string_params.to_h { |p| p.split "=", 2 }
65
65
  else
66
66
  {}
67
67
  end
@@ -23,7 +23,7 @@ module Google
23
23
  module Airflow
24
24
  module Service
25
25
  module V1
26
- VERSION = "0.6.0"
26
+ VERSION = "0.6.1"
27
27
  end
28
28
  end
29
29
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-orchestration-airflow-service-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-31 00:00:00.000000000 Z
11
+ date: 2023-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.19.0
19
+ version: 0.19.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.19.0
29
+ version: 0.19.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a