Skip to content

Commit a817dd0

Browse files
1 parent dcd0b36 commit a817dd0

File tree

5 files changed

+79
-6
lines changed

5 files changed

+79
-6
lines changed

clients/google-api-services-connectors/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-connectors</artifactId>
25-
<version>v1-rev20240811-2.0.0</version>
25+
<version>v1-rev20240822-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-connectors:v1-rev20240811-2.0.0'
38+
implementation 'com.google.apis:google-api-services-connectors:v1-rev20240822-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-connectors/v1/2.0.0/com/google/api/services/connectors/v1/Connectors.java

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6145,6 +6145,29 @@ public Get setName(java.lang.String name) {
61456145
return this;
61466146
}
61476147

6148+
/**
6149+
* Optional. Specifies which fields of the EndpointAttachment are returned in the
6150+
* response. Defaults to `ENDPOINT_ATTACHMENT_VIEW_BASIC` view.
6151+
*/
6152+
@com.google.api.client.util.Key
6153+
private java.lang.String view;
6154+
6155+
/** Optional. Specifies which fields of the EndpointAttachment are returned in the response. Defaults
6156+
to `ENDPOINT_ATTACHMENT_VIEW_BASIC` view.
6157+
*/
6158+
public java.lang.String getView() {
6159+
return view;
6160+
}
6161+
6162+
/**
6163+
* Optional. Specifies which fields of the EndpointAttachment are returned in the
6164+
* response. Defaults to `ENDPOINT_ATTACHMENT_VIEW_BASIC` view.
6165+
*/
6166+
public Get setView(java.lang.String view) {
6167+
this.view = view;
6168+
return this;
6169+
}
6170+
61486171
@Override
61496172
public Get set(String parameterName, Object value) {
61506173
return (Get) super.set(parameterName, value);
@@ -6351,6 +6374,29 @@ public List setPageToken(java.lang.String pageToken) {
63516374
return this;
63526375
}
63536376

6377+
/**
6378+
* Optional. Specifies which fields of the EndpointAttachment are returned in the
6379+
* response. Defaults to `ENDPOINT_ATTACHMENT_VIEW_BASIC` view.
6380+
*/
6381+
@com.google.api.client.util.Key
6382+
private java.lang.String view;
6383+
6384+
/** Optional. Specifies which fields of the EndpointAttachment are returned in the response. Defaults
6385+
to `ENDPOINT_ATTACHMENT_VIEW_BASIC` view.
6386+
*/
6387+
public java.lang.String getView() {
6388+
return view;
6389+
}
6390+
6391+
/**
6392+
* Optional. Specifies which fields of the EndpointAttachment are returned in the
6393+
* response. Defaults to `ENDPOINT_ATTACHMENT_VIEW_BASIC` view.
6394+
*/
6395+
public List setView(java.lang.String view) {
6396+
this.view = view;
6397+
return this;
6398+
}
6399+
63546400
@Override
63556401
public List set(String parameterName, Object value) {
63566402
return (List) super.set(parameterName, value);

clients/google-api-services-connectors/v1/2.0.0/com/google/api/services/connectors/v1/model/EndpointAttachment.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,14 @@ public final class EndpointAttachment extends com.google.api.client.json.Generic
8181
@com.google.api.client.util.Key
8282
private java.lang.String serviceAttachment;
8383

84+
/**
85+
* Output only. The Private Service Connect Connection Endpoint State. This value is only
86+
* available in the Full view.
87+
* The value may be {@code null}.
88+
*/
89+
@com.google.api.client.util.Key
90+
private java.lang.String state;
91+
8492
/**
8593
* Output only. Updated time.
8694
* The value may be {@code null}.
@@ -213,6 +221,25 @@ public EndpointAttachment setServiceAttachment(java.lang.String serviceAttachmen
213221
return this;
214222
}
215223

224+
/**
225+
* Output only. The Private Service Connect Connection Endpoint State. This value is only
226+
* available in the Full view.
227+
* @return value or {@code null} for none
228+
*/
229+
public java.lang.String getState() {
230+
return state;
231+
}
232+
233+
/**
234+
* Output only. The Private Service Connect Connection Endpoint State. This value is only
235+
* available in the Full view.
236+
* @param state state or {@code null} for none
237+
*/
238+
public EndpointAttachment setState(java.lang.String state) {
239+
this.state = state;
240+
return this;
241+
}
242+
216243
/**
217244
* Output only. Updated time.
218245
* @return value or {@code null} for none

clients/google-api-services-connectors/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-connectors</artifactId>
11-
<version>v1-rev20240811-2.0.0</version>
12-
<name>Connectors API v1-rev20240811-2.0.0</name>
11+
<version>v1-rev20240822-2.0.0</version>
12+
<name>Connectors API v1-rev20240822-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-connectors/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-connectors</artifactId>
25-
<version>v1-rev20240811-2.0.0</version>
25+
<version>v1-rev20240822-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-connectors:v1-rev20240811-2.0.0'
38+
implementation 'com.google.apis:google-api-services-connectors:v1-rev20240822-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)