v1beta1

package
v1.0.0-alpha.2 Latest Latest
Warning

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

Go to latest
Published: Oct 20, 2023 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Overview

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

Index

Constants

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

Package type metadata.

Variables

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
)
View Source
var (
	Input_Kind             = "Input"
	Input_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Input_Kind}.String()
	Input_KindAPIVersion   = Input_Kind + "." + CRDGroupVersion.String()
	Input_GroupVersionKind = CRDGroupVersion.WithKind(Input_Kind)
)

Repository type metadata.

View Source
var (
	InputSecurityGroup_Kind             = "InputSecurityGroup"
	InputSecurityGroup_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: InputSecurityGroup_Kind}.String()
	InputSecurityGroup_KindAPIVersion   = InputSecurityGroup_Kind + "." + CRDGroupVersion.String()
	InputSecurityGroup_GroupVersionKind = CRDGroupVersion.WithKind(InputSecurityGroup_Kind)
)

Repository type metadata.

View Source
var (
	Multiplex_Kind             = "Multiplex"
	Multiplex_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Multiplex_Kind}.String()
	Multiplex_KindAPIVersion   = Multiplex_Kind + "." + CRDGroupVersion.String()
	Multiplex_GroupVersionKind = CRDGroupVersion.WithKind(Multiplex_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type DestinationsInitParameters added in v0.38.0

type DestinationsInitParameters struct {

	// A unique name for the location the RTMP stream is being pushed to.
	StreamName *string `json:"streamName,omitempty" tf:"stream_name,omitempty"`
}

func (*DestinationsInitParameters) DeepCopy added in v0.38.0

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

func (*DestinationsInitParameters) DeepCopyInto added in v0.38.0

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

type DestinationsObservation

type DestinationsObservation struct {

	// A unique name for the location the RTMP stream is being pushed to.
	StreamName *string `json:"streamName,omitempty" tf:"stream_name,omitempty"`
}

func (*DestinationsObservation) DeepCopy

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

func (*DestinationsObservation) DeepCopyInto

func (in *DestinationsObservation) DeepCopyInto(out *DestinationsObservation)

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

type DestinationsParameters

type DestinationsParameters struct {

	// A unique name for the location the RTMP stream is being pushed to.
	// +kubebuilder:validation:Optional
	StreamName *string `json:"streamName" tf:"stream_name,omitempty"`
}

func (*DestinationsParameters) DeepCopy

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

func (*DestinationsParameters) DeepCopyInto

func (in *DestinationsParameters) DeepCopyInto(out *DestinationsParameters)

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

type Input

type Input 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.name) || (has(self.initProvider) && has(self.initProvider.name))",message="spec.forProvider.name is a required parameter"
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.type) || (has(self.initProvider) && has(self.initProvider.type))",message="spec.forProvider.type is a required parameter"
	Spec   InputSpec   `json:"spec"`
	Status InputStatus `json:"status,omitempty"`
}

Input is the Schema for the Inputs 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,aws}

func (*Input) DeepCopy

func (in *Input) DeepCopy() *Input

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

func (*Input) DeepCopyInto

func (in *Input) DeepCopyInto(out *Input)

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

func (*Input) DeepCopyObject

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

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

func (*Input) GetCondition

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

GetCondition of this Input.

func (*Input) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this Input

func (*Input) GetDeletionPolicy

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

GetDeletionPolicy of this Input.

func (*Input) GetID

func (tr *Input) GetID() string

GetID returns ID of underlying Terraform resource of this Input

func (*Input) GetInitParameters added in v0.38.0

func (tr *Input) GetInitParameters() (map[string]any, error)

GetInitParameters of this Input

func (*Input) GetManagementPolicies added in v0.38.0

func (mg *Input) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this Input.

func (*Input) GetObservation

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

GetObservation of this Input

func (*Input) GetParameters

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

GetParameters of this Input

func (*Input) GetProviderConfigReference

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

GetProviderConfigReference of this Input.

func (*Input) GetPublishConnectionDetailsTo

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

GetPublishConnectionDetailsTo of this Input.

func (*Input) GetTerraformResourceType

func (mg *Input) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Input

func (*Input) GetTerraformSchemaVersion

func (tr *Input) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Input) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this Input.

func (*Input) LateInitialize

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

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

func (*Input) ResolveReferences

func (mg *Input) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this Input.

func (*Input) SetConditions

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

SetConditions of this Input.

func (*Input) SetDeletionPolicy

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

SetDeletionPolicy of this Input.

func (*Input) SetManagementPolicies added in v0.38.0

func (mg *Input) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this Input.

func (*Input) SetObservation

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

SetObservation for this Input

func (*Input) SetParameters

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

