aws_servicecatalog_provisioned_product

package
v5.45.0 Latest Latest
Warning

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

Go to latest
Published: Apr 16, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Args

type Args struct {
	// AcceptLanguage: string, optional
	AcceptLanguage terra.StringValue `hcl:"accept_language,attr"`
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// IgnoreErrors: bool, optional
	IgnoreErrors terra.BoolValue `hcl:"ignore_errors,attr"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// NotificationArns: list of string, optional
	NotificationArns terra.ListValue[terra.StringValue] `hcl:"notification_arns,attr"`
	// PathId: string, optional
	PathId terra.StringValue `hcl:"path_id,attr"`
	// PathName: string, optional
	PathName terra.StringValue `hcl:"path_name,attr"`
	// ProductId: string, optional
	ProductId terra.StringValue `hcl:"product_id,attr"`
	// ProductName: string, optional
	ProductName terra.StringValue `hcl:"product_name,attr"`
	// ProvisioningArtifactId: string, optional
	ProvisioningArtifactId terra.StringValue `hcl:"provisioning_artifact_id,attr"`
	// ProvisioningArtifactName: string, optional
	ProvisioningArtifactName terra.StringValue `hcl:"provisioning_artifact_name,attr"`
	// RetainPhysicalResources: bool, optional
	RetainPhysicalResources terra.BoolValue `hcl:"retain_physical_resources,attr"`
	// Tags: map of string, optional
	Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"`
	// TagsAll: map of string, optional
	TagsAll terra.MapValue[terra.StringValue] `hcl:"tags_all,attr"`
	// ProvisioningParameters: min=0
	ProvisioningParameters []ProvisioningParameters `hcl:"provisioning_parameters,block" validate:"min=0"`
	// StackSetProvisioningPreferences: optional
	StackSetProvisioningPreferences *StackSetProvisioningPreferences `hcl:"stack_set_provisioning_preferences,block"`
	// Timeouts: optional
	Timeouts *Timeouts `hcl:"timeouts,block"`
}

Args contains the configurations for aws_servicecatalog_provisioned_product.

type OutputsAttributes

type OutputsAttributes struct {
	// contains filtered or unexported fields
}

func (OutputsAttributes) Description

func (o OutputsAttributes) Description() terra.StringValue

func (OutputsAttributes) InternalRef

func (o OutputsAttributes) InternalRef() (terra.Reference, error)

func (OutputsAttributes) InternalTokens

