google-cloud-dns 0.36.0 → 0.36.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: 05fb93bb46a7c01959ef771e9d993267d6f1bd58423ee573306b810e522bdb3c
4
- data.tar.gz: e9c9f2c4e5d84f3066fad5964437811d1c2dd367e1f4be24becd2d09a5a9bbf5
3
+ metadata.gz: 1305c3b89ff51bb2a9c83fd42ec5f838761b02761a8b3ab69e8df5b29004ac47
4
+ data.tar.gz: 07e17745e554a6e95263fc033a7afe313a89acc3529c1c8a7e86ef1896a9df56
5
5
  SHA512:
6
- metadata.gz: ab7fa8bd57cfb2497992368284c033db56c1ac2e09476ac8c44cc80479e7f7b405f4620129401dbd5eeb9ba6509c666f9a74bba6f55fc65699b8995e3fa409c0
7
- data.tar.gz: 60d1aff4fc612b57757b125d6e0ec6cb317220613a12c4de9796f68235ec378cbcff13d29ec98bb5345f59cbbe3af416ad807b87d6028cf2ec4e750ba0523edf
6
+ metadata.gz: c7d61f2df750b3157cf32ae7c1916e5472c42a52b396a8219a3a033ea0c6e6d5fe4cce1c701191a9167ddf5fb4609f108de9b1077f0cfe54f6703d9da263afe8
7
+ data.tar.gz: 9e453a50bdeda9ba11867dd3d1f0b7fe2fe2d789f1ede981269fc0068ece2e1214347fdcbc104cdb5fcad91f681d852551105445724477dc3e60db44bde9be70
data/AUTHENTICATION.md CHANGED
@@ -107,15 +107,6 @@ To configure your system for this, simply:
107
107
  **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
108
108
  *should* only be used during development.
109
109
 
110
- [gce-how-to]: https://cloud.google.com/compute/docs/authentication#using
111
- [dev-console]: https://console.cloud.google.com/project
112
-
113
- [enable-apis]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/enable-apis.png
114
-
115
- [create-new-service-account]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/create-new-service-account.png
116
- [create-new-service-account-existing-keys]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/create-new-service-account-existing-keys.png
117
- [reuse-service-account]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/reuse-service-account.png
118
-
119
110
  ## Creating a Service Account
120
111
 
121
112
  Google Cloud requires a **Project ID** and **Service Account Credentials** to
@@ -125,31 +116,22 @@ connect to most services with google-cloud-dns.
125
116
  If you are not running this client on Google Compute Engine, you need a Google
126
117
  Developers service account.
127
118
 
128
- 1. Visit the [Google Developers Console][dev-console].
119
+ 1. Visit the [Google Cloud Console](https://console.cloud.google.com/project).
129
120
  1. Create a new project or click on an existing project.
130
- 1. Activate the slide-out navigation tray and select **API Manager**. From
121
+ 1. Activate the menu in the upper left and select **APIs & Services**. From
131
122
  here, you will enable the APIs that your application requires.
132
123
 
133
- ![Enable the APIs that your application requires][enable-apis]
134
-
135
124
  *Note: You may need to enable billing in order to use these services.*
136
125
 
137
126
  1. Select **Credentials** from the side navigation.
138
127
 
139
- You should see a screen like one of the following.
140
-
141
- ![Create a new service account][create-new-service-account]
142
-
143
- ![Create a new service account With Existing Keys][create-new-service-account-existing-keys]
144
-
145
- Find the "Add credentials" drop down and select "Service account" to be
146
- guided through downloading a new JSON key file.
147
-
148
- If you want to re-use an existing service account, you can easily generate a
149
- new key file. Just select the account you wish to re-use, and click "Generate
150
- new JSON key":
128
+ Find the "Create credentials" drop down near the top of the page, and select
129
+ "Service account" to be guided through downloading a new JSON key file.
151
130
 
152
- ![Re-use an existing service account][reuse-service-account]
131
+ If you want to re-use an existing service account, you can easily generate
132
+ a new key file. Just select the account you wish to re-use click the pencil
133
+ tool on the right side to edit the service account, select the **Keys** tab,
134
+ and then select **Add Key**.
153
135
 
154
136
  The key file you download will be used by this library to authenticate API
155
137
  requests and should be stored in a secure location.
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 0.36.1 (2023-05-18)
4
+
5
+ #### Documentation
6
+
7
+ * Fixed broken links in authentication documentation ([#21619](https://github.com/googleapis/google-cloud-ruby/issues/21619))
8
+
3
9
  ### 0.36.0 (2022-07-28)
4
10
 
5
11
  #### Features
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Dns
19
- VERSION = "0.36.0".freeze
19
+ VERSION = "0.36.1".freeze
20
20
  end
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-dns
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.36.0
4
+ version: 0.36.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-07-28 00:00:00.000000000 Z
12
+ date: 2023-05-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: google-cloud-core
@@ -263,7 +263,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
263
263
  - !ruby/object:Gem::Version
264
264
  version: '0'
265
265
  requirements: []
266
- rubygems_version: 3.3.14
266
+ rubygems_version: 3.4.2
267
267
  signing_key:
268
268
  specification_version: 4
269
269
  summary: API Client library for Google Cloud DNS