SetParameters for this Input

func (*Input) SetProviderConfigReference

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

SetProviderConfigReference of this Input.

func (*Input) SetPublishConnectionDetailsTo

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

SetPublishConnectionDetailsTo of this Input.

func (*Input) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this Input.

type InputDevicesInitParameters added in v0.38.0

type InputDevicesInitParameters struct {

	// The unique ID for the device.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`
}

func (*InputDevicesInitParameters) DeepCopy added in v0.38.0

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

func (*InputDevicesInitParameters) DeepCopyInto added in v0.38.0

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

type InputDevicesObservation

type InputDevicesObservation struct {

	// The unique ID for the device.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`
}

func (*InputDevicesObservation) DeepCopy

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

func (*InputDevicesObservation) DeepCopyInto

func (in *InputDevicesObservation) DeepCopyInto(out *InputDevicesObservation)

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

type InputDevicesParameters

type InputDevicesParameters struct {

	// The unique ID for the device.
	// +kubebuilder:validation:Optional
	ID *string `json:"id" tf:"id,omitempty"`
}

func (*InputDevicesParameters) DeepCopy

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

func (*InputDevicesParameters) DeepCopyInto

func (in *InputDevicesParameters) DeepCopyInto(out *InputDevicesParameters)

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

type InputInitParameters added in v0.38.0

type InputInitParameters struct {

	// Destination settings for PUSH type inputs. See Destinations for more details.
	Destinations []DestinationsInitParameters `json:"destinations,omitempty" tf:"destinations,omitempty"`

	// Settings for the devices. See Input Devices for more details.
	InputDevices []InputDevicesInitParameters `json:"inputDevices,omitempty" tf:"input_devices,omitempty"`

	// List of input security groups.
	InputSecurityGroups []*string `json:"inputSecurityGroups,omitempty" tf:"input_security_groups,omitempty"`

	// A list of the MediaConnect Flows. See Media Connect Flows for more details.
	MediaConnectFlows []MediaConnectFlowsInitParameters `json:"mediaConnectFlows,omitempty" tf:"media_connect_flows,omitempty"`

	// Name of the input.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The source URLs for a PULL-type input. See Sources for more details.
	Sources []SourcesInitParameters `json:"sources,omitempty" tf:"sources,omitempty"`

	// Key-value map of resource tags.
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`

	// The different types of inputs that AWS Elemental MediaLive supports.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`

	// Settings for a private VPC Input. See VPC for more details.
	VPC []VPCInitParameters `json:"vpc,omitempty" tf:"vpc,omitempty"`
}

func (*InputInitParameters) DeepCopy added in v0.38.0

func (in *InputInitParameters) DeepCopy() *InputInitParameters

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

func (*InputInitParameters) DeepCopyInto added in v0.38.0

func (in *InputInitParameters) DeepCopyInto(out *InputInitParameters)

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

type InputList

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

InputList contains a list of Inputs

func (*InputList) DeepCopy

func (in *InputList) DeepCopy() *InputList

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

func (*InputList) DeepCopyInto

func (in *InputList) DeepCopyInto(out *InputList)

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

func (*InputList) DeepCopyObject

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

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

func (*InputList) GetItems

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

GetItems of this InputList.

type InputObservation

type InputObservation struct {

	// ARN of the Input.
	Arn *string `json:"arn,omitempty" tf:"arn,omitempty"`

	// Channels attached to Input.
	AttachedChannels []*string `json:"attachedChannels,omitempty" tf:"attached_channels,omitempty"`

	// Destination settings for PUSH type inputs. See Destinations for more details.
	Destinations []DestinationsObservation `json:"destinations,omitempty" tf:"destinations,omitempty"`

	// The unique ID for the device.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The input class.
	InputClass *string `json:"inputClass,omitempty" tf:"input_class,omitempty"`

	// Settings for the devices. See Input Devices for more details.
	InputDevices []InputDevicesObservation `json:"inputDevices,omitempty" tf:"input_devices,omitempty"`

	// A list of IDs for all Inputs which are partners of this one.
	InputPartnerIds []*string `json:"inputPartnerIds,omitempty" tf:"input_partner_ids,omitempty"`

	// List of input security groups.
	InputSecurityGroups []*string `json:"inputSecurityGroups,omitempty" tf:"input_security_groups,omitempty"`

	// Source type of the input.
	InputSourceType *string `json:"inputSourceType,omitempty" tf:"input_source_type,omitempty"`

	// A list of the MediaConnect Flows. See Media Connect Flows for more details.
	MediaConnectFlows []MediaConnectFlowsObservation `json:"mediaConnectFlows,omitempty" tf:"media_connect_flows,omitempty"`

	// Name of the input.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The ARN of the role this input assumes during and after creation.
	RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"`

	// The source URLs for a PULL-type input. See Sources for more details.
	Sources []SourcesObservation `json:"sources,omitempty" tf:"sources,omitempty"`

	// Key-value map of resource tags.
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`

	TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"`

	// The different types of inputs that AWS Elemental MediaLive supports.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`

	// Settings for a private VPC Input. See VPC for more details.
	VPC []VPCObservation `json:"vpc,omitempty" tf:"vpc,omitempty"`
}

