google-apis-artifactregistry_v1 0.63.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: 815f8eb319e07f2664e439eae0428d0d3538b013ec0f2ebbde4c407bbed2e2a8
4
- data.tar.gz: 052eee69e143d4cb3e233e6da80c5bb602bd7a6a6c53fd8199c748a094e6f304
3
+ metadata.gz: a58b99f8721f34d761f26186c8035e1064ddd332feb6ec663ac93eda152cc9d4
4
+ data.tar.gz: 22a2959a25a416837a78f65ef63ff9f21a6611503eadddc17364826801c9c629
5
5
  SHA512:
6
- metadata.gz: a0dbb2bef35488f11c5035d23a8de49b79d847e534e10774f6a6a0164f96e9c45957954eeeab216a359e10907e97366dbf52cd9a9071c871548d7bf56dd86791
7
- data.tar.gz: 4b2d49733af4fdb80b24bed3f0a3ed4c06b0553fa78f4abc45281ea7c6d3bd2aa05fbac38c6769b91dd17c70cd0aa82ec10563f6c8cd5dfdf46873e52df83c8b
6
+ metadata.gz: 68dcb80241062e698fd51328912f449b3a2aa33293ae31a5070c3c73f651388e93fbe0e7eb5f535a400c3ff1027855ac563d73798c89c25174174177dae6b1b0
7
+ data.tar.gz: df7e121d3ff4f1f7599806bb9efa31cc4edb5369fab564edfd8913aec18f5f3690a7213cc9d53e3e02971459b701a4d18f8988091abb4ebf2b7dcb46f3c38921
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-artifactregistry_v1
2
2
 
3
+ ### v0.65.0 (2024-09-01)
4
+
5
+ * Regenerated from discovery document revision 20240826
6
+
7
+ ### v0.64.0 (2024-08-25)
8
+
9
+ * Regenerated from discovery document revision 20240809
10
+
3
11
  ### v0.63.0 (2024-08-04)
4
12
 
5
13
  * Regenerated from discovery document revision 20240724
@@ -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.63.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 = "20240724"
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?
@@ -836,11 +851,32 @@ module Google
836
851
  # projects/p1/locations/us-central1/repositories/repo1
837
852
  # @param [String] filter
838
853
  # An expression for filtering the results of the request. Filter rules are case
839
- # insensitive. The fields eligible for filtering are: * `name` * `owner` An
840
- # example of using a filter: * `name="projects/p1/locations/us-central1/
841
- # repositories/repo1/files/a/b/*"` --> Files with an ID starting with "a/b/". * `
842
- # owner="projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/
843
- # versions/1.0"` --> Files owned by the version `1.0` in package `pkg1`.
854
+ # insensitive. The fields eligible for filtering are: * `name` * `owner` * `
855
+ # annotations` Examples of using a filter: To filter the results of your request
856
+ # to files with the name "my_file.txt" in project my-project in the us-central
857
+ # region, in repository my-repo, append the following filter expression to your
858
+ # request: * `name="projects/my-project/locations/us-central1/repositories/my-
859
+ # repo/files/my-file.txt"` You can also use wildcards to match any number of
860
+ # characters before or after the value: * `name="projects/my-project/locations/
861
+ # us-central1/repositories/my-repo/files/my-*"` * `name="projects/my-project/
862
+ # locations/us-central1/repositories/my-repo/files/*file.txt"` * `name="projects/
863
+ # my-project/locations/us-central1/repositories/my-repo/files/*file*"` To filter
864
+ # the results of your request to files owned by the version `1.0` in package `
865
+ # pkg1`, append the following filter expression to your request: * `owner="
866
+ # projects/my-project/locations/us-central1/repositories/my-repo/packages/my-
867
+ # package/versions/1.0"` To filter the results of your request to files with the
868
+ # annotation key-value pair [`external_link`:`external_link_value`], append the
869
+ # following filter expression to your request: * "annotations.external_link:
870
+ # external_link_value" To filter just for a specific annotation key `
871
+ # external_link`, append the following filter expression to your request: * "
872
+ # annotations.external_link" If the annotation key or value contains special
873
+ # characters, you can escape them by surrounding the value with backticks. For
874
+ # example, to filter the results of your request to files with the annotation
875
+ # key-value pair [`external.link`:`https://example.com/my-file`], append the
876
+ # following filter expression to your request: * "annotations.`external.link`:`
877
+ # https://example.com/my-file`" You can also filter with annotations with a
878
+ # wildcard to match any number of characters before or after the value: * "
879
+ # annotations.*_link:`*example.com*`"
844
880
  # @param [String] order_by
