google-cloud-dns 0.35.1 → 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: df50a61b9cfd9a52f220966f2c86b7c2dbc8ead4768365c1f74cde078a3e5286
4
- data.tar.gz: 8426a3c5519a9be57ee1c1800b1bc1acb71b0e2896784cfbce90c26569bfa6c5
3
+ metadata.gz: 1305c3b89ff51bb2a9c83fd42ec5f838761b02761a8b3ab69e8df5b29004ac47
4
+ data.tar.gz: 07e17745e554a6e95263fc033a7afe313a89acc3529c1c8a7e86ef1896a9df56
5
5
  SHA512:
6
- metadata.gz: 4b1c2abb5e33df3ad387a1382bf073b01b9efc614aa5c521c1e633a9eb951cddf8c8486cb5ec80ca600adc9bf8cacd50245146249cf2b7a511591485215a7927
7
- data.tar.gz: 424f4276adb5f7089a9df71a9200f7d2bc7a7bc9b51cf76078d53db70d279eb94c77b0293c43ab881b9789f3aefd3e42f0bdd909bbf89d0c0371d9bdda47cee9
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,17 @@
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
+
9
+ ### 0.36.0 (2022-07-28)
10
+
11
+ #### Features
12
+
13
+ * Update minimum Ruby version to 2.6 ([#18869](https://github.com/googleapis/google-cloud-ruby/issues/18869))
14
+
3
15
  ### 0.35.1 / 2021-06-17
4
16
 
5
17
  #### Bug Fixes
@@ -127,7 +127,7 @@ module Google
127
127
  # change.done? #=> true
128
128
  #
129
129
  def wait_until_done!
130
- backoff = ->(retries) { sleep 2 * retries + 5 }
130
+ backoff = ->(retries) { sleep((2 * retries) + 5) }
131
131
  retries = 0
132
132
  until done?
133
133
  backoff.call retries
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Dns
19
- VERSION = "0.35.1".freeze
19
+ VERSION = "0.36.1".freeze
20
20
  end
21
21
  end
22
22
  end
@@ -341,9 +341,7 @@ module Google
341
341
  # zone.export "path/to/db.example.com"
342
342
  #
343
343
  def export path
344
- File.open path, "w" do |f|
345
- f.write to_zonefile
346
- end
344
+ File.write path, to_zonefile
347
345
  end
348
346
 
349
347
  ##
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.35.1
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: 2021-06-17 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
@@ -79,28 +79,28 @@ dependencies:
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 1.25.1
82
+ version: 1.26.1
83
83
  type: :development
84
84
  prerelease: false
85
85
  version_requirements: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 1.25.1
89
+ version: 1.26.1
90
90
  - !ruby/object:Gem::Dependency
91
91
  name: minitest
92
92
  requirement: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '5.14'
96
+ version: '5.16'
97
97
  type: :development
98
98
  prerelease: false
99
99
  version_requirements: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '5.14'
103
+ version: '5.16'
104
104
  - !ruby/object:Gem::Dependency
105
105
  name: minitest-autotest
106
106
  requirement: !ruby/object:Gem::Requirement
@@ -256,14 +256,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
256
256
  requirements:
257
257
  - - ">="
258
258
  - !ruby/object:Gem::Version
259
- version: '2.5'
259
+ version: '2.6'
260
260
  required_rubygems_version: !ruby/object:Gem::Requirement
261
261
  requirements:
262
262
  - - ">="
263
263
  - !ruby/object:Gem::Version
264
264
  version: '0'
265
265
  requirements: []
266
- rubygems_version: 3.2.17
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