Class CertificateIssuerUpdateParameters
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.CertificateIssuerUpdateParameters
-
public class CertificateIssuerUpdateParameters extends Object
The certificate issuer update parameters.
-
-
Constructor Summary
Constructors Constructor Description CertificateIssuerUpdateParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IssuerAttributes
attributes()
Get the attributes value.IssuerCredentials
credentials()
Get the credentials value.OrganizationDetails
organizationDetails()
Get the organizationDetails value.String
provider()
Get the provider value.CertificateIssuerUpdateParameters
withAttributes(IssuerAttributes attributes)
Set the attributes value.CertificateIssuerUpdateParameters
withCredentials(IssuerCredentials credentials)
Set the credentials value.CertificateIssuerUpdateParameters
withOrganizationDetails(OrganizationDetails organizationDetails)
Set the organizationDetails value.CertificateIssuerUpdateParameters
withProvider(String provider)
Set the provider value.
-
-
-
Method Detail
-
provider
public String provider()
Get the provider value.- Returns:
- the provider value
-
withProvider
public CertificateIssuerUpdateParameters withProvider(String provider)
Set the provider value.- Parameters:
provider
- the provider value to set- Returns:
- the CertificateIssuerUpdateParameters object itself.
-
credentials
public IssuerCredentials credentials()
Get the credentials value.- Returns:
- the credentials value
-
withCredentials
public CertificateIssuerUpdateParameters withCredentials(IssuerCredentials credentials)
Set the credentials value.- Parameters:
credentials
- the credentials value to set- Returns:
- the CertificateIssuerUpdateParameters object itself.
-
organizationDetails
public OrganizationDetails organizationDetails()
Get the organizationDetails value.- Returns:
- the organizationDetails value
-
withOrganizationDetails
public CertificateIssuerUpdateParameters withOrganizationDetails(OrganizationDetails organizationDetails)
Set the organizationDetails value.- Parameters:
organizationDetails
- the organizationDetails value to set- Returns:
- the CertificateIssuerUpdateParameters object itself.
-
attributes
public IssuerAttributes attributes()
Get the attributes value.- Returns:
- the attributes value
-
withAttributes
public CertificateIssuerUpdateParameters withAttributes(IssuerAttributes attributes)
Set the attributes value.- Parameters:
attributes
- the attributes value to set- Returns:
- the CertificateIssuerUpdateParameters object itself.
-
-