You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-artifactregistry/v1/2.0.0/com/google/api/services/artifactregistry/v1/model/Repository.java
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -130,6 +130,13 @@ public final class Repository extends com.google.api.client.json.GenericJson {
130
130
@com.google.api.client.util.Key
131
131
privatejava.lang.Stringname;
132
132
133
+
/**
134
+
* Output only. The repository endpoint, for example: `us-docker.pkg.dev/my-proj/my-repo`.
135
+
* The value may be {@code null}.
136
+
*/
137
+
@com.google.api.client.util.Key
138
+
privatejava.lang.StringregistryUri;
139
+
133
140
/**
134
141
* Configuration specific for a Remote Repository.
135
142
* The value may be {@code null}.
@@ -404,6 +411,23 @@ public Repository setName(java.lang.String name) {
404
411
returnthis;
405
412
}
406
413
414
+
/**
415
+
* Output only. The repository endpoint, for example: `us-docker.pkg.dev/my-proj/my-repo`.
416
+
* @return value or {@code null} for none
417
+
*/
418
+
publicjava.lang.StringgetRegistryUri() {
419
+
returnregistryUri;
420
+
}
421
+
422
+
/**
423
+
* Output only. The repository endpoint, for example: `us-docker.pkg.dev/my-proj/my-repo`.
424
+
* @param registryUri registryUri or {@code null} for none
0 commit comments