Skip to content

Commit 0b0e12e

Browse files
chore: regenerate integrations client
1 parent 2486fb8 commit 0b0e12e

File tree

98 files changed

+22044
-9926
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+22044
-9926
lines changed

clients/google-api-services-integrations/v1/2.0.0/README.md

+2-2
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-integrations</artifactId>
25-
<version>v1-rev20240421-2.0.0</version>
25+
<version>v1-rev20250427-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-integrations:v1-rev20240421-2.0.0'
38+
implementation 'com.google.apis:google-api-services-integrations:v1-rev20250427-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-integrations/v1/2.0.0/com/google/api/services/integrations/v1/Integrations.java

+14,737-9,404
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
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.integrations.v1.model;
18+
19+
/**
20+
* Cloud Logging details, selected by the user for the integration version (workflow). This message
21+
* field will be also used in ExecutionInfo, to indicate the CloudLoggingDetails config at the time
22+
* of workflow (integration version) execution, since this field value can be changed for an
23+
* unpublished workflow.
24+
*
25+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
26+
* transmitted over HTTP when working with the Application Integration API. For a detailed
27+
* explanation see:
28+
* <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>
29+
* </p>
30+
*
31+
* @author Google, Inc.
32+
*/
33+
@SuppressWarnings("javadoc")
34+
public final class EnterpriseCrmEventbusProtoCloudLoggingDetails extends com.google.api.client.json.GenericJson {
35+
36+
/**
37+
* Severity selected by the customer for the logs to be sent to Cloud Logging, for the integration
38+
* version getting executed.
39+
* The value may be {@code null}.
40+
*/
41+
@com.google.api.client.util.Key
42+
private java.lang.String cloudLoggingSeverity;
43+
44+
/**
45+
* Status of whether Cloud Logging is enabled or not for the integration version getting executed.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.lang.Boolean enableCloudLogging;
50+
51+
/**
52+
* Severity selected by the customer for the logs to be sent to Cloud Logging, for the integration
53+
* version getting executed.
54+
* @return value or {@code null} for none
55+
*/
56+
public java.lang.String getCloudLoggingSeverity() {
57+
return cloudLoggingSeverity;
58+
}
59+
60+
/**
61+
* Severity selected by the customer for the logs to be sent to Cloud Logging, for the integration
62+
* version getting executed.
63+
* @param cloudLoggingSeverity cloudLoggingSeverity or {@code null} for none
64+
*/
65+
public EnterpriseCrmEventbusProtoCloudLoggingDetails setCloudLoggingSeverity(java.lang.String cloudLoggingSeverity) {
66+
this.cloudLoggingSeverity = cloudLoggingSeverity;
67+
return this;
68+
}
69+
70+
/**
71+
* Status of whether Cloud Logging is enabled or not for the integration version getting executed.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.lang.Boolean getEnableCloudLogging() {
75+
return enableCloudLogging;
76+
}
77+
78+
/**
79+
* Status of whether Cloud Logging is enabled or not for the integration version getting executed.
80+
* @param enableCloudLogging enableCloudLogging or {@code null} for none
81+
*/
82+
public EnterpriseCrmEventbusProtoCloudLoggingDetails setEnableCloudLogging(java.lang.Boolean enableCloudLogging) {
83+
this.enableCloudLogging = enableCloudLogging;
84+
return this;
85+
}
86+
87+
@Override
88+
public EnterpriseCrmEventbusProtoCloudLoggingDetails set(String fieldName, Object value) {
89+
return (EnterpriseCrmEventbusProtoCloudLoggingDetails) super.set(fieldName, value);
90+
}
91+
92+
@Override
93+
public EnterpriseCrmEventbusProtoCloudLoggingDetails clone() {
94+
return (EnterpriseCrmEventbusProtoCloudLoggingDetails) super.clone();
95+
}
96+
97+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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.integrations.v1.model;
18+
19+
/**
20+
* Model definition for EnterpriseCrmEventbusProtoConditionalFailurePolicies.
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 Application Integration API. For a detailed
24+
* explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class EnterpriseCrmEventbusProtoConditionalFailurePolicies extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The default failure policy to be applied if no conditional failure policy matches
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private EnterpriseCrmEventbusProtoFailurePolicy defaultFailurePolicy;
39+
40+
/**
41+
* The list of failure policies that will be applied to the task in order.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<EnterpriseCrmEventbusProtoFailurePolicy> failurePolicies;
46+
47+
/**
48+
* The default failure policy to be applied if no conditional failure policy matches
49+
* @return value or {@code null} for none
50+
*/
51+
public EnterpriseCrmEventbusProtoFailurePolicy getDefaultFailurePolicy() {
52+
return defaultFailurePolicy;
53+
}
54+
55+
/**
56+
* The default failure policy to be applied if no conditional failure policy matches
57+
* @param defaultFailurePolicy defaultFailurePolicy or {@code null} for none
58+
*/
59+
public EnterpriseCrmEventbusProtoConditionalFailurePolicies setDefaultFailurePolicy(EnterpriseCrmEventbusProtoFailurePolicy defaultFailurePolicy) {
60+
this.defaultFailurePolicy = defaultFailurePolicy;
61+
return this;
62+
}
63+
64+
/**
65+
* The list of failure policies that will be applied to the task in order.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.util.List<EnterpriseCrmEventbusProtoFailurePolicy> getFailurePolicies() {
69+
return failurePolicies;
70+
}
71+
72+
/**
73+
* The list of failure policies that will be applied to the task in order.
74+
* @param failurePolicies failurePolicies or {@code null} for none
75+
*/
76+
public EnterpriseCrmEventbusProtoConditionalFailurePolicies setFailurePolicies(java.util.List<EnterpriseCrmEventbusProtoFailurePolicy> failurePolicies) {
77+
this.failurePolicies = failurePolicies;
78+
return this;
79+
}
80+
81+
@Override
82+
public EnterpriseCrmEventbusProtoConditionalFailurePolicies set(String fieldName, Object value) {
83+
return (EnterpriseCrmEventbusProtoConditionalFailurePolicies) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public EnterpriseCrmEventbusProtoConditionalFailurePolicies clone() {
88+
return (EnterpriseCrmEventbusProtoConditionalFailurePolicies) super.clone();
89+
}
90+
91+
}

clients/google-api-services-integrations/v1/2.0.0/com/google/api/services/integrations/v1/model/EnterpriseCrmEventbusProtoConnectorsConnection.java

+24
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ public final class EnterpriseCrmEventbusProtoConnectorsConnection extends com.go
4545
@com.google.api.client.util.Key
4646
private java.lang.String connectorVersion;
4747

48+
/**
49+
* The name of the Hostname of the Service Directory service with TLS if used.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String host;
54+
4855
/**
4956
* Service name Format:
5057
* projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}
@@ -89,6 +96,23 @@ public EnterpriseCrmEventbusProtoConnectorsConnection setConnectorVersion(java.l
8996
return this;
9097
}
9198

99+
/**
100+
* The name of the Hostname of the Service Directory service with TLS if used.
101+
* @return value or {@code null} for none
102+
*/
103+
public java.lang.String getHost() {
104+
return host;
105+
}
106+
107+
/**
108+
* The name of the Hostname of the Service Directory service with TLS if used.
109+
* @param host host or {@code null} for none
110+
*/
111+
public EnterpriseCrmEventbusProtoConnectorsConnection setHost(java.lang.String host) {
112+
this.host = host;
113+
return this;
114+
}
115+
92116
/**
93117
* Service name Format:
94118
* projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}

clients/google-api-services-integrations/v1/2.0.0/com/google/api/services/integrations/v1/model/EnterpriseCrmEventbusProtoEventExecutionDetails.java

+25-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* Contains the details of the execution info of this event: this includes the tasks execution
21-
* details plus the event execution statistics. Next available id: 11
21+
* details plus the event execution statistics. Next available id: 12
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2424
* transmitted over HTTP when working with the Application Integration API. For a detailed
@@ -31,6 +31,13 @@
3131
@SuppressWarnings("javadoc")
3232
public final class EnterpriseCrmEventbusProtoEventExecutionDetails extends com.google.api.client.json.GenericJson {
3333

34+
/**
35+
* If the execution is manually canceled, this field will contain the reason for cancellation.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String cancelReason;
40+
3441
/**
3542
* The value may be {@code null}.
3643
*/
@@ -92,6 +99,23 @@ public final class EnterpriseCrmEventbusProtoEventExecutionDetails extends com.g
9299
@com.google.api.client.util.Key
93100
private java.lang.Integer ryeLockUnheldCount;
94101

102+
/**
103+
* If the execution is manually canceled, this field will contain the reason for cancellation.
104+
* @return value or {@code null} for none
105+
*/
106+
public java.lang.String getCancelReason() {
107+
return cancelReason;
108+
}
109+
110+
/**
111+
* If the execution is manually canceled, this field will contain the reason for cancellation.
112+
* @param cancelReason cancelReason or {@code null} for none
113+
*/
114+
public EnterpriseCrmEventbusProtoEventExecutionDetails setCancelReason(java.lang.String cancelReason) {
115+
this.cancelReason = cancelReason;
116+
return this;
117+
}
118+
95119
/**
96120
* @return value or {@code null} for none
97121
*/

clients/google-api-services-integrations/v1/2.0.0/com/google/api/services/integrations/v1/model/EnterpriseCrmEventbusProtoEventExecutionSnapshot.java

+49-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.integrations.v1.model;
1818

1919
/**
20-
* Contains the snapshot of the event execution for a given checkpoint. Next available id: 13
20+
* Contains the snapshot of the event execution for a given checkpoint. Next available id: 15
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Application Integration API. For a detailed
@@ -37,6 +37,13 @@ public final class EnterpriseCrmEventbusProtoEventExecutionSnapshot extends com.
3737
@com.google.api.client.util.Key
3838
private java.lang.String checkpointTaskNumber;
3939

40+
/**
41+
* Client that the execution snapshot is associated to.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String clientId;
46+
4047
/**
4148
* All of the computed conditions that been calculated.
4249
* The value may be {@code null}.
@@ -112,6 +119,13 @@ public final class EnterpriseCrmEventbusProtoEventExecutionSnapshot extends com.
112119
@com.google.api.client.util.Key
113120
private java.lang.String taskName;
114121

122+
/**
123+
* Name of the workflow this event execution snapshot belongs to.
124+
* The value may be {@code null}.
125+
*/
126+
@com.google.api.client.util.Key
127+
private java.lang.String workflowName;
128+
115129
/**
116130
* Indicates "right after which checkpoint task's execution" this snapshot is taken.
117131
* @return value or {@code null} for none
@@ -129,6 +143,23 @@ public EnterpriseCrmEventbusProtoEventExecutionSnapshot setCheckpointTaskNumber(
129143
return this;
130144
}
131145

146+
/**
147+
* Client that the execution snapshot is associated to.
148+
* @return value or {@code null} for none
149+
*/
150+
public java.lang.String getClientId() {
151+
return clientId;
152+
}
153+
154+
/**
155+
* Client that the execution snapshot is associated to.
156+
* @param clientId clientId or {@code null} for none
157+
*/
158+
public EnterpriseCrmEventbusProtoEventExecutionSnapshot setClientId(java.lang.String clientId) {
159+
this.clientId = clientId;
160+
return this;
161+
}
162+
132163
/**
133164
* All of the computed conditions that been calculated.
134165
* @return value or {@code null} for none
@@ -297,6 +328,23 @@ public EnterpriseCrmEventbusProtoEventExecutionSnapshot setTaskName(java.lang.St
297328
return this;
298329
}
299330

331+
/**
332+
* Name of the workflow this event execution snapshot belongs to.
333+
* @return value or {@code null} for none
334+
*/
335+
public java.lang.String getWorkflowName() {
336+
return workflowName;
337+
}
338+
339+
/**
340+
* Name of the workflow this event execution snapshot belongs to.
341+
* @param workflowName workflowName or {@code null} for none
342+
*/
343+
public EnterpriseCrmEventbusProtoEventExecutionSnapshot setWorkflowName(java.lang.String workflowName) {
344+
this.workflowName = workflowName;
345+
return this;
346+
}
347+
300348
@Override
301349
public EnterpriseCrmEventbusProtoEventExecutionSnapshot set(String fieldName, Object value) {
302350
return (EnterpriseCrmEventbusProtoEventExecutionSnapshot) super.set(fieldName, value);

0 commit comments

Comments
 (0)