845
881
  # The field to order the results by.
846
882
  # @param [Fixnum] page_size
@@ -1294,6 +1330,33 @@ module Google
1294
1330
  # Lists packages.
1295
1331
  # @param [String] parent
1296
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.
1297
1360
  # @param [Fixnum] page_size
1298
1361
  # The maximum number of packages to return. Maximum page size is 1,000.
1299
1362
  # @param [String] page_token
@@ -1315,11 +1378,13 @@ module Google
1315
1378
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1316
1379
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1317
1380
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1318
- 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)
1319
1382
  command = make_simple_command(:get, 'v1/{+parent}/packages', options)
1320
1383
  command.response_representation = Google::Apis::ArtifactregistryV1::ListPackagesResponse::Representation
1321
1384
  command.response_class = Google::Apis::ArtifactregistryV1::ListPackagesResponse
1322
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?
1323
1388
  command.query['pageSize'] = page_size unless page_size.nil?
1324
1389
  command.query['pageToken'] = page_token unless page_token.nil?
1325
1390
  command.query['fields'] = fields unless fields.nil?
@@ -1469,10 +1534,21 @@ module Google
1469
1534
  # projects/p1/locations/us-central1/repositories/repo1/packages/pkg1`.
1470
1535
  # @param [String] filter
1471
1536
  # An expression for filtering the results of the request. Filter rules are case
1472
- # insensitive. The fields eligible for filtering are: * `version` An example of
1473
- # using a filter: * `version="projects/p1/locations/us-central1/repositories/
1474
- # repo1/packages/pkg1/versions/1.0"` --> Tags that are applied to the version `1.
1475
- # 0` in package `pkg1`.
1537
+ # insensitive. The fields eligible for filtering are: * `name` * `version`
1538
+ # Examples of using a filter: To filter the results of your request to tags with
1539
+ # the name "my-tag" in package "my-package" in repository "my-repo" in project "
1540
+ # my-project" in the us-central region, append the following filter expression
1541
+ # to your request: * `name="projects/my-project/locations/us-central1/
1542
+ # repositories/my-repo/packages/my-package/tags/my-tag"` You can also use
1543
+ # wildcards to match any number of characters before or after the value: * `name=
1544
+ # "projects/my-project/locations/us-central1/repositories/my-repo/packages/my-
1545
+ # package/tags/my*"` * `name="projects/my-project/locations/us-central1/
1546
+ # repositories/my-repo/packages/my-package/tags/*tag"` * `name="projects/my-
1547
+ # project/locations/us-central1/repositories/my-repo/packages/my-package/tags/*
1548
+ # tag*"` To filter the results of your request to tags applied to the version `1.
1549
+ # 0` in package `my-package`, append the following filter expression to your
1550
+ # request: * `version="projects/my-project/locations/us-central1/repositories/my-
1551
+ # repo/packages/my-package/versions/1.0"`
1476
1552
  # @param [Fixnum] page_size
1477
1553
  # The maximum number of tags to return. Maximum page size is 1,000.
1478
1554
  # @param [String] page_token
@@ -1653,6 +1729,32 @@ module Google
1653
1729
  # Lists versions.
1654
1730
  # @param [String] parent
1655
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*`"
1656
1758
  # @param [String] order_by
1657
1759
  # Optional. The field to order the results by.
1658
1760
  # @param [Fixnum] page_size
@@ -1678,11 +1780,12 @@ module Google
1678
1780
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1679
1781
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1680
1782
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1681
- 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)
1682
1784
  command = make_simple_command(:get, 'v1/{+parent}/versions', options)
1683
1785
  command.response_representation = Google::Apis::ArtifactregistryV1::ListVersionsResponse::Representation
1684
1786
  command.response_class = Google::Apis::ArtifactregistryV1::ListVersionsResponse
1685
1787
  command.params['parent'] = parent unless parent.nil?
1788
+ command.query['filter'] = filter unless filter.nil?
1686
1789
  command.query['orderBy'] = order_by unless order_by.nil?
1687
1790
  command.query['pageSize'] = page_size unless page_size.nil?
1688
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.63.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-08-04 00:00:00.000000000 Z
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.63.0
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: []