com.azure.security.keyvault.certificates.implementation.models.CertificateImportParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-security-keyvault-certificates Show documentation
Show all versions of azure-security-keyvault-certificates Show documentation
This module contains client library for Microsoft Azure KeyVault Certificates.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.security.keyvault.certificates.implementation.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.Map;
/** The certificate import parameters. */
@Fluent
public final class CertificateImportParameters implements JsonSerializable {
/*
* Base64 encoded representation of the certificate object to import. This certificate needs to contain the private
* key.
*/
private String base64EncodedCertificate;
/*
* If the private key in base64EncodedCertificate is encrypted, the password used for encryption.
*/
private String password;
/*
* The management policy for the certificate.
*/
private CertificatePolicy certificatePolicy;
/*
* The attributes of the certificate (optional).
*/
private CertificateAttributes certificateAttributes;
/*
* Application specific metadata in the form of key-value pairs.
*/
private Map tags;
/** Creates an instance of CertificateImportParameters class. */
public CertificateImportParameters() {}
/**
* Get the base64EncodedCertificate property: Base64 encoded representation of the certificate object to import.
* This certificate needs to contain the private key.
*
* @return the base64EncodedCertificate value.
*/
public String getBase64EncodedCertificate() {
return this.base64EncodedCertificate;
}
/**
* Set the base64EncodedCertificate property: Base64 encoded representation of the certificate object to import.
* This certificate needs to contain the private key.
*
* @param base64EncodedCertificate the base64EncodedCertificate value to set.
* @return the CertificateImportParameters object itself.
*/
public CertificateImportParameters setBase64EncodedCertificate(String base64EncodedCertificate) {
this.base64EncodedCertificate = base64EncodedCertificate;
return this;
}
/**
* Get the password property: If the private key in base64EncodedCertificate is encrypted, the password used for
* encryption.
*
* @return the password value.
*/
public String getPassword() {
return this.password;
}
/**
* Set the password property: If the private key in base64EncodedCertificate is encrypted, the password used for
* encryption.
*
* @param password the password value to set.
* @return the CertificateImportParameters object itself.
*/
public CertificateImportParameters setPassword(String password) {
this.password = password;
return this;
}
/**
* Get the certificatePolicy property: The management policy for the certificate.
*
* @return the certificatePolicy value.
*/
public CertificatePolicy getCertificatePolicy() {
return this.certificatePolicy;
}
/**
* Set the certificatePolicy property: The management policy for the certificate.
*
* @param certificatePolicy the certificatePolicy value to set.
* @return the CertificateImportParameters object itself.
*/
public CertificateImportParameters setCertificatePolicy(CertificatePolicy certificatePolicy) {
this.certificatePolicy = certificatePolicy;
return this;
}
/**
* Get the certificateAttributes property: The attributes of the certificate (optional).
*
* @return the certificateAttributes value.
*/
public CertificateAttributes getCertificateAttributes() {
return this.certificateAttributes;
}
/**
* Set the certificateAttributes property: The attributes of the certificate (optional).
*
* @param certificateAttributes the certificateAttributes value to set.
* @return the CertificateImportParameters object itself.
*/
public CertificateImportParameters setCertificateAttributes(CertificateAttributes certificateAttributes) {
this.certificateAttributes = certificateAttributes;
return this;
}
/**
* Get the tags property: Application specific metadata in the form of key-value pairs.
*
* @return the tags value.
*/
public Map getTags() {
return this.tags;
}
/**
* Set the tags property: Application specific metadata in the form of key-value pairs.
*
* @param tags the tags value to set.
* @return the CertificateImportParameters object itself.
*/
public CertificateImportParameters setTags(Map tags) {
this.tags = tags;
return this;
}
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("value", this.base64EncodedCertificate);
jsonWriter.writeStringField("pwd", this.password);
jsonWriter.writeJsonField("policy", this.certificatePolicy);
jsonWriter.writeJsonField("attributes", this.certificateAttributes);
jsonWriter.writeMapField("tags", this.tags, (writer, element) -> writer.writeString(element));
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of CertificateImportParameters from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of CertificateImportParameters if the JsonReader was pointing to an instance of it, or null
* if it was pointing to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing any required properties.
* @throws IOException If an error occurs while reading the CertificateImportParameters.
*/
public static CertificateImportParameters fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(
reader -> {
CertificateImportParameters deserializedCertificateImportParameters =
new CertificateImportParameters();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("value".equals(fieldName)) {
deserializedCertificateImportParameters.base64EncodedCertificate = reader.getString();
} else if ("pwd".equals(fieldName)) {
deserializedCertificateImportParameters.password = reader.getString();
} else if ("policy".equals(fieldName)) {
deserializedCertificateImportParameters.certificatePolicy =
CertificatePolicy.fromJson(reader);
} else if ("attributes".equals(fieldName)) {
deserializedCertificateImportParameters.certificateAttributes =
CertificateAttributes.fromJson(reader);
} else if ("tags".equals(fieldName)) {
Map tags = reader.readMap(reader1 -> reader1.getString());
deserializedCertificateImportParameters.tags = tags;
} else {
reader.skipChildren();
}
}
return deserializedCertificateImportParameters;
});
}
}