com.google.api.services.certificatemanager.v1.model.CertificateMap 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.certificatemanager.v1.model;
/**
* Defines a collection of certificate configurations.
*
* 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 Certificate Manager 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 CertificateMap extends com.google.api.client.json.GenericJson {
/**
* Output only. The creation timestamp of a Certificate Map.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String createTime;
/**
* One or more paragraphs of text description of a certificate map.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String description;
/**
* Output only. A list of GCLB targets that use this Certificate Map. A Target Proxy is only
* present on this list if it's attached to a Forwarding Rule.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List gclbTargets;
/**
* Set of labels associated with a Certificate Map.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.Map labels;
/**
* A user-defined name of the Certificate Map. Certificate Map names must be unique globally and
* match pattern `projects/locations/certificateMaps`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String name;
/**
* Output only. The update timestamp of a Certificate Map.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String updateTime;
/**
* Output only. The creation timestamp of a Certificate Map.
* @return value or {@code null} for none
*/
public String getCreateTime() {
return createTime;
}
/**
* Output only. The creation timestamp of a Certificate Map.
* @param createTime createTime or {@code null} for none
*/
public CertificateMap setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
/**
* One or more paragraphs of text description of a certificate map.
* @return value or {@code null} for none
*/
public java.lang.String getDescription() {
return description;
}
/**
* One or more paragraphs of text description of a certificate map.
* @param description description or {@code null} for none
*/
public CertificateMap setDescription(java.lang.String description) {
this.description = description;
return this;
}
/**
* Output only. A list of GCLB targets that use this Certificate Map. A Target Proxy is only
* present on this list if it's attached to a Forwarding Rule.
* @return value or {@code null} for none
*/
public java.util.List getGclbTargets() {
return gclbTargets;
}
/**
* Output only. A list of GCLB targets that use this Certificate Map. A Target Proxy is only
* present on this list if it's attached to a Forwarding Rule.
* @param gclbTargets gclbTargets or {@code null} for none
*/
public CertificateMap setGclbTargets(java.util.List gclbTargets) {
this.gclbTargets = gclbTargets;
return this;
}
/**
* Set of labels associated with a Certificate Map.
* @return value or {@code null} for none
*/
public java.util.Map getLabels() {
return labels;
}
/**
* Set of labels associated with a Certificate Map.
* @param labels labels or {@code null} for none
*/
public CertificateMap setLabels(java.util.Map labels) {
this.labels = labels;
return this;
}
/**
* A user-defined name of the Certificate Map. Certificate Map names must be unique globally and
* match pattern `projects/locations/certificateMaps`.
* @return value or {@code null} for none
*/
public java.lang.String getName() {
return name;
}
/**
* A user-defined name of the Certificate Map. Certificate Map names must be unique globally and
* match pattern `projects/locations/certificateMaps`.
* @param name name or {@code null} for none
*/
public CertificateMap setName(java.lang.String name) {
this.name = name;
return this;
}
/**
* Output only. The update timestamp of a Certificate Map.
* @return value or {@code null} for none
*/
public String getUpdateTime() {
return updateTime;
}
/**
* Output only. The update timestamp of a Certificate Map.
* @param updateTime updateTime or {@code null} for none
*/
public CertificateMap setUpdateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
@Override
public CertificateMap set(String fieldName, Object value) {
return (CertificateMap) super.set(fieldName, value);
}
@Override
public CertificateMap clone() {
return (CertificateMap) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy