com.google.api.services.integrations.v1alpha.model.GoogleCloudIntegrationsV1alphaCertificate 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 certificate definition
*
* 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 GoogleCloudIntegrationsV1alphaCertificate extends com.google.api.client.json.GenericJson {
/**
* Status of the certificate
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String certificateStatus;
/**
* Immutable. Credential id that will be used to register with trawler INTERNAL_ONLY
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String credentialId;
/**
* Description of the certificate
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String description;
/**
* Name of the certificate
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String displayName;
/**
* Output only. Auto generated primary key
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String name;
/**
* Input only. Raw client certificate which would be registered with trawler
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleCloudIntegrationsV1alphaClientCertificate rawCertificate;
/**
* Immutable. Requestor ID to be used to register certificate with trawler
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String requestorId;
/**
* Output only. The timestamp after which certificate will expire
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String validEndTime;
/**
* Output only. The timestamp after which certificate will be valid
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String validStartTime;
/**
* Status of the certificate
* @return value or {@code null} for none
*/
public java.lang.String getCertificateStatus() {
return certificateStatus;
}
/**
* Status of the certificate
* @param certificateStatus certificateStatus or {@code null} for none
*/
public GoogleCloudIntegrationsV1alphaCertificate setCertificateStatus(java.lang.String certificateStatus) {
this.certificateStatus = certificateStatus;
return this;
}
/**
* Immutable. Credential id that will be used to register with trawler INTERNAL_ONLY
* @return value or {@code null} for none
*/
public java.lang.String getCredentialId() {
return credentialId;
}
/**
* Immutable. Credential id that will be used to register with trawler INTERNAL_ONLY
* @param credentialId credentialId or {@code null} for none
*/
public GoogleCloudIntegrationsV1alphaCertificate setCredentialId(java.lang.String credentialId) {
this.credentialId = credentialId;
return this;
}
/**
* Description of the certificate
* @return value or {@code null} for none
*/
public java.lang.String getDescription() {
return description;
}
/**
* Description of the certificate
* @param description description or {@code null} for none
*/
public GoogleCloudIntegrationsV1alphaCertificate setDescription(java.lang.String description) {
this.description = description;
return this;
}
/**
* Name of the certificate
* @return value or {@code null} for none
*/
public java.lang.String getDisplayName() {
return displayName;
}
/**
* Name of the certificate
* @param displayName displayName or {@code null} for none
*/
public GoogleCloudIntegrationsV1alphaCertificate setDisplayName(java.lang.String displayName) {
this.displayName = displayName;
return this;
}
/**
* Output only. Auto generated primary key
* @return value or {@code null} for none
*/
public java.lang.String getName() {
return name;
}
/**
* Output only. Auto generated primary key
* @param name name or {@code null} for none
*/
public GoogleCloudIntegrationsV1alphaCertificate setName(java.lang.String name) {
this.name = name;
return this;
}
/**
* Input only. Raw client certificate which would be registered with trawler
* @return value or {@code null} for none
*/
public GoogleCloudIntegrationsV1alphaClientCertificate getRawCertificate() {
return rawCertificate;
}
/**
* Input only. Raw client certificate which would be registered with trawler
* @param rawCertificate rawCertificate or {@code null} for none
*/
public GoogleCloudIntegrationsV1alphaCertificate setRawCertificate(GoogleCloudIntegrationsV1alphaClientCertificate rawCertificate) {
this.rawCertificate = rawCertificate;
return this;
}
/**
* Immutable. Requestor ID to be used to register certificate with trawler
* @return value or {@code null} for none
*/
public java.lang.String getRequestorId() {
return requestorId;
}
/**
* Immutable. Requestor ID to be used to register certificate with trawler
* @param requestorId requestorId or {@code null} for none
*/
public GoogleCloudIntegrationsV1alphaCertificate setRequestorId(java.lang.String requestorId) {
this.requestorId = requestorId;
return this;
}
/**
* Output only. The timestamp after which certificate will expire
* @return value or {@code null} for none
*/
public String getValidEndTime() {
return validEndTime;
}
/**
* Output only. The timestamp after which certificate will expire
* @param validEndTime validEndTime or {@code null} for none
*/
public GoogleCloudIntegrationsV1alphaCertificate setValidEndTime(String validEndTime) {
this.validEndTime = validEndTime;
return this;
}
/**
* Output only. The timestamp after which certificate will be valid
* @return value or {@code null} for none
*/
public String getValidStartTime() {
return validStartTime;
}
/**
* Output only. The timestamp after which certificate will be valid
* @param validStartTime validStartTime or {@code null} for none
*/
public GoogleCloudIntegrationsV1alphaCertificate setValidStartTime(String validStartTime) {
this.validStartTime = validStartTime;
return this;
}
@Override
public GoogleCloudIntegrationsV1alphaCertificate set(String fieldName, Object value) {
return (GoogleCloudIntegrationsV1alphaCertificate) super.set(fieldName, value);
}
@Override
public GoogleCloudIntegrationsV1alphaCertificate clone() {
return (GoogleCloudIntegrationsV1alphaCertificate) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy