google-cloud-metastore-v1 0.1.1 → 0.2.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: 155b0791323efca0c8e20d8d6e4272e80508a8d3cece2abf90fedb31c27ba627
4
- data.tar.gz: 32d0394f123e7554acc8d0a946010206d2a2c69e9c61ebd43acd9ca8787858a6
3
+ metadata.gz: 9a8efff30b3fa421629f7849ba8c6adfce6fd6c8f43379c29d841187fdd00f88
4
+ data.tar.gz: 59c15edad5b14031024d381175751dddb93aec7550baed5e9a17c94bc9f5556d
5
5
  SHA512:
6
- metadata.gz: d58d24ac57218e69d75487bfd9c379d5e2eeffadeb56ea927f55c911a77876d30f72d20c4c110efa9f49e934064aa5b3f680bd2763b88ce8e03c4b0e3f54555a
7
- data.tar.gz: 3e743a9d85f5634b89455b63dd1333c73a60c1e8331e7431b35d6ee5e15cd5dfd6ad86f0dee028c58896c64e7463e3cb761e19c8a89f097bfbd28e4a57539e9e
6
+ metadata.gz: 873e920fb603bb1cb0257c54ea88894dc1f85366a428b9742567375fa985ed988fb856b5d4b42a10dfb5882a138363793c970886da90abd9596b36cb9e92667d
7
+ data.tar.gz: 7edc254a268a97a8b8b37c8f1480e93b4f48dd784dd8fdd6cb1fbb1324617ed2163a27839733618826cebca57e5239b325b61799bf8b97c4f484244746b6c96f
data/AUTHENTICATION.md CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-metastore-v1
66
66
  checks for credentials are configured on the service Credentials class (such as
67
67
  {::Google::Cloud::Metastore::V1::DataprocMetastore::Credentials}):
68
68
 
69
- 1. `METASTORE_CREDENTIALS` - Path to JSON file, or JSON contents
70
- 2. `METASTORE_KEYFILE` - Path to JSON file, or JSON contents
71
- 3. `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
72
- 4. `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
73
- 5. `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
69
+ * `METASTORE_CREDENTIALS` - Path to JSON file, or JSON contents
70
+ * `METASTORE_KEYFILE` - Path to JSON file, or JSON contents
71
+ * `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
72
+ * `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
73
+ * `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
74
74
 
75
75
  ```ruby
76
76
  require "google/cloud/metastore/v1"
@@ -82,8 +82,8 @@ client = ::Google::Cloud::Metastore::V1::DataprocMetastore::Client.new
82
82
 
83
83
  ### Configuration
84
84
 
85
- The **Credentials JSON** can be configured instead of placing them in
86
- environment variables. Either on an individual client initialization:
85
+ The path to the **Credentials JSON** file can be configured instead of storing
86
+ it in an environment variable. Either on an individual client initialization:
87
87
 
88
88
  ```ruby
89
89
  require "google/cloud/metastore/v1"
@@ -93,7 +93,7 @@ client = ::Google::Cloud::Metastore::V1::DataprocMetastore::Client.new do |confi
93
93
  end
94
94
  ```
95
95
 
96
- Or configured globally for all clients:
96
+ Or globally for all clients:
97
97
 
98
98
  ```ruby
99
99
  require "google/cloud/metastore/v1"
data/README.md CHANGED
@@ -33,7 +33,7 @@ In order to use this library, you first need to go through the following steps:
33
33
  require "google/cloud/metastore/v1"
34
34
 
35
35
  client = ::Google::Cloud::Metastore::V1::DataprocMetastore::Client.new
36
- request = my_create_request
36
+ request = ::Google::Cloud::Metastore::V1::ListServicesRequest.new # (request fields as keyword arguments...)
37
37
  response = client.list_services request
38
38
  ```
39
39