com.google.api.services.integrations.v1alpha.model.EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam 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;
/**
* Model definition for EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam.
*
* 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 EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam extends com.google.api.client.json.GenericJson {
/**
* Defines the credential types to be supported as Task may restrict specific types to use, e.g.
* Cloud SQL Task will use username/password type only.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List allowedCredentialTypes;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean allowedServiceAccountInContext;
/**
* UUID of the AuthConfig.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String authConfigId;
/**
* A space-delimited list of requested scope permissions.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String scope;
/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean useServiceAccountInContext;
/**
* Defines the credential types to be supported as Task may restrict specific types to use, e.g.
* Cloud SQL Task will use username/password type only.
* @return value or {@code null} for none
*/
public java.util.List getAllowedCredentialTypes() {
return allowedCredentialTypes;
}
/**
* Defines the credential types to be supported as Task may restrict specific types to use, e.g.
* Cloud SQL Task will use username/password type only.
* @param allowedCredentialTypes allowedCredentialTypes or {@code null} for none
*/
public EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam setAllowedCredentialTypes(java.util.List allowedCredentialTypes) {
this.allowedCredentialTypes = allowedCredentialTypes;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.Boolean getAllowedServiceAccountInContext() {
return allowedServiceAccountInContext;
}
/**
* @param allowedServiceAccountInContext allowedServiceAccountInContext or {@code null} for none
*/
public EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam setAllowedServiceAccountInContext(java.lang.Boolean allowedServiceAccountInContext) {
this.allowedServiceAccountInContext = allowedServiceAccountInContext;
return this;
}
/**
* UUID of the AuthConfig.
* @return value or {@code null} for none
*/
public java.lang.String getAuthConfigId() {
return authConfigId;
}
/**
* UUID of the AuthConfig.
* @param authConfigId authConfigId or {@code null} for none
*/
public EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam setAuthConfigId(java.lang.String authConfigId) {
this.authConfigId = authConfigId;
return this;
}
/**
* A space-delimited list of requested scope permissions.
* @return value or {@code null} for none
*/
public java.lang.String getScope() {
return scope;
}
/**
* A space-delimited list of requested scope permissions.
* @param scope scope or {@code null} for none
*/
public EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam setScope(java.lang.String scope) {
this.scope = scope;
return this;
}
/**
* @return value or {@code null} for none
*/
public java.lang.Boolean getUseServiceAccountInContext() {
return useServiceAccountInContext;
}
/**
* @param useServiceAccountInContext useServiceAccountInContext or {@code null} for none
*/
public EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam setUseServiceAccountInContext(java.lang.Boolean useServiceAccountInContext) {
this.useServiceAccountInContext = useServiceAccountInContext;
return this;
}
@Override
public EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam set(String fieldName, Object value) {
return (EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam) super.set(fieldName, value);
}
@Override
public EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam clone() {
return (EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy