All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.integrations.v1alpha.model.GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse Maven / Gradle / Ivy

/*
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
/*
 * This code was generated by https://github.com/googleapis/google-api-java-client-services/
 * Modify at your own risk.
 */

package com.google.api.services.integrations.v1alpha.model;

/**
 * The response for executing an integration.
 *
 * 

This is the Java data model class that specifies how to parse/serialize into the JSON that is * transmitted over HTTP when working with the Application Integration API. For a detailed * explanation see: * https://developers.google.com/api-client-library/java/google-http-java-client/json *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse extends com.google.api.client.json.GenericJson { /** * Details for the integration that were executed. * The value may be {@code null}. */ @com.google.api.client.util.Key private EnterpriseCrmFrontendsEventbusProtoEventParameters eventParameters; /** * Is true if any execution in the integration failed. False otherwise. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean executionFailed; /** * The id of the execution corresponding to this run of integration. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String executionId; /** * OUTPUT parameters in format of Map. Where Key is the name of the parameter. Note: Name of the * system generated parameters are wrapped by backtick(`) to distinguish them from the user * defined parameters. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.Map outputParameters; /** * Parameters are a part of Event and can be used to communicate between different tasks that are * part of the same integration execution. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.List parameterEntries; static { // hack to force ProGuard to consider EnterpriseCrmFrontendsEventbusProtoParameterEntry used, since otherwise it would be stripped out // see https://github.com/google/google-api-java-client/issues/543 com.google.api.client.util.Data.nullOf(EnterpriseCrmFrontendsEventbusProtoParameterEntry.class); } /** * Details for the integration that were executed. * @return value or {@code null} for none */ public EnterpriseCrmFrontendsEventbusProtoEventParameters getEventParameters() { return eventParameters; } /** * Details for the integration that were executed. * @param eventParameters eventParameters or {@code null} for none */ public GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse setEventParameters(EnterpriseCrmFrontendsEventbusProtoEventParameters eventParameters) { this.eventParameters = eventParameters; return this; } /** * Is true if any execution in the integration failed. False otherwise. * @return value or {@code null} for none */ public java.lang.Boolean getExecutionFailed() { return executionFailed; } /** * Is true if any execution in the integration failed. False otherwise. * @param executionFailed executionFailed or {@code null} for none */ public GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse setExecutionFailed(java.lang.Boolean executionFailed) { this.executionFailed = executionFailed; return this; } /** * The id of the execution corresponding to this run of integration. * @return value or {@code null} for none */ public java.lang.String getExecutionId() { return executionId; } /** * The id of the execution corresponding to this run of integration. * @param executionId executionId or {@code null} for none */ public GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse setExecutionId(java.lang.String executionId) { this.executionId = executionId; return this; } /** * OUTPUT parameters in format of Map. Where Key is the name of the parameter. Note: Name of the * system generated parameters are wrapped by backtick(`) to distinguish them from the user * defined parameters. * @return value or {@code null} for none */ public java.util.Map getOutputParameters() { return outputParameters; } /** * OUTPUT parameters in format of Map. Where Key is the name of the parameter. Note: Name of the * system generated parameters are wrapped by backtick(`) to distinguish them from the user * defined parameters. * @param outputParameters outputParameters or {@code null} for none */ public GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse setOutputParameters(java.util.Map outputParameters) { this.outputParameters = outputParameters; return this; } /** * Parameters are a part of Event and can be used to communicate between different tasks that are * part of the same integration execution. * @return value or {@code null} for none */ public java.util.List getParameterEntries() { return parameterEntries; } /** * Parameters are a part of Event and can be used to communicate between different tasks that are * part of the same integration execution. * @param parameterEntries parameterEntries or {@code null} for none */ public GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse setParameterEntries(java.util.List parameterEntries) { this.parameterEntries = parameterEntries; return this; } @Override public GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse set(String fieldName, Object value) { return (GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse) super.set(fieldName, value); } @Override public GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse clone() { return (GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy