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   = "codedeploy-app.terraform-provider-aws.crossplane.io"
	Version = "v1alpha1"
)

Package type metadata.

Variables

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

Functions

func DecodeCodedeployApp

func DecodeCodedeployApp(prev *CodedeployApp, ctyValue cty.Value) (resource.Managed, error)

func DecodeCodedeployApp_ComputePlatform

func DecodeCodedeployApp_ComputePlatform(p *CodedeployAppParameters, vals map[string]cty.Value)

primitiveTypeDecodeTemplate

func DecodeCodedeployApp_Name

func DecodeCodedeployApp_Name(p *CodedeployAppParameters, vals map[string]cty.Value)

primitiveTypeDecodeTemplate

func DecodeCodedeployApp_UniqueId

func DecodeCodedeployApp_UniqueId(p *CodedeployAppParameters, vals map[string]cty.Value)

primitiveTypeDecodeTemplate

func EncodeCodedeployApp

func EncodeCodedeployApp(r CodedeployApp) cty.Value

func EncodeCodedeployApp_ComputePlatform

func EncodeCodedeployApp_ComputePlatform(p CodedeployAppParameters, vals map[string]cty.Value)

func EncodeCodedeployApp_Name

func EncodeCodedeployApp_Name(p CodedeployAppParameters, vals map[string]cty.Value)

func EncodeCodedeployApp_UniqueId

func EncodeCodedeployApp_UniqueId(p CodedeployAppParameters, vals map[string]cty.Value)

func Implementation

func Implementation() *plugin.Implementation

func MergeCodedeployApp_ComputePlatform

func MergeCodedeployApp_ComputePlatform(k *CodedeployAppParameters, p *CodedeployAppParameters, md *plugin.MergeDescription) bool

mergePrimitiveTemplateSpec

func MergeCodedeployApp_Name

func MergeCodedeployApp_Name(k *CodedeployAppParameters, p *CodedeployAppParameters, md *plugin.MergeDescription) bool

mergePrimitiveTemplateSpec

func MergeCodedeployApp_UniqueId

func MergeCodedeployApp_UniqueId(k *CodedeployAppParameters, p *CodedeployAppParameters, md *plugin.MergeDescription) bool

mergePrimitiveTemplateSpec

Types

type CodedeployApp

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

	Spec   CodedeployAppSpec   `json:"spec"`
	Status CodedeployAppStatus `json:"status,omitempty"`
}

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

func (*CodedeployApp) DeepCopy

func (in *CodedeployApp) DeepCopy() *CodedeployApp

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

func (*CodedeployApp) DeepCopyInto

func (in *CodedeployApp) DeepCopyInto(out *CodedeployApp)

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

func (*CodedeployApp) DeepCopyObject

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

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

func (*CodedeployApp) GetCondition

GetCondition of this CodedeployApp.

func (*CodedeployApp) GetDeletionPolicy

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

GetDeletionPolicy of this CodedeployApp.

func (*CodedeployApp) GetProviderConfigReference

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

GetProviderConfigReference of this CodedeployApp.

func (*CodedeployApp) GetProviderReference

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

GetProviderReference of this CodedeployApp. Deprecated: Use GetProviderConfigReference.

func (*CodedeployApp) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this CodedeployApp.

func (*CodedeployApp) SetConditions

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

SetConditions of this CodedeployApp.

func (*CodedeployApp) SetDeletionPolicy

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

SetDeletionPolicy of this CodedeployApp.

func (*CodedeployApp) SetProviderConfigReference

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

SetProviderConfigReference of this CodedeployApp.

func (*CodedeployApp) SetProviderReference

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

SetProviderReference of this CodedeployApp. Deprecated: Use SetProviderConfigReference.

func (*CodedeployApp) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this CodedeployApp.

type CodedeployAppList

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

CodedeployApp contains a list of CodedeployAppList

func (*CodedeployAppList) DeepCopy

func (in *CodedeployAppList) DeepCopy() *CodedeployAppList

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

func (*CodedeployAppList) DeepCopyInto

func (in *CodedeployAppList) DeepCopyInto(out *CodedeployAppList)

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

func (*CodedeployAppList) DeepCopyObject

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

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

func (*CodedeployAppList) GetItems

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

GetItems of this CodedeployAppList.

type CodedeployAppObservation

type CodedeployAppObservation struct{}

A CodedeployAppObservation records the observed state of a CodedeployApp

func (*CodedeployAppObservation) DeepCopy

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

func (*CodedeployAppObservation) DeepCopyInto

func (in *CodedeployAppObservation) DeepCopyInto(out *CodedeployAppObservation)

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

type CodedeployAppParameters

type CodedeployAppParameters struct {
	Name            string `json:"name"`
	UniqueId        string `json:"unique_id"`
	ComputePlatform string `json:"compute_platform"`
}

A CodedeployAppParameters defines the desired state of a CodedeployApp

func (*CodedeployAppParameters) DeepCopy

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

func (*CodedeployAppParameters) DeepCopyInto

func (in *CodedeployAppParameters) DeepCopyInto(out *CodedeployAppParameters)

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

type CodedeployAppSpec

type CodedeployAppSpec struct {
	runtimev1alpha1.ResourceSpec `json:",inline"`
	ForProvider                  CodedeployAppParameters `json:"forProvider"`
}

A CodedeployAppSpec defines the desired state of a CodedeployApp

func (*CodedeployAppSpec) DeepCopy

func (in *CodedeployAppSpec) DeepCopy() *CodedeployAppSpec

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

func (*CodedeployAppSpec) DeepCopyInto

func (in *CodedeployAppSpec) DeepCopyInto(out *CodedeployAppSpec)

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

type CodedeployAppStatus

type CodedeployAppStatus struct {
	runtimev1alpha1.ResourceStatus `json:",inline"`
	AtProvider                     CodedeployAppObservation `json:"atProvider"`
}

A CodedeployAppStatus defines the observed state of a CodedeployApp

func (*CodedeployAppStatus) DeepCopy

func (in *CodedeployAppStatus) DeepCopy() *CodedeployAppStatus

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

func (*CodedeployAppStatus) DeepCopyInto

func (in *CodedeployAppStatus) DeepCopyInto(out *CodedeployAppStatus)

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