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.
Files changed (26) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/google/cloud/artifact_registry/v1/artifact_registry/client.rb +857 -98
  4. data/lib/google/cloud/artifact_registry/v1/artifact_registry/operations.rb +12 -14
  5. data/lib/google/cloud/artifact_registry/v1/artifact_registry/paths.rb +122 -0
  6. data/lib/google/cloud/artifact_registry/v1/artifact_registry/rest/client.rb +2888 -0
  7. data/lib/google/cloud/artifact_registry/v1/artifact_registry/rest/operations.rb +793 -0
  8. data/lib/google/cloud/artifact_registry/v1/artifact_registry/rest/service_stub.rb +2123 -0
  9. data/lib/google/cloud/artifact_registry/v1/artifact_registry/rest.rb +66 -0
  10. data/lib/google/cloud/artifact_registry/v1/artifact_registry.rb +6 -0
  11. data/lib/google/cloud/artifact_registry/v1/bindings_override.rb +102 -0
  12. data/lib/google/cloud/artifact_registry/v1/rest.rb +38 -0
  13. data/lib/google/cloud/artifact_registry/v1/version.rb +1 -1
  14. data/lib/google/cloud/artifact_registry/v1.rb +5 -0
  15. data/lib/google/devtools/artifactregistry/v1/artifact_pb.rb +75 -0
  16. data/lib/google/devtools/artifactregistry/v1/file_pb.rb +2 -0
  17. data/lib/google/devtools/artifactregistry/v1/package_pb.rb +1 -0
  18. data/lib/google/devtools/artifactregistry/v1/service_pb.rb +1 -0
  19. data/lib/google/devtools/artifactregistry/v1/service_services_pb.rb +16 -0
  20. data/lib/google/devtools/artifactregistry/v1/version_pb.rb +4 -0
  21. data/lib/google/devtools/artifactregistry/v1/vpcsc_config_pb.rb +42 -0
  22. data/proto_docs/google/devtools/artifactregistry/v1/artifact.rb +226 -3
  23. data/proto_docs/google/devtools/artifactregistry/v1/file.rb +11 -7
  24. data/proto_docs/google/devtools/artifactregistry/v1/version.rb +11 -1
  25. data/proto_docs/google/devtools/artifactregistry/v1/vpcsc_config.rb +82 -0
  26. metadata +19 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6a416be2df5b36bd1b3c8f8fea73bd316f6750999535e4304c27f9487839f8c0
4
- data.tar.gz: ff85b7afaf72b2364d69648f2eba9a4db9332689d18df2a323a0df26fea6c4de
3
+ metadata.gz: 7b6c48fd2aaa515c507c3f63d34ed96f709dcec1e536e2af5759f077cad775f2
4
+ data.tar.gz: 98568b9d1f22704b2e92575370c4735692aaeb1dbd3dc3a1944f78c799b039e1
5
5
  SHA512:
6
- metadata.gz: 1914ea90dbe798aeef8adf581fd8118f0fee44f657341815408d1a54b151208bd9116afca64005973f17ed512abea652a4e53eb1e0582d71c9f6c4dbc20ba30a
7
- data.tar.gz: adbd0629c9d48c04661c1607550015b142a2e6e324be5d17ca6f640a0f2238c15ad7ab48682d7b3b3b7e5e6351c42bf812e3bd4b99ffee73d5b170cc9a5f1ead
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
- API Client library for the Artifact Registry V1 API
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