Documentation
¶
Overview ¶
+groupName=acm.aws.kubeform.com
Index ¶
- Variables
- func GetDecoder() map[string]jsoniter.ValDecoder
- func GetEncoder() map[string]jsoniter.ValEncoder
- func Kind(kind string) schema.GroupKind
- func Resource(resource string) schema.GroupResource
- type Certificate
- func (in *Certificate) DeepCopy() *Certificate
- func (in *Certificate) DeepCopyInto(out *Certificate)
- func (in *Certificate) DeepCopyObject() runtime.Object
- func (r *Certificate) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Certificate) ValidateCreate() error
- func (r *Certificate) ValidateDelete() error
- func (r *Certificate) ValidateUpdate(old runtime.Object) error
- type CertificateList
- type CertificateSpec
- type CertificateSpecDomainValidationOptions
- type CertificateSpecOptions
- type CertificateSpecOptionsCodec
- type CertificateSpecResource
- type CertificateStatus
- type CertificateValidation
- func (in *CertificateValidation) DeepCopy() *CertificateValidation
- func (in *CertificateValidation) DeepCopyInto(out *CertificateValidation)
- func (in *CertificateValidation) DeepCopyObject() runtime.Object
- func (r *CertificateValidation) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *CertificateValidation) ValidateCreate() error
- func (r *CertificateValidation) ValidateDelete() error
- func (r *CertificateValidation) ValidateUpdate(old runtime.Object) error
- type CertificateValidationList
- type CertificateValidationSpec
- type CertificateValidationSpecResource
- type CertificateValidationStatus
Constants ¶
This section is empty.
Variables ¶
var ( // TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api. // localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes. SchemeBuilder runtime.SchemeBuilder AddToScheme = localSchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{Group: acm.GroupName, Version: "v1alpha1"}
Functions ¶
func GetDecoder ¶
func GetDecoder() map[string]jsoniter.ValDecoder
func GetEncoder ¶
func GetEncoder() map[string]jsoniter.ValEncoder
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type Certificate ¶
type Certificate struct {
metav1.TypeMeta `json:",inline,omitempty"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec CertificateSpec `json:"spec,omitempty"`
Status CertificateStatus `json:"status,omitempty"`
}
func (*Certificate) DeepCopy ¶
func (in *Certificate) DeepCopy() *Certificate
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Certificate.
func (*Certificate) DeepCopyInto ¶
func (in *Certificate) DeepCopyInto(out *Certificate)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Certificate) DeepCopyObject ¶
func (in *Certificate) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Certificate) SetupWebhookWithManager ¶
func (r *Certificate) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*Certificate) ValidateCreate ¶
func (r *Certificate) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Certificate) ValidateDelete ¶
func (r *Certificate) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*Certificate) ValidateUpdate ¶
func (r *Certificate) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type CertificateList ¶
type CertificateList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
// Items is a list of Certificate CRD objects
Items []Certificate `json:"items,omitempty"`
}
CertificateList is a list of Certificates
func (*CertificateList) DeepCopy ¶
func (in *CertificateList) DeepCopy() *CertificateList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateList.
func (*CertificateList) DeepCopyInto ¶
func (in *CertificateList) DeepCopyInto(out *CertificateList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CertificateList) DeepCopyObject ¶
func (in *CertificateList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type CertificateSpec ¶
type CertificateSpec struct {
State *CertificateSpecResource `json:"state,omitempty" tf:"-"`
Resource CertificateSpecResource `json:"resource" tf:"resource"`
UpdatePolicy base.UpdatePolicy `json:"updatePolicy,omitempty" tf:"-"`
TerminationPolicy base.TerminationPolicy `json:"terminationPolicy,omitempty" tf:"-"`
ProviderRef core.LocalObjectReference `json:"providerRef" tf:"-"`
SecretRef *core.LocalObjectReference `json:"secretRef,omitempty" tf:"-"`
BackendRef *core.LocalObjectReference `json:"backendRef,omitempty" tf:"-"`
}
func (*CertificateSpec) DeepCopy ¶
func (in *CertificateSpec) DeepCopy() *CertificateSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateSpec.
func (*CertificateSpec) DeepCopyInto ¶
func (in *CertificateSpec) DeepCopyInto(out *CertificateSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateSpecDomainValidationOptions ¶
type CertificateSpecDomainValidationOptions struct {
// +optional
DomainName *string `json:"domainName,omitempty" tf:"domain_name"`
// +optional
ResourceRecordName *string `json:"resourceRecordName,omitempty" tf:"resource_record_name"`
// +optional
ResourceRecordType *string `json:"resourceRecordType,omitempty" tf:"resource_record_type"`
// +optional
ResourceRecordValue *string `json:"resourceRecordValue,omitempty" tf:"resource_record_value"`
}
func (*CertificateSpecDomainValidationOptions) DeepCopy ¶
func (in *CertificateSpecDomainValidationOptions) DeepCopy() *CertificateSpecDomainValidationOptions
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateSpecDomainValidationOptions.
func (*CertificateSpecDomainValidationOptions) DeepCopyInto ¶
func (in *CertificateSpecDomainValidationOptions) DeepCopyInto(out *CertificateSpecDomainValidationOptions)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateSpecOptions ¶
type CertificateSpecOptions struct {
// +optional
CertificateTransparencyLoggingPreference *string `json:"certificateTransparencyLoggingPreference,omitempty" tf:"certificate_transparency_logging_preference"`
}
func (*CertificateSpecOptions) DeepCopy ¶
func (in *CertificateSpecOptions) DeepCopy() *CertificateSpecOptions
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateSpecOptions.
func (*CertificateSpecOptions) DeepCopyInto ¶
func (in *CertificateSpecOptions) DeepCopyInto(out *CertificateSpecOptions)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateSpecOptionsCodec ¶
type CertificateSpecOptionsCodec struct {
}
+k8s:deepcopy-gen=false
func (CertificateSpecOptionsCodec) Decode ¶
func (CertificateSpecOptionsCodec) Decode(ptr unsafe.Pointer, iter *jsoniter.Iterator)
type CertificateSpecResource ¶
type CertificateSpecResource struct {
ID string `json:"id,omitempty" tf:"id,omitempty"`
// +optional
Arn *string `json:"arn,omitempty" tf:"arn"`
// +optional
CertificateAuthorityArn *string `json:"certificateAuthorityArn,omitempty" tf:"certificate_authority_arn"`
// +optional
CertificateBody *string `json:"certificateBody,omitempty" tf:"certificate_body"`
// +optional
CertificateChain *string `json:"certificateChain,omitempty" tf:"certificate_chain"`
// +optional
DomainName *string `json:"domainName,omitempty" tf:"domain_name"`
// +optional
DomainValidationOptions []CertificateSpecDomainValidationOptions `json:"domainValidationOptions,omitempty" tf:"domain_validation_options"`
// +optional
Options *CertificateSpecOptions `json:"options,omitempty" tf:"options"`
// +optional
PrivateKey *string `json:"-" sensitive:"true" tf:"private_key"`
// +optional
Status *string `json:"status,omitempty" tf:"status"`
// +optional
SubjectAlternativeNames []string `json:"subjectAlternativeNames,omitempty" tf:"subject_alternative_names"`
// +optional
Tags *map[string]string `json:"tags,omitempty" tf:"tags"`
// +optional
TagsAll *map[string]string `json:"tagsAll,omitempty" tf:"tags_all"`
// +optional
ValidationEmails []string `json:"validationEmails,omitempty" tf:"validation_emails"`
// +optional
ValidationMethod *string `json:"validationMethod,omitempty" tf:"validation_method"`
}
func (*CertificateSpecResource) DeepCopy ¶
func (in *CertificateSpecResource) DeepCopy() *CertificateSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateSpecResource.
func (*CertificateSpecResource) DeepCopyInto ¶
func (in *CertificateSpecResource) DeepCopyInto(out *CertificateSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateStatus ¶
type CertificateStatus struct {
// Resource generation, which is updated on mutation by the API Server.
// +optional
ObservedGeneration int64 `json:"observedGeneration,omitempty"`
// +optional
Phase status.Status `json:"phase,omitempty"`
// +optional
Conditions []kmapi.Condition `json:"conditions,omitempty"`
}
func (*CertificateStatus) DeepCopy ¶
func (in *CertificateStatus) DeepCopy() *CertificateStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateStatus.
func (*CertificateStatus) DeepCopyInto ¶
func (in *CertificateStatus) DeepCopyInto(out *CertificateStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateValidation ¶
type CertificateValidation struct {
metav1.TypeMeta `json:",inline,omitempty"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec CertificateValidationSpec `json:"spec,omitempty"`
Status CertificateValidationStatus `json:"status,omitempty"`
}
func (*CertificateValidation) DeepCopy ¶
func (in *CertificateValidation) DeepCopy() *CertificateValidation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateValidation.
func (*CertificateValidation) DeepCopyInto ¶
func (in *CertificateValidation) DeepCopyInto(out *CertificateValidation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CertificateValidation) DeepCopyObject ¶
func (in *CertificateValidation) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*CertificateValidation) SetupWebhookWithManager ¶
func (r *CertificateValidation) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*CertificateValidation) ValidateCreate ¶
func (r *CertificateValidation) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*CertificateValidation) ValidateDelete ¶
func (r *CertificateValidation) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*CertificateValidation) ValidateUpdate ¶
func (r *CertificateValidation) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type CertificateValidationList ¶
type CertificateValidationList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
// Items is a list of CertificateValidation CRD objects
Items []CertificateValidation `json:"items,omitempty"`
}
CertificateValidationList is a list of CertificateValidations
func (*CertificateValidationList) DeepCopy ¶
func (in *CertificateValidationList) DeepCopy() *CertificateValidationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateValidationList.
func (*CertificateValidationList) DeepCopyInto ¶
func (in *CertificateValidationList) DeepCopyInto(out *CertificateValidationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CertificateValidationList) DeepCopyObject ¶
func (in *CertificateValidationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type CertificateValidationSpec ¶
type CertificateValidationSpec struct {
State *CertificateValidationSpecResource `json:"state,omitempty" tf:"-"`
Resource CertificateValidationSpecResource `json:"resource" tf:"resource"`
UpdatePolicy base.UpdatePolicy `json:"updatePolicy,omitempty" tf:"-"`
TerminationPolicy base.TerminationPolicy `json:"terminationPolicy,omitempty" tf:"-"`
ProviderRef core.LocalObjectReference `json:"providerRef" tf:"-"`
BackendRef *core.LocalObjectReference `json:"backendRef,omitempty" tf:"-"`
}
func (*CertificateValidationSpec) DeepCopy ¶
func (in *CertificateValidationSpec) DeepCopy() *CertificateValidationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateValidationSpec.
func (*CertificateValidationSpec) DeepCopyInto ¶
func (in *CertificateValidationSpec) DeepCopyInto(out *CertificateValidationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateValidationSpecResource ¶
type CertificateValidationSpecResource struct {
Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"`
ID string `json:"id,omitempty" tf:"id,omitempty"`
CertificateArn *string `json:"certificateArn" tf:"certificate_arn"`
// +optional
ValidationRecordFqdns []string `json:"validationRecordFqdns,omitempty" tf:"validation_record_fqdns"`
}
func (*CertificateValidationSpecResource) DeepCopy ¶
func (in *CertificateValidationSpecResource) DeepCopy() *CertificateValidationSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateValidationSpecResource.
func (*CertificateValidationSpecResource) DeepCopyInto ¶
func (in *CertificateValidationSpecResource) DeepCopyInto(out *CertificateValidationSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CertificateValidationStatus ¶
type CertificateValidationStatus struct {
// Resource generation, which is updated on mutation by the API Server.
// +optional
ObservedGeneration int64 `json:"observedGeneration,omitempty"`
// +optional
Phase status.Status `json:"phase,omitempty"`
// +optional
Conditions []kmapi.Condition `json:"conditions,omitempty"`
}
func (*CertificateValidationStatus) DeepCopy ¶
func (in *CertificateValidationStatus) DeepCopy() *CertificateValidationStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CertificateValidationStatus.
func (*CertificateValidationStatus) DeepCopyInto ¶
func (in *CertificateValidationStatus) DeepCopyInto(out *CertificateValidationStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.