google-cloud-dns 0.31.0 → 0.32.0
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/AUTHENTICATION.md +7 -27
- data/CHANGELOG.md +8 -0
- data/CONTRIBUTING.md +1 -1
- data/OVERVIEW.md +7 -7
- data/lib/google/cloud/dns/version.rb +1 -1
- metadata +26 -38
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2e77150fff3a7245a9735d39000f396495047d3baf1370c4eabdea0012d39bab
|
|
4
|
+
data.tar.gz: 174d908b6e611e3c984e765ca87a16424b5aa18692c2f42e84e8b438681d44a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8681e4ef2743ebd1d2f2d6d6ffb05240397fb6aeb03680c9cd567dec47bdca25ec05a5fc27e2dc2a8674eb15979265e9b355f371ced99a7237764ffd184efe8
|
|
7
|
+
data.tar.gz: ba11480040bb67d8f1a1af12e7189a9958ca20d2e99df7d362cef2e4d00669690c47b34f0a76c60098ef2b9f680b84c44c9de702d55db845dfc5b71cd770ea21
|
data/AUTHENTICATION.md
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
In general, the google-cloud-dns library uses [Service
|
|
4
4
|
Account](https://cloud.google.com/iam/docs/creating-managing-service-accounts)
|
|
5
|
-
credentials to connect to Google Cloud services. When running on
|
|
5
|
+
credentials to connect to Google Cloud services. When running on Google Cloud
|
|
6
|
+
Platform (GCP), including Google Compute Engine (GCE), Google Kubernetes Engine
|
|
7
|
+
(GKE), Google App Engine (GAE), Google Cloud Functions (GCF) and Cloud Run,
|
|
6
8
|
the credentials will be discovered automatically. When running on other
|
|
7
9
|
environments, the Service Account credentials can be specified by providing the
|
|
8
10
|
path to the [JSON
|
|
@@ -35,32 +37,10 @@ providing **Project ID** and **Service Account Credentials** directly in code.
|
|
|
35
37
|
|
|
36
38
|
### Google Cloud Platform environments
|
|
37
39
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
should be written as if already authenticated.
|
|
42
|
-
GCE instance][gce-how-to], you add the correct scopes for the APIs you want to
|
|
43
|
-
access. For example:
|
|
44
|
-
|
|
45
|
-
* **All APIs**
|
|
46
|
-
* `https://www.googleapis.com/auth/cloud-platform`
|
|
47
|
-
* `https://www.googleapis.com/auth/cloud-platform.read-only`
|
|
48
|
-
* **BigQuery**
|
|
49
|
-
* `https://www.googleapis.com/auth/bigquery`
|
|
50
|
-
* `https://www.googleapis.com/auth/bigquery.insertdata`
|
|
51
|
-
* **Compute Engine**
|
|
52
|
-
* `https://www.googleapis.com/auth/compute`
|
|
53
|
-
* **Datastore**
|
|
54
|
-
* `https://www.googleapis.com/auth/datastore`
|
|
55
|
-
* `https://www.googleapis.com/auth/userinfo.email`
|
|
56
|
-
* **DNS**
|
|
57
|
-
* `https://www.googleapis.com/auth/ndev.clouddns.readwrite`
|
|
58
|
-
* **Pub/Sub**
|
|
59
|
-
* `https://www.googleapis.com/auth/pubsub`
|
|
60
|
-
* **Storage**
|
|
61
|
-
* `https://www.googleapis.com/auth/devstorage.full_control`
|
|
62
|
-
* `https://www.googleapis.com/auth/devstorage.read_only`
|
|
63
|
-
* `https://www.googleapis.com/auth/devstorage.read_write`
|
|
40
|
+
When running on Google Cloud Platform (GCP), including Google Compute Engine (GCE),
|
|
41
|
+
Google Kubernetes Engine (GKE), Google App Engine (GAE), Google Cloud Functions
|
|
42
|
+
(GCF) and Cloud Run, the **Project ID** and **Credentials** and are discovered
|
|
43
|
+
automatically. Code should be written as if already authenticated.
|
|
64
44
|
|
|
65
45
|
### Environment Variables
|
|
66
46
|
|
data/CHANGELOG.md
CHANGED
data/CONTRIBUTING.md
CHANGED
|
@@ -24,7 +24,7 @@ be able to accept your pull requests.
|
|
|
24
24
|
In order to use the google-cloud-dns console and run the project's tests,
|
|
25
25
|
there is a small amount of setup:
|
|
26
26
|
|
|
27
|
-
1. Install Ruby. google-cloud-dns requires Ruby 2.
|
|
27
|
+
1. Install Ruby. google-cloud-dns requires Ruby 2.4+. You may choose to
|
|
28
28
|
manage your Ruby and gem installations with [RVM](https://rvm.io/),
|
|
29
29
|
[rbenv](https://github.com/rbenv/rbenv), or
|
|
30
30
|
[chruby](https://github.com/postmodern/chruby).
|
data/OVERVIEW.md
CHANGED
|
@@ -7,13 +7,13 @@ be used to easily publish and manage DNS records using the same
|
|
|
7
7
|
infrastructure relied upon by Google. To learn more, read [What is Google
|
|
8
8
|
Cloud DNS?](https://cloud.google.com/dns/what-is-cloud-dns).
|
|
9
9
|
|
|
10
|
-
The goal of google-cloud is to provide an API that is comfortable to
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
App Engine
|
|
14
|
-
configure authentication easily, either directly in
|
|
15
|
-
environment variables. Read more about the options for
|
|
16
|
-
{file:AUTHENTICATION.md Authentication Guide}.
|
|
10
|
+
The goal of google-cloud is to provide an API that is comfortable to Rubyists.
|
|
11
|
+
Your authentication credentials are detected automatically in Google Cloud
|
|
12
|
+
Platform (GCP), including Google Compute Engine (GCE), Google Kubernetes Engine
|
|
13
|
+
(GKE), Google App Engine (GAE), Google Cloud Functions (GCF) and Cloud Run. In
|
|
14
|
+
other environments you can configure authentication easily, either directly in
|
|
15
|
+
your code or via environment variables. Read more about the options for
|
|
16
|
+
connecting in the {file:AUTHENTICATION.md Authentication Guide}.
|
|
17
17
|
|
|
18
18
|
## Creating Zones
|
|
19
19
|
|
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.
|
|
4
|
+
version: 0.32.0
|
|
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: 2019-10-
|
|
12
|
+
date: 2019-10-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: google-cloud-core
|
|
@@ -29,42 +29,30 @@ dependencies:
|
|
|
29
29
|
name: google-api-client
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
31
31
|
requirements:
|
|
32
|
-
- - "
|
|
33
|
-
- !ruby/object:Gem::Version
|
|
34
|
-
version: 0.30.4
|
|
35
|
-
- - "<"
|
|
32
|
+
- - "~>"
|
|
36
33
|
- !ruby/object:Gem::Version
|
|
37
|
-
version: '
|
|
34
|
+
version: '0.33'
|
|
38
35
|
type: :runtime
|
|
39
36
|
prerelease: false
|
|
40
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
38
|
requirements:
|
|
42
|
-
- - "
|
|
43
|
-
- !ruby/object:Gem::Version
|
|
44
|
-
version: 0.30.4
|
|
45
|
-
- - "<"
|
|
39
|
+
- - "~>"
|
|
46
40
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
41
|
+
version: '0.33'
|
|
48
42
|
- !ruby/object:Gem::Dependency
|
|
49
43
|
name: googleauth
|
|
50
44
|
requirement: !ruby/object:Gem::Requirement
|
|
51
45
|
requirements:
|
|
52
|
-
- - "
|
|
53
|
-
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0.6.2
|
|
55
|
-
- - "<"
|
|
46
|
+
- - "~>"
|
|
56
47
|
- !ruby/object:Gem::Version
|
|
57
|
-
version: 0.
|
|
48
|
+
version: '0.9'
|
|
58
49
|
type: :runtime
|
|
59
50
|
prerelease: false
|
|
60
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
61
52
|
requirements:
|
|
62
|
-
- - "
|
|
63
|
-
- !ruby/object:Gem::Version
|
|
64
|
-
version: 0.6.2
|
|
65
|
-
- - "<"
|
|
53
|
+
- - "~>"
|
|
66
54
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: 0.
|
|
55
|
+
version: '0.9'
|
|
68
56
|
- !ruby/object:Gem::Dependency
|
|
69
57
|
name: zonefile
|
|
70
58
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -79,6 +67,20 @@ dependencies:
|
|
|
79
67
|
- - "~>"
|
|
80
68
|
- !ruby/object:Gem::Version
|
|
81
69
|
version: '1.04'
|
|
70
|
+
- !ruby/object:Gem::Dependency
|
|
71
|
+
name: google-style
|
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
|
73
|
+
requirements:
|
|
74
|
+
- - "~>"
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: 1.24.0
|
|
77
|
+
type: :development
|
|
78
|
+
prerelease: false
|
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
80
|
+
requirements:
|
|
81
|
+
- - "~>"
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: 1.24.0
|
|
82
84
|
- !ruby/object:Gem::Dependency
|
|
83
85
|
name: minitest
|
|
84
86
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -163,20 +165,6 @@ dependencies:
|
|
|
163
165
|
- - "~>"
|
|
164
166
|
- !ruby/object:Gem::Version
|
|
165
167
|
version: '3.0'
|
|
166
|
-
- !ruby/object:Gem::Dependency
|
|
167
|
-
name: rubocop
|
|
168
|
-
requirement: !ruby/object:Gem::Requirement
|
|
169
|
-
requirements:
|
|
170
|
-
- - "~>"
|
|
171
|
-
- !ruby/object:Gem::Version
|
|
172
|
-
version: 0.64.0
|
|
173
|
-
type: :development
|
|
174
|
-
prerelease: false
|
|
175
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
176
|
-
requirements:
|
|
177
|
-
- - "~>"
|
|
178
|
-
- !ruby/object:Gem::Version
|
|
179
|
-
version: 0.64.0
|
|
180
168
|
- !ruby/object:Gem::Dependency
|
|
181
169
|
name: simplecov
|
|
182
170
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -262,14 +250,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
262
250
|
requirements:
|
|
263
251
|
- - ">="
|
|
264
252
|
- !ruby/object:Gem::Version
|
|
265
|
-
version: 2.
|
|
253
|
+
version: '2.4'
|
|
266
254
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
267
255
|
requirements:
|
|
268
256
|
- - ">="
|
|
269
257
|
- !ruby/object:Gem::Version
|
|
270
258
|
version: '0'
|
|
271
259
|
requirements: []
|
|
272
|
-
rubygems_version: 3.0.
|
|
260
|
+
rubygems_version: 3.0.6
|
|
273
261
|
signing_key:
|
|
274
262
|
specification_version: 4
|
|
275
263
|
summary: API Client library for Google Cloud DNS
|