google-cloud-secret_manager 1.0.1 → 1.0.2

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: a886a1887590dc7fb62954bbee60d282d8f5a68587f3682d4721e3ddcb36aa48
4
- data.tar.gz: c222304a3a964188f05f801f18f351de3e7226770335ea077ae9e0601e1df5b8
3
+ metadata.gz: 80d5a53f757ac4eabc61326830ab6c0c17d71f8911f10f27a00f859d040af58a
4
+ data.tar.gz: 193f6708ebe96c09fc096be85d0c46d03f4a1f5729df6cb81c93ac7b9c205cd9
5
5
  SHA512:
6
- metadata.gz: 1a79a185c10e285ba81d4967ea2ef220c30a77a000fc1697a53d29449dcb733c50689ae87b074d836ab97d486189cad2f4740c2da30e5816e74761b2a5dc42aa
7
- data.tar.gz: 3ca46c092bd3ec14f68094e407934ccf2d4b1bb2b0c789f792394bf6adab04374c99d081bdc815e688ed0b4170d93a1b0299ab43343a83aa5e9bb710d0fc507c
6
+ metadata.gz: a5015b1390f98dce84c2d2af31720d3e8e7a3d47ec88ee132714f5228b99d39906adaa3ba46ec3113e3064e6cc9daff9785b15a700371a81385b892092918b79
7
+ data.tar.gz: cb93b7f77dc666dcfcfa2b38f43f58558d8ede6413022c8fac85c7820d4ee4abef20a9c462d5323a7998b00a42d108ec366491a36afc0dcbd448b4afa7ef40b1
data/README.md CHANGED
@@ -6,9 +6,10 @@ Secret Manager is a secure and convenient storage system for API keys, passwords
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-cloud-secret_manager-v*`.
9
- The gem `google-cloud-secret_manager` is a convenience wrapper library that brings the
9
+ The gem `google-cloud-secret_manager` 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-cloud-secret_manager/latest)
14
15
  for this library, google-cloud-secret_manager, to see the convenience methods for
@@ -70,3 +71,61 @@ in security maintenance, and not end of life. Currently, this means Ruby 2.4
70
71
  and later. Older versions of Ruby _may_ still work, but are unsupported and not
71
72
  recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
72
73
  about the Ruby support schedule.
74
+
75
+ ## Which client should I use?
76
+
77
+ Most modern Ruby client libraries for Google APIs come in two flavors: the main
78
+ client library with a name such as `google-cloud-secret_manager`,
79
+ and lower-level _versioned_ client libraries with names such as
80
+ `google-cloud-secret_manager-v1`.
81
+ _In most cases, you should install the main client._
82
+
83
+ ### What's the difference between the main client and a versioned client?
84
+
85
+ A _versioned client_ provides a basic set of data types and client classes for
86
+ a _single version_ of a specific service. (That is, for a service with multiple
87
+ versions, there might be a separate versioned client for each service version.)
88
+ Most versioned clients are written and maintained by a code generator.
89
+
90
+ The _main client_ is designed to provide you with the _recommended_ client
91
+ interfaces for the service. There will be only one main client for any given
92
+ service, even a service with multiple versions. The main client includes
93
+ factory methods for constructing the client objects we recommend for most
94
+ users. In some cases, those will be classes provided by an underlying versioned
95
+ client; in other cases, they will be handwritten higher-level client objects
96
+ with additional capabilities, convenience methods, or best practices built in.
97
+ Generally, the main client will default to a recommended service version,
98
+ although in some cases you can override this if you need to talk to a specific
99
+ service version.
100
+
101
+ ### Why would I want to use the main client?
102
+
103
+ We recommend that most users install the main client gem for a service. You can
104
+ identify this gem as the one _without_ a version in its name, e.g.
105
+ `google-cloud-secret_manager`.
106
+ The main client is recommended because it will embody the best practices for
107
+ accessing the service, and may also provide more convenient interfaces or
108
+ tighter integration into frameworks and third-party libraries. In addition, the
109
+ documentation and samples published by Google will generally demonstrate use of
110
+ the main client.
111
+
112
+ ### Why would I want to use a versioned client?
113
+
114
+ You can use a versioned client if you are content with a possibly lower-level
115
+ class interface, you explicitly want to avoid features provided by the main
116
+ client, or you want to access a specific service version not be covered by the
117
+ main client. You can identify versioned client gems because the service version
118
+ is part of the name, e.g. `google-cloud-secret_manager-v1`.
119
+
120
+ ### What about the google-apis-<name> clients?
121
+
122
+ Client library gems with names that begin with `google-apis-` are based on an
123
+ older code generation technology. They talk to a REST/JSON backend (whereas
124
+ most modern clients talk to a [gRPC](https://grpc.io/) backend) and they may
125
+ not offer the same performance, features, and ease of use provided by more
126
+ modern clients.
127
+
128
+ The `google-apis-` clients have wide coverage across Google services, so you
129
+ might need to use one if there is no modern client available for the service.
130
+ However, if a modern client is available, we generally recommend it over the
131
+ older `google-apis-` clients.
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module SecretManager
19
- VERSION = "1.0.1".freeze
19
+ VERSION = "1.0.2".freeze
20
20
  end
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-secret_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-19 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