google-cloud-config_delivery 0.1.0 → 0.1.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 +8 -0
- data/lib/google/cloud/config_delivery/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c55d4b12bc453937c1fb4b83543d4caeb0114d454b3ae944d67b2de1cf7a6c46
|
4
|
+
data.tar.gz: 925ac69c20872b7e9e08e369b9bffac349553d2486273ec26837879f7dbadbbf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34268c62e68cdb73a148dda124233776a147b90f7513f5da27b2d888856ea555a42b6e2147798536a500376ccd2a7e5c875c5f5e64fe27459fc888dae550fb23
|
7
|
+
data.tar.gz: 83e7b9c6ad740962c8615f822d62bf6dc9eaf290e6cdc86b016e744772f6a9e165110808ec3a484d2d833dd936e50e2a23959fa2a2d5b7e8ffcd22148d101545
|
data/README.md
CHANGED
@@ -30,6 +30,14 @@ In order to use this library, you first need to go through the following steps:
|
|
30
30
|
1. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
31
31
|
1. {file:AUTHENTICATION.md Set up authentication.}
|
32
32
|
|
33
|
+
```ruby
|
34
|
+
require "google/cloud/config_delivery"
|
35
|
+
|
36
|
+
client = Google::Cloud::ConfigDelivery.config_delivery
|
37
|
+
request = ::Google::Cloud::ConfigDelivery::V1alpha::ListResourceBundlesRequest.new # (request fields as keyword arguments...)
|
38
|
+
response = client.list_resource_bundles request
|
39
|
+
```
|
40
|
+
|
33
41
|
## Debug Logging
|
34
42
|
|
35
43
|
This library comes with opt-in Debug Logging that can help you troubleshoot
|