google-cloud-artifact_registry 0.2.2 → 1.0.0

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: e62db92e80ac057a8fdc53c8f1fab50c1bd52b61c2c7c7cf76caf4595f5a46e9
4
- data.tar.gz: b3f22fa2a64a04370f6159eeb17b830d8de4c0a0455ffa490d57adef30cc2be2
3
+ metadata.gz: dad46923a6500ea48470f15d4b6ac91b1ac827a1c004d92ce56146636bdcfdeb
4
+ data.tar.gz: ab2e55e1c4df4a2a8fd63432d0bc8b42ecd4194fcb7d74905910509052e094e3
5
5
  SHA512:
6
- metadata.gz: 456d2c74abbf908859c99ac7a67fdbf293c89221b81a9513eb5b22fe5d67a187bab6604c19afda2386a246f8faa7f9d87856d7693dc5358bec82d7604a1cd981
7
- data.tar.gz: 07eb285310f09cfb81605a27d2a259b494f63e350f4be1ab72bef218f8ec1916d88b6b2be0189183a5e8cf0670c4a218cf85e6b4b149725324014bd69f61c590
6
+ metadata.gz: 46b6303402f2f454acff339feb92e09cea02224d672618a810e1d713cb84a88a6aafb888ec5eb069e584cc5e70aa5cdfe5d0ddc97e179e6fae7ecceccefb0643
7
+ data.tar.gz: 96ef07e59dc5df4eba423167181ac3d499d95670e374c970f1b6e3c1531ae73d95104cbd8b657ae8af0955e6f4972a353ed8b4cc3ddeb252c86c1ada51e208c3
data/AUTHENTICATION.md CHANGED
@@ -64,7 +64,7 @@ containers where writing files is difficult or not encouraged.
64
64
 
65
65
  The environment variables that google-cloud-artifact_registry
66
66
  checks for credentials are configured on the service Credentials class (such as
67
- `::Google::Cloud::ArtifactRegistry::V1beta2::ArtifactRegistry::Credentials`):
67
+ `::Google::Cloud::ArtifactRegistry::V1::ArtifactRegistry::Credentials`):
68
68
 
69
69
  * `ARTIFACT_REGISTRY_CREDENTIALS` - Path to JSON file, or JSON contents
70
70
  * `ARTIFACT_REGISTRY_KEYFILE` - Path to JSON file, or JSON contents
data/README.md CHANGED
@@ -16,6 +16,7 @@ for this library, google-cloud-artifact_registry, to see the convenience methods
16
16
  constructing client objects. Reference documentation for the client objects
17
17
  themselves can be found in the client library documentation for the versioned
18
18
  client gems:
19
+ [google-cloud-artifact_registry-v1](https://googleapis.dev/ruby/google-cloud-artifact_registry-v1/latest),
19
20
  [google-cloud-artifact_registry-v1beta2](https://googleapis.dev/ruby/google-cloud-artifact_registry-v1beta2/latest).
20
21
 
21
22
  See also the [Product Documentation](https://cloud.google.com/artifact-registry/)
@@ -76,7 +77,7 @@ about the Ruby support schedule.
76
77
  Most modern Ruby client libraries for Google APIs come in two flavors: the main
77
78
  client library with a name such as `google-cloud-artifact_registry`,
78
79
  and lower-level _versioned_ client libraries with names such as
79
- `google-cloud-artifact_registry-v1beta2`.
80
+ `google-cloud-artifact_registry-v1`.
80
81
  _In most cases, you should install the main client._
81
82
 
82
83
  ### What's the difference between the main client and a versioned client?
@@ -114,7 +115,7 @@ You can use a versioned client if you are content with a possibly lower-level
114
115
  class interface, you explicitly want to avoid features provided by the main
115
116
  client, or you want to access a specific service version not be covered by the
116
117
  main client. You can identify versioned client gems because the service version
117
- is part of the name, e.g. `google-cloud-artifact_registry-v1beta2`.
118
+ is part of the name, e.g. `google-cloud-artifact_registry-v1`.
118
119
 
119
120
  ### What about the google-apis-<name> clients?
120
121
 
@@ -20,7 +20,7 @@
20
20
  module Google
21
21
  module Cloud
22
22
  module ArtifactRegistry
23
- VERSION = "0.2.2"
23
+ VERSION = "1.0.0"
24
24
  end
25
25
  end
26
26
  end
@@ -48,8 +48,8 @@ module Google
48
48
  # Create a new client object for ArtifactRegistry.
49
49
  #
50
50
  # By default, this returns an instance of
51
- # [Google::Cloud::ArtifactRegistry::V1beta2::ArtifactRegistry::Client](https://googleapis.dev/ruby/google-cloud-artifact_registry-v1beta2/latest/Google/Cloud/ArtifactRegistry/V1beta2/ArtifactRegistry/Client.html)
52
- # for version V1beta2 of the API.
51
+ # [Google::Cloud::ArtifactRegistry::V1::ArtifactRegistry::Client](https://googleapis.dev/ruby/google-cloud-artifact_registry-v1/latest/Google/Cloud/ArtifactRegistry/V1/ArtifactRegistry/Client.html)
52
+ # for version V1 of the API.
53
53
  # However, you can specify specify a different API version by passing it in the
54
54
  # `version` parameter. If the ArtifactRegistry service is
55
55
  # supported by that API version, and the corresponding gem is available, the
@@ -72,10 +72,10 @@ module Google
72
72
  # or Version.
73
73
  #
74
74
  # @param version [::String, ::Symbol] The API version to connect to. Optional.
75
- # Defaults to `:v1beta2`.
75
+ # Defaults to `:v1`.
76
76
  # @return [ArtifactRegistry::Client] A client object for the specified version.
77
77
  #
78
- def self.artifact_registry version: :v1beta2, &block
78
+ def self.artifact_registry version: :v1, &block
79
79
  require "google/cloud/artifact_registry/#{version.to_s.downcase}"
80
80
 
81
81
  package_name = Google::Cloud::ArtifactRegistry
metadata CHANGED
@@ -1,15 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-artifact_registry
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-12 00:00:00.000000000 Z
11
+ date: 2021-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: google-cloud-artifact_registry-v1
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 2.a
13
33
  - !ruby/object:Gem::Dependency
14
34
  name: google-cloud-artifact_registry-v1beta2
15
35
  requirement: !ruby/object:Gem::Requirement