Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=mediastore.aws.jet.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type Container
- func (in *Container) DeepCopy() *Container
- func (in *Container) DeepCopyInto(out *Container)
- func (in *Container) DeepCopyObject() runtime.Object
- func (mg *Container) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Container) GetConnectionDetailsMapping() map[string]string
- func (mg *Container) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Container) GetID() string
- func (tr *Container) GetObservation() (map[string]interface{}, error)
- func (tr *Container) GetParameters() (map[string]interface{}, error)
- func (mg *Container) GetProviderConfigReference() *xpv1.Reference
- func (mg *Container) GetProviderReference() *xpv1.Reference
- func (mg *Container) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Container) GetTerraformResourceType() string
- func (tr *Container) GetTerraformSchemaVersion() int
- func (mg *Container) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Container) LateInitialize(attrs []byte) (bool, error)
- func (mg *Container) SetConditions(c ...xpv1.Condition)
- func (mg *Container) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *Container) SetObservation(obs map[string]interface{}) error
- func (tr *Container) SetParameters(params map[string]interface{}) error
- func (mg *Container) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Container) SetProviderReference(r *xpv1.Reference)
- func (mg *Container) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Container) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ContainerList
- type ContainerObservation
- type ContainerParameters
- type ContainerPolicy
- func (in *ContainerPolicy) DeepCopy() *ContainerPolicy
- func (in *ContainerPolicy) DeepCopyInto(out *ContainerPolicy)
- func (in *ContainerPolicy) DeepCopyObject() runtime.Object
- func (mg *ContainerPolicy) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *ContainerPolicy) GetConnectionDetailsMapping() map[string]string
- func (mg *ContainerPolicy) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *ContainerPolicy) GetID() string
- func (tr *ContainerPolicy) GetObservation() (map[string]interface{}, error)
- func (tr *ContainerPolicy) GetParameters() (map[string]interface{}, error)
- func (mg *ContainerPolicy) GetProviderConfigReference() *xpv1.Reference
- func (mg *ContainerPolicy) GetProviderReference() *xpv1.Reference
- func (mg *ContainerPolicy) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *ContainerPolicy) GetTerraformResourceType() string
- func (tr *ContainerPolicy) GetTerraformSchemaVersion() int
- func (mg *ContainerPolicy) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *ContainerPolicy) LateInitialize(attrs []byte) (bool, error)
- func (mg *ContainerPolicy) SetConditions(c ...xpv1.Condition)
- func (mg *ContainerPolicy) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *ContainerPolicy) SetObservation(obs map[string]interface{}) error
- func (tr *ContainerPolicy) SetParameters(params map[string]interface{}) error
- func (mg *ContainerPolicy) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *ContainerPolicy) SetProviderReference(r *xpv1.Reference)
- func (mg *ContainerPolicy) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *ContainerPolicy) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ContainerPolicyList
- type ContainerPolicyObservation
- type ContainerPolicyParameters
- type ContainerPolicySpec
- type ContainerPolicyStatus
- type ContainerSpec
- type ContainerStatus
Constants ¶
const ( CRDGroup = "mediastore.aws.jet.crossplane.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( Container_Kind = "Container" Container_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Container_Kind}.String() Container_KindAPIVersion = Container_Kind + "." + CRDGroupVersion.String() Container_GroupVersionKind = CRDGroupVersion.WithKind(Container_Kind) )
Repository type metadata.
var ( ContainerPolicy_Kind = "ContainerPolicy" ContainerPolicy_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: ContainerPolicy_Kind}.String() ContainerPolicy_KindAPIVersion = ContainerPolicy_Kind + "." + CRDGroupVersion.String() ContainerPolicy_GroupVersionKind = CRDGroupVersion.WithKind(ContainerPolicy_Kind) )
Repository type metadata.
var ( // CRDGroupVersion is the API Group Version used to register the objects CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type Container ¶
type Container struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ContainerSpec `json:"spec"` Status ContainerStatus `json:"status,omitempty"` }
Container is the Schema for the Containers API +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="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,awsjet}
func (*Container) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Container.
func (*Container) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Container) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Container) GetCondition ¶
func (mg *Container) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Container.
func (*Container) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Container
func (*Container) GetDeletionPolicy ¶
func (mg *Container) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Container.
func (*Container) GetObservation ¶
GetObservation of this Container
func (*Container) GetParameters ¶
GetParameters of this Container
func (*Container) GetProviderConfigReference ¶
GetProviderConfigReference of this Container.
func (*Container) GetProviderReference ¶
GetProviderReference of this Container. Deprecated: Use GetProviderConfigReference.
func (*Container) GetPublishConnectionDetailsTo ¶
func (mg *Container) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Container.
func (*Container) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Container
func (*Container) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Container) GetWriteConnectionSecretToReference ¶
func (mg *Container) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Container.
func (*Container) LateInitialize ¶
LateInitialize this Container using its observed tfState. returns True if there are any spec changes for the resource.
func (*Container) SetConditions ¶
SetConditions of this Container.
func (*Container) SetDeletionPolicy ¶
func (mg *Container) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Container.
func (*Container) SetObservation ¶
SetObservation for this Container
func (*Container) SetParameters ¶
SetParameters for this Container
func (*Container) SetProviderConfigReference ¶
SetProviderConfigReference of this Container.
func (*Container) SetProviderReference ¶
SetProviderReference of this Container. Deprecated: Use SetProviderConfigReference.
func (*Container) SetPublishConnectionDetailsTo ¶
func (mg *Container) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Container.
func (*Container) SetWriteConnectionSecretToReference ¶
func (mg *Container) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Container.
type ContainerList ¶
type ContainerList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Container `json:"items"` }
ContainerList contains a list of Containers
func (*ContainerList) DeepCopy ¶
func (in *ContainerList) DeepCopy() *ContainerList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerList.
func (*ContainerList) DeepCopyInto ¶
func (in *ContainerList) DeepCopyInto(out *ContainerList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ContainerList) DeepCopyObject ¶
func (in *ContainerList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ContainerList) GetItems ¶
func (l *ContainerList) GetItems() []resource.Managed
GetItems of this ContainerList.
type ContainerObservation ¶
type ContainerObservation struct { Arn *string `json:"arn,omitempty" tf:"arn,omitempty"` Endpoint *string `json:"endpoint,omitempty" tf:"endpoint,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"` }
func (*ContainerObservation) DeepCopy ¶
func (in *ContainerObservation) DeepCopy() *ContainerObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerObservation.
func (*ContainerObservation) DeepCopyInto ¶
func (in *ContainerObservation) DeepCopyInto(out *ContainerObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ContainerParameters ¶
type ContainerParameters struct { // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` // Region is the region you'd like your resource to be created in. // +terrajet:crd:field:TFTag=- // +kubebuilder:validation:Required Region *string `json:"region" tf:"-"` // +kubebuilder:validation:Optional Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*ContainerParameters) DeepCopy ¶
func (in *ContainerParameters) DeepCopy() *ContainerParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerParameters.
func (*ContainerParameters) DeepCopyInto ¶
func (in *ContainerParameters) DeepCopyInto(out *ContainerParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ContainerPolicy ¶
type ContainerPolicy struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ContainerPolicySpec `json:"spec"` Status ContainerPolicyStatus `json:"status,omitempty"` }
ContainerPolicy is the Schema for the ContainerPolicys API +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="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,awsjet}
func (*ContainerPolicy) DeepCopy ¶
func (in *ContainerPolicy) DeepCopy() *ContainerPolicy
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerPolicy.
func (*ContainerPolicy) DeepCopyInto ¶
func (in *ContainerPolicy) DeepCopyInto(out *ContainerPolicy)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ContainerPolicy) DeepCopyObject ¶
func (in *ContainerPolicy) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ContainerPolicy) GetCondition ¶
func (mg *ContainerPolicy) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this ContainerPolicy.
func (*ContainerPolicy) GetConnectionDetailsMapping ¶
func (tr *ContainerPolicy) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this ContainerPolicy
func (*ContainerPolicy) GetDeletionPolicy ¶
func (mg *ContainerPolicy) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this ContainerPolicy.
func (*ContainerPolicy) GetID ¶
func (tr *ContainerPolicy) GetID() string
GetID returns ID of underlying Terraform resource of this ContainerPolicy
func (*ContainerPolicy) GetObservation ¶
func (tr *ContainerPolicy) GetObservation() (map[string]interface{}, error)
GetObservation of this ContainerPolicy
func (*ContainerPolicy) GetParameters ¶
func (tr *ContainerPolicy) GetParameters() (map[string]interface{}, error)
GetParameters of this ContainerPolicy
func (*ContainerPolicy) GetProviderConfigReference ¶
func (mg *ContainerPolicy) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this ContainerPolicy.
func (*ContainerPolicy) GetProviderReference ¶
func (mg *ContainerPolicy) GetProviderReference() *xpv1.Reference
GetProviderReference of this ContainerPolicy. Deprecated: Use GetProviderConfigReference.
func (*ContainerPolicy) GetPublishConnectionDetailsTo ¶
func (mg *ContainerPolicy) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this ContainerPolicy.
func (*ContainerPolicy) GetTerraformResourceType ¶
func (mg *ContainerPolicy) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this ContainerPolicy
func (*ContainerPolicy) GetTerraformSchemaVersion ¶
func (tr *ContainerPolicy) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*ContainerPolicy) GetWriteConnectionSecretToReference ¶
func (mg *ContainerPolicy) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this ContainerPolicy.
func (*ContainerPolicy) LateInitialize ¶
func (tr *ContainerPolicy) LateInitialize(attrs []byte) (bool, error)
LateInitialize this ContainerPolicy using its observed tfState. returns True if there are any spec changes for the resource.
func (*ContainerPolicy) SetConditions ¶
func (mg *ContainerPolicy) SetConditions(c ...xpv1.Condition)
SetConditions of this ContainerPolicy.
func (*ContainerPolicy) SetDeletionPolicy ¶
func (mg *ContainerPolicy) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this ContainerPolicy.
func (*ContainerPolicy) SetObservation ¶
func (tr *ContainerPolicy) SetObservation(obs map[string]interface{}) error
SetObservation for this ContainerPolicy
func (*ContainerPolicy) SetParameters ¶
func (tr *ContainerPolicy) SetParameters(params map[string]interface{}) error
SetParameters for this ContainerPolicy
func (*ContainerPolicy) SetProviderConfigReference ¶
func (mg *ContainerPolicy) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this ContainerPolicy.
func (*ContainerPolicy) SetProviderReference ¶
func (mg *ContainerPolicy) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this ContainerPolicy. Deprecated: Use SetProviderConfigReference.
func (*ContainerPolicy) SetPublishConnectionDetailsTo ¶
func (mg *ContainerPolicy) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this ContainerPolicy.
func (*ContainerPolicy) SetWriteConnectionSecretToReference ¶
func (mg *ContainerPolicy) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this ContainerPolicy.
type ContainerPolicyList ¶
type ContainerPolicyList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ContainerPolicy `json:"items"` }
ContainerPolicyList contains a list of ContainerPolicys
func (*ContainerPolicyList) DeepCopy ¶
func (in *ContainerPolicyList) DeepCopy() *ContainerPolicyList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerPolicyList.
func (*ContainerPolicyList) DeepCopyInto ¶
func (in *ContainerPolicyList) DeepCopyInto(out *ContainerPolicyList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ContainerPolicyList) DeepCopyObject ¶
func (in *ContainerPolicyList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ContainerPolicyList) GetItems ¶
func (l *ContainerPolicyList) GetItems() []resource.Managed
GetItems of this ContainerPolicyList.
type ContainerPolicyObservation ¶
type ContainerPolicyObservation struct {
ID *string `json:"id,omitempty" tf:"id,omitempty"`
}
func (*ContainerPolicyObservation) DeepCopy ¶
func (in *ContainerPolicyObservation) DeepCopy() *ContainerPolicyObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerPolicyObservation.
func (*ContainerPolicyObservation) DeepCopyInto ¶
func (in *ContainerPolicyObservation) DeepCopyInto(out *ContainerPolicyObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ContainerPolicyParameters ¶
type ContainerPolicyParameters struct { // +kubebuilder:validation:Required ContainerName *string `json:"containerName" tf:"container_name,omitempty"` // +kubebuilder:validation:Required Policy *string `json:"policy" tf:"policy,omitempty"` // Region is the region you'd like your resource to be created in. // +terrajet:crd:field:TFTag=- // +kubebuilder:validation:Required Region *string `json:"region" tf:"-"` }
func (*ContainerPolicyParameters) DeepCopy ¶
func (in *ContainerPolicyParameters) DeepCopy() *ContainerPolicyParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerPolicyParameters.
func (*ContainerPolicyParameters) DeepCopyInto ¶
func (in *ContainerPolicyParameters) DeepCopyInto(out *ContainerPolicyParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ContainerPolicySpec ¶
type ContainerPolicySpec struct { v1.ResourceSpec `json:",inline"` ForProvider ContainerPolicyParameters `json:"forProvider"` }
ContainerPolicySpec defines the desired state of ContainerPolicy
func (*ContainerPolicySpec) DeepCopy ¶
func (in *ContainerPolicySpec) DeepCopy() *ContainerPolicySpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerPolicySpec.
func (*ContainerPolicySpec) DeepCopyInto ¶
func (in *ContainerPolicySpec) DeepCopyInto(out *ContainerPolicySpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ContainerPolicyStatus ¶
type ContainerPolicyStatus struct { v1.ResourceStatus `json:",inline"` AtProvider ContainerPolicyObservation `json:"atProvider,omitempty"` }
ContainerPolicyStatus defines the observed state of ContainerPolicy.
func (*ContainerPolicyStatus) DeepCopy ¶
func (in *ContainerPolicyStatus) DeepCopy() *ContainerPolicyStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerPolicyStatus.
func (*ContainerPolicyStatus) DeepCopyInto ¶
func (in *ContainerPolicyStatus) DeepCopyInto(out *ContainerPolicyStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ContainerSpec ¶
type ContainerSpec struct { v1.ResourceSpec `json:",inline"` ForProvider ContainerParameters `json:"forProvider"` }
ContainerSpec defines the desired state of Container
func (*ContainerSpec) DeepCopy ¶
func (in *ContainerSpec) DeepCopy() *ContainerSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerSpec.
func (*ContainerSpec) DeepCopyInto ¶
func (in *ContainerSpec) DeepCopyInto(out *ContainerSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ContainerStatus ¶
type ContainerStatus struct { v1.ResourceStatus `json:",inline"` AtProvider ContainerObservation `json:"atProvider,omitempty"` }
ContainerStatus defines the observed state of Container.
func (*ContainerStatus) DeepCopy ¶
func (in *ContainerStatus) DeepCopy() *ContainerStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerStatus.
func (*ContainerStatus) DeepCopyInto ¶
func (in *ContainerStatus) DeepCopyInto(out *ContainerStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.