func (*InputObservation) DeepCopy

func (in *InputObservation) DeepCopy() *InputObservation

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

func (*InputObservation) DeepCopyInto

func (in *InputObservation) DeepCopyInto(out *InputObservation)

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

type InputParameters

type InputParameters struct {

	// Destination settings for PUSH type inputs. See Destinations for more details.
	// +kubebuilder:validation:Optional
	Destinations []DestinationsParameters `json:"destinations,omitempty" tf:"destinations,omitempty"`

	// Settings for the devices. See Input Devices for more details.
	// +kubebuilder:validation:Optional
	InputDevices []InputDevicesParameters `json:"inputDevices,omitempty" tf:"input_devices,omitempty"`

	// List of input security groups.
	// +kubebuilder:validation:Optional
	InputSecurityGroups []*string `json:"inputSecurityGroups,omitempty" tf:"input_security_groups,omitempty"`

	// A list of the MediaConnect Flows. See Media Connect Flows for more details.
	// +kubebuilder:validation:Optional
	MediaConnectFlows []MediaConnectFlowsParameters `json:"mediaConnectFlows,omitempty" tf:"media_connect_flows,omitempty"`

	// Name of the input.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,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:"-"`

	// The ARN of the role this input assumes during and after creation.
	// +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/iam/v1beta1.Role
	// +crossplane:generate:reference:extractor=github.com/upbound/provider-aws/config/common.ARNExtractor()
	// +kubebuilder:validation:Optional
	RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"`

	// Reference to a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnRef *v1.Reference `json:"roleArnRef,omitempty" tf:"-"`

	// Selector for a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnSelector *v1.Selector `json:"roleArnSelector,omitempty" tf:"-"`

	// The source URLs for a PULL-type input. See Sources for more details.
	// +kubebuilder:validation:Optional
	Sources []SourcesParameters `json:"sources,omitempty" tf:"sources,omitempty"`

	// Key-value map of resource tags.
	// +kubebuilder:validation:Optional
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`

	// The different types of inputs that AWS Elemental MediaLive supports.
	// +kubebuilder:validation:Optional
	Type *string `json:"type,omitempty" tf:"type,omitempty"`

	// Settings for a private VPC Input. See VPC for more details.
	// +kubebuilder:validation:Optional
	VPC []VPCParameters `json:"vpc,omitempty" tf:"vpc,omitempty"`
}

func (*InputParameters) DeepCopy

func (in *InputParameters) DeepCopy() *InputParameters

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

func (*InputParameters) DeepCopyInto

func (in *InputParameters) DeepCopyInto(out *InputParameters)

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

type InputSecurityGroup

type InputSecurityGroup 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.whitelistRules) || (has(self.initProvider) && has(self.initProvider.whitelistRules))",message="spec.forProvider.whitelistRules is a required parameter"
	Spec   InputSecurityGroupSpec   `json:"spec"`
	Status InputSecurityGroupStatus `json:"status,omitempty"`
}

InputSecurityGroup is the Schema for the InputSecurityGroups 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,aws}

func (*InputSecurityGroup) DeepCopy

func (in *InputSecurityGroup) DeepCopy() *InputSecurityGroup

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

func (*InputSecurityGroup) DeepCopyInto

func (in *InputSecurityGroup) DeepCopyInto(out *InputSecurityGroup)

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

func (*InputSecurityGroup) DeepCopyObject

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

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

func (*InputSecurityGroup) GetCondition

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

GetCondition of this InputSecurityGroup.

func (*InputSecurityGroup) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this InputSecurityGroup

func (*InputSecurityGroup) GetDeletionPolicy

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

GetDeletionPolicy of this InputSecurityGroup.

func (*InputSecurityGroup) GetID

func (tr *InputSecurityGroup) GetID() string

GetID returns ID of underlying Terraform resource of this InputSecurityGroup

func (*InputSecurityGroup) GetInitParameters added in v0.38.0

func (tr *InputSecurityGroup) GetInitParameters() (map[string]any, error)

GetInitParameters of this InputSecurityGroup

func (*InputSecurityGroup) GetManagementPolicies added in v0.38.0

func (mg *InputSecurityGroup) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this InputSecurityGroup.

func (*InputSecurityGroup) GetObservation

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

GetObservation of this InputSecurityGroup

func (*InputSecurityGroup) GetParameters

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

GetParameters of this InputSecurityGroup

func (*InputSecurityGroup) GetProviderConfigReference

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

GetProviderConfigReference of this InputSecurityGroup.

func (*InputSecurityGroup) GetPublishConnectionDetailsTo

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

GetPublishConnectionDetailsTo of this InputSecurityGroup.

func (*InputSecurityGroup) GetTerraformResourceType

func (mg *InputSecurityGroup) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this InputSecurityGroup

func (*InputSecurityGroup) GetTerraformSchemaVersion

func (tr *InputSecurityGroup) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*InputSecurityGroup) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this InputSecurityGroup.

func (*InputSecurityGroup) LateInitialize

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

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

func (*InputSecurityGroup) SetConditions

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

SetConditions of this InputSecurityGroup.

func (*InputSecurityGroup) SetDeletionPolicy

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

SetDeletionPolicy of this InputSecurityGroup.

func (*InputSecurityGroup) SetManagementPolicies added in v0.38.0

func (mg *InputSecurityGroup) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this InputSecurityGroup.

func (*InputSecurityGroup) SetObservation

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

SetObservation for this InputSecurityGroup

func (*InputSecurityGroup) SetParameters

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

SetParameters for this InputSecurityGroup

func (*InputSecurityGroup) SetProviderConfigReference

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

SetProviderConfigReference of this InputSecurityGroup.

func (*InputSecurityGroup) SetPublishConnectionDetailsTo

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

SetPublishConnectionDetailsTo of this InputSecurityGroup.

func (*InputSecurityGroup) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this InputSecurityGroup.

type InputSecurityGroupInitParameters added in v0.38.0

type InputSecurityGroupInitParameters struct {

	// Key-value map of resource tags.
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`

	// Whitelist rules. See Whitelist Rules for more details.
	WhitelistRules []WhitelistRulesInitParameters `json:"whitelistRules,omitempty" tf:"whitelist_rules,omitempty"`
}

func (*InputSecurityGroupInitParameters) DeepCopy added in v0.38.0

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

func (*InputSecurityGroupInitParameters) DeepCopyInto added in v0.38.0

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

type InputSecurityGroupList

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

InputSecurityGroupList contains a list of InputSecurityGroups

func (*InputSecurityGroupList) DeepCopy

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

func (*InputSecurityGroupList) DeepCopyInto

func (in *InputSecurityGroupList) DeepCopyInto(out *InputSecurityGroupList)

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

func (*InputSecurityGroupList) DeepCopyObject

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

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

func (*InputSecurityGroupList) GetItems

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

GetItems of this InputSecurityGroupList.

type InputSecurityGroupObservation

type InputSecurityGroupObservation struct {

	// ARN of the InputSecurityGroup.
	Arn *string `json:"arn,omitempty" tf:"arn,omitempty"`

	// InputSecurityGroup Id.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The list of inputs currently using this InputSecurityGroup.
	Inputs []*string `json:"inputs,omitempty" tf:"inputs,omitempty"`

	// Key-value map of resource tags.
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`

	TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"`

	// Whitelist rules. See Whitelist Rules for more details.
	WhitelistRules []WhitelistRulesObservation `json:"whitelistRules,omitempty" tf:"whitelist_rules,omitempty"`
}

func (*InputSecurityGroupObservation) DeepCopy

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

func (*InputSecurityGroupObservation) DeepCopyInto

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

type InputSecurityGroupParameters

type InputSecurityGroupParameters 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"`

	// Whitelist rules. See Whitelist Rules for more details.
	// +kubebuilder:validation:Optional
	WhitelistRules []WhitelistRulesParameters `json:"whitelistRules,omitempty" tf:"whitelist_rules,omitempty"`
}

func (*InputSecurityGroupParameters) DeepCopy

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

func (*InputSecurityGroupParameters) DeepCopyInto

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

type InputSecurityGroupSpec

type InputSecurityGroupSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     InputSecurityGroupParameters `json:"forProvider"`
	// THIS IS AN ALPHA FIELD. Do not use it in production. It is not honored
	// unless the relevant Crossplane feature flag is enabled, and may be
	// changed or removed without notice.
	// 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 InputSecurityGroupInitParameters `json:"initProvider,omitempty"`
}

InputSecurityGroupSpec defines the desired state of InputSecurityGroup

func (*InputSecurityGroupSpec) DeepCopy

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

func (*InputSecurityGroupSpec) DeepCopyInto

func (in *InputSecurityGroupSpec) DeepCopyInto(out *InputSecurityGroupSpec)

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

type InputSecurityGroupStatus

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

InputSecurityGroupStatus defines the observed state of InputSecurityGroup.

func (*InputSecurityGroupStatus) DeepCopy

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

func (*InputSecurityGroupStatus) DeepCopyInto

func (in *InputSecurityGroupStatus) DeepCopyInto(out *InputSecurityGroupStatus)

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

type InputSpec

type InputSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     InputParameters `json:"forProvider"`
	// THIS IS AN ALPHA FIELD. Do not use it in production. It is not honored
	// unless the relevant Crossplane feature flag is enabled, and may be
	// changed or removed without notice.
	// 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 InputInitParameters `json:"initProvider,omitempty"`
}

InputSpec defines the desired state of Input

func (*InputSpec) DeepCopy

func (in *InputSpec) DeepCopy() *InputSpec

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

func (*InputSpec) DeepCopyInto

func (in *InputSpec) DeepCopyInto(out *InputSpec)

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

type InputStatus

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

InputStatus defines the observed state of Input.

func (*InputStatus) DeepCopy

func (in *InputStatus) DeepCopy() *InputStatus

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

func (*InputStatus) DeepCopyInto

func (in *InputStatus) DeepCopyInto(out *InputStatus)

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

type MediaConnectFlowsInitParameters added in v0.38.0

type MediaConnectFlowsInitParameters struct {

	// The ARN of the MediaConnect Flow
	FlowArn *string `json:"flowArn,omitempty" tf:"flow_arn,omitempty"`
}

func (*MediaConnectFlowsInitParameters) DeepCopy added in v0.38.0

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

func (*MediaConnectFlowsInitParameters) DeepCopyInto added in v0.38.0

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

type MediaConnectFlowsObservation

type MediaConnectFlowsObservation struct {

	// The ARN of the MediaConnect Flow
	FlowArn *string `json:"flowArn,omitempty" tf:"flow_arn,omitempty"`
}

func (*MediaConnectFlowsObservation) DeepCopy

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

func (*MediaConnectFlowsObservation) DeepCopyInto

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

type MediaConnectFlowsParameters

type MediaConnectFlowsParameters struct {

	// The ARN of the MediaConnect Flow
	// +kubebuilder:validation:Optional
	FlowArn *string `json:"flowArn" tf:"flow_arn,omitempty"`
}

func (*MediaConnectFlowsParameters) DeepCopy

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

func (*MediaConnectFlowsParameters) DeepCopyInto

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

type Multiplex

type Multiplex 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.availabilityZones) || (has(self.initProvider) && has(self.initProvider.availabilityZones))",message="spec.forProvider.availabilityZones is a required parameter"
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.name) || (has(self.initProvider) && has(self.initProvider.name))",message="spec.forProvider.name is a required parameter"
	Spec   MultiplexSpec   `json:"spec"`
	Status MultiplexStatus `json:"status,omitempty"`
}

Multiplex is the Schema for the Multiplexs 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,aws},path=multiplices

func (*Multiplex) DeepCopy

func (in *Multiplex) DeepCopy() *Multiplex

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

func (*Multiplex) DeepCopyInto

func (in *Multiplex) DeepCopyInto(out *Multiplex)

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

func (*Multiplex) DeepCopyObject

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

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

func (*Multiplex) GetCondition

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

GetCondition of this Multiplex.

func (*Multiplex) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this Multiplex

func (*Multiplex) GetDeletionPolicy

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

GetDeletionPolicy of this Multiplex.

func (*Multiplex) GetID

func (tr *Multiplex) GetID() string

GetID returns ID of underlying Terraform resource of this Multiplex

func (*Multiplex) GetInitParameters added in v0.38.0

func (tr *Multiplex) GetInitParameters() (map[string]any, error)

GetInitParameters of this Multiplex

func (*Multiplex) GetManagementPolicies added in v0.38.0

func (mg *Multiplex) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this Multiplex.

func (*Multiplex) GetObservation

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

GetObservation of this Multiplex

func (*Multiplex) GetParameters

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

GetParameters of this Multiplex

func (*Multiplex) GetProviderConfigReference

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

GetProviderConfigReference of this Multiplex.

func (*Multiplex) GetPublishConnectionDetailsTo

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

GetPublishConnectionDetailsTo of this Multiplex.

func (*Multiplex) GetTerraformResourceType

func (mg *Multiplex) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Multiplex

func (*Multiplex) GetTerraformSchemaVersion

func (tr *Multiplex) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Multiplex) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this Multiplex.

func (*Multiplex) LateInitialize

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

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

func (*Multiplex) SetConditions

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

