google-apis-artifactregistry_v1beta1 0.51.0 → 0.52.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a822a68f989400a7895d484d7e5ff180d65ac456d0b6d9bb72a02cc81a41ab13
|
4
|
+
data.tar.gz: 355a5f93d3b4c5902e2fdf1b10e28ab70b0a416319edbc65bd8fd0cda8c5082b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eca64dc2dd515722e9970290d617f619bb1c49760c07ddbaad636bc4ea6d72325f2000a48e46d6970a33479a9100ebb7539e7a5d8794507a46b84a40be6e8737
|
7
|
+
data.tar.gz: 4289ac0bdbff0bfca9cc2f6d0202b53126cdd7a3d9b18e585d40d9f417551e0268deb51bd5484693a3fb0b089ea864cd4064e472e9328a442f09ec5a987e6e33
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-artifactregistry_v1beta1
|
2
2
|
|
3
|
+
### v0.52.0 (2024-12-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241010
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.51.0 (2024-06-02)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240528
|
@@ -845,8 +845,8 @@ module Google
|
|
845
845
|
# @return [String]
|
846
846
|
attr_accessor :name
|
847
847
|
|
848
|
-
# The name of the version the tag refers to, for example:
|
849
|
-
# us-central1/repositories/repo1/packages/pkg1/versions/sha256:5243811
|
848
|
+
# The name of the version the tag refers to, for example: `projects/p1/locations/
|
849
|
+
# us-central1/repositories/repo1/packages/pkg1/versions/sha256:5243811` If the
|
850
850
|
# package or version ID parts contain slashes, the slashes are escaped.
|
851
851
|
# Corresponds to the JSON property `version`
|
852
852
|
# @return [String]
|
@@ -919,8 +919,8 @@ module Google
|
|
919
919
|
# @return [String]
|
920
920
|
attr_accessor :description
|
921
921
|
|
922
|
-
# The name of the version, for example:
|
923
|
-
# repositories/repo1/packages/pkg1/versions/art1
|
922
|
+
# The name of the version, for example: `projects/p1/locations/us-central1/
|
923
|
+
# repositories/repo1/packages/pkg1/versions/art1`. If the package or version ID
|
924
924
|
# parts contain slashes, the slashes are escaped.
|
925
925
|
# Corresponds to the JSON property `name`
|
926
926
|
# @return [String]
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ArtifactregistryV1beta1
|
18
18
|
# Version of the google-apis-artifactregistry_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.52.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241010"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -302,6 +302,8 @@ module Google
|
|
302
302
|
# Lists repositories.
|
303
303
|
# @param [String] parent
|
304
304
|
# Required. The name of the parent resource whose repositories will be listed.
|
305
|
+
# @param [String] order_by
|
306
|
+
# Optional. The field to order the results by.
|
305
307
|
# @param [Fixnum] page_size
|
306
308
|
# The maximum number of repositories to return. Maximum page size is 1,000.
|
307
309
|
# @param [String] page_token
|
@@ -323,11 +325,12 @@ module Google
|
|
323
325
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
324
326
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
325
327
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
326
|
-
def list_project_location_repositories(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
328
|
+
def list_project_location_repositories(parent, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
327
329
|
command = make_simple_command(:get, 'v1beta1/{+parent}/repositories', options)
|
328
330
|
command.response_representation = Google::Apis::ArtifactregistryV1beta1::ListRepositoriesResponse::Representation
|
329
331
|
command.response_class = Google::Apis::ArtifactregistryV1beta1::ListRepositoriesResponse
|
330
332
|
command.params['parent'] = parent unless parent.nil?
|
333
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
331
334
|
command.query['pageSize'] = page_size unless page_size.nil?
|
332
335
|
command.query['pageToken'] = page_token unless page_token.nil?
|
333
336
|
command.query['fields'] = fields unless fields.nil?
|
@@ -481,11 +484,32 @@ module Google
|
|
481
484
|
# projects/p1/locations/us-central1/repositories/repo1
|
482
485
|
# @param [String] filter
|
483
486
|
# An expression for filtering the results of the request. Filter rules are case
|
484
|
-
# insensitive. The fields eligible for filtering are: * `name` * `owner`
|
485
|
-
#
|
486
|
-
#
|
487
|
-
#
|
488
|
-
#
|
487
|
+
# insensitive. The fields eligible for filtering are: * `name` * `owner` * `
|
488
|
+
# annotations` Examples of using a filter: To filter the results of your request
|
489
|
+
# to files with the name `my_file.txt` in project `my-project` in the `us-
|
490
|
+
# central` region, in repository `my-repo`, append the following filter
|
491
|
+
# expression to your request: * `name="projects/my-project/locations/us-central1/
|
492
|
+
# repositories/my-repo/files/my-file.txt"` You can also use wildcards to match
|
493
|
+
# any number of characters before or after the value: * `name="projects/my-
|
494
|
+
# project/locations/us-central1/repositories/my-repo/files/my-*"` * `name="
|
495
|
+
# projects/my-project/locations/us-central1/repositories/my-repo/files/*file.txt"
|
496
|
+
# ` * `name="projects/my-project/locations/us-central1/repositories/my-repo/
|
497
|
+
# files/*file*"` To filter the results of your request to files owned by the
|
498
|
+
# version `1.0` in package `pkg1`, append the following filter expression to
|
499
|
+
# your request: * `owner="projects/my-project/locations/us-central1/repositories/
|
500
|
+
# my-repo/packages/my-package/versions/1.0"` To filter the results of your
|
501
|
+
# request to files with the annotation key-value pair [`external_link`: `
|
502
|
+
# external_link_value`], append the following filter expression to your request:
|
503
|
+
# * `"annotations.external_link:external_link_value"` To filter just for a
|
504
|
+
# specific annotation key `external_link`, append the following filter
|
505
|
+
# expression to your request: * `"annotations.external_link"` If the annotation
|
506
|
+
# key or value contains special characters, you can escape them by surrounding
|
507
|
+
# the value with backticks. For example, to filter the results of your request
|
508
|
+
# to files with the annotation key-value pair [`external.link`:`https://example.
|
509
|
+
# com/my-file`], append the following filter expression to your request: * `` "
|
510
|
+
# annotations.`external.link`:`https://example.com/my-file`" `` You can also
|
511
|
+
# filter with annotations with a wildcard to match any number of characters
|
512
|
+
# before or after the value: * `` "annotations.*_link:`*example.com*`" ``
|
489
513
|
# @param [Fixnum] page_size
|
490
514
|
# The maximum number of files to return. Maximum page size is 1,000.
|
491
515
|
# @param [String] page_token
|
@@ -584,6 +608,8 @@ module Google
|
|
584
608
|
# Lists packages.
|
585
609
|
# @param [String] parent
|
586
610
|
# Required. The name of the parent resource whose packages will be listed.
|
611
|
+
# @param [String] order_by
|
612
|
+
# Optional. The field to order the results by.
|
587
613
|
# @param [Fixnum] page_size
|
588
614
|
# The maximum number of packages to return. Maximum page size is 1,000.
|
589
615
|
# @param [String] page_token
|
@@ -605,11 +631,12 @@ module Google
|
|
605
631
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
606
632
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
607
633
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
608
|
-
def list_project_location_repository_packages(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
634
|
+
def list_project_location_repository_packages(parent, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
609
635
|
command = make_simple_command(:get, 'v1beta1/{+parent}/packages', options)
|
610
636
|
command.response_representation = Google::Apis::ArtifactregistryV1beta1::ListPackagesResponse::Representation
|
611
637
|
command.response_class = Google::Apis::ArtifactregistryV1beta1::ListPackagesResponse
|
612
638
|
command.params['parent'] = parent unless parent.nil?
|
639
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
613
640
|
command.query['pageSize'] = page_size unless page_size.nil?
|
614
641
|
command.query['pageToken'] = page_token unless page_token.nil?
|
615
642
|
command.query['fields'] = fields unless fields.nil?
|
@@ -719,15 +746,21 @@ module Google
|
|
719
746
|
# projects/p1/locations/us-central1/repositories/repo1/packages/pkg1`.
|
720
747
|
# @param [String] filter
|
721
748
|
# An expression for filtering the results of the request. Filter rules are case
|
722
|
-
# insensitive. The fields eligible for filtering are: * `
|
723
|
-
# using a filter:
|
724
|
-
#
|
725
|
-
#
|
726
|
-
#
|
727
|
-
#
|
728
|
-
#
|
729
|
-
# locations/us-central1/repositories/
|
730
|
-
#
|
749
|
+
# insensitive. The fields eligible for filtering are: * `name` * `version`
|
750
|
+
# Examples of using a filter: To filter the results of your request to tags with
|
751
|
+
# the name `my-tag` in package `my-package` in repository `my-repo` in project "`
|
752
|
+
# y-project` in the us-central region, append the following filter expression to
|
753
|
+
# your request: * `name="projects/my-project/locations/us-central1/repositories/
|
754
|
+
# my-repo/packages/my-package/tags/my-tag"` You can also use wildcards to match
|
755
|
+
# any number of characters before or after the value: * `name="projects/my-
|
756
|
+
# project/locations/us-central1/repositories/my-repo/packages/my-package/tags/my*
|
757
|
+
# "` * `name="projects/my-project/locations/us-central1/repositories/my-repo/
|
758
|
+
# packages/my-package/tags/*tag"` * `name="projects/my-project/locations/us-
|
759
|
+
# central1/repositories/my-repo/packages/my-package/tags/*tag*"` To filter the
|
760
|
+
# results of your request to tags applied to the version `1.0` in package `my-
|
761
|
+
# package`, append the following filter expression to your request: * `version="
|
762
|
+
# projects/my-project/locations/us-central1/repositories/my-repo/packages/my-
|
763
|
+
# package/versions/1.0"`
|
731
764
|
# @param [Fixnum] page_size
|
732
765
|
# The maximum number of tags to return. Maximum page size is 1,000.
|
733
766
|
# @param [String] page_token
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-artifactregistry_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.52.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: 2024-
|
11
|
+
date: 2024-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-artifactregistry_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta1/v0.52.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-artifactregistry_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Artifact Registry API V1beta1
|