Skip to content

Commit c9a4408

Browse files
1 parent d16fdb3 commit c9a4408

File tree

4 files changed

+115
-34
lines changed

4 files changed

+115
-34
lines changed

clients/google-api-services-artifactregistry/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-artifactregistry</artifactId>
25-
<version>v1-rev20240724-2.0.0</version>
25+
<version>v1-rev20240809-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20240724-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20240809-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-artifactregistry/v1/2.0.0/com/google/api/services/artifactregistry/v1/ArtifactRegistry.java

Lines changed: 109 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -3831,35 +3831,87 @@ public List setParent(java.lang.String parent) {
38313831

38323832
/**
38333833
* An expression for filtering the results of the request. Filter rules are case
3834-
* insensitive. The fields eligible for filtering are: * `name` * `owner` An example of
3835-
* using a filter: * `name="projects/p1/locations/us-
3836-
* central1/repositories/repo1/files/a/b"` --> Files with an ID starting with "a/b/". *
3837-
* `owner="projects/p1/locations/us-
3838-
* central1/repositories/repo1/packages/pkg1/versions/1.0"` --> Files owned by the
3839-
* version `1.0` in package `pkg1`.
3834+
* insensitive. The fields eligible for filtering are: * `name` * `owner` *
3835+
* `annotations` Examples of using a filter: To filter the results of your request to
3836+
* files with the name "my_file.txt" in project my-project in the us-central region, in
3837+
* repository my-repo, append the following filter expression to your request: *
3838+
* `name="projects/my-project/locations/us-central1/repositories/my-repo/files/my-
3839+
* file.txt"` You can also use wildcards to match any number of characters before or
3840+
* after the value: * `name="projects/my-project/locations/us-central1/repositories/my-
3841+
* repo/files/my-*"` * `name="projects/my-project/locations/us-central1/repositories/my-
3842+
* repo/filesfile.txt"` * `name="projects/my-project/locations/us-
3843+
* central1/repositories/my-repo/filesfile*"` To filter the results of your request to
3844+
* files owned by the version `1.0` in package `pkg1`, append the following filter
3845+
* expression to your request: * `owner="projects/my-project/locations/us-
3846+
* central1/repositories/my-repo/packages/my-package/versions/1.0"` To filter the
3847+
* results of your request to files with the annotation key-value pair
3848+
* [`external_link`:`external_link_value`], append the following filter expression to
3849+
* your request: * "annotations.external_link:external_link_value" To filter just for a
3850+
* specific annotation key `external_link`, append the following filter expression to
3851+
* your request: * "annotations.external_link" If the annotation key or value contains
3852+
* special characters, you can escape them by surrounding the value with backticks. For
3853+
* example, to filter the results of your request to files with the annotation key-value
3854+
* pair [`external.link`:`https://example.com/my-file`], append the following filter
3855+
* expression to your request: * "annotations.`external.link`:`https://example.com/my-
3856+
* file`" You can also filter with annotations with a wildcard to match any number of
3857+
* characters before or after the value: * "annotations.*_link:`*example.com*`"
38403858
*/
38413859
@com.google.api.client.util.Key
38423860
private java.lang.String filter;
38433861

38443862
/** An expression for filtering the results of the request. Filter rules are case insensitive. The
3845-
fields eligible for filtering are: * `name` * `owner` An example of using a filter: *
3846-
`name="projects/p1/locations/us-central1/repositories/repo1/files/a/b"` --> Files with an ID
3847-
starting with "a/b/". * `owner="projects/p1/locations/us-
3848-
central1/repositories/repo1/packages/pkg1/versions/1.0"` --> Files owned by the version `1.0` in
3849-
package `pkg1`.
3863+
fields eligible for filtering are: * `name` * `owner` * `annotations` Examples of using a filter:
3864+
To filter the results of your request to files with the name "my_file.txt" in project my-project in
3865+
the us-central region, in repository my-repo, append the following filter expression to your
3866+
request: * `name="projects/my-project/locations/us-central1/repositories/my-repo/files/my-
3867+
file.txt"` You can also use wildcards to match any number of characters before or after the value:
3868+
* `name="projects/my-project/locations/us-central1/repositories/my-repo/files/my-*"` *
3869+
`name="projects/my-project/locations/us-central1/repositories/my-repo/filesfile.txt"` *
3870+
`name="projects/my-project/locations/us-central1/repositories/my-repo/filesfile*"` To filter the
3871+
results of your request to files owned by the version `1.0` in package `pkg1`, append the following
3872+
filter expression to your request: * `owner="projects/my-project/locations/us-
3873+
central1/repositories/my-repo/packages/my-package/versions/1.0"` To filter the results of your
3874+
request to files with the annotation key-value pair [`external_link`:`external_link_value`], append
3875+
the following filter expression to your request: * "annotations.external_link:external_link_value"
3876+
To filter just for a specific annotation key `external_link`, append the following filter
3877+
expression to your request: * "annotations.external_link" If the annotation key or value contains
3878+
special characters, you can escape them by surrounding the value with backticks. For example, to
3879+
filter the results of your request to files with the annotation key-value pair
3880+
[`external.link`:`https://example.com/my-file`], append the following filter expression to your
3881+
request: * "annotations.`external.link`:`https://example.com/my-file`" You can also filter with
3882+
annotations with a wildcard to match any number of characters before or after the value: *
3883+
"annotations.*_link:`*example.com*`"
38503884
*/
38513885
public java.lang.String getFilter() {
38523886
return filter;
38533887
}
38543888

38553889
/**
38563890
* An expression for filtering the results of the request. Filter rules are case
3857-
* insensitive. The fields eligible for filtering are: * `name` * `owner` An example of
3858-
* using a filter: * `name="projects/p1/locations/us-
3859-
* central1/repositories/repo1/files/a/b"` --> Files with an ID starting with "a/b/". *
3860-
* `owner="projects/p1/locations/us-
3861-
* central1/repositories/repo1/packages/pkg1/versions/1.0"` --> Files owned by the
3862-
* version `1.0` in package `pkg1`.
3891+
* insensitive. The fields eligible for filtering are: * `name` * `owner` *
3892+
* `annotations` Examples of using a filter: To filter the results of your request to
3893+
* files with the name "my_file.txt" in project my-project in the us-central region, in
3894+
* repository my-repo, append the following filter expression to your request: *
3895+
* `name="projects/my-project/locations/us-central1/repositories/my-repo/files/my-
3896+
* file.txt"` You can also use wildcards to match any number of characters before or
3897+
* after the value: * `name="projects/my-project/locations/us-central1/repositories/my-
3898+
* repo/files/my-*"` * `name="projects/my-project/locations/us-central1/repositories/my-
3899+
* repo/filesfile.txt"` * `name="projects/my-project/locations/us-
3900+
* central1/repositories/my-repo/filesfile*"` To filter the results of your request to
3901+
* files owned by the version `1.0` in package `pkg1`, append the following filter
3902+
* expression to your request: * `owner="projects/my-project/locations/us-
3903+
* central1/repositories/my-repo/packages/my-package/versions/1.0"` To filter the
3904+
* results of your request to files with the annotation key-value pair
3905+
* [`external_link`:`external_link_value`], append the following filter expression to
3906+
* your request: * "annotations.external_link:external_link_value" To filter just for a
3907+
* specific annotation key `external_link`, append the following filter expression to
3908+
* your request: * "annotations.external_link" If the annotation key or value contains
3909+
* special characters, you can escape them by surrounding the value with backticks. For
3910+
* example, to filter the results of your request to files with the annotation key-value
3911+
* pair [`external.link`:`https://example.com/my-file`], append the following filter
3912+
* expression to your request: * "annotations.`external.link`:`https://example.com/my-
3913+
* file`" You can also filter with annotations with a wildcard to match any number of
3914+
* characters before or after the value: * "annotations.*_link:`*example.com*`"
38633915
*/
38643916
public List setFilter(java.lang.String filter) {
38653917
this.filter = filter;
@@ -6769,29 +6821,58 @@ public List setParent(java.lang.String parent) {
67696821

67706822
/**
67716823
* An expression for filtering the results of the request. Filter rules are case
6772-
* insensitive. The fields eligible for filtering are: * `version` An example of using
6773-
* a filter: * `version="projects/p1/locations/us-
6774-
* central1/repositories/repo1/packages/pkg1/versions/1.0"` --> Tags that are applied
6775-
* to the version `1.0` in package `pkg1`.
6824+
* insensitive. The fields eligible for filtering are: * `name` * `version` Examples
6825+
* of using a filter: To filter the results of your request to tags with the name "my-
6826+
* tag" in package "my-package" in repository "my-repo" in project "my-project" in the
6827+
* us-central region, append the following filter expression to your request: *
6828+
* `name="projects/my-project/locations/us-central1/repositories/my-repo/packages/my-
6829+
* package/tags/my-tag"` You can also use wildcards to match any number of characters
6830+
* before or after the value: * `name="projects/my-project/locations/us-
6831+
* central1/repositories/my-repo/packages/my-package/tags/my*"` * `name="projects/my-
6832+
* project/locations/us-central1/repositories/my-repo/packages/my-package/tagstag"` *
6833+
* `name="projects/my-project/locations/us-central1/repositories/my-repo/packages/my-
6834+
* package/tagstag*"` To filter the results of your request to tags applied to the
6835+
* version `1.0` in package `my-package`, append the following filter expression to
6836+
* your request: * `version="projects/my-project/locations/us-
6837+
* central1/repositories/my-repo/packages/my-package/versions/1.0"`
67766838
*/
67776839
@com.google.api.client.util.Key
67786840
private java.lang.String filter;
67796841

67806842
/** An expression for filtering the results of the request. Filter rules are case insensitive. The
6781-
fields eligible for filtering are: * `version` An example of using a filter: *
6782-
`version="projects/p1/locations/us-central1/repositories/repo1/packages/pkg1/versions/1.0"` -->
6783-
Tags that are applied to the version `1.0` in package `pkg1`.
6843+
fields eligible for filtering are: * `name` * `version` Examples of using a filter: To filter the
6844+
results of your request to tags with the name "my-tag" in package "my-package" in repository "my-
6845+
repo" in project "my-project" in the us-central region, append the following filter expression to
6846+
your request: * `name="projects/my-project/locations/us-central1/repositories/my-repo/packages/my-
6847+
package/tags/my-tag"` You can also use wildcards to match any number of characters before or after
6848+
the value: * `name="projects/my-project/locations/us-central1/repositories/my-repo/packages/my-
6849+
package/tags/my*"` * `name="projects/my-project/locations/us-central1/repositories/my-
6850+
repo/packages/my-package/tagstag"` * `name="projects/my-project/locations/us-
6851+
central1/repositories/my-repo/packages/my-package/tagstag*"` To filter the results of your request
6852+
to tags applied to the version `1.0` in package `my-package`, append the following filter
6853+
expression to your request: * `version="projects/my-project/locations/us-central1/repositories/my-
6854+
repo/packages/my-package/versions/1.0"`
67846855
*/
67856856
public java.lang.String getFilter() {
67866857
return filter;
67876858
}
67886859

67896860
/**
67906861
* An expression for filtering the results of the request. Filter rules are case
6791-
* insensitive. The fields eligible for filtering are: * `version` An example of using
6792-
* a filter: * `version="projects/p1/locations/us-
6793-
* central1/repositories/repo1/packages/pkg1/versions/1.0"` --> Tags that are applied
6794-
* to the version `1.0` in package `pkg1`.
6862+
* insensitive. The fields eligible for filtering are: * `name` * `version` Examples
6863+
* of using a filter: To filter the results of your request to tags with the name "my-
6864+
* tag" in package "my-package" in repository "my-repo" in project "my-project" in the
6865+
* us-central region, append the following filter expression to your request: *
6866+
* `name="projects/my-project/locations/us-central1/repositories/my-repo/packages/my-
6867+
* package/tags/my-tag"` You can also use wildcards to match any number of characters
6868+
* before or after the value: * `name="projects/my-project/locations/us-
6869+
* central1/repositories/my-repo/packages/my-package/tags/my*"` * `name="projects/my-
6870+
* project/locations/us-central1/repositories/my-repo/packages/my-package/tagstag"` *
6871+
* `name="projects/my-project/locations/us-central1/repositories/my-repo/packages/my-
6872+
* package/tagstag*"` To filter the results of your request to tags applied to the
6873+
* version `1.0` in package `my-package`, append the following filter expression to
6874+
* your request: * `version="projects/my-project/locations/us-
6875+
* central1/repositories/my-repo/packages/my-package/versions/1.0"`
67956876
*/
67966877
public List setFilter(java.lang.String filter) {
67976878
this.filter = filter;

clients/google-api-services-artifactregistry/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-artifactregistry</artifactId>
11-
<version>v1-rev20240724-2.0.0</version>
12-
<name>Artifact Registry API v1-rev20240724-2.0.0</name>
11+
<version>v1-rev20240809-2.0.0</version>
12+
<name>Artifact Registry API v1-rev20240809-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-artifactregistry/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-artifactregistry</artifactId>
25-
<version>v1-rev20240724-2.0.0</version>
25+
<version>v1-rev20240809-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20240724-2.0.0'
38+
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20240809-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)