google-iam-credentials-v1 0.6.1 → 0.7.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 956fc63f4085f9c63440438251ceef8aa494a7a0533cc04c342b3d18d82f9b61
4
- data.tar.gz: e932423b2e70af08af1ebc424b80dc5d65744a681306eb4062652a9e3009dcfc
3
+ metadata.gz: cdf3593be310d601478b76e17a7dd1cb3f7a48a1f48603a845b7b0d25997e33a
4
+ data.tar.gz: cb29d02595087e8ebb14bbfedc7e013938e4d234dcdfd9527e2686915cde26b8
5
5
  SHA512:
6
- metadata.gz: 301f51ca491ce51efcd384182712634404c42ca2e25ad5e1654e6e80ab30aae8d7d153a37e8cfe2cb7406b995713a3103d1295890d232be4e7bb08ac292dacc0
7
- data.tar.gz: 72ce67c59f633c2f61292efe0ad16a3c72750a2fb00ebf9cfb609ddaf578fa7424e4a2f261588be35c48ce111735c49f91eeb139e32edb72e87d349d04a71809
6
+ metadata.gz: dcc4952080c188b49a6135f2b972920bbaf181478f6cf4b79b31b7b39732138a0cbe44af50811fa93509a832b1fc22454cf83e6550145ed0a0d258ffa003d7cf
7
+ data.tar.gz: ab61eb785532aafbce41006df457b0c96944c26a30bb33ea277b4e99cea4cde89169474cf61a8f516d0ec0914974519e5c365639131ebf99cc0ddb166e7962a4
@@ -166,7 +166,8 @@ module Google
166
166
  credentials: credentials,
167
167
  endpoint: @config.endpoint,
168
168
  channel_args: @config.channel_args,
169
- interceptors: @config.interceptors
169
+ interceptors: @config.interceptors,
170
+ channel_pool_config: @config.channel_pool
170
171
  )
171
172
  end
172
173
 
@@ -707,6 +708,14 @@ module Google
707
708
  end
708
709
  end
709
710
 
711
+ ##
712
+ # Configuration for the channel pool
713
+ # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
714
+ #
715
+ def channel_pool
716
+ @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
717
+ end
718
+
710
719
  ##
711
720
  # Configuration RPC class for the IAMCredentials API.
712
721
  #
@@ -214,6 +214,22 @@ module Google
214
214
  # @return [::Google::Iam::Credentials::V1::GenerateAccessTokenResponse]
215
215
  #
216
216
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
217
+ #
218
+ # @example Basic example
219
+ # require "google/iam/credentials/v1"
220
+ #
221
+ # # Create a client object. The client can be reused for multiple calls.
222
+ # client = Google::Iam::Credentials::V1::IAMCredentials::Rest::Client.new
223
+ #
224
+ # # Create a request. To set request fields, pass in keyword arguments.
225
+ # request = Google::Iam::Credentials::V1::GenerateAccessTokenRequest.new
226
+ #
227
+ # # Call the generate_access_token method.
228
+ # result = client.generate_access_token request
229
+ #
230
+ # # The returned object is of type Google::Iam::Credentials::V1::GenerateAccessTokenResponse.
231
+ # p result
232
+ #
217
233
  def generate_access_token request, options = nil
218
234
  raise ::ArgumentError, "request must be provided" if request.nil?
219
235
 
@@ -296,6 +312,22 @@ module Google
296
312
  # @return [::Google::Iam::Credentials::V1::GenerateIdTokenResponse]
297
313
  #
298
314
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
315
+ #
316
+ # @example Basic example
317
+ # require "google/iam/credentials/v1"
318
+ #
319
+ # # Create a client object. The client can be reused for multiple calls.
320
+ # client = Google::Iam::Credentials::V1::IAMCredentials::Rest::Client.new
321
+ #
322
+ # # Create a request. To set request fields, pass in keyword arguments.
323
+ # request = Google::Iam::Credentials::V1::GenerateIdTokenRequest.new
324
+ #
325
+ # # Call the generate_id_token method.
326
+ # result = client.generate_id_token request
327
+ #
328
+ # # The returned object is of type Google::Iam::Credentials::V1::GenerateIdTokenResponse.
329
+ # p result
330
+ #
299
331
  def generate_id_token request, options = nil
