v1alpha1

package
v0.0.0-...-bf43ebf Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 18, 2021 License: Apache-2.0 Imports: 19 Imported by: 0

Documentation

Index

Constants

View Source
const (
	Group   = "shield-protection.terraform-provider-aws.crossplane.io"
	Version = "v1alpha1"
)

Package type metadata.

Variables

View Source
var (
	Kind                  = "ShieldProtection"
	GroupKind             = schema.GroupKind{Group: Group, Kind: Kind}.String()
	KindAPIVersion        = Kind + "." + SchemeGroupVersion.String()
	GroupVersionKind      = SchemeGroupVersion.WithKind(Kind)
	TerraformResourceName = "aws_shield_protection"
)
View Source
var (
	// SchemeGroupVersion is group version used to register these objects
	SchemeGroupVersion = schema.GroupVersion{Group: Group, Version: Version}
)

Functions

func DecodeShieldProtection

func DecodeShieldProtection(prev *ShieldProtection, ctyValue cty.Value) (resource.Managed, error)

func DecodeShieldProtection_Name

func DecodeShieldProtection_Name(p *ShieldProtectionParameters, vals map[string]cty.Value)

primitiveTypeDecodeTemplate

func DecodeShieldProtection_ResourceArn

func DecodeShieldProtection_ResourceArn(p *ShieldProtectionParameters, vals map[string]cty.Value)

primitiveTypeDecodeTemplate

func EncodeShieldProtection

func EncodeShieldProtection(r ShieldProtection) cty.Value

func EncodeShieldProtection_Name

func EncodeShieldProtection_Name(p ShieldProtectionParameters, vals map[string]cty.Value)

func EncodeShieldProtection_ResourceArn

func EncodeShieldProtection_ResourceArn(p ShieldProtectionParameters, vals map[string]cty.Value)

func Implementation

func Implementation() *plugin.Implementation

func MergeShieldProtection_Name

mergePrimitiveTemplateSpec

func MergeShieldProtection_ResourceArn

func MergeShieldProtection_ResourceArn(k *ShieldProtectionParameters, p *ShieldProtectionParameters, md *plugin.MergeDescription) bool

mergePrimitiveTemplateSpec

Types

type ShieldProtection

type ShieldProtection struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`

	Spec   ShieldProtectionSpec   `json:"spec"`
	Status ShieldProtectionStatus `json:"status,omitempty"`
}

ShieldProtection is a managed resource representing a resource mirrored in the cloud +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster

func (*ShieldProtection) DeepCopy

func (in *ShieldProtection) DeepCopy() *ShieldProtection

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShieldProtection.

func (*ShieldProtection) DeepCopyInto

func (in *ShieldProtection) DeepCopyInto(out *ShieldProtection)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ShieldProtection) DeepCopyObject

func (in *ShieldProtection) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ShieldProtection) GetCondition

GetCondition of this ShieldProtection.

func (*ShieldProtection) GetDeletionPolicy

func (mg *ShieldProtection) GetDeletionPolicy() runtimev1alpha1.DeletionPolicy

GetDeletionPolicy of this ShieldProtection.

func (*ShieldProtection) GetProviderConfigReference

func (mg *ShieldProtection) GetProviderConfigReference() *runtimev1alpha1.Reference

GetProviderConfigReference of this ShieldProtection.

func (*ShieldProtection) GetProviderReference

func (mg *ShieldProtection) GetProviderReference() *runtimev1alpha1.Reference

GetProviderReference of this ShieldProtection. Deprecated: Use GetProviderConfigReference.

func (*ShieldProtection) GetWriteConnectionSecretToReference

func (mg *ShieldProtection) GetWriteConnectionSecretToReference() *runtimev1alpha1.SecretReference

GetWriteConnectionSecretToReference of this ShieldProtection.

func (*ShieldProtection) SetConditions

func (mg *ShieldProtection) SetConditions(c ...runtimev1alpha1.Condition)

SetConditions of this ShieldProtection.

func (*ShieldProtection) SetDeletionPolicy

func (mg *ShieldProtection) SetDeletionPolicy(r runtimev1alpha1.DeletionPolicy)

SetDeletionPolicy of this ShieldProtection.

func (*ShieldProtection) SetProviderConfigReference

func (mg *ShieldProtection) SetProviderConfigReference(r *runtimev1alpha1.Reference)

SetProviderConfigReference of this ShieldProtection.

func (*ShieldProtection) SetProviderReference

func (mg *ShieldProtection) SetProviderReference(r *runtimev1alpha1.Reference)

SetProviderReference of this ShieldProtection. Deprecated: Use SetProviderConfigReference.

func (*ShieldProtection) SetWriteConnectionSecretToReference

func (mg *ShieldProtection) SetWriteConnectionSecretToReference(r *runtimev1alpha1.SecretReference)

SetWriteConnectionSecretToReference of this ShieldProtection.

type ShieldProtectionList

type ShieldProtectionList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []ShieldProtection `json:"items"`
}

ShieldProtection contains a list of ShieldProtectionList

func (*ShieldProtectionList) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShieldProtectionList.

func (*ShieldProtectionList) DeepCopyInto

func (in *ShieldProtectionList) DeepCopyInto(out *ShieldProtectionList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ShieldProtectionList) DeepCopyObject

func (in *ShieldProtectionList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ShieldProtectionList) GetItems

func (l *ShieldProtectionList) GetItems() []resource.Managed

GetItems of this ShieldProtectionList.

type ShieldProtectionObservation

type ShieldProtectionObservation struct{}

A ShieldProtectionObservation records the observed state of a ShieldProtection

func (*ShieldProtectionObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShieldProtectionObservation.

func (*ShieldProtectionObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ShieldProtectionParameters

type ShieldProtectionParameters struct {
	Name        string `json:"name"`
	ResourceArn string `json:"resource_arn"`
}

A ShieldProtectionParameters defines the desired state of a ShieldProtection

func (*ShieldProtectionParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShieldProtectionParameters.

func (*ShieldProtectionParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ShieldProtectionSpec

type ShieldProtectionSpec struct {
	runtimev1alpha1.ResourceSpec `json:",inline"`
	ForProvider                  ShieldProtectionParameters `json:"forProvider"`
}

A ShieldProtectionSpec defines the desired state of a ShieldProtection

func (*ShieldProtectionSpec) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShieldProtectionSpec.

func (*ShieldProtectionSpec) DeepCopyInto

func (in *ShieldProtectionSpec) DeepCopyInto(out *ShieldProtectionSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ShieldProtectionStatus

type ShieldProtectionStatus struct {
	runtimev1alpha1.ResourceStatus `json:",inline"`
	AtProvider                     ShieldProtectionObservation `json:"atProvider"`
}

A ShieldProtectionStatus defines the observed state of a ShieldProtection

func (*ShieldProtectionStatus) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShieldProtectionStatus.

func (*ShieldProtectionStatus) DeepCopyInto

func (in *ShieldProtectionStatus) DeepCopyInto(out *ShieldProtectionStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL