google-cloud-parallelstore 1.0.1 → 2.0.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 +4 -4
- data/README.md +35 -5
- data/lib/google/cloud/parallelstore/version.rb +1 -1
- data/lib/google/cloud/parallelstore.rb +40 -4
- metadata +9 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4267c02dbd22513d8a687caa5d5f31af52279b322027b86fc72a5b12ee3b1ba4
|
4
|
+
data.tar.gz: b5f7530d67f4edc3bfddaa23cd9a66d50ddd844620b6834f96d20c01ed1c40de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e55d3f4347527f640638b26bfc5ca3a3cd2afcd40b802e1e2faa0e9ece13a1549617606f503f43e2bfbdb40687b70192e35e045d6e096023477ae81f6fddc2a
|
7
|
+
data.tar.gz: a663a9bbf0714146f505ce6dec2ffbb9e53e334fffc5af433c605a4a5617581f54b202dee7886e21d8395ad17745f89d90fd1189bad6e86f16e67b809997989e
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ google-cloud-parallelstore is the official client library for the Parallelstore
|
|
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-parallelstore-v*`.
|
9
9
|
The gem `google-cloud-parallelstore` is the main client library that brings the
|
10
|
-
|
10
|
+
versioned gems in as dependencies, and provides high-level methods for
|
11
11
|
constructing clients. More information on versioned clients can be found below
|
12
12
|
in the section titled *Which client should I use?*.
|
13
13
|
|
@@ -16,7 +16,7 @@ for this library, google-cloud-parallelstore, to see the convenience methods for
|
|
16
16
|
constructing client objects. Reference documentation for the client objects
|
17
17
|
themselves can be found in the client library documentation for the versioned
|
18
18
|
client gems:
|
19
|
-
[google-cloud-parallelstore-
|
19
|
+
[google-cloud-parallelstore-v1](https://cloud.google.com/ruby/docs/reference/google-cloud-parallelstore-v1/latest).
|
20
20
|
|
21
21
|
See also the [Product Documentation](https://cloud.google.com/parallelstore?hl=en)
|
22
22
|
for more usage information.
|
@@ -34,9 +34,39 @@ In order to use this library, you first need to go through the following steps:
|
|
34
34
|
1. [Enable the API.](https://console.cloud.google.com/apis/library/parallelstore.googleapis.com)
|
35
35
|
1. {file:AUTHENTICATION.md Set up authentication.}
|
36
36
|
|
37
|
+
## Debug Logging
|
38
|
+
|
39
|
+
This library comes with opt-in Debug Logging that can help you troubleshoot
|
40
|
+
your application's integration with the API. When logging is activated, key
|
41
|
+
events such as requests and responses, along with data payloads and metadata
|
42
|
+
such as headers and client configuration, are logged to the standard error
|
43
|
+
stream.
|
44
|
+
|
45
|
+
**WARNING:** Client Library Debug Logging includes your data payloads in
|
46
|
+
plaintext, which could include sensitive data such as PII for yourself or your
|
47
|
+
customers, private keys, or other security data that could be compromising if
|
48
|
+
leaked. Always practice good data hygiene with your application logs, and follow
|
49
|
+
the principle of least access. Google also recommends that Client Library Debug
|
50
|
+
Logging be enabled only temporarily during active debugging, and not used
|
51
|
+
permanently in production.
|
52
|
+
|
53
|
+
To enable logging, set the environment variable `GOOGLE_SDK_RUBY_LOGGING_GEMS`
|
54
|
+
to the value `all`. Alternatively, you can set the value to a comma-delimited
|
55
|
+
list of client library gem names. This will select the default logging behavior,
|
56
|
+
which writes logs to the standard error stream. On a local workstation, this may
|
57
|
+
result in logs appearing on the console. When running on a Google Cloud hosting
|
58
|
+
service such as [Google Cloud Run](https://cloud.google.com/run), this generally
|
59
|
+
results in logs appearing alongside your application logs in the
|
60
|
+
[Google Cloud Logging](https://cloud.google.com/logging/) service.
|
61
|
+
|
62
|
+
Debug logging also requires that the versioned clients for this service be
|
63
|
+
sufficiently recent, released after about Dec 10, 2024. If logging is not
|
64
|
+
working, try updating the versioned clients in your bundle or installed gems:
|
65
|
+
[google-cloud-parallelstore-v1](https://cloud.google.com/ruby/docs/reference/google-cloud-parallelstore-v1/latest).
|
66
|
+
|
37
67
|
## Supported Ruby Versions
|
38
68
|
|
39
|
-
This library is supported on Ruby
|
69
|
+
This library is supported on Ruby 3.0+.
|
40
70
|
|
41
71
|
Google provides official support for Ruby versions that are actively supported
|
42
72
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
@@ -50,7 +80,7 @@ support schedule.
|
|
50
80
|
Most modern Ruby client libraries for Google APIs come in two flavors: the main
|
51
81
|
client library with a name such as `google-cloud-parallelstore`,
|
52
82
|
and lower-level _versioned_ client libraries with names such as
|
53
|
-
`google-cloud-parallelstore-
|
83
|
+
`google-cloud-parallelstore-v1`.
|
54
84
|
_In most cases, you should install the main client._
|
55
85
|
|
56
86
|
### What's the difference between the main client and a versioned client?
|
@@ -88,7 +118,7 @@ You can use a versioned client if you are content with a possibly lower-level
|
|
88
118
|
class interface, you explicitly want to avoid features provided by the main
|
89
119
|
client, or you want to access a specific service version not be covered by the
|
90
120
|
main client. You can identify versioned client gems because the service version
|
91
|
-
is part of the name, e.g. `google-cloud-parallelstore-
|
121
|
+
is part of the name, e.g. `google-cloud-parallelstore-v1`.
|
92
122
|
|
93
123
|
### What about the google-apis-<name> clients?
|
94
124
|
|
@@ -49,8 +49,8 @@ module Google
|
|
49
49
|
# Create a new client object for Parallelstore.
|
50
50
|
#
|
51
51
|
# By default, this returns an instance of
|
52
|
-
# [Google::Cloud::Parallelstore::
|
53
|
-
# for a gRPC client for version
|
52
|
+
# [Google::Cloud::Parallelstore::V1::Parallelstore::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-parallelstore-v1/latest/Google-Cloud-Parallelstore-V1-Parallelstore-Client)
|
53
|
+
# for a gRPC client for version V1 of the API.
|
54
54
|
# However, you can specify a different API version by passing it in the
|
55
55
|
# `version` parameter. If the Parallelstore service is
|
56
56
|
# supported by that API version, and the corresponding gem is available, the
|
@@ -58,6 +58,11 @@ module Google
|
|
58
58
|
# You can also specify a different transport by passing `:rest` or `:grpc` in
|
59
59
|
# the `transport` parameter.
|
60
60
|
#
|
61
|
+
# Raises an exception if the currently installed versioned client gem for the
|
62
|
+
# given API version does not support the given transport of the Parallelstore service.
|
63
|
+
# You can determine whether the method will succeed by calling
|
64
|
+
# {Google::Cloud::Parallelstore.parallelstore_available?}.
|
65
|
+
#
|
61
66
|
# ## About Parallelstore
|
62
67
|
#
|
63
68
|
# Service describing handlers for resources
|
@@ -77,11 +82,11 @@ module Google
|
|
77
82
|
# * `projects/12345/locations/us-central1-c/instances/my-parallelstore-share`
|
78
83
|
#
|
79
84
|
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
80
|
-
# Defaults to `:
|
85
|
+
# Defaults to `:v1`.
|
81
86
|
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
|
82
87
|
# @return [::Object] A client object for the specified version.
|
83
88
|
#
|
84
|
-
def self.parallelstore version: :
|
89
|
+
def self.parallelstore version: :v1, transport: :grpc, &block
|
85
90
|
require "google/cloud/parallelstore/#{version.to_s.downcase}"
|
86
91
|
|
87
92
|
package_name = Google::Cloud::Parallelstore
|
@@ -93,6 +98,37 @@ module Google
|
|
93
98
|
service_module.const_get(:Client).new(&block)
|
94
99
|
end
|
95
100
|
|
101
|
+
##
|
102
|
+
# Determines whether the Parallelstore service is supported by the current client.
|
103
|
+
# If true, you can retrieve a client object by calling {Google::Cloud::Parallelstore.parallelstore}.
|
104
|
+
# If false, that method will raise an exception. This could happen if the given
|
105
|
+
# API version does not exist or does not support the Parallelstore service,
|
106
|
+
# or if the versioned client gem needs an update to support the Parallelstore service.
|
107
|
+
#
|
108
|
+
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
109
|
+
# Defaults to `:v1`.
|
110
|
+
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
|
111
|
+
# @return [boolean] Whether the service is available.
|
112
|
+
#
|
113
|
+
def self.parallelstore_available? version: :v1, transport: :grpc
|
114
|
+
require "google/cloud/parallelstore/#{version.to_s.downcase}"
|
115
|
+
package_name = Google::Cloud::Parallelstore
|
116
|
+
.constants
|
117
|
+
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
|
118
|
+
.first
|
119
|
+
return false unless package_name
|
120
|
+
service_module = Google::Cloud::Parallelstore.const_get package_name
|
121
|
+
return false unless service_module.const_defined? :Parallelstore
|
122
|
+
service_module = service_module.const_get :Parallelstore
|
123
|
+
if transport == :rest
|
124
|
+
return false unless service_module.const_defined? :Rest
|
125
|
+
service_module = service_module.const_get :Rest
|
126
|
+
end
|
127
|
+
service_module.const_defined? :Client
|
128
|
+
rescue ::LoadError
|
129
|
+
false
|
130
|
+
end
|
131
|
+
|
96
132
|
##
|
97
133
|
# Configure the google-cloud-parallelstore library.
|
98
134
|
#
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-parallelstore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-cloud-core
|
@@ -25,25 +24,19 @@ dependencies:
|
|
25
24
|
- !ruby/object:Gem::Version
|
26
25
|
version: '1.6'
|
27
26
|
- !ruby/object:Gem::Dependency
|
28
|
-
name: google-cloud-parallelstore-
|
27
|
+
name: google-cloud-parallelstore-v1
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
30
29
|
requirements:
|
31
|
-
- - "
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0.0'
|
34
|
-
- - "<"
|
30
|
+
- - "~>"
|
35
31
|
- !ruby/object:Gem::Version
|
36
|
-
version:
|
32
|
+
version: '1.0'
|
37
33
|
type: :runtime
|
38
34
|
prerelease: false
|
39
35
|
version_requirements: !ruby/object:Gem::Requirement
|
40
36
|
requirements:
|
41
|
-
- - "
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: '0.0'
|
44
|
-
- - "<"
|
37
|
+
- - "~>"
|
45
38
|
- !ruby/object:Gem::Version
|
46
|
-
version:
|
39
|
+
version: '1.0'
|
47
40
|
description: google-cloud-parallelstore is the official client library for the Parallelstore
|
48
41
|
API.
|
49
42
|
email: googleapis-packages@google.com
|
@@ -62,7 +55,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
|
|
62
55
|
licenses:
|
63
56
|
- Apache-2.0
|
64
57
|
metadata: {}
|
65
|
-
post_install_message:
|
66
58
|
rdoc_options: []
|
67
59
|
require_paths:
|
68
60
|
- lib
|
@@ -70,15 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
62
|
requirements:
|
71
63
|
- - ">="
|
72
64
|
- !ruby/object:Gem::Version
|
73
|
-
version: '
|
65
|
+
version: '3.0'
|
74
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
67
|
requirements:
|
76
68
|
- - ">="
|
77
69
|
- !ruby/object:Gem::Version
|
78
70
|
version: '0'
|
79
71
|
requirements: []
|
80
|
-
rubygems_version: 3.
|
81
|
-
signing_key:
|
72
|
+
rubygems_version: 3.6.8
|
82
73
|
specification_version: 4
|
83
74
|
summary: API Client library for the Parallelstore API
|
84
75
|
test_files: []
|