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

com.google.api.services.integrations.v1alpha.model.GoogleCloudIntegrationsV1alphaSfdcInstance 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 SfdcInstance resource use to hold channels and connection config data.
 *
 * 

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 GoogleCloudIntegrationsV1alphaSfdcInstance extends com.google.api.client.json.GenericJson { /** * A list of AuthConfigs that can be tried to open the channel to SFDC * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.List authConfigId; /** * Output only. Time when the instance is created * The value may be {@code null}. */ @com.google.api.client.util.Key private String createTime; /** * Output only. Time when the instance was deleted. Empty if not deleted. * The value may be {@code null}. */ @com.google.api.client.util.Key private String deleteTime; /** * A description of the sfdc instance. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String description; /** * User selected unique name/alias to easily reference an instance. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String displayName; /** * Resource name of the SFDC instance * projects/{project}/locations/{location}/sfdcInstances/{sfdcInstance}. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String name; /** * URL used for API calls after authentication (the login authority is configured within the * referenced AuthConfig). * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String serviceAuthority; /** * The SFDC Org Id. This is defined in salesforce. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String sfdcOrgId; /** * Output only. Time when the instance was last updated * The value may be {@code null}. */ @com.google.api.client.util.Key private String updateTime; /** * A list of AuthConfigs that can be tried to open the channel to SFDC * @return value or {@code null} for none */ public java.util.List getAuthConfigId() { return authConfigId; } /** * A list of AuthConfigs that can be tried to open the channel to SFDC * @param authConfigId authConfigId or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcInstance setAuthConfigId(java.util.List authConfigId) { this.authConfigId = authConfigId; return this; } /** * Output only. Time when the instance is created * @return value or {@code null} for none */ public String getCreateTime() { return createTime; } /** * Output only. Time when the instance is created * @param createTime createTime or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcInstance setCreateTime(String createTime) { this.createTime = createTime; return this; } /** * Output only. Time when the instance was deleted. Empty if not deleted. * @return value or {@code null} for none */ public String getDeleteTime() { return deleteTime; } /** * Output only. Time when the instance was deleted. Empty if not deleted. * @param deleteTime deleteTime or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcInstance setDeleteTime(String deleteTime) { this.deleteTime = deleteTime; return this; } /** * A description of the sfdc instance. * @return value or {@code null} for none */ public java.lang.String getDescription() { return description; } /** * A description of the sfdc instance. * @param description description or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcInstance setDescription(java.lang.String description) { this.description = description; return this; } /** * User selected unique name/alias to easily reference an instance. * @return value or {@code null} for none */ public java.lang.String getDisplayName() { return displayName; } /** * User selected unique name/alias to easily reference an instance. * @param displayName displayName or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcInstance setDisplayName(java.lang.String displayName) { this.displayName = displayName; return this; } /** * Resource name of the SFDC instance * projects/{project}/locations/{location}/sfdcInstances/{sfdcInstance}. * @return value or {@code null} for none */ public java.lang.String getName() { return name; } /** * Resource name of the SFDC instance * projects/{project}/locations/{location}/sfdcInstances/{sfdcInstance}. * @param name name or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcInstance setName(java.lang.String name) { this.name = name; return this; } /** * URL used for API calls after authentication (the login authority is configured within the * referenced AuthConfig). * @return value or {@code null} for none */ public java.lang.String getServiceAuthority() { return serviceAuthority; } /** * URL used for API calls after authentication (the login authority is configured within the * referenced AuthConfig). * @param serviceAuthority serviceAuthority or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcInstance setServiceAuthority(java.lang.String serviceAuthority) { this.serviceAuthority = serviceAuthority; return this; } /** * The SFDC Org Id. This is defined in salesforce. * @return value or {@code null} for none */ public java.lang.String getSfdcOrgId() { return sfdcOrgId; } /** * The SFDC Org Id. This is defined in salesforce. * @param sfdcOrgId sfdcOrgId or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcInstance setSfdcOrgId(java.lang.String sfdcOrgId) { this.sfdcOrgId = sfdcOrgId; return this; } /** * Output only. Time when the instance was last updated * @return value or {@code null} for none */ public String getUpdateTime() { return updateTime; } /** * Output only. Time when the instance was last updated * @param updateTime updateTime or {@code null} for none */ public GoogleCloudIntegrationsV1alphaSfdcInstance setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } @Override public GoogleCloudIntegrationsV1alphaSfdcInstance set(String fieldName, Object value) { return (GoogleCloudIntegrationsV1alphaSfdcInstance) super.set(fieldName, value); } @Override public GoogleCloudIntegrationsV1alphaSfdcInstance clone() { return (GoogleCloudIntegrationsV1alphaSfdcInstance) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy