Skip to content

Commit 3b16b64

Browse files
1 parent f784603 commit 3b16b64

File tree

9 files changed

+761
-6
lines changed

9 files changed

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

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ public final class CustomConnector extends com.google.api.client.json.GenericJso
4343
@com.google.api.client.util.Key
4444
private java.util.List<java.lang.String> allConnectorVersions;
4545

46+
/**
47+
* Output only. All marketplace versions.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.util.List<java.lang.String> allMarketplaceVersions;
52+
4653
/**
4754
* Output only. Created time.
4855
* The value may be {@code null}.
@@ -94,6 +101,13 @@ public final class CustomConnector extends com.google.api.client.json.GenericJso
94101
@com.google.api.client.util.Key
95102
private java.lang.String name;
96103

104+
/**
105+
* Output only. Published marketplace versions.
106+
* The value may be {@code null}.
107+
*/
108+
@com.google.api.client.util.Key
109+
private java.util.List<java.lang.String> publishedMarketplaceVersions;
110+
97111
/**
98112
* Output only. Updated time.
99113
* The value may be {@code null}.
@@ -135,6 +149,23 @@ public CustomConnector setAllConnectorVersions(java.util.List<java.lang.String>
135149
return this;
136150
}
137151

152+
/**
153+
* Output only. All marketplace versions.
154+
* @return value or {@code null} for none
155+
*/
156+
public java.util.List<java.lang.String> getAllMarketplaceVersions() {
157+
return allMarketplaceVersions;
158+
}
159+
160+
/**
161+
* Output only. All marketplace versions.
162+
* @param allMarketplaceVersions allMarketplaceVersions or {@code null} for none
163+
*/
164+
public CustomConnector setAllMarketplaceVersions(java.util.List<java.lang.String> allMarketplaceVersions) {
165+
this.allMarketplaceVersions = allMarketplaceVersions;
166+
return this;
167+
}
168+
138169
/**
139170
* Output only. Created time.
140171
* @return value or {@code null} for none
@@ -258,6 +289,23 @@ public CustomConnector setName(java.lang.String name) {
258289
return this;
259290
}
260291

292+
/**
293+
* Output only. Published marketplace versions.
294+
* @return value or {@code null} for none
295+
*/
296+
public java.util.List<java.lang.String> getPublishedMarketplaceVersions() {
297+
return publishedMarketplaceVersions;
298+
}
299+
300+
/**
301+
* Output only. Published marketplace versions.
302+
* @param publishedMarketplaceVersions publishedMarketplaceVersions or {@code null} for none
303+
*/
304+
public CustomConnector setPublishedMarketplaceVersions(java.util.List<java.lang.String> publishedMarketplaceVersions) {
305+
this.publishedMarketplaceVersions = publishedMarketplaceVersions;
306+
return this;
307+
}
308+
261309
/**
262310
* Output only. Updated time.
263311
* @return value or {@code null} for none

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

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,21 @@ public final class CustomConnectorVersion extends com.google.api.client.json.Gen
9090
@com.google.api.client.util.Key
9191
private java.lang.String name;
9292

93+
/**
94+
* Optional. Partner metadata details. This should be populated only when publishing the custom
95+
* connector to partner connector.
96+
* The value may be {@code null}.
97+
*/
98+
@com.google.api.client.util.Key
99+
private PartnerMetadata partnerMetadata;
100+
101+
/**
102+
* Output only. Publish status of a custom connector.
103+
* The value may be {@code null}.
104+
*/
105+
@com.google.api.client.util.Key
106+
private PublishStatus publishStatus;
107+
93108
/**
94109
* Optional. Service account used by runtime plane to access auth config secrets.
95110
* The value may be {@code null}.
@@ -257,6 +272,42 @@ public CustomConnectorVersion setName(java.lang.String name) {
257272
return this;
258273
}
259274

275+
/**
276+
* Optional. Partner metadata details. This should be populated only when publishing the custom
277+
* connector to partner connector.
278+
* @return value or {@code null} for none
279+
*/
280+
public PartnerMetadata getPartnerMetadata() {
281+
return partnerMetadata;
282+
}
283+
284+
/**
285+
* Optional. Partner metadata details. This should be populated only when publishing the custom
286+
* connector to partner connector.
287+
* @param partnerMetadata partnerMetadata or {@code null} for none
288+
*/
289+
public CustomConnectorVersion setPartnerMetadata(PartnerMetadata partnerMetadata) {
290+
this.partnerMetadata = partnerMetadata;
291+
return this;
292+
}
293+
294+
/**
295+
* Output only. Publish status of a custom connector.
296+
* @return value or {@code null} for none
297+
*/
298+
public PublishStatus getPublishStatus() {
299+
return publishStatus;
300+
}
301+
302+
/**
303+
* Output only. Publish status of a custom connector.
304+
* @param publishStatus publishStatus or {@code null} for none
305+
*/
306+
public CustomConnectorVersion setPublishStatus(PublishStatus publishStatus) {
307+
this.publishStatus = publishStatus;
308+
return this;
309+
}
310+
260311
/**
261312
* Optional. Service account used by runtime plane to access auth config secrets.
262313
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ public final class EventingRuntimeData extends com.google.api.client.json.Generi
5959
@com.google.api.client.util.Key
6060
private WebhookData webhookData;
6161

62+
/**
63+
* Output only. Webhook subscriptions.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private WebhookSubscriptions webhookSubscriptions;
68+
6269
/**
6370
* Output only. Events listener endpoint. The value will populated after provisioning the events
6471
* listener.
@@ -131,6 +138,23 @@ public EventingRuntimeData setWebhookData(WebhookData webhookData) {
131138
return this;
132139
}
133140

141+
/**
142+
* Output only. Webhook subscriptions.
143+
* @return value or {@code null} for none
144+
*/
145+
public WebhookSubscriptions getWebhookSubscriptions() {
146+
return webhookSubscriptions;
147+
}
148+
149+
/**
150+
* Output only. Webhook subscriptions.
151+
* @param webhookSubscriptions webhookSubscriptions or {@code null} for none
152+
*/
153+
public EventingRuntimeData setWebhookSubscriptions(WebhookSubscriptions webhookSubscriptions) {
154+
this.webhookSubscriptions = webhookSubscriptions;
155+
return this;
156+
}
157+
134158
@Override
135159
public EventingRuntimeData set(String fieldName, Object value) {
136160
return (EventingRuntimeData) super.set(fieldName, value);

0 commit comments

Comments
 (0)