func (o OutputsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (OutputsAttributes) InternalWithRef

func (o OutputsAttributes) InternalWithRef(ref terra.Reference) OutputsAttributes

func (OutputsAttributes) Key

func (OutputsAttributes) Value

type OutputsState

type OutputsState struct {
	Description string `json:"description"`
	Key         string `json:"key"`
	Value       string `json:"value"`
}

type ProvisioningParameters

type ProvisioningParameters struct {
	// Key: string, required
	Key terra.StringValue `hcl:"key,attr" validate:"required"`
	// UsePreviousValue: bool, optional
	UsePreviousValue terra.BoolValue `hcl:"use_previous_value,attr"`
	// Value: string, optional
	Value terra.StringValue `hcl:"value,attr"`
}

type ProvisioningParametersAttributes

type ProvisioningParametersAttributes struct {
	// contains filtered or unexported fields
}

func (ProvisioningParametersAttributes) InternalRef

func (ProvisioningParametersAttributes) InternalTokens

func (pp ProvisioningParametersAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ProvisioningParametersAttributes) InternalWithRef

func (ProvisioningParametersAttributes) Key

func (ProvisioningParametersAttributes) UsePreviousValue

func (pp ProvisioningParametersAttributes) UsePreviousValue() terra.BoolValue

func (ProvisioningParametersAttributes) Value

type ProvisioningParametersState

type ProvisioningParametersState struct {
	Key              string `json:"key"`
	UsePreviousValue bool   `json:"use_previous_value"`
	Value            string `json:"value"`
}

type Resource

type Resource struct {
	Name string
	Args Args

	DependsOn terra.Dependencies
	Lifecycle *terra.Lifecycle
	// contains filtered or unexported fields
}

Resource represents the Terraform resource aws_servicecatalog_provisioned_product.

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (aspp *Resource) Attributes() awsServicecatalogProvisionedProductAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

func (aspp *Resource) Configuration() interface{}

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

func (aspp *Resource) DependOn() terra.Reference

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

func (aspp *Resource) Dependencies() terra.Dependencies

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

func (aspp *Resource) ImportState(state io.Reader) error

ImportState imports the given attribute values into Resource's state.

func (*Resource) LifecycleManagement

func (aspp *Resource) LifecycleManagement() *terra.Lifecycle

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (aspp *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (aspp *Resource) State() (*awsServicecatalogProvisionedProductState, bool)

State returns the state and a bool indicating if Resource has state.

func (*Resource) StateMust

func (aspp *Resource) StateMust() *awsServicecatalogProvisionedProductState

StateMust returns the state for Resource. Panics if the state is nil.

func (*Resource) Type

func (aspp *Resource) Type() string

Type returns the Terraform object type for Resource.

type StackSetProvisioningPreferences

type StackSetProvisioningPreferences struct {
	// Accounts: list of string, optional
	Accounts terra.ListValue[terra.StringValue] `hcl:"accounts,attr"`
	// FailureToleranceCount: number, optional
	FailureToleranceCount terra.NumberValue `hcl:"failure_tolerance_count,attr"`
	// FailureTolerancePercentage: number, optional
	FailureTolerancePercentage terra.NumberValue `hcl:"failure_tolerance_percentage,attr"`
	// MaxConcurrencyCount: number, optional
	MaxConcurrencyCount terra.NumberValue `hcl:"max_concurrency_count,attr"`
	// MaxConcurrencyPercentage: number, optional
	MaxConcurrencyPercentage terra.NumberValue `hcl:"max_concurrency_percentage,attr"`
	// Regions: list of string, optional
	Regions terra.ListValue[terra.StringValue] `hcl:"regions,attr"`
}

type StackSetProvisioningPreferencesAttributes

type StackSetProvisioningPreferencesAttributes struct {
	// contains filtered or unexported fields
}

func (StackSetProvisioningPreferencesAttributes) Accounts

func (StackSetProvisioningPreferencesAttributes) FailureToleranceCount

func (sspp StackSetProvisioningPreferencesAttributes) FailureToleranceCount() terra.NumberValue

func (StackSetProvisioningPreferencesAttributes) FailureTolerancePercentage

func (sspp StackSetProvisioningPreferencesAttributes) FailureTolerancePercentage() terra.NumberValue

func (StackSetProvisioningPreferencesAttributes) InternalRef

func (StackSetProvisioningPreferencesAttributes) InternalTokens

func (StackSetProvisioningPreferencesAttributes) InternalWithRef

func (StackSetProvisioningPreferencesAttributes) MaxConcurrencyCount

func (sspp StackSetProvisioningPreferencesAttributes) MaxConcurrencyCount() terra.NumberValue

func (StackSetProvisioningPreferencesAttributes) MaxConcurrencyPercentage

func (sspp StackSetProvisioningPreferencesAttributes) MaxConcurrencyPercentage() terra.NumberValue

func (StackSetProvisioningPreferencesAttributes) Regions

type StackSetProvisioningPreferencesState

type StackSetProvisioningPreferencesState struct {
	Accounts                   []string `json:"accounts"`
	FailureToleranceCount      float64  `json:"failure_tolerance_count"`
	FailureTolerancePercentage float64  `json:"failure_tolerance_percentage"`
	MaxConcurrencyCount        float64  `json:"max_concurrency_count"`
	MaxConcurrencyPercentage   float64  `json:"max_concurrency_percentage"`
	Regions                    []string `json:"regions"`
}

type Timeouts

type Timeouts struct {
	// Create: string, optional
	Create terra.StringValue `hcl:"create,attr"`
	// Delete: string, optional
	Delete terra.StringValue `hcl:"delete,attr"`
	// Read: string, optional
	Read terra.StringValue `hcl:"read,attr"`
	// Update: string, optional
	Update terra.StringValue `hcl:"update,attr"`
}

type TimeoutsAttributes

type TimeoutsAttributes struct {
	// contains filtered or unexported fields
}

func (TimeoutsAttributes) Create

func (TimeoutsAttributes) Delete

func (TimeoutsAttributes) InternalRef

func (t TimeoutsAttributes) InternalRef() (terra.Reference, error)

func (TimeoutsAttributes) InternalTokens

func (t TimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (TimeoutsAttributes) InternalWithRef

func (t TimeoutsAttributes) InternalWithRef(ref terra.Reference) TimeoutsAttributes

func (TimeoutsAttributes) Read

func (TimeoutsAttributes) Update

type TimeoutsState

type TimeoutsState struct {
	Create string `json:"create"`
	Delete string `json:"delete"`
	Read   string `json:"read"`
	Update string `json:"update"`
}

Jump to

Keyboard shortcuts

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