google-iam-credentials 0.1.0 → 0.1.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: c72168a698feb2fceec04ee47c839668255ac567aaf5539336c3d583309ae889
4
- data.tar.gz: e3ca84b66cdbf098dfe73ba8289ac3236bd4981be116a9addb63030681ce72d8
3
+ metadata.gz: cd70ee9d513c282bd7ee06e3eedcaf9a75cf474e09b4a40e26918007e42eb17b
4
+ data.tar.gz: f83981e29f6a6c80f5f4608afbd320f85375aa90e0120cc61178530d285d35a4
5
5
  SHA512:
6
- metadata.gz: 00acacc7ac8c27a79e052e483b81682fd3d1423a5a058b5dabd332077dafa07f8d93bc879280d586c28fc4624ac74742b900b84f06b39b151ad9c0f96bac64d1
7
- data.tar.gz: 400967c97e6341071c344fe88b3ce9086f1e63f904f5063e2fcbd2867cee064d8362a3ed37afcc38c22ff62f50f6a717457874a856c5273be50e8e36ac79ad0e
6
+ metadata.gz: 4b1b71f6f24443093dd2d59153bff7df44f7a359889c7429cdae0f91e4740e7c41aeb53185ecc8b993d9f8f4671d4f6f39e62c7146727500112d8e88377e0090
7
+ data.tar.gz: fdc0679cbb00d55e67d2c09603a9330118e473207a07533f1346e571dca0aea9b5a31e7a03ecf95d72684e958288b5a2554f0259633f3bcb2210bacca110437c
data/README.md CHANGED
@@ -6,9 +6,10 @@ The Service Account Credentials API creates short-lived credentials for Identity
6
6
 
7
7
  Actual client classes for the various versions of this API are defined in
8
8
  _versioned_ client gems, with names of the form `google-iam-credentials-v*`.
9
- The gem `google-iam-credentials` is a convenience wrapper library that brings the
9
+ The gem `google-iam-credentials` is the main client library that brings the
10
10
  verisoned gems in as dependencies, and provides high-level methods for
11
- constructing clients.
11
+ constructing clients. More information on versioned clients can be found below
12
+ in the section titled *Which client should I use?*.
12
13
 
13
14
  View the [Client Library Documentation](https://googleapis.dev/ruby/google-iam-credentials/latest)
14
15
  for this library, google-iam-credentials, to see the convenience methods for
@@ -69,3 +70,61 @@ in security maintenance, and not end of life. Currently, this means Ruby 2.4
69
70
  and later. Older versions of Ruby _may_ still work, but are unsupported and not
70
71
  recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
71
72
  about the Ruby support schedule.
73
+
74
+ ## Which client should I use?
75
+
76
+ Most modern Ruby client libraries for Google APIs come in two flavors: the main
77
+ client library with a name such as `google-iam-credentials`,
78
+ and lower-level _versioned_ client libraries with names such as
79
+ `google-iam-credentials-v1`.
80
+ _In most cases, you should install the main client._
81
+
82
+ ### What's the difference between the main client and a versioned client?
83
+
84
+ A _versioned client_ provides a basic set of data types and client classes for
85
+ a _single version_ of a specific service. (That is, for a service with multiple
86
+ versions, there might be a separate versioned client for each service version.)
87
+ Most versioned clients are written and maintained by a code generator.
88
+
89
+ The _main client_ is designed to provide you with the _recommended_ client
90
+ interfaces for the service. There will be only one main client for any given
91
+ service, even a service with multiple versions. The main client includes
92
+ factory methods for constructing the client objects we recommend for most
93
+ users. In some cases, those will be classes provided by an underlying versioned
94
+ client; in other cases, they will be handwritten higher-level client objects
95
+ with additional capabilities, convenience methods, or best practices built in.
96
+ Generally, the main client will default to a recommended service version,
97
+ although in some cases you can override this if you need to talk to a specific
98
+ service version.
99
+
100
+ ### Why would I want to use the main client?
101
+
102
+ We recommend that most users install the main client gem for a service. You can
103
+ identify this gem as the one _without_ a version in its name, e.g.
104
+ `google-iam-credentials`.
105
+ The main client is recommended because it will embody the best practices for
106
+ accessing the service, and may also provide more convenient interfaces or
107
+ tighter integration into frameworks and third-party libraries. In addition, the
108
+ documentation and samples published by Google will generally demonstrate use of
109
+ the main client.
110
+
111
+ ### Why would I want to use a versioned client?
112
+
113
+ You can use a versioned client if you are content with a possibly lower-level
114
+ class interface, you explicitly want to avoid features provided by the main
115
+ client, or you want to access a specific service version not be covered by the
116
+ main client. You can identify versioned client gems because the service version
117
+ is part of the name, e.g. `google-iam-credentials-v1`.
118
+
119
+ ### What about the google-apis-<name> clients?
120
+
121
+ Client library gems with names that begin with `google-apis-` are based on an
122
+ older code generation technology. They talk to a REST/JSON backend (whereas
123
+ most modern clients talk to a [gRPC](https://grpc.io/) backend) and they may
124
+ not offer the same performance, features, and ease of use provided by more
125
+ modern clients.
126
+
127
+ The `google-apis-` clients have wide coverage across Google services, so you
128
+ might need to use one if there is no modern client available for the service.
129
+ However, if a modern client is available, we generally recommend it over the
130
+ older `google-apis-` clients.
@@ -20,7 +20,7 @@
20
20
  module Google
21
21
  module Iam
22
22
  module Credentials
23
- VERSION = "0.1.0"
23
+ VERSION = "0.1.1"
24
24
  end
25
25
  end
26
26
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-iam-credentials
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.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: 2020-12-16 00:00:00.000000000 Z
11
+ date: 2021-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-cloud-core
@@ -185,7 +185,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
185
185
  - !ruby/object:Gem::Version
186
186
  version: '0'
187
187
  requirements: []
188
- rubygems_version: 3.1.4
188
+ rubygems_version: 3.2.6
189
189
  signing_key:
190
190
  specification_version: 4
191
191
  summary: API Client library for the IAM Service Account Credentials API