Class IssuerBundle
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.custom.IssuerBundle
-
- com.microsoft.azure.keyvault.models.IssuerBundle
-
public class IssuerBundle extends IssuerBundle
The issuer for Key Vault certificate.
-
-
Constructor Summary
Constructors Constructor Description IssuerBundle()
-
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.String
id()
Get the id value.OrganizationDetails
organizationDetails()
Get the organizationDetails value.String
provider()
Get the provider value.IssuerBundle
withAttributes(IssuerAttributes attributes)
Set the attributes value.IssuerBundle
withCredentials(IssuerCredentials credentials)
Set the credentials value.IssuerBundle
withOrganizationDetails(OrganizationDetails organizationDetails)
Set the organizationDetails value.IssuerBundle
withProvider(String provider)
Set the provider value.-
Methods inherited from class com.microsoft.azure.keyvault.models.custom.IssuerBundle
issuerIdentifier, toString
-
-
-
-
Method Detail
-
id
public String id()
Get the id value.- Overrides:
id
in classIssuerBundle
- Returns:
- the id value
-
provider
public String provider()
Get the provider value.- Returns:
- the provider value
-
withProvider
public IssuerBundle withProvider(String provider)
Set the provider value.- Parameters:
provider
- the provider value to set- Returns:
- the IssuerBundle object itself.
-
credentials
public IssuerCredentials credentials()
Get the credentials value.- Returns:
- the credentials value
-
withCredentials
public IssuerBundle withCredentials(IssuerCredentials credentials)
Set the credentials value.- Parameters:
credentials
- the credentials value to set- Returns:
- the IssuerBundle object itself.
-
organizationDetails
public OrganizationDetails organizationDetails()
Get the organizationDetails value.- Returns:
- the organizationDetails value
-
withOrganizationDetails
public IssuerBundle withOrganizationDetails(OrganizationDetails organizationDetails)
Set the organizationDetails value.- Parameters:
organizationDetails
- the organizationDetails value to set- Returns:
- the IssuerBundle object itself.
-
attributes
public IssuerAttributes attributes()
Get the attributes value.- Returns:
- the attributes value
-
withAttributes
public IssuerBundle withAttributes(IssuerAttributes attributes)
Set the attributes value.- Parameters:
attributes
- the attributes value to set- Returns:
- the IssuerBundle object itself.
-
-