Skip to content

Commit 29cd667

Browse files
1 parent bdd2b3d commit 29cd667

11 files changed

Lines changed: 1934 additions & 9 deletions

File tree

clients/google-api-services-agentregistry/v1alpha/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-agentregistry</artifactId>
25-
<version>v1alpha-rev20260406-2.0.0</version>
25+
<version>v1alpha-rev20260408-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-agentregistry:v1alpha-rev20260406-2.0.0'
38+
implementation 'com.google.apis:google-api-services-agentregistry:v1alpha-rev20260408-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-agentregistry/v1alpha/2.0.0/com/google/api/services/agentregistry/v1alpha/AgentRegistry.java

Lines changed: 1226 additions & 0 deletions
Large diffs are not rendered by default.

clients/google-api-services-agentregistry/v1alpha/2.0.0/com/google/api/services/agentregistry/v1alpha/model/Annotations.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public final class Annotations extends com.google.api.client.json.GenericJson {
4141
/**
4242
* Output only. If true, calling the tool repeatedly with the same arguments will have no
4343
* additional effect on its environment. NOTE: This property is meaningful only when
44-
* `read_only_hint == false. Default: false
44+
* `read_only_hint == false` Default: false
4545
* The value may be {@code null}.
4646
*/
4747
@com.google.api.client.util.Key
@@ -94,7 +94,7 @@ public Annotations setDestructiveHint(java.lang.Boolean destructiveHint) {
9494
/**
9595
* Output only. If true, calling the tool repeatedly with the same arguments will have no
9696
* additional effect on its environment. NOTE: This property is meaningful only when
97-
* `read_only_hint == false. Default: false
97+
* `read_only_hint == false` Default: false
9898
* @return value or {@code null} for none
9999
*/
100100
public java.lang.Boolean getIdempotentHint() {
@@ -104,7 +104,7 @@ public java.lang.Boolean getIdempotentHint() {
104104
/**
105105
* Output only. If true, calling the tool repeatedly with the same arguments will have no
106106
* additional effect on its environment. NOTE: This property is meaningful only when
107-
* `read_only_hint == false. Default: false
107+
* `read_only_hint == false` Default: false
108108
* @param idempotentHint idempotentHint or {@code null} for none
109109
*/
110110
public Annotations setIdempotentHint(java.lang.Boolean idempotentHint) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.agentregistry.v1alpha.model;
18+
19+
/**
20+
* The AuthProvider of the Binding.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Agent Registry API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class AuthProviderBinding extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. The resource name of the target AuthProvider. Format: *
34+
* `projects/{project}/locations/{location}/authProviders/{auth_provider}`
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String authProvider;
39+
40+
/**
41+
* Optional. The continue URI of the AuthProvider. The URI is used to reauthenticate the user and
42+
* finalize the managed OAuth flow.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String continueUri;
47+
48+
/**
49+
* Optional. The list of OAuth2 scopes of the AuthProvider.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> scopes;
54+
55+
/**
56+
* Required. The resource name of the target AuthProvider. Format: *
57+
* `projects/{project}/locations/{location}/authProviders/{auth_provider}`
58+
* @return value or {@code null} for none
59+
*/
60+
public java.lang.String getAuthProvider() {
61+
return authProvider;
62+
}
63+
64+
/**
65+
* Required. The resource name of the target AuthProvider. Format: *
66+
* `projects/{project}/locations/{location}/authProviders/{auth_provider}`
67+
* @param authProvider authProvider or {@code null} for none
68+
*/
69+
public AuthProviderBinding setAuthProvider(java.lang.String authProvider) {
70+
this.authProvider = authProvider;
71+
return this;
72+
}
73+
74+
/**
75+
* Optional. The continue URI of the AuthProvider. The URI is used to reauthenticate the user and
76+
* finalize the managed OAuth flow.
77+
* @return value or {@code null} for none
78+
*/
79+
public java.lang.String getContinueUri() {
80+
return continueUri;
81+
}
82+
83+
/**
84+
* Optional. The continue URI of the AuthProvider. The URI is used to reauthenticate the user and
85+
* finalize the managed OAuth flow.
86+
* @param continueUri continueUri or {@code null} for none
87+
*/
88+
public AuthProviderBinding setContinueUri(java.lang.String continueUri) {
89+
this.continueUri = continueUri;
90+
return this;
91+
}
92+
93+
/**
94+
* Optional. The list of OAuth2 scopes of the AuthProvider.
95+
* @return value or {@code null} for none
96+
*/
97+
public java.util.List<java.lang.String> getScopes() {
98+
return scopes;
99+
}
100+
101+
/**
102+
* Optional. The list of OAuth2 scopes of the AuthProvider.
103+
* @param scopes scopes or {@code null} for none
104+
*/
105+
public AuthProviderBinding setScopes(java.util.List<java.lang.String> scopes) {
106+
this.scopes = scopes;
107+
return this;
108+
}
109+
110+
@Override
111+
public AuthProviderBinding set(String fieldName, Object value) {
112+
return (AuthProviderBinding) super.set(fieldName, value);
113+
}
114+
115+
@Override
116+
public AuthProviderBinding clone() {
117+
return (AuthProviderBinding) super.clone();
118+
}
119+
120+
}

0 commit comments

Comments
 (0)