SetConditions of this Multiplex.

func (*Multiplex) SetDeletionPolicy

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

SetDeletionPolicy of this Multiplex.

func (*Multiplex) SetManagementPolicies added in v0.38.0

func (mg *Multiplex) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this Multiplex.

func (*Multiplex) SetObservation

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

SetObservation for this Multiplex

func (*Multiplex) SetParameters

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

SetParameters for this Multiplex

func (*Multiplex) SetProviderConfigReference

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

SetProviderConfigReference of this Multiplex.

func (*Multiplex) SetPublishConnectionDetailsTo

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

SetPublishConnectionDetailsTo of this Multiplex.

func (*Multiplex) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this Multiplex.

type MultiplexInitParameters added in v0.38.0

type MultiplexInitParameters struct {

	// A list of availability zones. You must specify exactly two.
	AvailabilityZones []*string `json:"availabilityZones,omitempty" tf:"availability_zones,omitempty"`

	// Multiplex settings. See Multiplex Settings for more details.
	MultiplexSettings []MultiplexSettingsInitParameters `json:"multiplexSettings,omitempty" tf:"multiplex_settings,omitempty"`

	// name of Multiplex.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// Whether to start the Multiplex. Defaults to false.
	StartMultiplex *bool `json:"startMultiplex,omitempty" tf:"start_multiplex,omitempty"`

	// Key-value map of resource tags.
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`
}

func (*MultiplexInitParameters) DeepCopy added in v0.38.0

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

func (*MultiplexInitParameters) DeepCopyInto added in v0.38.0

func (in *MultiplexInitParameters) DeepCopyInto(out *MultiplexInitParameters)

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

type MultiplexList

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

MultiplexList contains a list of Multiplexs

func (*MultiplexList) DeepCopy

func (in *MultiplexList) DeepCopy() *MultiplexList

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

func (*MultiplexList) DeepCopyInto

func (in *MultiplexList) DeepCopyInto(out *MultiplexList)

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

func (*MultiplexList) DeepCopyObject

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

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

func (*MultiplexList) GetItems

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

GetItems of this MultiplexList.

type MultiplexObservation

type MultiplexObservation struct {

	// ARN of the Multiplex.
	Arn *string `json:"arn,omitempty" tf:"arn,omitempty"`

	// A list of availability zones. You must specify exactly two.
	AvailabilityZones []*string `json:"availabilityZones,omitempty" tf:"availability_zones,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// Multiplex settings. See Multiplex Settings for more details.
	MultiplexSettings []MultiplexSettingsObservation `json:"multiplexSettings,omitempty" tf:"multiplex_settings,omitempty"`

	// name of Multiplex.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// Whether to start the Multiplex. Defaults to false.
	StartMultiplex *bool `json:"startMultiplex,omitempty" tf:"start_multiplex,omitempty"`

	// Key-value map of resource tags.
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`

	TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"`
}

func (*MultiplexObservation) DeepCopy

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

func (*MultiplexObservation) DeepCopyInto

func (in *MultiplexObservation) DeepCopyInto(out *MultiplexObservation)

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

type MultiplexParameters