300
332
  raise ::ArgumentError, "request must be provided" if request.nil?
301
333
 
@@ -374,6 +406,22 @@ module Google
374
406
  # @return [::Google::Iam::Credentials::V1::SignBlobResponse]
375
407
  #
376
408
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
409
+ #
410
+ # @example Basic example
411
+ # require "google/iam/credentials/v1"
412
+ #
413
+ # # Create a client object. The client can be reused for multiple calls.
414
+ # client = Google::Iam::Credentials::V1::IAMCredentials::Rest::Client.new
415
+ #
416
+ # # Create a request. To set request fields, pass in keyword arguments.
417
+ # request = Google::Iam::Credentials::V1::SignBlobRequest.new
418
+ #
419
+ # # Call the sign_blob method.
420
+ # result = client.sign_blob request
421
+ #
422
+ # # The returned object is of type Google::Iam::Credentials::V1::SignBlobResponse.
423
+ # p result
424
+ #
377
425
  def sign_blob request, options = nil
378
426
  raise ::ArgumentError, "request must be provided" if request.nil?
379
427
 
@@ -452,6 +500,22 @@ module Google
452
500
  # @return [::Google::Iam::Credentials::V1::SignJwtResponse]
453
501
  #
454
502
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
503
+ #
504
+ # @example Basic example
505
+ # require "google/iam/credentials/v1"
506
+ #
507
+ # # Create a client object. The client can be reused for multiple calls.
508
+ # client = Google::Iam::Credentials::V1::IAMCredentials::Rest::Client.new
509
+ #
510
+ # # Create a request. To set request fields, pass in keyword arguments.
511
+ # request = Google::Iam::Credentials::V1::SignJwtRequest.new
512
+ #
513
+ # # Call the sign_jwt method.
514
+ # result = client.sign_jwt request
515
+ #
516
+ # # The returned object is of type Google::Iam::Credentials::V1::SignJwtResponse.
517
+ # p result
518
+ #
455
519
  def sign_jwt request, options = nil
456
520
  raise ::ArgumentError, "request must be provided" if request.nil?
457
521
 
@@ -21,7 +21,7 @@ module Google
21
21
  module Iam
22
22
  module Credentials
23
23
  module V1
24
- VERSION = "0.6.1"
24
+ VERSION = "0.7.0"
25
25
  end
26
26
  end
27
27
  end
@@ -66,6 +66,20 @@ module Google
66
66
  # a non-empty value will be returned. The user will not be aware of what
67
67
  # non-empty value to expect.
68
68
  NON_EMPTY_DEFAULT = 7
69
+
70
+ # Denotes that the field in a resource (a message annotated with
71
+ # google.api.resource) is used in the resource name to uniquely identify the
72
+ # resource. For AIP-compliant APIs, this should only be applied to the
73
+ # `name` field on the resource.
74
+ #
75
+ # This behavior should not be applied to references to other resources within
76
+ # the message.
77
+ #
78
+ # The identifier field of resources often have different field behavior
79
+ # depending on the request it is embedded in (e.g. for Create methods name
80
+ # is optional and unused, while for Update methods it is required). Instead
81
+ # of method-specific annotations, only `IDENTIFIER` is required.
82
+ IDENTIFIER = 8
69
83
  end
70
84
  end
71
85
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-iam-credentials-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.7.0
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-06-06 00:00:00.000000000 Z
11
+ date: 2023-09-12 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.1
19
+ version: 0.20.0
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.1
29
+ version: 0.20.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -212,7 +212,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
212
212
  - !ruby/object:Gem::Version
213
213
  version: '0'
214
214
  requirements: []
215
- rubygems_version: 3.4.2
215
+ rubygems_version: 3.4.19
216
216
  signing_key:
217
217
  specification_version: 4
218
218
  summary: Creates short-lived, limited-privilege credentials for IAM service accounts.