Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-artifactregistry</artifactId>
<version>v1-rev20260320-2.0.0</version>
<version>v1-rev20260522-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20260320-2.0.0'
implementation 'com.google.apis:google-api-services-artifactregistry:v1-rev20260522-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.artifactregistry.v1.model;

/**
* The request for checking an artifact for streaming.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Artifact Registry API. For a detailed explanation
* see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class CheckPrewarmedArtifactRequest extends com.google.api.client.json.GenericJson {

/**
* Optional. The location of the prewarmed artifact. multi-region is not supported for this field.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String streamLocation;

/**
* Optional. The artifact tag Format:projects/{project}/locations/{location}/repositories/{reposit
* ory}/packages/{package}/tags/{tag}
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String tag;

/**
* Optional. The artifact version Format: projects/{project}/locations/{location}/repositories/{re
* pository}/packages/{package}/versions/{version}
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String version;

/**
* Optional. The location of the prewarmed artifact. multi-region is not supported for this field.
* @return value or {@code null} for none
*/
public java.lang.String getStreamLocation() {
return streamLocation;
}

/**
* Optional. The location of the prewarmed artifact. multi-region is not supported for this field.
* @param streamLocation streamLocation or {@code null} for none
*/
public CheckPrewarmedArtifactRequest setStreamLocation(java.lang.String streamLocation) {
this.streamLocation = streamLocation;
return this;
}

/**
* Optional. The artifact tag Format:projects/{project}/locations/{location}/repositories/{reposit
* ory}/packages/{package}/tags/{tag}
* @return value or {@code null} for none
*/
public java.lang.String getTag() {
return tag;
}

/**
* Optional. The artifact tag Format:projects/{project}/locations/{location}/repositories/{reposit
* ory}/packages/{package}/tags/{tag}
* @param tag tag or {@code null} for none
*/
public CheckPrewarmedArtifactRequest setTag(java.lang.String tag) {
this.tag = tag;
return this;
}

/**
* Optional. The artifact version Format: projects/{project}/locations/{location}/repositories/{re
* pository}/packages/{package}/versions/{version}
* @return value or {@code null} for none
*/
public java.lang.String getVersion() {
return version;
}

/**
* Optional. The artifact version Format: projects/{project}/locations/{location}/repositories/{re
* pository}/packages/{package}/versions/{version}
* @param version version or {@code null} for none
*/
public CheckPrewarmedArtifactRequest setVersion(java.lang.String version) {
this.version = version;
return this;
}

@Override
public CheckPrewarmedArtifactRequest set(String fieldName, Object value) {
return (CheckPrewarmedArtifactRequest) super.set(fieldName, value);
}

@Override
public CheckPrewarmedArtifactRequest clone() {
return (CheckPrewarmedArtifactRequest) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.artifactregistry.v1.model;

/**
* The response for checking an artifact for streaming.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Artifact Registry API. For a detailed explanation
* see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class CheckPrewarmedArtifactResponse extends com.google.api.client.json.GenericJson {

/**
* The prewarmed artifact that was checked.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private PrewarmedArtifact prewarmedArtifact;

/**
* The prewarmed artifact that was checked.
* @return value or {@code null} for none
*/
public PrewarmedArtifact getPrewarmedArtifact() {
return prewarmedArtifact;
}

/**
* The prewarmed artifact that was checked.
* @param prewarmedArtifact prewarmedArtifact or {@code null} for none
*/
public CheckPrewarmedArtifactResponse setPrewarmedArtifact(PrewarmedArtifact prewarmedArtifact) {
this.prewarmedArtifact = prewarmedArtifact;
return this;
}

@Override
public CheckPrewarmedArtifactResponse set(String fieldName, Object value) {
return (CheckPrewarmedArtifactResponse) super.set(fieldName, value);
}

@Override
public CheckPrewarmedArtifactResponse clone() {
return (CheckPrewarmedArtifactResponse) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.artifactregistry.v1.model;

/**
* The response for listing artifacts for streaming.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Artifact Registry API. For a detailed explanation
* see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class ListPrewarmedArtifactsResponse extends com.google.api.client.json.GenericJson {

/**
* The token to retrieve the next page of prewarmed artifacts, or empty if there are no more
* streamings to return.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String nextPageToken;

/**
* The prewarmed artifacts.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<PrewarmedArtifact> prewarmedArtifacts;

/**
* The token to retrieve the next page of prewarmed artifacts, or empty if there are no more
* streamings to return.
* @return value or {@code null} for none
*/
public java.lang.String getNextPageToken() {
return nextPageToken;
}

/**
* The token to retrieve the next page of prewarmed artifacts, or empty if there are no more
* streamings to return.
* @param nextPageToken nextPageToken or {@code null} for none
*/
public ListPrewarmedArtifactsResponse setNextPageToken(java.lang.String nextPageToken) {
this.nextPageToken = nextPageToken;
return this;
}

/**
* The prewarmed artifacts.
* @return value or {@code null} for none
*/
public java.util.List<PrewarmedArtifact> getPrewarmedArtifacts() {
return prewarmedArtifacts;
}

/**
* The prewarmed artifacts.
* @param prewarmedArtifacts prewarmedArtifacts or {@code null} for none
*/
public ListPrewarmedArtifactsResponse setPrewarmedArtifacts(java.util.List<PrewarmedArtifact> prewarmedArtifacts) {
this.prewarmedArtifacts = prewarmedArtifacts;
return this;
}

@Override
public ListPrewarmedArtifactsResponse set(String fieldName, Object value) {
return (ListPrewarmedArtifactsResponse) super.set(fieldName, value);
}

@Override
public ListPrewarmedArtifactsResponse clone() {
return (ListPrewarmedArtifactsResponse) super.clone();
}

}
Loading