com.azure.security.keyvault.certificates.implementation.models.CertificateIssuerUpdateParameters 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;
/** The certificate issuer update parameters. */
@Fluent
public final class CertificateIssuerUpdateParameters implements JsonSerializable {
/*
* The issuer provider.
*/
private String provider;
/*
* The credentials to be used for the issuer.
*/
private IssuerCredentials credentials;
/*
* Details of the organization as provided to the issuer.
*/
private OrganizationDetails organizationDetails;
/*
* Attributes of the issuer object.
*/
private IssuerAttributes attributes;
/** Creates an instance of CertificateIssuerUpdateParameters class. */
public CertificateIssuerUpdateParameters() {}
/**
* Get the provider property: The issuer provider.
*
* @return the provider value.
*/
public String getProvider() {
return this.provider;
}
/**
* Set the provider property: The issuer provider.
*
* @param provider the provider value to set.
* @return the CertificateIssuerUpdateParameters object itself.
*/
public CertificateIssuerUpdateParameters setProvider(String provider) {
this.provider = provider;
return this;
}
/**
* Get the credentials property: The credentials to be used for the issuer.
*
* @return the credentials value.
*/
public IssuerCredentials getCredentials() {
return this.credentials;
}
/**
* Set the credentials property: The credentials to be used for the issuer.
*
* @param credentials the credentials value to set.
* @return the CertificateIssuerUpdateParameters object itself.
*/
public CertificateIssuerUpdateParameters setCredentials(IssuerCredentials credentials) {
this.credentials = credentials;
return this;
}
/**
* Get the organizationDetails property: Details of the organization as provided to the issuer.
*
* @return the organizationDetails value.
*/
public OrganizationDetails getOrganizationDetails() {
return this.organizationDetails;
}
/**
* Set the organizationDetails property: Details of the organization as provided to the issuer.
*
* @param organizationDetails the organizationDetails value to set.
* @return the CertificateIssuerUpdateParameters object itself.
*/
public CertificateIssuerUpdateParameters setOrganizationDetails(OrganizationDetails organizationDetails) {
this.organizationDetails = organizationDetails;
return this;
}
/**
* Get the attributes property: Attributes of the issuer object.
*
* @return the attributes value.
*/
public IssuerAttributes getAttributes() {
return this.attributes;
}
/**
* Set the attributes property: Attributes of the issuer object.
*
* @param attributes the attributes value to set.
* @return the CertificateIssuerUpdateParameters object itself.
*/
public CertificateIssuerUpdateParameters setAttributes(IssuerAttributes attributes) {
this.attributes = attributes;
return this;
}
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("provider", this.provider);
jsonWriter.writeJsonField("credentials", this.credentials);
jsonWriter.writeJsonField("org_details", this.organizationDetails);
jsonWriter.writeJsonField("attributes", this.attributes);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of CertificateIssuerUpdateParameters from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of CertificateIssuerUpdateParameters if the JsonReader was pointing to an instance of it, or
* null if it was pointing to JSON null.
* @throws IOException If an error occurs while reading the CertificateIssuerUpdateParameters.
*/
public static CertificateIssuerUpdateParameters fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(
reader -> {
CertificateIssuerUpdateParameters deserializedCertificateIssuerUpdateParameters =
new CertificateIssuerUpdateParameters();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("provider".equals(fieldName)) {
deserializedCertificateIssuerUpdateParameters.provider = reader.getString();
} else if ("credentials".equals(fieldName)) {
deserializedCertificateIssuerUpdateParameters.credentials =
IssuerCredentials.fromJson(reader);
} else if ("org_details".equals(fieldName)) {
deserializedCertificateIssuerUpdateParameters.organizationDetails =
OrganizationDetails.fromJson(reader);
} else if ("attributes".equals(fieldName)) {
deserializedCertificateIssuerUpdateParameters.attributes =
IssuerAttributes.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedCertificateIssuerUpdateParameters;
});
}
}