google-apis-artifactregistry_v1 0.64.0 → 0.65.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a58b99f8721f34d761f26186c8035e1064ddd332feb6ec663ac93eda152cc9d4
|
4
|
+
data.tar.gz: 22a2959a25a416837a78f65ef63ff9f21a6611503eadddc17364826801c9c629
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68dcb80241062e698fd51328912f449b3a2aa33293ae31a5070c3c73f651388e93fbe0e7eb5f535a400c3ff1027855ac563d73798c89c25174174177dae6b1b0
|
7
|
+
data.tar.gz: df7e121d3ff4f1f7599806bb9efa31cc4edb5369fab564edfd8913aec18f5f3690a7213cc9d53e3e02971459b701a4d18f8988091abb4ebf2b7dcb46f3c38921
|
data/CHANGELOG.md
CHANGED
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ArtifactregistryV1
|
18
18
|
# Version of the google-apis-artifactregistry_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.65.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240826"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -437,6 +437,19 @@ module Google
|
|
437
437
|
# Lists repositories.
|
438
438
|
# @param [String] parent
|
439
439
|
# Required. The name of the parent resource whose repositories will be listed.
|
440
|
+
# @param [String] filter
|
441
|
+
# Optional. An expression for filtering the results of the request. Filter rules
|
442
|
+
# are case insensitive. The fields eligible for filtering are: * `name` Examples
|
443
|
+
# of using a filter: To filter the results of your request to repositories with
|
444
|
+
# the name "my-repo" in project my-project in the us-central region, append the
|
445
|
+
# following filter expression to your request: * `name="projects/my-project/
|
446
|
+
# locations/us-central1/repositories/my-repo` You can also use wildcards to
|
447
|
+
# match any number of characters before or after the value: * `name="projects/my-
|
448
|
+
# project/locations/us-central1/repositories/my-*"` * `name="projects/my-project/
|
449
|
+
# locations/us-central1/repositories/*repo"` * `name="projects/my-project/
|
450
|
+
# locations/us-central1/repositories/*repo*"`
|
451
|
+
# @param [String] order_by
|
452
|
+
# Optional. The field to order the results by.
|
440
453
|
# @param [Fixnum] page_size
|
441
454
|
# The maximum number of repositories to return. Maximum page size is 1,000.
|
442
455
|
# @param [String] page_token
|
@@ -458,11 +471,13 @@ module Google
|
|
458
471
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
459
472
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
460
473
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
461
|
-
def list_project_location_repositories(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
474
|
+
def list_project_location_repositories(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
462
475
|
command = make_simple_command(:get, 'v1/{+parent}/repositories', options)
|
463
476
|
command.response_representation = Google::Apis::ArtifactregistryV1::ListRepositoriesResponse::Representation
|
464
477
|
command.response_class = Google::Apis::ArtifactregistryV1::ListRepositoriesResponse
|
465
478
|
command.params['parent'] = parent unless parent.nil?
|
479
|
+
command.query['filter'] = filter unless filter.nil?
|
480
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
466
481
|
command.query['pageSize'] = page_size unless page_size.nil?
|
467
482
|
command.query['pageToken'] = page_token unless page_token.nil?
|
468
483
|
command.query['fields'] = fields unless fields.nil?
|
@@ -1315,6 +1330,33 @@ module Google
|
|
1315
1330
|
# Lists packages.
|
1316
1331
|
# @param [String] parent
|
1317
1332
|
# Required. The name of the parent resource whose packages will be listed.
|
1333
|
+
# @param [String] filter
|
1334
|
+
# Optional. An expression for filtering the results of the request. Filter rules
|
1335
|
+
# are case insensitive. The fields eligible for filtering are: * `name` * `
|
1336
|
+
# annotations` Examples of using a filter: To filter the results of your request
|
1337
|
+
# to packages with the name "my-package" in project my-project in the us-central
|
1338
|
+
# region, in repository my-repo, append the following filter expression to your
|
1339
|
+
# request: * `name="projects/my-project/locations/us-central1/repositories/my-
|
1340
|
+
# repo/packages/my-package"` You can also use wildcards to match any number of
|
1341
|
+
# characters before or after the value: * `name="projects/my-project/locations/
|
1342
|
+
# us-central1/repositories/my-repo/packages/my-*"` * `name="projects/my-project/
|
1343
|
+
# locations/us-central1/repositories/my-repo/packages/*package"` * `name="
|
1344
|
+
# projects/my-project/locations/us-central1/repositories/my-repo/packages/*pack*"
|
1345
|
+
# ` To filter the results of your request to packages with the annotation key-
|
1346
|
+
# value pair [`external_link`:`external_link_value`], append the following
|
1347
|
+
# filter expression to your request": * "annotations.external_link:
|
1348
|
+
# external_link_value" To filter the results just for a specific annotation key `
|
1349
|
+
# external_link`, append the following filter expression to your request: * "
|
1350
|
+
# annotations.external_link" If the annotation key or value contains special
|
1351
|
+
# characters, you can escape them by surrounding the value with backticks. For
|
1352
|
+
# example, to filter the results of your request to packages with the annotation
|
1353
|
+
# key-value pair [`external.link`:`https://example.com/my-package`], append the
|
1354
|
+
# following filter expression to your request: * "annotations.`external.link`:`
|
1355
|
+
# https://example.com/my-package`" You can also filter with annotations with a
|
1356
|
+
# wildcard to match any number of characters before or after the value: * "
|
1357
|
+
# annotations.*_link:`*example.com*`"
|
1358
|
+
# @param [String] order_by
|
1359
|
+
# Optional. The field to order the results by.
|
1318
1360
|
# @param [Fixnum] page_size
|
1319
1361
|
# The maximum number of packages to return. Maximum page size is 1,000.
|
1320
1362
|
# @param [String] page_token
|
@@ -1336,11 +1378,13 @@ module Google
|
|
1336
1378
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1337
1379
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1338
1380
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1339
|
-
def list_project_location_repository_packages(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1381
|
+
def list_project_location_repository_packages(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1340
1382
|
command = make_simple_command(:get, 'v1/{+parent}/packages', options)
|
1341
1383
|
command.response_representation = Google::Apis::ArtifactregistryV1::ListPackagesResponse::Representation
|
1342
1384
|
command.response_class = Google::Apis::ArtifactregistryV1::ListPackagesResponse
|
1343
1385
|
command.params['parent'] = parent unless parent.nil?
|
1386
|
+
command.query['filter'] = filter unless filter.nil?
|
1387
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
1344
1388
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1345
1389
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1346
1390
|
command.query['fields'] = fields unless fields.nil?
|
@@ -1685,6 +1729,32 @@ module Google
|
|
1685
1729
|
# Lists versions.
|
1686
1730
|
# @param [String] parent
|
1687
1731
|
# The name of the parent resource whose versions will be listed.
|
1732
|
+
# @param [String] filter
|
1733
|
+
# Optional. An expression for filtering the results of the request. Filter rules
|
1734
|
+
# are case insensitive. The fields eligible for filtering are: * `name` * `
|
1735
|
+
# annotations` Examples of using a filter: To filter the results of your request
|
1736
|
+
# to versions with the name "my-version" in project my-project in the us-central
|
1737
|
+
# region, in repository my-repo, append the following filter expression to your
|
1738
|
+
# request: * `name="projects/my-project/locations/us-central1/repositories/my-
|
1739
|
+
# repo/packages/my-package/versions/my-version"` You can also use wildcards to
|
1740
|
+
# match any number of characters before or after the value: * `name="projects/my-
|
1741
|
+
# project/locations/us-central1/repositories/my-repo/packages/my-package/
|
1742
|
+
# versions/*version"` * `name="projects/my-project/locations/us-central1/
|
1743
|
+
# repositories/my-repo/packages/my-package/versions/my*"` * `name="projects/my-
|
1744
|
+
# project/locations/us-central1/repositories/my-repo/packages/my-package/
|
1745
|
+
# versions/*version*"` To filter the results of your request to versions with
|
1746
|
+
# the annotation key-value pair [`external_link`:`external_link_value`], append
|
1747
|
+
# the following filter expression to your request: * "annotations.external_link:
|
1748
|
+
# external_link_value" To filter just for a specific annotation key `
|
1749
|
+
# external_link`, append the following filter expression to your request: * "
|
1750
|
+
# annotations.external_link" If the annotation key or value contains special
|
1751
|
+
# characters, you can escape them by surrounding the value with backticks. For
|
1752
|
+
# example, to filter the results of your request to versions with the annotation
|
1753
|
+
# key-value pair [`external.link`:`https://example.com/my-version`], append the
|
1754
|
+
# following filter expression to your request: * "annotations.`external.link`:`
|
1755
|
+
# https://example.com/my-version`" You can also filter with annotations with a
|
1756
|
+
# wildcard to match any number of characters before or after the value: * "
|
1757
|
+
# annotations.*_link:`*example.com*`"
|
1688
1758
|
# @param [String] order_by
|
1689
1759
|
# Optional. The field to order the results by.
|
1690
1760
|
# @param [Fixnum] page_size
|
@@ -1710,11 +1780,12 @@ module Google
|
|
1710
1780
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1711
1781
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1712
1782
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1713
|
-
def list_project_location_repository_package_versions(parent, order_by: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1783
|
+
def list_project_location_repository_package_versions(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1714
1784
|
command = make_simple_command(:get, 'v1/{+parent}/versions', options)
|
1715
1785
|
command.response_representation = Google::Apis::ArtifactregistryV1::ListVersionsResponse::Representation
|
1716
1786
|
command.response_class = Google::Apis::ArtifactregistryV1::ListVersionsResponse
|
1717
1787
|
command.params['parent'] = parent unless parent.nil?
|
1788
|
+
command.query['filter'] = filter unless filter.nil?
|
1718
1789
|
command.query['orderBy'] = order_by unless order_by.nil?
|
1719
1790
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1720
1791
|
command.query['pageToken'] = page_token unless page_token.nil?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-artifactregistry_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.65.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-09-01 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1/v0.65.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-artifactregistry_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|