v1beta1

package
v0.28.0 Latest Latest
Warning

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

Go to latest
Published: Jan 24, 2023 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

+kubebuilder:object:generate=true +groupName=accessanalyzer.aws.upbound.io +versionName=v1beta1

Index

Constants

View Source
const (
	CRDGroup   = "accessanalyzer.aws.upbound.io"
	CRDVersion = "v1beta1"
)

Package type metadata.

Variables

View Source
var (
	Analyzer_Kind             = "Analyzer"
	Analyzer_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Analyzer_Kind}.String()
	Analyzer_KindAPIVersion   = Analyzer_Kind + "." + CRDGroupVersion.String()
	Analyzer_GroupVersionKind = CRDGroupVersion.WithKind(Analyzer_Kind)
)

Repository type metadata.

View Source
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 Analyzer

type Analyzer struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              AnalyzerSpec   `json:"spec"`
	Status            AnalyzerStatus `json:"status,omitempty"`
}

Analyzer is the Schema for the Analyzers API. Manages an Access Analyzer Analyzer +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,aws}

func (*Analyzer) DeepCopy

func (in *Analyzer) DeepCopy() *Analyzer

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

func (*Analyzer) DeepCopyInto

func (in *Analyzer) DeepCopyInto(out *Analyzer)

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

func (*Analyzer) DeepCopyObject

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

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

func (*Analyzer) GetCondition

func (mg *Analyzer) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this Analyzer.

func (*Analyzer) GetConnectionDetailsMapping

func (tr *Analyzer) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this Analyzer

func (*Analyzer) GetDeletionPolicy

func (mg *Analyzer) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this Analyzer.

func (*Analyzer) GetID

func (tr *Analyzer) GetID() string

GetID returns ID of underlying Terraform resource of this Analyzer

func (*Analyzer) GetObservation

func (tr *Analyzer) GetObservation() (map[string]any, error)

GetObservation of this Analyzer

func (*Analyzer) GetParameters

func (tr *Analyzer) GetParameters() (map[string]any, error)

GetParameters of this Analyzer

func (*Analyzer) GetProviderConfigReference

func (mg *Analyzer) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this Analyzer.

func (*Analyzer) GetProviderReference

func (mg *Analyzer) GetProviderReference() *xpv1.Reference

GetProviderReference of this Analyzer. Deprecated: Use GetProviderConfigReference.

func (*Analyzer) GetPublishConnectionDetailsTo

func (mg *Analyzer) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this Analyzer.

func (*Analyzer) GetTerraformResourceType

func (mg *Analyzer) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Analyzer

func (*Analyzer) GetTerraformSchemaVersion

func (tr *Analyzer) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Analyzer) GetWriteConnectionSecretToReference

func (mg *Analyzer) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this Analyzer.

func (*Analyzer) LateInitialize

func (tr *Analyzer) LateInitialize(attrs []byte) (bool, error)

LateInitialize this Analyzer using its observed tfState. returns True if there are any spec changes for the resource.

func (*Analyzer) SetConditions

func (mg *Analyzer) SetConditions(c ...xpv1.Condition)

SetConditions of this Analyzer.

func (*Analyzer) SetDeletionPolicy

func (mg *Analyzer) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this Analyzer.

func (*Analyzer) SetObservation

func (tr *Analyzer) SetObservation(obs map[string]any) error

SetObservation for this Analyzer

func (*Analyzer) SetParameters

func (tr *Analyzer) SetParameters(params map[string]any) error

SetParameters for this Analyzer

func (*Analyzer) SetProviderConfigReference

func (mg *Analyzer) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this Analyzer.

func (*Analyzer) SetProviderReference

func (mg *Analyzer) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this Analyzer. Deprecated: Use SetProviderConfigReference.

func (*Analyzer) SetPublishConnectionDetailsTo

func (mg *Analyzer) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this Analyzer.

func (*Analyzer) SetWriteConnectionSecretToReference

func (mg *Analyzer) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this Analyzer.

type AnalyzerList

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

AnalyzerList contains a list of Analyzers

func (*AnalyzerList) DeepCopy

func (in *AnalyzerList) DeepCopy() *AnalyzerList

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

func (*AnalyzerList) DeepCopyInto

func (in *AnalyzerList) DeepCopyInto(out *AnalyzerList)

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

func (*AnalyzerList) DeepCopyObject

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

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

func (*AnalyzerList) GetItems

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

GetItems of this AnalyzerList.

type AnalyzerObservation

type AnalyzerObservation struct {

	// The Amazon Resource Name (ARN) of the Analyzer.
	Arn *string `json:"arn,omitempty" tf:"arn,omitempty"`

	// Analyzer name.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
	TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"`
}

func (*AnalyzerObservation) DeepCopy

func (in *AnalyzerObservation) DeepCopy() *AnalyzerObservation

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

func (*AnalyzerObservation) DeepCopyInto

func (in *AnalyzerObservation) DeepCopyInto(out *AnalyzerObservation)

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

type AnalyzerParameters

type AnalyzerParameters 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
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`

	// Type of Analyzer. Valid values are ACCOUNT or ORGANIZATION. Defaults to ACCOUNT.
	// +kubebuilder:validation:Optional
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*AnalyzerParameters) DeepCopy

func (in *AnalyzerParameters) DeepCopy() *AnalyzerParameters

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

func (*AnalyzerParameters) DeepCopyInto

func (in *AnalyzerParameters) DeepCopyInto(out *AnalyzerParameters)

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

type AnalyzerSpec

type AnalyzerSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     AnalyzerParameters `json:"forProvider"`
}

AnalyzerSpec defines the desired state of Analyzer

func (*AnalyzerSpec) DeepCopy

func (in *AnalyzerSpec) DeepCopy() *AnalyzerSpec

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

func (*AnalyzerSpec) DeepCopyInto

func (in *AnalyzerSpec) DeepCopyInto(out *AnalyzerSpec)

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

type AnalyzerStatus

type AnalyzerStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        AnalyzerObservation `json:"atProvider,omitempty"`
}

AnalyzerStatus defines the observed state of Analyzer.

func (*AnalyzerStatus) DeepCopy

func (in *AnalyzerStatus) DeepCopy() *AnalyzerStatus

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

func (*AnalyzerStatus) DeepCopyInto

func (in *AnalyzerStatus) DeepCopyInto(out *AnalyzerStatus)

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