Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=mediastore.aws.upbound.io +versionName=v1beta1
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) GetInitParameters() (map[string]any, error)
- func (mg *Container) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *Container) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
- func (tr *Container) GetObservation() (map[string]any, error)
- func (tr *Container) GetParameters() (map[string]any, error)
- func (mg *Container) GetProviderConfigReference() *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) Hub()
- func (tr *Container) LateInitialize(attrs []byte) (bool, error)
- func (mg *Container) SetConditions(c ...xpv1.Condition)
- func (mg *Container) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Container) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *Container) SetObservation(obs map[string]any) error
- func (tr *Container) SetParameters(params map[string]any) error
- func (mg *Container) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Container) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Container) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ContainerInitParameters
- 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) GetInitParameters() (map[string]any, error)
- func (mg *ContainerPolicy) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *ContainerPolicy) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
- func (tr *ContainerPolicy) GetObservation() (map[string]any, error)
- func (tr *ContainerPolicy) GetParameters() (map[string]any, error)
- func (mg *ContainerPolicy) GetProviderConfigReference() *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) Hub()
- func (tr *ContainerPolicy) LateInitialize(attrs []byte) (bool, error)
- func (mg *ContainerPolicy) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *ContainerPolicy) SetConditions(c ...xpv1.Condition)
- func (mg *ContainerPolicy) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *ContainerPolicy) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *ContainerPolicy) SetObservation(obs map[string]any) error
- func (tr *ContainerPolicy) SetParameters(params map[string]any) error
- func (mg *ContainerPolicy) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *ContainerPolicy) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *ContainerPolicy) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ContainerPolicyInitParameters
- type ContainerPolicyList
- type ContainerPolicyObservation
- type ContainerPolicyParameters
- type ContainerPolicySpec
- type ContainerPolicyStatus
- type ContainerSpec
- type ContainerStatus
Constants ¶
const ( CRDGroup = "mediastore.aws.upbound.io" CRDVersion = "v1beta1" )
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. Provides a MediaStore Container. +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,aws}
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) GetInitParameters ¶ added in v0.38.0
GetInitParameters of this Container
func (*Container) GetManagementPolicies ¶ added in v0.38.0
func (mg *Container) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this Container.
func (*Container) GetMergedParameters ¶ added in v0.44.0
GetInitParameters 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) 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) Hub ¶ added in v0.47.2
func (tr *Container) Hub()
Hub marks this type as a conversion hub.
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) SetManagementPolicies ¶ added in v0.38.0
func (mg *Container) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies 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) 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 ContainerInitParameters ¶ added in v0.38.0
type ContainerInitParameters struct { // Key-value map of resource tags. // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*ContainerInitParameters) DeepCopy ¶ added in v0.38.0
func (in *ContainerInitParameters) DeepCopy() *ContainerInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerInitParameters.
func (*ContainerInitParameters) DeepCopyInto ¶ added in v0.38.0
func (in *ContainerInitParameters) DeepCopyInto(out *ContainerInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
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 { // The ARN of the container. Arn *string `json:"arn,omitempty" tf:"arn,omitempty"` // The DNS endpoint of the container. Endpoint *string `json:"endpoint,omitempty" tf:"endpoint,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` // Key-value map of resource tags. // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block. // +mapType=granular 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 { // Region is the region you'd like your resource to be created in. // +upjet:crd:field:TFTag=- // +kubebuilder:validation:Required Region *string `json:"region" tf:"-"` // Key-value map of resource tags. // +kubebuilder:validation:Optional // +mapType=granular 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"` // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.policy) || (has(self.initProvider) && has(self.initProvider.policy))",message="spec.forProvider.policy is a required parameter" Spec ContainerPolicySpec `json:"spec"` Status ContainerPolicyStatus `json:"status,omitempty"` }
ContainerPolicy is the Schema for the ContainerPolicys API. Provides a MediaStore Container Policy. +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,aws}
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) GetInitParameters ¶ added in v0.38.0
func (tr *ContainerPolicy) GetInitParameters() (map[string]any, error)
GetInitParameters of this ContainerPolicy
func (*ContainerPolicy) GetManagementPolicies ¶ added in v0.38.0
func (mg *ContainerPolicy) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this ContainerPolicy.
func (*ContainerPolicy) GetMergedParameters ¶ added in v0.44.0
func (tr *ContainerPolicy) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
GetInitParameters of this ContainerPolicy
func (*ContainerPolicy) GetObservation ¶
func (tr *ContainerPolicy) GetObservation() (map[string]any, error)
GetObservation of this ContainerPolicy
func (*ContainerPolicy) GetParameters ¶
func (tr *ContainerPolicy) GetParameters() (map[string]any, error)
GetParameters of this ContainerPolicy
func (*ContainerPolicy) GetProviderConfigReference ¶
func (mg *ContainerPolicy) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this ContainerPolicy.
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) Hub ¶ added in v0.47.2
func (tr *ContainerPolicy) Hub()
Hub marks this type as a conversion hub.
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) ResolveReferences ¶
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) SetManagementPolicies ¶ added in v0.38.0
func (mg *ContainerPolicy) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this ContainerPolicy.
func (*ContainerPolicy) SetObservation ¶
func (tr *ContainerPolicy) SetObservation(obs map[string]any) error
SetObservation for this ContainerPolicy
func (*ContainerPolicy) SetParameters ¶
func (tr *ContainerPolicy) SetParameters(params map[string]any) error
SetParameters for this ContainerPolicy
func (*ContainerPolicy) SetProviderConfigReference ¶
func (mg *ContainerPolicy) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this ContainerPolicy.
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 ContainerPolicyInitParameters ¶ added in v0.38.0
type ContainerPolicyInitParameters struct { // The name of the container. // +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/mediastore/v1beta1.Container ContainerName *string `json:"containerName,omitempty" tf:"container_name,omitempty"` // Reference to a Container in mediastore to populate containerName. // +kubebuilder:validation:Optional ContainerNameRef *v1.Reference `json:"containerNameRef,omitempty" tf:"-"` // Selector for a Container in mediastore to populate containerName. // +kubebuilder:validation:Optional ContainerNameSelector *v1.Selector `json:"containerNameSelector,omitempty" tf:"-"` // The contents of the policy. Policy *string `json:"policy,omitempty" tf:"policy,omitempty"` }
func (*ContainerPolicyInitParameters) DeepCopy ¶ added in v0.38.0
func (in *ContainerPolicyInitParameters) DeepCopy() *ContainerPolicyInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContainerPolicyInitParameters.
func (*ContainerPolicyInitParameters) DeepCopyInto ¶ added in v0.38.0
func (in *ContainerPolicyInitParameters) DeepCopyInto(out *ContainerPolicyInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
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 { // The name of the container. ContainerName *string `json:"containerName,omitempty" tf:"container_name,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` // The contents of the policy. Policy *string `json:"policy,omitempty" tf:"policy,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 { // The name of the container. // +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/mediastore/v1beta1.Container // +kubebuilder:validation:Optional ContainerName *string `json:"containerName,omitempty" tf:"container_name,omitempty"` // Reference to a Container in mediastore to populate containerName. // +kubebuilder:validation:Optional ContainerNameRef *v1.Reference `json:"containerNameRef,omitempty" tf:"-"` // Selector for a Container in mediastore to populate containerName. // +kubebuilder:validation:Optional ContainerNameSelector *v1.Selector `json:"containerNameSelector,omitempty" tf:"-"` // The contents of the policy. // +kubebuilder:validation:Optional Policy *string `json:"policy,omitempty" tf:"policy,omitempty"` // Region is the region you'd like your resource to be created in. // +upjet: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"` // THIS IS A BETA FIELD. It will be honored // unless the Management Policies feature flag is disabled. // InitProvider holds the same fields as ForProvider, with the exception // of Identifier and other resource reference fields. The fields that are // in InitProvider are merged into ForProvider when the resource is created. // The same fields are also added to the terraform ignore_changes hook, to // avoid updating them after creation. This is useful for fields that are // required on creation, but we do not desire to update them after creation, // for example because of an external controller is managing them, like an // autoscaler. InitProvider ContainerPolicyInitParameters `json:"initProvider,omitempty"` }
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"` // THIS IS A BETA FIELD. It will be honored // unless the Management Policies feature flag is disabled. // InitProvider holds the same fields as ForProvider, with the exception // of Identifier and other resource reference fields. The fields that are // in InitProvider are merged into ForProvider when the resource is created. // The same fields are also added to the terraform ignore_changes hook, to // avoid updating them after creation. This is useful for fields that are // required on creation, but we do not desire to update them after creation, // for example because of an external controller is managing them, like an // autoscaler. InitProvider ContainerInitParameters `json:"initProvider,omitempty"` }
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.