google-cloud-artifact_registry-v1 0.6.0 → 0.8.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/README.md +1 -1
- data/lib/google/cloud/artifact_registry/v1/artifact_registry/client.rb +857 -98
- data/lib/google/cloud/artifact_registry/v1/artifact_registry/operations.rb +12 -14
- data/lib/google/cloud/artifact_registry/v1/artifact_registry/paths.rb +122 -0
- data/lib/google/cloud/artifact_registry/v1/artifact_registry/rest/client.rb +2888 -0
- data/lib/google/cloud/artifact_registry/v1/artifact_registry/rest/operations.rb +793 -0
- data/lib/google/cloud/artifact_registry/v1/artifact_registry/rest/service_stub.rb +2123 -0
- data/lib/google/cloud/artifact_registry/v1/artifact_registry/rest.rb +66 -0
- data/lib/google/cloud/artifact_registry/v1/artifact_registry.rb +6 -0
- data/lib/google/cloud/artifact_registry/v1/bindings_override.rb +102 -0
- data/lib/google/cloud/artifact_registry/v1/rest.rb +38 -0
- data/lib/google/cloud/artifact_registry/v1/version.rb +1 -1
- data/lib/google/cloud/artifact_registry/v1.rb +5 -0
- data/lib/google/devtools/artifactregistry/v1/artifact_pb.rb +75 -0
- data/lib/google/devtools/artifactregistry/v1/file_pb.rb +2 -0
- data/lib/google/devtools/artifactregistry/v1/package_pb.rb +1 -0
- data/lib/google/devtools/artifactregistry/v1/service_pb.rb +1 -0
- data/lib/google/devtools/artifactregistry/v1/service_services_pb.rb +16 -0
- data/lib/google/devtools/artifactregistry/v1/version_pb.rb +4 -0
- data/lib/google/devtools/artifactregistry/v1/vpcsc_config_pb.rb +42 -0
- data/proto_docs/google/devtools/artifactregistry/v1/artifact.rb +226 -3
- data/proto_docs/google/devtools/artifactregistry/v1/file.rb +11 -7
- data/proto_docs/google/devtools/artifactregistry/v1/version.rb +11 -1
- data/proto_docs/google/devtools/artifactregistry/v1/vpcsc_config.rb +82 -0
- metadata +19 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b6c48fd2aaa515c507c3f63d34ed96f709dcec1e536e2af5759f077cad775f2
|
4
|
+
data.tar.gz: 98568b9d1f22704b2e92575370c4735692aaeb1dbd3dc3a1944f78c799b039e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f2e48d087392376a2cce9b1e2c2957844647eb0b8326e2e6736507792a4cbeb5ec9cd46ccd1b7cee0137979bddd896e2695594b8fe55eb7f0ae69d5f0180d7e
|
7
|
+
data.tar.gz: 8019d4f39ad2df859bc0ed6153815b51dde8bd8c3261d9aa0cb86f998d6850b7ccc69033a93601a4fd2fde857aeb008d69f001372bb046ea04b0420936c7b138
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Ruby Client for the Artifact Registry V1 API
|
2
2
|
|
3
|
-
|
3
|
+
Store and manage build artifacts in a scalable and integrated service built on Google infrastructure.
|
4
4
|
|
5
5
|
Artifact Registry stores and manages build artifacts in a scalable and integrated service built on Google infrastructure.
|
6
6
|
|