type MultiplexParameters struct {

	// A list of availability zones. You must specify exactly two.
	// +kubebuilder:validation:Optional
	AvailabilityZones []*string `json:"availabilityZones,omitempty" tf:"availability_zones,omitempty"`

	// Multiplex settings. See Multiplex Settings for more details.
	// +kubebuilder:validation:Optional
	MultiplexSettings []MultiplexSettingsParameters `json:"multiplexSettings,omitempty" tf:"multiplex_settings,omitempty"`

	// name of Multiplex.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,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:"-"`

	// Whether to start the Multiplex. Defaults to false.
	// +kubebuilder:validation:Optional
	StartMultiplex *bool `json:"startMultiplex,omitempty" tf:"start_multiplex,omitempty"`

	// Key-value map of resource tags.
	// +kubebuilder:validation:Optional
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`
}

func (*MultiplexParameters) DeepCopy

func (in *MultiplexParameters) DeepCopy() *MultiplexParameters

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

func (*MultiplexParameters) DeepCopyInto

func (in *MultiplexParameters) DeepCopyInto(out *MultiplexParameters)

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

type MultiplexSettingsInitParameters added in v0.38.0

type MultiplexSettingsInitParameters struct {

	// Maximum video buffer delay.
	MaximumVideoBufferDelayMilliseconds *int64 `json:"maximumVideoBufferDelayMilliseconds,omitempty" tf:"maximum_video_buffer_delay_milliseconds,omitempty"`

	// Transport stream bit rate.
	TransportStreamBitrate *int64 `json:"transportStreamBitrate,omitempty" tf:"transport_stream_bitrate,omitempty"`

	// Unique ID for each multiplex.
	TransportStreamID *int64 `json:"transportStreamId,omitempty" tf:"transport_stream_id,omitempty"`

	// Transport stream reserved bit rate.
	TransportStreamReservedBitrate *int64 `json:"transportStreamReservedBitrate,omitempty" tf:"transport_stream_reserved_bitrate,omitempty"`
}

func (*MultiplexSettingsInitParameters) DeepCopy added in v0.38.0

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

func (*MultiplexSettingsInitParameters) DeepCopyInto added in v0.38.0

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

type MultiplexSettingsObservation

type MultiplexSettingsObservation struct {

	// Maximum video buffer delay.
	MaximumVideoBufferDelayMilliseconds *int64 `json:"maximumVideoBufferDelayMilliseconds,omitempty" tf:"maximum_video_buffer_delay_milliseconds,omitempty"`

	// Transport stream bit rate.
	TransportStreamBitrate *int64 `json:"transportStreamBitrate,omitempty" tf:"transport_stream_bitrate,omitempty"`

	// Unique ID for each multiplex.
	TransportStreamID *int64 `json:"transportStreamId,omitempty" tf:"transport_stream_id,omitempty"`

	// Transport stream reserved bit rate.
	TransportStreamReservedBitrate *int64 `json:"transportStreamReservedBitrate,omitempty" tf:"transport_stream_reserved_bitrate,omitempty"`
}

func (*MultiplexSettingsObservation) DeepCopy

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

func (*MultiplexSettingsObservation) DeepCopyInto

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

type MultiplexSettingsParameters

type MultiplexSettingsParameters struct {

	// Maximum video buffer delay.
	// +kubebuilder:validation:Optional
	MaximumVideoBufferDelayMilliseconds *int64 `json:"maximumVideoBufferDelayMilliseconds,omitempty" tf:"maximum_video_buffer_delay_milliseconds,omitempty"`

	// Transport stream bit rate.
	// +kubebuilder:validation:Optional
	TransportStreamBitrate *int64 `json:"transportStreamBitrate" tf:"transport_stream_bitrate,omitempty"`

	// Unique ID for each multiplex.
	// +kubebuilder:validation:Optional
	TransportStreamID *int64 `json:"transportStreamId" tf:"transport_stream_id,omitempty"`

	// Transport stream reserved bit rate.
	// +kubebuilder:validation:Optional
	TransportStreamReservedBitrate *int64 `json:"transportStreamReservedBitrate,omitempty" tf:"transport_stream_reserved_bitrate,omitempty"`
}

func (*MultiplexSettingsParameters) DeepCopy

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

func (*MultiplexSettingsParameters) DeepCopyInto

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

type MultiplexSpec

type MultiplexSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     MultiplexParameters `json:"forProvider"`
	// THIS IS AN ALPHA FIELD. Do not use it in production. It is not honored
	// unless the relevant Crossplane feature flag is enabled, and may be
	// changed or removed without notice.
	// 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 MultiplexInitParameters `json:"initProvider,omitempty"`
}

MultiplexSpec defines the desired state of Multiplex

func (*MultiplexSpec) DeepCopy

func (in *MultiplexSpec) DeepCopy() *MultiplexSpec

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

func (*MultiplexSpec) DeepCopyInto

func (in *MultiplexSpec) DeepCopyInto(out *MultiplexSpec)

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

type MultiplexStatus

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

MultiplexStatus defines the observed state of Multiplex.

func (*MultiplexStatus) DeepCopy

func (in *MultiplexStatus) DeepCopy() *MultiplexStatus

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

func (*MultiplexStatus) DeepCopyInto

func (in *MultiplexStatus) DeepCopyInto(out *MultiplexStatus)

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

type SourcesInitParameters added in v0.38.0

type SourcesInitParameters struct {

	// The key used to extract the password from EC2 Parameter store.
	PasswordParam *string `json:"passwordParam,omitempty" tf:"password_param,omitempty"`

	// The URL where the stream is pulled from.
	URL *string `json:"url,omitempty" tf:"url,omitempty"`

	// The username for the input source.
	Username *string `json:"username,omitempty" tf:"username,omitempty"`
}

func (*SourcesInitParameters) DeepCopy added in v0.38.0

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

func (*SourcesInitParameters) DeepCopyInto added in v0.38.0

func (in *SourcesInitParameters) DeepCopyInto(out *SourcesInitParameters)

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

type SourcesObservation

type SourcesObservation struct {

	// The key used to extract the password from EC2 Parameter store.
	PasswordParam *string `json:"passwordParam,omitempty" tf:"password_param,omitempty"`

	// The URL where the stream is pulled from.
	URL *string `json:"url,omitempty" tf:"url,omitempty"`

	// The username for the input source.
	Username *string `json:"username,omitempty" tf:"username,omitempty"`
}

func (*SourcesObservation) DeepCopy

func (in *SourcesObservation) DeepCopy() *SourcesObservation

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

func (*SourcesObservation) DeepCopyInto

func (in *SourcesObservation) DeepCopyInto(out *SourcesObservation)

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

type SourcesParameters

type SourcesParameters struct {

	// The key used to extract the password from EC2 Parameter store.
	// +kubebuilder:validation:Optional
	PasswordParam *string `json:"passwordParam" tf:"password_param,omitempty"`

	// The URL where the stream is pulled from.
	// +kubebuilder:validation:Optional
	URL *string `json:"url" tf:"url,omitempty"`

	// The username for the input source.
	// +kubebuilder:validation:Optional
	Username *string `json:"username" tf:"username,omitempty"`
}

func (*SourcesParameters) DeepCopy

func (in *SourcesParameters) DeepCopy() *SourcesParameters

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

func (*SourcesParameters) DeepCopyInto

func (in *SourcesParameters) DeepCopyInto(out *SourcesParameters)

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

type VPCInitParameters added in v0.38.0

type VPCInitParameters struct {

	// A list of up to 5 EC2 VPC security group IDs to attach to the Input.
	SecurityGroupIds []*string `json:"securityGroupIds,omitempty" tf:"security_group_ids,omitempty"`

	// A list of 2 VPC subnet IDs from the same VPC.
	SubnetIds []*string `json:"subnetIds,omitempty" tf:"subnet_ids,omitempty"`
}

func (*VPCInitParameters) DeepCopy added in v0.38.0

func (in *VPCInitParameters) DeepCopy() *VPCInitParameters

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

func (*VPCInitParameters) DeepCopyInto added in v0.38.0

func (in *VPCInitParameters) DeepCopyInto(out *VPCInitParameters)

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

type VPCObservation

type VPCObservation struct {

	// A list of up to 5 EC2 VPC security group IDs to attach to the Input.
	SecurityGroupIds []*string `json:"securityGroupIds,omitempty" tf:"security_group_ids,omitempty"`

	// A list of 2 VPC subnet IDs from the same VPC.
	SubnetIds []*string `json:"subnetIds,omitempty" tf:"subnet_ids,omitempty"`
}

func (*VPCObservation) DeepCopy

func (in *VPCObservation) DeepCopy() *VPCObservation

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

func (*VPCObservation) DeepCopyInto

func (in *VPCObservation) DeepCopyInto(out *VPCObservation)

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

type VPCParameters

type VPCParameters struct {

	// A list of up to 5 EC2 VPC security group IDs to attach to the Input.
	// +kubebuilder:validation:Optional
	SecurityGroupIds []*string `json:"securityGroupIds,omitempty" tf:"security_group_ids,omitempty"`

	// A list of 2 VPC subnet IDs from the same VPC.
	// +kubebuilder:validation:Optional
	SubnetIds []*string `json:"subnetIds" tf:"subnet_ids,omitempty"`
}

func (*VPCParameters) DeepCopy

func (in *VPCParameters) DeepCopy() *VPCParameters

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

func (*VPCParameters) DeepCopyInto

func (in *VPCParameters) DeepCopyInto(out *VPCParameters)

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

type WhitelistRulesInitParameters added in v0.38.0

type WhitelistRulesInitParameters struct {

	// The IPv4 CIDR that's whitelisted.
	Cidr *string `json:"cidr,omitempty" tf:"cidr,omitempty"`
}

func (*WhitelistRulesInitParameters) DeepCopy added in v0.38.0

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

func (*WhitelistRulesInitParameters) DeepCopyInto added in v0.38.0

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

type WhitelistRulesObservation

type WhitelistRulesObservation struct {

	// The IPv4 CIDR that's whitelisted.
	Cidr *string `json:"cidr,omitempty" tf:"cidr,omitempty"`
}

func (*WhitelistRulesObservation) DeepCopy

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

func (*WhitelistRulesObservation) DeepCopyInto

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

type WhitelistRulesParameters

type WhitelistRulesParameters struct {

	// The IPv4 CIDR that's whitelisted.
	// +kubebuilder:validation:Optional
	Cidr *string `json:"cidr" tf:"cidr,omitempty"`
}

func (*WhitelistRulesParameters) DeepCopy

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

func (*WhitelistRulesParameters) DeepCopyInto

func (in *WhitelistRulesParameters) DeepCopyInto(out *WhitelistRulesParameters)

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