google-cloud-network_connectivity 2.3.0 → 2.3.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/network_connectivity/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: 460eaddda25698affcf4e84c7ad0c2abb43de77ab7813ba1c278dae0a71328c6
|
4
|
+
data.tar.gz: 465eb9f76eea5c48a19ab01fd4c7933d81f6def0a5aae1334b475397dcc2744c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8681d8c11297f21875e96cab79e5e7792b228a73f50edaa142341d1b0fa3f377c38d869733da1e668df513f5dbceac1bd184670215be8ce5ddd6378f79b8ac98
|
7
|
+
data.tar.gz: 5bce24949ed5637ef2aabd295e6762926eb176c4ebfc52f7b00eb9802dd8025906260ed65d3df69e55e09bb38f1b4babe2d5f28e7d2be30454cebfd61441281f
|
data/README.md
CHANGED
@@ -34,6 +34,14 @@ 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/networkconnectivity.googleapis.com)
|
35
35
|
1. {file:AUTHENTICATION.md Set up authentication.}
|
36
36
|
|
37
|
+
```ruby
|
38
|
+
require "google/cloud/network_connectivity"
|
39
|
+
|
40
|
+
client = Google::Cloud::NetworkConnectivity.cross_network_automation_service
|
41
|
+
request = ::Google::Cloud::NetworkConnectivity::V1::ListServiceConnectionMapsRequest.new # (request fields as keyword arguments...)
|
42
|
+
response = client.list_service_connection_maps request
|
43
|
+
```
|
44
|
+
|
37
45
|
## Debug Logging
|
38
46
|
|
39
47
|
This library comes with opt-in Debug Logging that can help you troubleshoot
|