Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the acmpca v1alpha1 API group +kubebuilder:object:generate=true +groupName=acmpca.aws.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type CertificateAuthority
- func (in *CertificateAuthority) DeepCopy() *CertificateAuthority
- func (in *CertificateAuthority) DeepCopyInto(out *CertificateAuthority)
- func (in *CertificateAuthority) DeepCopyObject() runtime.Object
- func (mg *CertificateAuthority) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (mg *CertificateAuthority) GetDeletionPolicy() xpv1.DeletionPolicy
- func (mg *CertificateAuthority) GetProviderConfigReference() *xpv1.Reference
- func (mg *CertificateAuthority) GetProviderReference() *xpv1.Reference
- func (mg *CertificateAuthority) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *CertificateAuthority) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (mg *CertificateAuthority) SetConditions(c ...xpv1.Condition)
- func (mg *CertificateAuthority) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *CertificateAuthority) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *CertificateAuthority) SetProviderReference(r *xpv1.Reference)
- func (mg *CertificateAuthority) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *CertificateAuthority) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type CertificateAuthorityConfiguration
- type CertificateAuthorityExternalStatus
- type CertificateAuthorityList
- type CertificateAuthorityParameters
- type CertificateAuthorityPermission
- func (in *CertificateAuthorityPermission) DeepCopy() *CertificateAuthorityPermission
- func (in *CertificateAuthorityPermission) DeepCopyInto(out *CertificateAuthorityPermission)
- func (in *CertificateAuthorityPermission) DeepCopyObject() runtime.Object
- func (mg *CertificateAuthorityPermission) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (mg *CertificateAuthorityPermission) GetDeletionPolicy() xpv1.DeletionPolicy
- func (mg *CertificateAuthorityPermission) GetProviderConfigReference() *xpv1.Reference
- func (mg *CertificateAuthorityPermission) GetProviderReference() *xpv1.Reference
- func (mg *CertificateAuthorityPermission) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *CertificateAuthorityPermission) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (mg *CertificateAuthorityPermission) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *CertificateAuthorityPermission) SetConditions(c ...xpv1.Condition)
- func (mg *CertificateAuthorityPermission) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *CertificateAuthorityPermission) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *CertificateAuthorityPermission) SetProviderReference(r *xpv1.Reference)
- func (mg *CertificateAuthorityPermission) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *CertificateAuthorityPermission) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type CertificateAuthorityPermissionList
- func (in *CertificateAuthorityPermissionList) DeepCopy() *CertificateAuthorityPermissionList
- func (in *CertificateAuthorityPermissionList) DeepCopyInto(out *CertificateAuthorityPermissionList)
- func (in *CertificateAuthorityPermissionList) DeepCopyObject() runtime.Object
- func (l *CertificateAuthorityPermissionList) GetItems() []resource.Managed
- type CertificateAuthorityPermissionParameters
- type CertificateAuthorityPermissionSpec
- type CertificateAuthorityPermissionStatus
- type CertificateAuthoritySpec
- type CertificateAuthorityStatus
- type RevocationConfiguration
- type Subject
- type Tag
Constants ¶
const ( Group = "acmpca.aws.crossplane.io" Version = "v1alpha1" )
Package type metadata.
Variables ¶
var ( // SchemeGroupVersion is group version used to register these objects SchemeGroupVersion = schema.GroupVersion{Group: Group, Version: Version} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion} )
var ( CertificateAuthorityKind = reflect.TypeOf(CertificateAuthority{}).Name() CertificateAuthorityGroupKind = schema.GroupKind{Group: Group, Kind: CertificateAuthorityKind}.String() CertificateAuthorityKindAPIVersion = CertificateAuthorityKind + "." + SchemeGroupVersion.String() CertificateAuthorityGroupVersionKind = SchemeGroupVersion.WithKind(CertificateAuthorityKind) )
CertificateAuthority type metadata.
var ( CertificateAuthorityPermissionKind = reflect.TypeOf(CertificateAuthorityPermission{}).Name() CertificateAuthorityPermissionGroupKind = schema.GroupKind{Group: Group, Kind: CertificateAuthorityPermissionKind}.String() CertificateAuthorityPermissionKindAPIVersion = CertificateAuthorityPermissionKind + "." + SchemeGroupVersion.String() CertificateAuthorityPermissionGroupVersionKind = SchemeGroupVersion.WithKind(CertificateAuthorityPermissionKind) )
CertificateAuthorityPermission type metadata.
Functions ¶
This section is empty.
Types ¶
type CertificateAuthority ¶
type CertificateAuthority struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec CertificateAuthoritySpec `json:"spec"` Status CertificateAuthorityStatus `json:"status,omitempty"` }
CertificateAuthority is a managed resource that represents an AWS CertificateAuthority Manager. +kubebuilder:printcolumn:name="TYPE",type="string",JSONPath=".spec.forProvider.type" +kubebuilder:printcolumn:name="STATUS",type="string",JSONPath=".spec.forProvider.status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,aws} +kubebuilder:deprecatedversion:warning="Please use v1beta1 version of this resource that has identical schema." Deprecated: Please use v1beta1 version of this resource.
func (*CertificateAuthority) DeepCopy ¶
func (in *CertificateAuthority) DeepCopy() *CertificateAuthority
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateAuthority.
func (*CertificateAuthority) DeepCopyInto ¶
func (in *CertificateAuthority) DeepCopyInto(out *CertificateAuthority)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CertificateAuthority) DeepCopyObject ¶
func (in *CertificateAuthority) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*CertificateAuthority) GetCondition ¶
func (mg *CertificateAuthority) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this CertificateAuthority.
func (*CertificateAuthority) GetDeletionPolicy ¶
func (mg *CertificateAuthority) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this CertificateAuthority.
func (*CertificateAuthority) GetProviderConfigReference ¶
func (mg *CertificateAuthority) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this CertificateAuthority.
func (*CertificateAuthority) GetProviderReference ¶
func (mg *CertificateAuthority) GetProviderReference() *xpv1.Reference
GetProviderReference of this CertificateAuthority. Deprecated: Use GetProviderConfigReference.
func (*CertificateAuthority) GetPublishConnectionDetailsTo ¶
func (mg *CertificateAuthority) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this CertificateAuthority.
func (*CertificateAuthority) GetWriteConnectionSecretToReference ¶
func (mg *CertificateAuthority) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this CertificateAuthority.
func (*CertificateAuthority) SetConditions ¶
func (mg *CertificateAuthority) SetConditions(c ...xpv1.Condition)
SetConditions of this CertificateAuthority.
func (*CertificateAuthority) SetDeletionPolicy ¶
func (mg *CertificateAuthority) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this CertificateAuthority.
func (*CertificateAuthority) SetProviderConfigReference ¶
func (mg *CertificateAuthority) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this CertificateAuthority.
func (*CertificateAuthority) SetProviderReference ¶
func (mg *CertificateAuthority) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this CertificateAuthority. Deprecated: Use SetProviderConfigReference.
func (*CertificateAuthority) SetPublishConnectionDetailsTo ¶
func (mg *CertificateAuthority) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this CertificateAuthority.
func (*CertificateAuthority) SetWriteConnectionSecretToReference ¶
func (mg *CertificateAuthority) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this CertificateAuthority.
type CertificateAuthorityConfiguration ¶
type CertificateAuthorityConfiguration struct { // Type of the public key algorithm // +kubebuilder:validation:Enum=RSA_2048;EC_secp384r1;EC_prime256v1;RSA_4096 KeyAlgorithm types.KeyAlgorithm `json:"keyAlgorithm"` // Algorithm that private CA uses to sign certificate requests // +kubebuilder:validation:Enum=SHA512WITHECDSA;SHA256WITHECDSA;SHA384WITHECDSA;SHA512WITHRSA;SHA256WITHRSA;SHA384WITHRSA SigningAlgorithm types.SigningAlgorithm `json:"signingAlgorithm"` // Subject is information of Certificate Authority Subject Subject `json:"subject"` }
CertificateAuthorityConfiguration is
func (*CertificateAuthorityConfiguration) DeepCopy ¶
func (in *CertificateAuthorityConfiguration) DeepCopy() *CertificateAuthorityConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateAuthorityConfiguration.
func (*CertificateAuthorityConfiguration) DeepCopyInto ¶
func (in *CertificateAuthorityConfiguration) DeepCopyInto(out *CertificateAuthorityConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateAuthorityExternalStatus ¶
type CertificateAuthorityExternalStatus struct { // String that contains the ARN of the issued certificate Authority CertificateAuthorityARN string `json:"certificateAuthorityARN,omitempty"` // Serial of the Certificate Authority Serial string `json:"serial,omitempty"` // Status is the current status of the CertificateAuthority. Status string `json:"status,omitempty"` }
CertificateAuthorityExternalStatus keeps the state of external resource
func (*CertificateAuthorityExternalStatus) DeepCopy ¶
func (in *CertificateAuthorityExternalStatus) DeepCopy() *CertificateAuthorityExternalStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateAuthorityExternalStatus.
func (*CertificateAuthorityExternalStatus) DeepCopyInto ¶
func (in *CertificateAuthorityExternalStatus) DeepCopyInto(out *CertificateAuthorityExternalStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateAuthorityList ¶
type CertificateAuthorityList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []CertificateAuthority `json:"items"` }
CertificateAuthorityList contains a list of CertificateAuthority +kubebuilder:deprecatedversion:warning="Please use v1beta1 version of this resource that has identical schema." Deprecated: Please use v1beta1 version of this resource.
func (*CertificateAuthorityList) DeepCopy ¶
func (in *CertificateAuthorityList) DeepCopy() *CertificateAuthorityList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateAuthorityList.
func (*CertificateAuthorityList) DeepCopyInto ¶
func (in *CertificateAuthorityList) DeepCopyInto(out *CertificateAuthorityList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CertificateAuthorityList) DeepCopyObject ¶
func (in *CertificateAuthorityList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*CertificateAuthorityList) GetItems ¶
func (l *CertificateAuthorityList) GetItems() []resource.Managed
GetItems of this CertificateAuthorityList.
type CertificateAuthorityParameters ¶
type CertificateAuthorityParameters struct { // Region is the region you'd like your CertificateAuthority to be created in. Region string `json:"region"` // Type of the certificate authority // +kubebuilder:validation:Enum=ROOT;SUBORDINATE Type types.CertificateAuthorityType `json:"type"` // RevocationConfiguration to associate with the certificateAuthority. // +optional RevocationConfiguration *RevocationConfiguration `json:"revocationConfiguration,omitempty"` // CertificateAuthorityConfiguration to associate with the certificateAuthority. CertificateAuthorityConfiguration CertificateAuthorityConfiguration `json:"certificateAuthorityConfiguration"` // The number of days to make a CA restorable after it has been deleted // +optional PermanentDeletionTimeInDays *int32 `json:"permanentDeletionTimeInDays,omitempty"` // Status of the certificate authority. // This value cannot be configured at creation, but can be updated to set a // CA to ACTIVE or DISABLED. // +optional // +kubebuilder:validation:Enum=ACTIVE;DISABLED Status *string `json:"status,omitempty"` // One or more resource tags to associate with the certificateAuthority. Tags []Tag `json:"tags"` }
CertificateAuthorityParameters defines the desired state of an AWS CertificateAuthority.
func (*CertificateAuthorityParameters) DeepCopy ¶
func (in *CertificateAuthorityParameters) DeepCopy() *CertificateAuthorityParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateAuthorityParameters.
func (*CertificateAuthorityParameters) DeepCopyInto ¶
func (in *CertificateAuthorityParameters) DeepCopyInto(out *CertificateAuthorityParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateAuthorityPermission ¶
type CertificateAuthorityPermission struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec CertificateAuthorityPermissionSpec `json:"spec"` Status CertificateAuthorityPermissionStatus `json:"status,omitempty"` }
CertificateAuthorityPermission is a managed resource that represents an AWS CertificateAuthorityPermission Manager. +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,aws}
func (*CertificateAuthorityPermission) DeepCopy ¶
func (in *CertificateAuthorityPermission) DeepCopy() *CertificateAuthorityPermission
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateAuthorityPermission.
func (*CertificateAuthorityPermission) DeepCopyInto ¶
func (in *CertificateAuthorityPermission) DeepCopyInto(out *CertificateAuthorityPermission)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CertificateAuthorityPermission) DeepCopyObject ¶
func (in *CertificateAuthorityPermission) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*CertificateAuthorityPermission) GetCondition ¶
func (mg *CertificateAuthorityPermission) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this CertificateAuthorityPermission.
func (*CertificateAuthorityPermission) GetDeletionPolicy ¶
func (mg *CertificateAuthorityPermission) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this CertificateAuthorityPermission.
func (*CertificateAuthorityPermission) GetProviderConfigReference ¶
func (mg *CertificateAuthorityPermission) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this CertificateAuthorityPermission.
func (*CertificateAuthorityPermission) GetProviderReference ¶
func (mg *CertificateAuthorityPermission) GetProviderReference() *xpv1.Reference
GetProviderReference of this CertificateAuthorityPermission. Deprecated: Use GetProviderConfigReference.
func (*CertificateAuthorityPermission) GetPublishConnectionDetailsTo ¶
func (mg *CertificateAuthorityPermission) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this CertificateAuthorityPermission.
func (*CertificateAuthorityPermission) GetWriteConnectionSecretToReference ¶
func (mg *CertificateAuthorityPermission) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this CertificateAuthorityPermission.
func (*CertificateAuthorityPermission) ResolveReferences ¶
func (mg *CertificateAuthorityPermission) ResolveReferences(ctx context.Context, c client.Reader) error
ResolveReferences of this CertificateAuthorityPermission.
func (*CertificateAuthorityPermission) SetConditions ¶
func (mg *CertificateAuthorityPermission) SetConditions(c ...xpv1.Condition)
SetConditions of this CertificateAuthorityPermission.
func (*CertificateAuthorityPermission) SetDeletionPolicy ¶
func (mg *CertificateAuthorityPermission) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this CertificateAuthorityPermission.
func (*CertificateAuthorityPermission) SetProviderConfigReference ¶
func (mg *CertificateAuthorityPermission) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this CertificateAuthorityPermission.
func (*CertificateAuthorityPermission) SetProviderReference ¶
func (mg *CertificateAuthorityPermission) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this CertificateAuthorityPermission. Deprecated: Use SetProviderConfigReference.
func (*CertificateAuthorityPermission) SetPublishConnectionDetailsTo ¶
func (mg *CertificateAuthorityPermission) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this CertificateAuthorityPermission.
func (*CertificateAuthorityPermission) SetWriteConnectionSecretToReference ¶
func (mg *CertificateAuthorityPermission) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this CertificateAuthorityPermission.
type CertificateAuthorityPermissionList ¶
type CertificateAuthorityPermissionList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []CertificateAuthorityPermission `json:"items"` }
CertificateAuthorityPermissionList contains a list of CertificateAuthorityPermission
func (*CertificateAuthorityPermissionList) DeepCopy ¶
func (in *CertificateAuthorityPermissionList) DeepCopy() *CertificateAuthorityPermissionList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateAuthorityPermissionList.
func (*CertificateAuthorityPermissionList) DeepCopyInto ¶
func (in *CertificateAuthorityPermissionList) DeepCopyInto(out *CertificateAuthorityPermissionList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CertificateAuthorityPermissionList) DeepCopyObject ¶
func (in *CertificateAuthorityPermissionList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*CertificateAuthorityPermissionList) GetItems ¶
func (l *CertificateAuthorityPermissionList) GetItems() []resource.Managed
GetItems of this CertificateAuthorityPermissionList.
type CertificateAuthorityPermissionParameters ¶
type CertificateAuthorityPermissionParameters struct { // Region is the region of CertificateAuthorityPermission. Region string `json:"region"` // The Amazon Resource Name (ARN) of the private certificate authority (CA)that will be used to issue the certificate. // +immutable // +crossplane:generate:reference:type=CertificateAuthority CertificateAuthorityARN *string `json:"certificateAuthorityARN,omitempty"` // CertificateAuthorityARNRef references an CertificateAuthority to retrieve its Arn // +optional // +immutable CertificateAuthorityARNRef *xpv1.Reference `json:"certificateAuthorityARNRef,omitempty"` // CertificateAuthorityARNSelector selects a reference to an CertificateAuthority to retrieve its Arn // +optional // +immutable CertificateAuthorityARNSelector *xpv1.Selector `json:"certificateAuthorityARNSelector,omitempty"` // The actions that the specified AWS service principal can use. // +optional // +immutable Actions []string `json:"actions,omitempty"` // The AWS service or identity that receives the permission. At this // time, the only valid principal is acm.amazonaws.com. // +immutable // +kubebuilder:default:=acm.amazonaws.com Principal string `json:"principal"` // Calling Account ID // +optional // +immutable SourceAccount *string `json:"sourceAccount,omitempty"` }
CertificateAuthorityPermissionParameters defines the desired state of an AWS CertificateAuthority.
func (*CertificateAuthorityPermissionParameters) DeepCopy ¶
func (in *CertificateAuthorityPermissionParameters) DeepCopy() *CertificateAuthorityPermissionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateAuthorityPermissionParameters.
func (*CertificateAuthorityPermissionParameters) DeepCopyInto ¶
func (in *CertificateAuthorityPermissionParameters) DeepCopyInto(out *CertificateAuthorityPermissionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateAuthorityPermissionSpec ¶
type CertificateAuthorityPermissionSpec struct { xpv1.ResourceSpec `json:",inline"` ForProvider CertificateAuthorityPermissionParameters `json:"forProvider"` }
CertificateAuthorityPermissionSpec defines the desired state of CertificateAuthorityPermission
func (*CertificateAuthorityPermissionSpec) DeepCopy ¶
func (in *CertificateAuthorityPermissionSpec) DeepCopy() *CertificateAuthorityPermissionSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateAuthorityPermissionSpec.
func (*CertificateAuthorityPermissionSpec) DeepCopyInto ¶
func (in *CertificateAuthorityPermissionSpec) DeepCopyInto(out *CertificateAuthorityPermissionSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateAuthorityPermissionStatus ¶
type CertificateAuthorityPermissionStatus struct {
xpv1.ResourceStatus `json:",inline"`
}
An CertificateAuthorityPermissionStatus represents the observed state of an Certificate Authority Permission manager.
func (*CertificateAuthorityPermissionStatus) DeepCopy ¶
func (in *CertificateAuthorityPermissionStatus) DeepCopy() *CertificateAuthorityPermissionStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateAuthorityPermissionStatus.
func (*CertificateAuthorityPermissionStatus) DeepCopyInto ¶
func (in *CertificateAuthorityPermissionStatus) DeepCopyInto(out *CertificateAuthorityPermissionStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateAuthoritySpec ¶
type CertificateAuthoritySpec struct { xpv1.ResourceSpec `json:",inline"` ForProvider CertificateAuthorityParameters `json:"forProvider"` }
CertificateAuthoritySpec defines the desired state of CertificateAuthority
func (*CertificateAuthoritySpec) DeepCopy ¶
func (in *CertificateAuthoritySpec) DeepCopy() *CertificateAuthoritySpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateAuthoritySpec.
func (*CertificateAuthoritySpec) DeepCopyInto ¶
func (in *CertificateAuthoritySpec) DeepCopyInto(out *CertificateAuthoritySpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateAuthorityStatus ¶
type CertificateAuthorityStatus struct { xpv1.ResourceStatus `json:",inline"` AtProvider CertificateAuthorityExternalStatus `json:"atProvider,omitempty"` }
An CertificateAuthorityStatus represents the observed state of an CertificateAuthority manager.
func (*CertificateAuthorityStatus) DeepCopy ¶
func (in *CertificateAuthorityStatus) DeepCopy() *CertificateAuthorityStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateAuthorityStatus.
func (*CertificateAuthorityStatus) DeepCopyInto ¶
func (in *CertificateAuthorityStatus) DeepCopyInto(out *CertificateAuthorityStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RevocationConfiguration ¶
type RevocationConfiguration struct { // Boolean value that specifies certificate revocation Enabled bool `json:"enabled"` // Name of the S3 bucket that contains the CRL // +optional S3BucketName *string `json:"s3BucketName,omitempty"` // Alias for the CRL distribution point // +optional CustomCname *string `json:"customCname,omitempty"` // Number of days until a certificate expires // +optional ExpirationInDays *int32 `json:"expirationInDays,omitempty"` }
RevocationConfiguration is configuration of the certificate revocation list
func (*RevocationConfiguration) DeepCopy ¶
func (in *RevocationConfiguration) DeepCopy() *RevocationConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RevocationConfiguration.
func (*RevocationConfiguration) DeepCopyInto ¶
func (in *RevocationConfiguration) DeepCopyInto(out *RevocationConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Subject ¶
type Subject struct { // Organization legal name // +immutable Organization string `json:"organization"` // Organization's subdivision or unit // +immutable OrganizationalUnit string `json:"organizationalUnit"` // Two-digit code that specifies the country // +immutable Country string `json:"country"` // State in which the subject of the certificate is located // +immutable State string `json:"state"` // The locality such as a city or town // +immutable Locality string `json:"locality"` // FQDN associated with the certificate subject // +immutable CommonName string `json:"commonName"` // Disambiguating information for the certificate subject. // +optional // +immutable DistinguishedNameQualifier *string `json:"distinguishedNameQualifier,omitempty"` // Typically a qualifier appended to the name of an individual // +optional // +immutable GenerationQualifier *string `json:"generationQualifier,omitempty"` // Concatenation of first letter of the GivenName, Middle name and SurName. // +optional // +immutable Initials *string `json:"initials,omitempty"` // First name // +optional // +immutable GivenName *string `json:"givenName,omitempty"` // Shortened version of a longer GivenName // +optional // +immutable Pseudonym *string `json:"pseudonym,omitempty"` // The certificate serial number. // +optional // +immutable SerialNumber *string `json:"serialNumber,omitempty"` // Surname // +optional // +immutable Surname *string `json:"surname,omitempty"` // Title // +optional // +immutable Title *string `json:"title,omitempty"` }
Subject is
func (*Subject) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Subject.
func (*Subject) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Tag ¶
type Tag struct { // The key name that can be used to look up or retrieve the associated value. Key string `json:"key"` // The value associated with this tag. Value string `json:"value"` }
Tag represents user-provided metadata that can be associated
func (*Tag) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Tag.
func (*Tag) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.