google-cloud-network_connectivity-v1 0.1.0 → 0.1.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 26ea9371fd626c417c612e5fc4b850e0d6da981d4b12a834af6e62af8ad0e2c4
4
- data.tar.gz: 30aab74e295fb8ec68a8e15a59162e9d4d488d8c355e4e27c636c1b83e36c707
3
+ metadata.gz: be46d993dc154bc394eae4fff25e548855269289593014da3170d24693d19c14
4
+ data.tar.gz: 4a99787d640bd6270023dcc07fe89801144f8cc8694b76ce5ca943d9cd4ea91f
5
5
  SHA512:
6
- metadata.gz: 1e7ece6c41e364cc408a977a5a37c5b4e8f4473e5ab574167ea7ff9b102fd546e4b5484961d517a1ceb289531c56fa9da59d2ce17cff8465963129cdbd698e7b
7
- data.tar.gz: 6a998a55a3a10e59b033f66a959fffc7a3073b36a19bd00bf340e52ef1a8afdfd542a2670c447ae0dce2bd25600a1522e95ec02fd5a6819b1bffdbb71e970e5f
6
+ metadata.gz: 4ae8e5007b17d87a8c2684f6f5606124ecf27d3c476748a6998c5bc048e8f5d5f62a0c6005068e738ea9e0a859e13b78fd88ef8f2fb5c861d957e610cbd7d4c7
7
+ data.tar.gz: 7764c1d4356907969f0bcaa8f4a4b9c00abaf9d0ee46f405e4378deb3b799d739a6caa6f7e0980cd0b639f2adeba53a197f230c033d3179940bec1f8f37ca17d
data/.yardopts CHANGED
@@ -1,5 +1,5 @@
1
1
  --no-private
2
- --title=Network Connectivity V1 API
2
+ --title="Network Connectivity V1 API"
3
3
  --exclude _pb\.rb$
4
4
  --markup markdown
5
5
  --markup-provider redcarpet
data/AUTHENTICATION.md CHANGED
@@ -120,15 +120,6 @@ To configure your system for this, simply:
120
120
  **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
121
121
  *should* only be used during development.
122
122
 
123
- [gce-how-to]: https://cloud.google.com/compute/docs/authentication#using
124
- [dev-console]: https://console.cloud.google.com/project
125
-
126
- [enable-apis]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/enable-apis.png
127
-
128
- [create-new-service-account]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/create-new-service-account.png
129
- [create-new-service-account-existing-keys]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/create-new-service-account-existing-keys.png
130
- [reuse-service-account]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/reuse-service-account.png
131
-
132
123
  ## Creating a Service Account
133
124
 
134
125
  Google Cloud requires **Service Account Credentials** to
@@ -139,31 +130,22 @@ If you are not running this client within
139
130
  [Google Cloud Platform environments](#google-cloud-platform-environments), you
140
131
  need a Google Developers service account.
141
132
 
142
- 1. Visit the [Google Developers Console][dev-console].
133
+ 1. Visit the [Google Cloud Console](https://console.cloud.google.com/project).
143
134
  2. Create a new project or click on an existing project.
144
- 3. Activate the slide-out navigation tray and select **API Manager**. From
135
+ 3. Activate the menu in the upper left and select **APIs & Services**. From
145
136
  here, you will enable the APIs that your application requires.
146
137
 
147
- ![Enable the APIs that your application requires][enable-apis]
148
-
149
138
  *Note: You may need to enable billing in order to use these services.*
150
139
 
151
140
  4. Select **Credentials** from the side navigation.
152
141
 
153
- You should see a screen like one of the following.
154
-
155
- ![Create a new service account][create-new-service-account]
156
-
157
- ![Create a new service account With Existing Keys][create-new-service-account-existing-keys]
158
-
159
- Find the "Add credentials" drop down and select "Service account" to be
160
- guided through downloading a new JSON key file.
142
+ Find the "Create credentials" drop down near the top of the page, and select
143
+ "Service account" to be guided through downloading a new JSON key file.
161
144
 
162
145
  If you want to re-use an existing service account, you can easily generate a
163
- new key file. Just select the account you wish to re-use, and click "Generate
164
- new JSON key":
165
-
166
- ![Re-use an existing service account][reuse-service-account]
146
+ new key file. Just select the account you wish to re-use, click the pencil
147
+ tool on the right side to edit the service account, select the **Keys** tab,
148
+ and then select **Add Key**.
167
149
 
168
150
  The key file you download will be used by this library to authenticate API
169
151
  requests and should be stored in a secure location.