Class CertificateMergeParameters
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.CertificateMergeParameters
-
public class CertificateMergeParameters extends Object
The certificate merge parameters.
-
-
Constructor Summary
Constructors Constructor Description CertificateMergeParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CertificateAttributes
certificateAttributes()
Get the certificateAttributes value.Map<String,String>
tags()
Get the tags value.CertificateMergeParameters
withCertificateAttributes(CertificateAttributes certificateAttributes)
Set the certificateAttributes value.CertificateMergeParameters
withTags(Map<String,String> tags)
Set the tags value.CertificateMergeParameters
withX509Certificates(List<byte[]> x509Certificates)
Set the x509Certificates value.List<byte[]>
x509Certificates()
Get the x509Certificates value.
-
-
-
Method Detail
-
x509Certificates
public List<byte[]> x509Certificates()
Get the x509Certificates value.- Returns:
- the x509Certificates value
-
withX509Certificates
public CertificateMergeParameters withX509Certificates(List<byte[]> x509Certificates)
Set the x509Certificates value.- Parameters:
x509Certificates
- the x509Certificates value to set- Returns:
- the CertificateMergeParameters object itself.
-
certificateAttributes
public CertificateAttributes certificateAttributes()
Get the certificateAttributes value.- Returns:
- the certificateAttributes value
-
withCertificateAttributes
public CertificateMergeParameters withCertificateAttributes(CertificateAttributes certificateAttributes)
Set the certificateAttributes value.- Parameters:
certificateAttributes
- the certificateAttributes value to set- Returns:
- the CertificateMergeParameters object itself.
-
withTags
public CertificateMergeParameters withTags(Map<String,String> tags)
Set the tags value.- Parameters:
tags
- the tags value to set- Returns:
- the CertificateMergeParameters object itself.
-
-