v20171111preview

package
v0.3.1 Latest Latest
Warning

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

Go to latest
Published: Dec 19, 2020 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	AssignmentLockModeNone         = AssignmentLockMode("None")
	AssignmentLockModeAllResources = AssignmentLockMode("AllResources")
)
View Source
const (
	ManagedServiceIdentityTypeNone           = ManagedServiceIdentityType("None")
	ManagedServiceIdentityTypeSystemAssigned = ManagedServiceIdentityType("SystemAssigned")
	ManagedServiceIdentityTypeUserAssigned   = ManagedServiceIdentityType("UserAssigned")
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Assignment

type Assignment struct {
	pulumi.CustomResourceState

	// ID of the Blueprint definition resource.
	BlueprintId pulumi.StringPtrOutput `pulumi:"blueprintId"`
	// Multi-line explain this resource.
	Description pulumi.StringPtrOutput `pulumi:"description"`
	// One-liner string explain this resource.
	DisplayName pulumi.StringPtrOutput `pulumi:"displayName"`
	// Managed Service Identity for this Blueprint assignment
	Identity ManagedServiceIdentityResponseOutput `pulumi:"identity"`
	// The location of this Blueprint assignment.
	Location pulumi.StringOutput `pulumi:"location"`
	// Defines how Blueprint-managed resources will be locked.
	Locks AssignmentLockSettingsResponsePtrOutput `pulumi:"locks"`
	// Name of this resource.
	Name pulumi.StringOutput `pulumi:"name"`
	// Blueprint parameter values.
	Parameters ParameterValueBaseResponseMapOutput `pulumi:"parameters"`
	// State of the assignment.
	ProvisioningState pulumi.StringOutput `pulumi:"provisioningState"`
	// Names and locations of resource group placeholders.
	ResourceGroups ResourceGroupValueResponseMapOutput `pulumi:"resourceGroups"`
	// Status of Blueprint assignment. This field is readonly.
	Status AssignmentStatusResponseOutput `pulumi:"status"`
	// Type of this resource.
	Type pulumi.StringOutput `pulumi:"type"`
}

Represents a Blueprint assignment.

func GetAssignment

func GetAssignment(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *AssignmentState, opts ...pulumi.ResourceOption) (*Assignment, error)

GetAssignment gets an existing Assignment resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewAssignment

func NewAssignment(ctx *pulumi.Context,
	name string, args *AssignmentArgs, opts ...pulumi.ResourceOption) (*Assignment, error)

NewAssignment registers a new resource with the given unique name, arguments, and options.

func (*Assignment) ElementType added in v0.2.6

func (*Assignment) ElementType() reflect.Type

func (*Assignment) ToAssignmentOutput added in v0.2.6

func (i *Assignment) ToAssignmentOutput() AssignmentOutput

func (*Assignment) ToAssignmentOutputWithContext added in v0.2.6

func (i *Assignment) ToAssignmentOutputWithContext(ctx context.Context) AssignmentOutput

type AssignmentArgs

type AssignmentArgs struct {
	// name of the assignment.
	AssignmentName pulumi.StringInput
	// ID of the Blueprint definition resource.
	BlueprintId pulumi.StringPtrInput
	// Multi-line explain this resource.
	Description pulumi.StringPtrInput
	// One-liner string explain this resource.
	DisplayName pulumi.StringPtrInput
	// Managed Service Identity for this Blueprint assignment
	Identity ManagedServiceIdentityInput
	// The location of this Blueprint assignment.
	Location pulumi.StringInput
	// Defines how Blueprint-managed resources will be locked.
	Locks AssignmentLockSettingsPtrInput
	// Blueprint parameter values.
	Parameters ParameterValueBaseMapInput
	// Names and locations of resource group placeholders.
	ResourceGroups ResourceGroupValueMapInput
}

The set of arguments for constructing a Assignment resource.

func (AssignmentArgs) ElementType

func (AssignmentArgs) ElementType() reflect.Type

type AssignmentInput added in v0.2.6

type AssignmentInput interface {
	pulumi.Input

	ToAssignmentOutput() AssignmentOutput
	ToAssignmentOutputWithContext(ctx context.Context) AssignmentOutput
}

type AssignmentLockMode added in v0.3.1

type AssignmentLockMode pulumi.String

Lock mode.

func (AssignmentLockMode) ElementType added in v0.3.1

func (AssignmentLockMode) ElementType() reflect.Type

func (AssignmentLockMode) ToStringOutput added in v0.3.1

func (e AssignmentLockMode) ToStringOutput() pulumi.StringOutput

func (AssignmentLockMode) ToStringOutputWithContext added in v0.3.1

func (e AssignmentLockMode) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (AssignmentLockMode) ToStringPtrOutput added in v0.3.1

func (e AssignmentLockMode) ToStringPtrOutput() pulumi.StringPtrOutput

func (AssignmentLockMode) ToStringPtrOutputWithContext added in v0.3.1

func (e AssignmentLockMode) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type AssignmentLockSettings

type AssignmentLockSettings struct {
	// Lock mode.
	Mode *string `pulumi:"mode"`
}

Defines how Blueprint-managed resources will be locked.

type AssignmentLockSettingsArgs

type AssignmentLockSettingsArgs struct {
	// Lock mode.
	Mode pulumi.StringPtrInput `pulumi:"mode"`
}

Defines how Blueprint-managed resources will be locked.

func (AssignmentLockSettingsArgs) ElementType

func (AssignmentLockSettingsArgs) ElementType() reflect.Type

func (AssignmentLockSettingsArgs) ToAssignmentLockSettingsOutput

func (i AssignmentLockSettingsArgs) ToAssignmentLockSettingsOutput() AssignmentLockSettingsOutput

func (AssignmentLockSettingsArgs) ToAssignmentLockSettingsOutputWithContext

func (i AssignmentLockSettingsArgs) ToAssignmentLockSettingsOutputWithContext(ctx context.Context) AssignmentLockSettingsOutput

func (AssignmentLockSettingsArgs) ToAssignmentLockSettingsPtrOutput

func (i AssignmentLockSettingsArgs) ToAssignmentLockSettingsPtrOutput() AssignmentLockSettingsPtrOutput

func (AssignmentLockSettingsArgs) ToAssignmentLockSettingsPtrOutputWithContext

func (i AssignmentLockSettingsArgs) ToAssignmentLockSettingsPtrOutputWithContext(ctx context.Context) AssignmentLockSettingsPtrOutput

type AssignmentLockSettingsInput

type AssignmentLockSettingsInput interface {
	pulumi.Input

	ToAssignmentLockSettingsOutput() AssignmentLockSettingsOutput
	ToAssignmentLockSettingsOutputWithContext(context.Context) AssignmentLockSettingsOutput
}

AssignmentLockSettingsInput is an input type that accepts AssignmentLockSettingsArgs and AssignmentLockSettingsOutput values. You can construct a concrete instance of `AssignmentLockSettingsInput` via:

AssignmentLockSettingsArgs{...}

type AssignmentLockSettingsOutput

type AssignmentLockSettingsOutput struct{ *pulumi.OutputState }

Defines how Blueprint-managed resources will be locked.

func (AssignmentLockSettingsOutput) ElementType

func (AssignmentLockSettingsOutput) Mode

Lock mode.

func (AssignmentLockSettingsOutput) ToAssignmentLockSettingsOutput

func (o AssignmentLockSettingsOutput) ToAssignmentLockSettingsOutput() AssignmentLockSettingsOutput

func (AssignmentLockSettingsOutput) ToAssignmentLockSettingsOutputWithContext

func (o AssignmentLockSettingsOutput) ToAssignmentLockSettingsOutputWithContext(ctx context.Context) AssignmentLockSettingsOutput

func (AssignmentLockSettingsOutput) ToAssignmentLockSettingsPtrOutput

func (o AssignmentLockSettingsOutput) ToAssignmentLockSettingsPtrOutput() AssignmentLockSettingsPtrOutput

func (AssignmentLockSettingsOutput) ToAssignmentLockSettingsPtrOutputWithContext

func (o AssignmentLockSettingsOutput) ToAssignmentLockSettingsPtrOutputWithContext(ctx context.Context) AssignmentLockSettingsPtrOutput

type AssignmentLockSettingsPtrInput

type AssignmentLockSettingsPtrInput interface {
	pulumi.Input

	ToAssignmentLockSettingsPtrOutput() AssignmentLockSettingsPtrOutput
	ToAssignmentLockSettingsPtrOutputWithContext(context.Context) AssignmentLockSettingsPtrOutput
}

AssignmentLockSettingsPtrInput is an input type that accepts AssignmentLockSettingsArgs, AssignmentLockSettingsPtr and AssignmentLockSettingsPtrOutput values. You can construct a concrete instance of `AssignmentLockSettingsPtrInput` via:

        AssignmentLockSettingsArgs{...}

or:

        nil

type AssignmentLockSettingsPtrOutput

type AssignmentLockSettingsPtrOutput struct{ *pulumi.OutputState }

func (AssignmentLockSettingsPtrOutput) Elem

func (AssignmentLockSettingsPtrOutput) ElementType

func (AssignmentLockSettingsPtrOutput) Mode

Lock mode.

func (AssignmentLockSettingsPtrOutput) ToAssignmentLockSettingsPtrOutput

func (o AssignmentLockSettingsPtrOutput) ToAssignmentLockSettingsPtrOutput() AssignmentLockSettingsPtrOutput

func (AssignmentLockSettingsPtrOutput) ToAssignmentLockSettingsPtrOutputWithContext

func (o AssignmentLockSettingsPtrOutput) ToAssignmentLockSettingsPtrOutputWithContext(ctx context.Context) AssignmentLockSettingsPtrOutput

type AssignmentLockSettingsResponse

type AssignmentLockSettingsResponse struct {
	// Lock mode.
	Mode *string `pulumi:"mode"`
}

Defines how Blueprint-managed resources will be locked.

type AssignmentLockSettingsResponseArgs

type AssignmentLockSettingsResponseArgs struct {
	// Lock mode.
	Mode pulumi.StringPtrInput `pulumi:"mode"`
}

Defines how Blueprint-managed resources will be locked.

func (AssignmentLockSettingsResponseArgs) ElementType

func (AssignmentLockSettingsResponseArgs) ToAssignmentLockSettingsResponseOutput

func (i AssignmentLockSettingsResponseArgs) ToAssignmentLockSettingsResponseOutput() AssignmentLockSettingsResponseOutput

func (AssignmentLockSettingsResponseArgs) ToAssignmentLockSettingsResponseOutputWithContext

func (i AssignmentLockSettingsResponseArgs) ToAssignmentLockSettingsResponseOutputWithContext(ctx context.Context) AssignmentLockSettingsResponseOutput

func (AssignmentLockSettingsResponseArgs) ToAssignmentLockSettingsResponsePtrOutput

func (i AssignmentLockSettingsResponseArgs) ToAssignmentLockSettingsResponsePtrOutput() AssignmentLockSettingsResponsePtrOutput

func (AssignmentLockSettingsResponseArgs) ToAssignmentLockSettingsResponsePtrOutputWithContext

func (i AssignmentLockSettingsResponseArgs) ToAssignmentLockSettingsResponsePtrOutputWithContext(ctx context.Context) AssignmentLockSettingsResponsePtrOutput

type AssignmentLockSettingsResponseInput

type AssignmentLockSettingsResponseInput interface {
	pulumi.Input

	ToAssignmentLockSettingsResponseOutput() AssignmentLockSettingsResponseOutput
	ToAssignmentLockSettingsResponseOutputWithContext(context.Context) AssignmentLockSettingsResponseOutput
}

AssignmentLockSettingsResponseInput is an input type that accepts AssignmentLockSettingsResponseArgs and AssignmentLockSettingsResponseOutput values. You can construct a concrete instance of `AssignmentLockSettingsResponseInput` via:

AssignmentLockSettingsResponseArgs{...}

type AssignmentLockSettingsResponseOutput

type AssignmentLockSettingsResponseOutput struct{ *pulumi.OutputState }

Defines how Blueprint-managed resources will be locked.

func (AssignmentLockSettingsResponseOutput) ElementType

func (AssignmentLockSettingsResponseOutput) Mode

Lock mode.

func (AssignmentLockSettingsResponseOutput) ToAssignmentLockSettingsResponseOutput

func (o AssignmentLockSettingsResponseOutput) ToAssignmentLockSettingsResponseOutput() AssignmentLockSettingsResponseOutput

func (AssignmentLockSettingsResponseOutput) ToAssignmentLockSettingsResponseOutputWithContext

func (o AssignmentLockSettingsResponseOutput) ToAssignmentLockSettingsResponseOutputWithContext(ctx context.Context) AssignmentLockSettingsResponseOutput

func (AssignmentLockSettingsResponseOutput) ToAssignmentLockSettingsResponsePtrOutput

func (o AssignmentLockSettingsResponseOutput) ToAssignmentLockSettingsResponsePtrOutput() AssignmentLockSettingsResponsePtrOutput

func (AssignmentLockSettingsResponseOutput) ToAssignmentLockSettingsResponsePtrOutputWithContext

func (o AssignmentLockSettingsResponseOutput) ToAssignmentLockSettingsResponsePtrOutputWithContext(ctx context.Context) AssignmentLockSettingsResponsePtrOutput

type AssignmentLockSettingsResponsePtrInput

type AssignmentLockSettingsResponsePtrInput interface {
	pulumi.Input

	ToAssignmentLockSettingsResponsePtrOutput() AssignmentLockSettingsResponsePtrOutput
	ToAssignmentLockSettingsResponsePtrOutputWithContext(context.Context) AssignmentLockSettingsResponsePtrOutput
}

AssignmentLockSettingsResponsePtrInput is an input type that accepts AssignmentLockSettingsResponseArgs, AssignmentLockSettingsResponsePtr and AssignmentLockSettingsResponsePtrOutput values. You can construct a concrete instance of `AssignmentLockSettingsResponsePtrInput` via:

        AssignmentLockSettingsResponseArgs{...}

or:

        nil

type AssignmentLockSettingsResponsePtrOutput

type AssignmentLockSettingsResponsePtrOutput struct{ *pulumi.OutputState }

func (AssignmentLockSettingsResponsePtrOutput) Elem

func (AssignmentLockSettingsResponsePtrOutput) ElementType

func (AssignmentLockSettingsResponsePtrOutput) Mode

Lock mode.

func (AssignmentLockSettingsResponsePtrOutput) ToAssignmentLockSettingsResponsePtrOutput

func (o AssignmentLockSettingsResponsePtrOutput) ToAssignmentLockSettingsResponsePtrOutput() AssignmentLockSettingsResponsePtrOutput

func (AssignmentLockSettingsResponsePtrOutput) ToAssignmentLockSettingsResponsePtrOutputWithContext

func (o AssignmentLockSettingsResponsePtrOutput) ToAssignmentLockSettingsResponsePtrOutputWithContext(ctx context.Context) AssignmentLockSettingsResponsePtrOutput

type AssignmentOutput added in v0.2.6

type AssignmentOutput struct {
	*pulumi.OutputState
}

func (AssignmentOutput) ElementType added in v0.2.6

func (AssignmentOutput) ElementType() reflect.Type

func (AssignmentOutput) ToAssignmentOutput added in v0.2.6

func (o AssignmentOutput) ToAssignmentOutput() AssignmentOutput

func (AssignmentOutput) ToAssignmentOutputWithContext added in v0.2.6

func (o AssignmentOutput) ToAssignmentOutputWithContext(ctx context.Context) AssignmentOutput

type AssignmentState

type AssignmentState struct {
	// ID of the Blueprint definition resource.
	BlueprintId pulumi.StringPtrInput
	// Multi-line explain this resource.
	Description pulumi.StringPtrInput
	// One-liner string explain this resource.
	DisplayName pulumi.StringPtrInput
	// Managed Service Identity for this Blueprint assignment
	Identity ManagedServiceIdentityResponsePtrInput
	// The location of this Blueprint assignment.
	Location pulumi.StringPtrInput
	// Defines how Blueprint-managed resources will be locked.
	Locks AssignmentLockSettingsResponsePtrInput
	// Name of this resource.
	Name pulumi.StringPtrInput
	// Blueprint parameter values.
	Parameters ParameterValueBaseResponseMapInput
	// State of the assignment.
	ProvisioningState pulumi.StringPtrInput
	// Names and locations of resource group placeholders.
	ResourceGroups ResourceGroupValueResponseMapInput
	// Status of Blueprint assignment. This field is readonly.
	Status AssignmentStatusResponsePtrInput
	// Type of this resource.
	Type pulumi.StringPtrInput
}

func (AssignmentState) ElementType

func (AssignmentState) ElementType() reflect.Type

type AssignmentStatusResponse

type AssignmentStatusResponse struct {
	// Last modified time of this blueprint.
	LastModified string `pulumi:"lastModified"`
	// Creation time of this blueprint.
	TimeCreated string `pulumi:"timeCreated"`
}

The status of Blueprint assignment. This field is readonly.

type AssignmentStatusResponseArgs

type AssignmentStatusResponseArgs struct {
	// Last modified time of this blueprint.
	LastModified pulumi.StringInput `pulumi:"lastModified"`
	// Creation time of this blueprint.
	TimeCreated pulumi.StringInput `pulumi:"timeCreated"`
}

The status of Blueprint assignment. This field is readonly.

func (AssignmentStatusResponseArgs) ElementType

func (AssignmentStatusResponseArgs) ToAssignmentStatusResponseOutput

func (i AssignmentStatusResponseArgs) ToAssignmentStatusResponseOutput() AssignmentStatusResponseOutput

func (AssignmentStatusResponseArgs) ToAssignmentStatusResponseOutputWithContext

func (i AssignmentStatusResponseArgs) ToAssignmentStatusResponseOutputWithContext(ctx context.Context) AssignmentStatusResponseOutput

func (AssignmentStatusResponseArgs) ToAssignmentStatusResponsePtrOutput

func (i AssignmentStatusResponseArgs) ToAssignmentStatusResponsePtrOutput() AssignmentStatusResponsePtrOutput

func (AssignmentStatusResponseArgs) ToAssignmentStatusResponsePtrOutputWithContext

func (i AssignmentStatusResponseArgs) ToAssignmentStatusResponsePtrOutputWithContext(ctx context.Context) AssignmentStatusResponsePtrOutput

type AssignmentStatusResponseInput

type AssignmentStatusResponseInput interface {
	pulumi.Input

	ToAssignmentStatusResponseOutput() AssignmentStatusResponseOutput
	ToAssignmentStatusResponseOutputWithContext(context.Context) AssignmentStatusResponseOutput
}

AssignmentStatusResponseInput is an input type that accepts AssignmentStatusResponseArgs and AssignmentStatusResponseOutput values. You can construct a concrete instance of `AssignmentStatusResponseInput` via:

AssignmentStatusResponseArgs{...}

type AssignmentStatusResponseOutput

type AssignmentStatusResponseOutput struct{ *pulumi.OutputState }

The status of Blueprint assignment. This field is readonly.

func (AssignmentStatusResponseOutput) ElementType

func (AssignmentStatusResponseOutput) LastModified

Last modified time of this blueprint.

func (AssignmentStatusResponseOutput) TimeCreated

Creation time of this blueprint.

func (AssignmentStatusResponseOutput) ToAssignmentStatusResponseOutput

func (o AssignmentStatusResponseOutput) ToAssignmentStatusResponseOutput() AssignmentStatusResponseOutput

func (AssignmentStatusResponseOutput) ToAssignmentStatusResponseOutputWithContext

func (o AssignmentStatusResponseOutput) ToAssignmentStatusResponseOutputWithContext(ctx context.Context) AssignmentStatusResponseOutput

func (AssignmentStatusResponseOutput) ToAssignmentStatusResponsePtrOutput

func (o AssignmentStatusResponseOutput) ToAssignmentStatusResponsePtrOutput() AssignmentStatusResponsePtrOutput

func (AssignmentStatusResponseOutput) ToAssignmentStatusResponsePtrOutputWithContext

func (o AssignmentStatusResponseOutput) ToAssignmentStatusResponsePtrOutputWithContext(ctx context.Context) AssignmentStatusResponsePtrOutput

type AssignmentStatusResponsePtrInput

type AssignmentStatusResponsePtrInput interface {
	pulumi.Input

	ToAssignmentStatusResponsePtrOutput() AssignmentStatusResponsePtrOutput
	ToAssignmentStatusResponsePtrOutputWithContext(context.Context) AssignmentStatusResponsePtrOutput
}

AssignmentStatusResponsePtrInput is an input type that accepts AssignmentStatusResponseArgs, AssignmentStatusResponsePtr and AssignmentStatusResponsePtrOutput values. You can construct a concrete instance of `AssignmentStatusResponsePtrInput` via:

        AssignmentStatusResponseArgs{...}

or:

        nil

type AssignmentStatusResponsePtrOutput

type AssignmentStatusResponsePtrOutput struct{ *pulumi.OutputState }

func (AssignmentStatusResponsePtrOutput) Elem

func (AssignmentStatusResponsePtrOutput) ElementType

func (AssignmentStatusResponsePtrOutput) LastModified

Last modified time of this blueprint.

func (AssignmentStatusResponsePtrOutput) TimeCreated

Creation time of this blueprint.

func (AssignmentStatusResponsePtrOutput) ToAssignmentStatusResponsePtrOutput

func (o AssignmentStatusResponsePtrOutput) ToAssignmentStatusResponsePtrOutput() AssignmentStatusResponsePtrOutput

func (AssignmentStatusResponsePtrOutput) ToAssignmentStatusResponsePtrOutputWithContext

func (o AssignmentStatusResponsePtrOutput) ToAssignmentStatusResponsePtrOutputWithContext(ctx context.Context) AssignmentStatusResponsePtrOutput

type LookupAssignmentArgs

type LookupAssignmentArgs struct {
	// name of the assignment.
	AssignmentName string `pulumi:"assignmentName"`
}

type LookupAssignmentResult

type LookupAssignmentResult struct {
	// ID of the Blueprint definition resource.
	BlueprintId *string `pulumi:"blueprintId"`
	// Multi-line explain this resource.
	Description *string `pulumi:"description"`
	// One-liner string explain this resource.
	DisplayName *string `pulumi:"displayName"`
	// String Id used to locate any resource on Azure.
	Id string `pulumi:"id"`
	// Managed Service Identity for this Blueprint assignment
	Identity ManagedServiceIdentityResponse `pulumi:"identity"`
	// The location of this Blueprint assignment.
	Location string `pulumi:"location"`
	// Defines how Blueprint-managed resources will be locked.
	Locks *AssignmentLockSettingsResponse `pulumi:"locks"`
	// Name of this resource.
	Name string `pulumi:"name"`
	// Blueprint parameter values.
	Parameters map[string]ParameterValueBaseResponse `pulumi:"parameters"`
	// State of the assignment.
	ProvisioningState string `pulumi:"provisioningState"`
	// Names and locations of resource group placeholders.
	ResourceGroups map[string]ResourceGroupValueResponse `pulumi:"resourceGroups"`
	// Status of Blueprint assignment. This field is readonly.
	Status AssignmentStatusResponse `pulumi:"status"`
	// Type of this resource.
	Type string `pulumi:"type"`
}

Represents a Blueprint assignment.

type ManagedServiceIdentity

type ManagedServiceIdentity struct {
	// Azure Active Directory principal ID associated with this Identity.
	PrincipalId *string `pulumi:"principalId"`
	// ID of the Azure Active Directory.
	TenantId *string `pulumi:"tenantId"`
	// Type of the Managed Service Identity.
	Type string `pulumi:"type"`
}

Managed Service Identity

type ManagedServiceIdentityArgs

type ManagedServiceIdentityArgs struct {
	// Azure Active Directory principal ID associated with this Identity.
	PrincipalId pulumi.StringPtrInput `pulumi:"principalId"`
	// ID of the Azure Active Directory.
	TenantId pulumi.StringPtrInput `pulumi:"tenantId"`
	// Type of the Managed Service Identity.
	Type pulumi.StringInput `pulumi:"type"`
}

Managed Service Identity

func (ManagedServiceIdentityArgs) ElementType

func (ManagedServiceIdentityArgs) ElementType() reflect.Type

func (ManagedServiceIdentityArgs) ToManagedServiceIdentityOutput

func (i ManagedServiceIdentityArgs) ToManagedServiceIdentityOutput() ManagedServiceIdentityOutput

func (ManagedServiceIdentityArgs) ToManagedServiceIdentityOutputWithContext

func (i ManagedServiceIdentityArgs) ToManagedServiceIdentityOutputWithContext(ctx context.Context) ManagedServiceIdentityOutput

func (ManagedServiceIdentityArgs) ToManagedServiceIdentityPtrOutput

func (i ManagedServiceIdentityArgs) ToManagedServiceIdentityPtrOutput() ManagedServiceIdentityPtrOutput

func (ManagedServiceIdentityArgs) ToManagedServiceIdentityPtrOutputWithContext

func (i ManagedServiceIdentityArgs) ToManagedServiceIdentityPtrOutputWithContext(ctx context.Context) ManagedServiceIdentityPtrOutput

type ManagedServiceIdentityInput

type ManagedServiceIdentityInput interface {
	pulumi.Input

	ToManagedServiceIdentityOutput() ManagedServiceIdentityOutput
	ToManagedServiceIdentityOutputWithContext(context.Context) ManagedServiceIdentityOutput
}

ManagedServiceIdentityInput is an input type that accepts ManagedServiceIdentityArgs and ManagedServiceIdentityOutput values. You can construct a concrete instance of `ManagedServiceIdentityInput` via:

ManagedServiceIdentityArgs{...}

type ManagedServiceIdentityOutput

type ManagedServiceIdentityOutput struct{ *pulumi.OutputState }

Managed Service Identity

func (ManagedServiceIdentityOutput) ElementType

func (ManagedServiceIdentityOutput) PrincipalId

Azure Active Directory principal ID associated with this Identity.

func (ManagedServiceIdentityOutput) TenantId

ID of the Azure Active Directory.

func (ManagedServiceIdentityOutput) ToManagedServiceIdentityOutput

func (o ManagedServiceIdentityOutput) ToManagedServiceIdentityOutput() ManagedServiceIdentityOutput

func (ManagedServiceIdentityOutput) ToManagedServiceIdentityOutputWithContext

func (o ManagedServiceIdentityOutput) ToManagedServiceIdentityOutputWithContext(ctx context.Context) ManagedServiceIdentityOutput

func (ManagedServiceIdentityOutput) ToManagedServiceIdentityPtrOutput

func (o ManagedServiceIdentityOutput) ToManagedServiceIdentityPtrOutput() ManagedServiceIdentityPtrOutput

func (ManagedServiceIdentityOutput) ToManagedServiceIdentityPtrOutputWithContext

func (o ManagedServiceIdentityOutput) ToManagedServiceIdentityPtrOutputWithContext(ctx context.Context) ManagedServiceIdentityPtrOutput

func (ManagedServiceIdentityOutput) Type

Type of the Managed Service Identity.

type ManagedServiceIdentityPtrInput

type ManagedServiceIdentityPtrInput interface {
	pulumi.Input

	ToManagedServiceIdentityPtrOutput() ManagedServiceIdentityPtrOutput
	ToManagedServiceIdentityPtrOutputWithContext(context.Context) ManagedServiceIdentityPtrOutput
}

ManagedServiceIdentityPtrInput is an input type that accepts ManagedServiceIdentityArgs, ManagedServiceIdentityPtr and ManagedServiceIdentityPtrOutput values. You can construct a concrete instance of `ManagedServiceIdentityPtrInput` via:

        ManagedServiceIdentityArgs{...}

or:

        nil

type ManagedServiceIdentityPtrOutput

type ManagedServiceIdentityPtrOutput struct{ *pulumi.OutputState }

func (ManagedServiceIdentityPtrOutput) Elem

func (ManagedServiceIdentityPtrOutput) ElementType

func (ManagedServiceIdentityPtrOutput) PrincipalId

Azure Active Directory principal ID associated with this Identity.

func (ManagedServiceIdentityPtrOutput) TenantId

ID of the Azure Active Directory.

func (ManagedServiceIdentityPtrOutput) ToManagedServiceIdentityPtrOutput

func (o ManagedServiceIdentityPtrOutput) ToManagedServiceIdentityPtrOutput() ManagedServiceIdentityPtrOutput

func (ManagedServiceIdentityPtrOutput) ToManagedServiceIdentityPtrOutputWithContext

func (o ManagedServiceIdentityPtrOutput) ToManagedServiceIdentityPtrOutputWithContext(ctx context.Context) ManagedServiceIdentityPtrOutput

func (ManagedServiceIdentityPtrOutput) Type

Type of the Managed Service Identity.

type ManagedServiceIdentityResponse

type ManagedServiceIdentityResponse struct {
	// Azure Active Directory principal ID associated with this Identity.
	PrincipalId *string `pulumi:"principalId"`
	// ID of the Azure Active Directory.
	TenantId *string `pulumi:"tenantId"`
	// Type of the Managed Service Identity.
	Type string `pulumi:"type"`
}

Managed Service Identity

type ManagedServiceIdentityResponseArgs

type ManagedServiceIdentityResponseArgs struct {
	// Azure Active Directory principal ID associated with this Identity.
	PrincipalId pulumi.StringPtrInput `pulumi:"principalId"`
	// ID of the Azure Active Directory.
	TenantId pulumi.StringPtrInput `pulumi:"tenantId"`
	// Type of the Managed Service Identity.
	Type pulumi.StringInput `pulumi:"type"`
}

Managed Service Identity

func (ManagedServiceIdentityResponseArgs) ElementType

func (ManagedServiceIdentityResponseArgs) ToManagedServiceIdentityResponseOutput

func (i ManagedServiceIdentityResponseArgs) ToManagedServiceIdentityResponseOutput() ManagedServiceIdentityResponseOutput

func (ManagedServiceIdentityResponseArgs) ToManagedServiceIdentityResponseOutputWithContext

func (i ManagedServiceIdentityResponseArgs) ToManagedServiceIdentityResponseOutputWithContext(ctx context.Context) ManagedServiceIdentityResponseOutput

func (ManagedServiceIdentityResponseArgs) ToManagedServiceIdentityResponsePtrOutput

func (i ManagedServiceIdentityResponseArgs) ToManagedServiceIdentityResponsePtrOutput() ManagedServiceIdentityResponsePtrOutput

func (ManagedServiceIdentityResponseArgs) ToManagedServiceIdentityResponsePtrOutputWithContext

func (i ManagedServiceIdentityResponseArgs) ToManagedServiceIdentityResponsePtrOutputWithContext(ctx context.Context) ManagedServiceIdentityResponsePtrOutput

type ManagedServiceIdentityResponseInput

type ManagedServiceIdentityResponseInput interface {
	pulumi.Input

	ToManagedServiceIdentityResponseOutput() ManagedServiceIdentityResponseOutput
	ToManagedServiceIdentityResponseOutputWithContext(context.Context) ManagedServiceIdentityResponseOutput
}

ManagedServiceIdentityResponseInput is an input type that accepts ManagedServiceIdentityResponseArgs and ManagedServiceIdentityResponseOutput values. You can construct a concrete instance of `ManagedServiceIdentityResponseInput` via:

ManagedServiceIdentityResponseArgs{...}

type ManagedServiceIdentityResponseOutput

type ManagedServiceIdentityResponseOutput struct{ *pulumi.OutputState }

Managed Service Identity

func (ManagedServiceIdentityResponseOutput) ElementType

func (ManagedServiceIdentityResponseOutput) PrincipalId

Azure Active Directory principal ID associated with this Identity.

func (ManagedServiceIdentityResponseOutput) TenantId

ID of the Azure Active Directory.

func (ManagedServiceIdentityResponseOutput) ToManagedServiceIdentityResponseOutput

func (o ManagedServiceIdentityResponseOutput) ToManagedServiceIdentityResponseOutput() ManagedServiceIdentityResponseOutput

func (ManagedServiceIdentityResponseOutput) ToManagedServiceIdentityResponseOutputWithContext

func (o ManagedServiceIdentityResponseOutput) ToManagedServiceIdentityResponseOutputWithContext(ctx context.Context) ManagedServiceIdentityResponseOutput

func (ManagedServiceIdentityResponseOutput) ToManagedServiceIdentityResponsePtrOutput

func (o ManagedServiceIdentityResponseOutput) ToManagedServiceIdentityResponsePtrOutput() ManagedServiceIdentityResponsePtrOutput

func (ManagedServiceIdentityResponseOutput) ToManagedServiceIdentityResponsePtrOutputWithContext

func (o ManagedServiceIdentityResponseOutput) ToManagedServiceIdentityResponsePtrOutputWithContext(ctx context.Context) ManagedServiceIdentityResponsePtrOutput

func (ManagedServiceIdentityResponseOutput) Type

Type of the Managed Service Identity.

type ManagedServiceIdentityResponsePtrInput

type ManagedServiceIdentityResponsePtrInput interface {
	pulumi.Input

	ToManagedServiceIdentityResponsePtrOutput() ManagedServiceIdentityResponsePtrOutput
	ToManagedServiceIdentityResponsePtrOutputWithContext(context.Context) ManagedServiceIdentityResponsePtrOutput
}

ManagedServiceIdentityResponsePtrInput is an input type that accepts ManagedServiceIdentityResponseArgs, ManagedServiceIdentityResponsePtr and ManagedServiceIdentityResponsePtrOutput values. You can construct a concrete instance of `ManagedServiceIdentityResponsePtrInput` via:

        ManagedServiceIdentityResponseArgs{...}

or:

        nil

type ManagedServiceIdentityResponsePtrOutput

type ManagedServiceIdentityResponsePtrOutput struct{ *pulumi.OutputState }

func (ManagedServiceIdentityResponsePtrOutput) Elem

func (ManagedServiceIdentityResponsePtrOutput) ElementType

func (ManagedServiceIdentityResponsePtrOutput) PrincipalId

Azure Active Directory principal ID associated with this Identity.

func (ManagedServiceIdentityResponsePtrOutput) TenantId

ID of the Azure Active Directory.

func (ManagedServiceIdentityResponsePtrOutput) ToManagedServiceIdentityResponsePtrOutput

func (o ManagedServiceIdentityResponsePtrOutput) ToManagedServiceIdentityResponsePtrOutput() ManagedServiceIdentityResponsePtrOutput

func (ManagedServiceIdentityResponsePtrOutput) ToManagedServiceIdentityResponsePtrOutputWithContext

func (o ManagedServiceIdentityResponsePtrOutput) ToManagedServiceIdentityResponsePtrOutputWithContext(ctx context.Context) ManagedServiceIdentityResponsePtrOutput

func (ManagedServiceIdentityResponsePtrOutput) Type

Type of the Managed Service Identity.

type ManagedServiceIdentityType added in v0.3.1

type ManagedServiceIdentityType pulumi.String

Type of the Managed Service Identity.

func (ManagedServiceIdentityType) ElementType added in v0.3.1

func (ManagedServiceIdentityType) ElementType() reflect.Type

func (ManagedServiceIdentityType) ToStringOutput added in v0.3.1

func (e ManagedServiceIdentityType) ToStringOutput() pulumi.StringOutput

func (ManagedServiceIdentityType) ToStringOutputWithContext added in v0.3.1

func (e ManagedServiceIdentityType) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (ManagedServiceIdentityType) ToStringPtrOutput added in v0.3.1

func (e ManagedServiceIdentityType) ToStringPtrOutput() pulumi.StringPtrOutput

func (ManagedServiceIdentityType) ToStringPtrOutputWithContext added in v0.3.1

func (e ManagedServiceIdentityType) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type ParameterValueBase

type ParameterValueBase struct {
	// Optional property, just to establish ParameterValueBase as a BaseClass.
	Description *string `pulumi:"description"`
}

Base class for ParameterValue.

type ParameterValueBaseArgs

type ParameterValueBaseArgs struct {
	// Optional property, just to establish ParameterValueBase as a BaseClass.
	Description pulumi.StringPtrInput `pulumi:"description"`
}

Base class for ParameterValue.

func (ParameterValueBaseArgs) ElementType

func (ParameterValueBaseArgs) ElementType() reflect.Type

func (ParameterValueBaseArgs) ToParameterValueBaseOutput

func (i ParameterValueBaseArgs) ToParameterValueBaseOutput() ParameterValueBaseOutput

func (ParameterValueBaseArgs) ToParameterValueBaseOutputWithContext

func (i ParameterValueBaseArgs) ToParameterValueBaseOutputWithContext(ctx context.Context) ParameterValueBaseOutput

type ParameterValueBaseInput

type ParameterValueBaseInput interface {
	pulumi.Input

	ToParameterValueBaseOutput() ParameterValueBaseOutput
	ToParameterValueBaseOutputWithContext(context.Context) ParameterValueBaseOutput
}

ParameterValueBaseInput is an input type that accepts ParameterValueBaseArgs and ParameterValueBaseOutput values. You can construct a concrete instance of `ParameterValueBaseInput` via:

ParameterValueBaseArgs{...}

type ParameterValueBaseMap

type ParameterValueBaseMap map[string]ParameterValueBaseInput

func (ParameterValueBaseMap) ElementType

func (ParameterValueBaseMap) ElementType() reflect.Type

func (ParameterValueBaseMap) ToParameterValueBaseMapOutput

func (i ParameterValueBaseMap) ToParameterValueBaseMapOutput() ParameterValueBaseMapOutput

func (ParameterValueBaseMap) ToParameterValueBaseMapOutputWithContext

func (i ParameterValueBaseMap) ToParameterValueBaseMapOutputWithContext(ctx context.Context) ParameterValueBaseMapOutput

type ParameterValueBaseMapInput

type ParameterValueBaseMapInput interface {
	pulumi.Input

	ToParameterValueBaseMapOutput() ParameterValueBaseMapOutput
	ToParameterValueBaseMapOutputWithContext(context.Context) ParameterValueBaseMapOutput
}

ParameterValueBaseMapInput is an input type that accepts ParameterValueBaseMap and ParameterValueBaseMapOutput values. You can construct a concrete instance of `ParameterValueBaseMapInput` via:

ParameterValueBaseMap{ "key": ParameterValueBaseArgs{...} }

type ParameterValueBaseMapOutput

type ParameterValueBaseMapOutput struct{ *pulumi.OutputState }

func (ParameterValueBaseMapOutput) ElementType

func (ParameterValueBaseMapOutput) MapIndex

func (ParameterValueBaseMapOutput) ToParameterValueBaseMapOutput

func (o ParameterValueBaseMapOutput) ToParameterValueBaseMapOutput() ParameterValueBaseMapOutput

func (ParameterValueBaseMapOutput) ToParameterValueBaseMapOutputWithContext

func (o ParameterValueBaseMapOutput) ToParameterValueBaseMapOutputWithContext(ctx context.Context) ParameterValueBaseMapOutput

type ParameterValueBaseOutput

type ParameterValueBaseOutput struct{ *pulumi.OutputState }

Base class for ParameterValue.

func (ParameterValueBaseOutput) Description

Optional property, just to establish ParameterValueBase as a BaseClass.

func (ParameterValueBaseOutput) ElementType

func (ParameterValueBaseOutput) ElementType() reflect.Type

func (ParameterValueBaseOutput) ToParameterValueBaseOutput

func (o ParameterValueBaseOutput) ToParameterValueBaseOutput() ParameterValueBaseOutput

func (ParameterValueBaseOutput) ToParameterValueBaseOutputWithContext

func (o ParameterValueBaseOutput) ToParameterValueBaseOutputWithContext(ctx context.Context) ParameterValueBaseOutput

type ParameterValueBaseResponse

type ParameterValueBaseResponse struct {
	// Optional property, just to establish ParameterValueBase as a BaseClass.
	Description *string `pulumi:"description"`
}

Base class for ParameterValue.

type ParameterValueBaseResponseArgs

type ParameterValueBaseResponseArgs struct {
	// Optional property, just to establish ParameterValueBase as a BaseClass.
	Description pulumi.StringPtrInput `pulumi:"description"`
}

Base class for ParameterValue.

func (ParameterValueBaseResponseArgs) ElementType

func (ParameterValueBaseResponseArgs) ToParameterValueBaseResponseOutput

func (i ParameterValueBaseResponseArgs) ToParameterValueBaseResponseOutput() ParameterValueBaseResponseOutput

func (ParameterValueBaseResponseArgs) ToParameterValueBaseResponseOutputWithContext

func (i ParameterValueBaseResponseArgs) ToParameterValueBaseResponseOutputWithContext(ctx context.Context) ParameterValueBaseResponseOutput

type ParameterValueBaseResponseInput

type ParameterValueBaseResponseInput interface {
	pulumi.Input

	ToParameterValueBaseResponseOutput() ParameterValueBaseResponseOutput
	ToParameterValueBaseResponseOutputWithContext(context.Context) ParameterValueBaseResponseOutput
}

ParameterValueBaseResponseInput is an input type that accepts ParameterValueBaseResponseArgs and ParameterValueBaseResponseOutput values. You can construct a concrete instance of `ParameterValueBaseResponseInput` via:

ParameterValueBaseResponseArgs{...}

type ParameterValueBaseResponseMap

type ParameterValueBaseResponseMap map[string]ParameterValueBaseResponseInput

func (ParameterValueBaseResponseMap) ElementType

func (ParameterValueBaseResponseMap) ToParameterValueBaseResponseMapOutput

func (i ParameterValueBaseResponseMap) ToParameterValueBaseResponseMapOutput() ParameterValueBaseResponseMapOutput

func (ParameterValueBaseResponseMap) ToParameterValueBaseResponseMapOutputWithContext

func (i ParameterValueBaseResponseMap) ToParameterValueBaseResponseMapOutputWithContext(ctx context.Context) ParameterValueBaseResponseMapOutput

type ParameterValueBaseResponseMapInput

type ParameterValueBaseResponseMapInput interface {
	pulumi.Input

	ToParameterValueBaseResponseMapOutput() ParameterValueBaseResponseMapOutput
	ToParameterValueBaseResponseMapOutputWithContext(context.Context) ParameterValueBaseResponseMapOutput
}

ParameterValueBaseResponseMapInput is an input type that accepts ParameterValueBaseResponseMap and ParameterValueBaseResponseMapOutput values. You can construct a concrete instance of `ParameterValueBaseResponseMapInput` via:

ParameterValueBaseResponseMap{ "key": ParameterValueBaseResponseArgs{...} }

type ParameterValueBaseResponseMapOutput

type ParameterValueBaseResponseMapOutput struct{ *pulumi.OutputState }

func (ParameterValueBaseResponseMapOutput) ElementType

func (ParameterValueBaseResponseMapOutput) MapIndex

func (ParameterValueBaseResponseMapOutput) ToParameterValueBaseResponseMapOutput

func (o ParameterValueBaseResponseMapOutput) ToParameterValueBaseResponseMapOutput() ParameterValueBaseResponseMapOutput

func (ParameterValueBaseResponseMapOutput) ToParameterValueBaseResponseMapOutputWithContext

func (o ParameterValueBaseResponseMapOutput) ToParameterValueBaseResponseMapOutputWithContext(ctx context.Context) ParameterValueBaseResponseMapOutput

type ParameterValueBaseResponseOutput

type ParameterValueBaseResponseOutput struct{ *pulumi.OutputState }

Base class for ParameterValue.

func (ParameterValueBaseResponseOutput) Description

Optional property, just to establish ParameterValueBase as a BaseClass.

func (ParameterValueBaseResponseOutput) ElementType

func (ParameterValueBaseResponseOutput) ToParameterValueBaseResponseOutput

func (o ParameterValueBaseResponseOutput) ToParameterValueBaseResponseOutput() ParameterValueBaseResponseOutput

func (ParameterValueBaseResponseOutput) ToParameterValueBaseResponseOutputWithContext

func (o ParameterValueBaseResponseOutput) ToParameterValueBaseResponseOutputWithContext(ctx context.Context) ParameterValueBaseResponseOutput

type ResourceGroupValue

type ResourceGroupValue struct {
	// Location of the resource group
	Location *string `pulumi:"location"`
	// Name of the resource group
	Name *string `pulumi:"name"`
}

Represents an Azure resource group.

type ResourceGroupValueArgs

type ResourceGroupValueArgs struct {
	// Location of the resource group
	Location pulumi.StringPtrInput `pulumi:"location"`
	// Name of the resource group
	Name pulumi.StringPtrInput `pulumi:"name"`
}

Represents an Azure resource group.

func (ResourceGroupValueArgs) ElementType

func (ResourceGroupValueArgs) ElementType() reflect.Type

func (ResourceGroupValueArgs) ToResourceGroupValueOutput

func (i ResourceGroupValueArgs) ToResourceGroupValueOutput() ResourceGroupValueOutput

func (ResourceGroupValueArgs) ToResourceGroupValueOutputWithContext

func (i ResourceGroupValueArgs) ToResourceGroupValueOutputWithContext(ctx context.Context) ResourceGroupValueOutput

type ResourceGroupValueInput

type ResourceGroupValueInput interface {
	pulumi.Input

	ToResourceGroupValueOutput() ResourceGroupValueOutput
	ToResourceGroupValueOutputWithContext(context.Context) ResourceGroupValueOutput
}

ResourceGroupValueInput is an input type that accepts ResourceGroupValueArgs and ResourceGroupValueOutput values. You can construct a concrete instance of `ResourceGroupValueInput` via:

ResourceGroupValueArgs{...}

type ResourceGroupValueMap

type ResourceGroupValueMap map[string]ResourceGroupValueInput

func (ResourceGroupValueMap) ElementType

func (ResourceGroupValueMap) ElementType() reflect.Type

func (ResourceGroupValueMap) ToResourceGroupValueMapOutput

func (i ResourceGroupValueMap) ToResourceGroupValueMapOutput() ResourceGroupValueMapOutput

func (ResourceGroupValueMap) ToResourceGroupValueMapOutputWithContext

func (i ResourceGroupValueMap) ToResourceGroupValueMapOutputWithContext(ctx context.Context) ResourceGroupValueMapOutput

type ResourceGroupValueMapInput

type ResourceGroupValueMapInput interface {
	pulumi.Input

	ToResourceGroupValueMapOutput() ResourceGroupValueMapOutput
	ToResourceGroupValueMapOutputWithContext(context.Context) ResourceGroupValueMapOutput
}

ResourceGroupValueMapInput is an input type that accepts ResourceGroupValueMap and ResourceGroupValueMapOutput values. You can construct a concrete instance of `ResourceGroupValueMapInput` via:

ResourceGroupValueMap{ "key": ResourceGroupValueArgs{...} }

type ResourceGroupValueMapOutput

type ResourceGroupValueMapOutput struct{ *pulumi.OutputState }

func (ResourceGroupValueMapOutput) ElementType

func (ResourceGroupValueMapOutput) MapIndex

func (ResourceGroupValueMapOutput) ToResourceGroupValueMapOutput

func (o ResourceGroupValueMapOutput) ToResourceGroupValueMapOutput() ResourceGroupValueMapOutput

func (ResourceGroupValueMapOutput) ToResourceGroupValueMapOutputWithContext

func (o ResourceGroupValueMapOutput) ToResourceGroupValueMapOutputWithContext(ctx context.Context) ResourceGroupValueMapOutput

type ResourceGroupValueOutput

type ResourceGroupValueOutput struct{ *pulumi.OutputState }

Represents an Azure resource group.

func (ResourceGroupValueOutput) ElementType

func (ResourceGroupValueOutput) ElementType() reflect.Type

func (ResourceGroupValueOutput) Location

Location of the resource group

func (ResourceGroupValueOutput) Name

Name of the resource group

func (ResourceGroupValueOutput) ToResourceGroupValueOutput

func (o ResourceGroupValueOutput) ToResourceGroupValueOutput() ResourceGroupValueOutput

func (ResourceGroupValueOutput) ToResourceGroupValueOutputWithContext

func (o ResourceGroupValueOutput) ToResourceGroupValueOutputWithContext(ctx context.Context) ResourceGroupValueOutput

type ResourceGroupValueResponse

type ResourceGroupValueResponse struct {
	// Location of the resource group
	Location *string `pulumi:"location"`
	// Name of the resource group
	Name *string `pulumi:"name"`
}

Represents an Azure resource group.

type ResourceGroupValueResponseArgs

type ResourceGroupValueResponseArgs struct {
	// Location of the resource group
	Location pulumi.StringPtrInput `pulumi:"location"`
	// Name of the resource group
	Name pulumi.StringPtrInput `pulumi:"name"`
}

Represents an Azure resource group.

func (ResourceGroupValueResponseArgs) ElementType

func (ResourceGroupValueResponseArgs) ToResourceGroupValueResponseOutput

func (i ResourceGroupValueResponseArgs) ToResourceGroupValueResponseOutput() ResourceGroupValueResponseOutput

func (ResourceGroupValueResponseArgs) ToResourceGroupValueResponseOutputWithContext

func (i ResourceGroupValueResponseArgs) ToResourceGroupValueResponseOutputWithContext(ctx context.Context) ResourceGroupValueResponseOutput

type ResourceGroupValueResponseInput

type ResourceGroupValueResponseInput interface {
	pulumi.Input

	ToResourceGroupValueResponseOutput() ResourceGroupValueResponseOutput
	ToResourceGroupValueResponseOutputWithContext(context.Context) ResourceGroupValueResponseOutput
}

ResourceGroupValueResponseInput is an input type that accepts ResourceGroupValueResponseArgs and ResourceGroupValueResponseOutput values. You can construct a concrete instance of `ResourceGroupValueResponseInput` via:

ResourceGroupValueResponseArgs{...}

type ResourceGroupValueResponseMap

type ResourceGroupValueResponseMap map[string]ResourceGroupValueResponseInput

func (ResourceGroupValueResponseMap) ElementType

func (ResourceGroupValueResponseMap) ToResourceGroupValueResponseMapOutput

func (i ResourceGroupValueResponseMap) ToResourceGroupValueResponseMapOutput() ResourceGroupValueResponseMapOutput

func (ResourceGroupValueResponseMap) ToResourceGroupValueResponseMapOutputWithContext

func (i ResourceGroupValueResponseMap) ToResourceGroupValueResponseMapOutputWithContext(ctx context.Context) ResourceGroupValueResponseMapOutput

type ResourceGroupValueResponseMapInput

type ResourceGroupValueResponseMapInput interface {
	pulumi.Input

	ToResourceGroupValueResponseMapOutput() ResourceGroupValueResponseMapOutput
	ToResourceGroupValueResponseMapOutputWithContext(context.Context) ResourceGroupValueResponseMapOutput
}

ResourceGroupValueResponseMapInput is an input type that accepts ResourceGroupValueResponseMap and ResourceGroupValueResponseMapOutput values. You can construct a concrete instance of `ResourceGroupValueResponseMapInput` via:

ResourceGroupValueResponseMap{ "key": ResourceGroupValueResponseArgs{...} }

type ResourceGroupValueResponseMapOutput

type ResourceGroupValueResponseMapOutput struct{ *pulumi.OutputState }

func (ResourceGroupValueResponseMapOutput) ElementType

func (ResourceGroupValueResponseMapOutput) MapIndex

func (ResourceGroupValueResponseMapOutput) ToResourceGroupValueResponseMapOutput

func (o ResourceGroupValueResponseMapOutput) ToResourceGroupValueResponseMapOutput() ResourceGroupValueResponseMapOutput

func (ResourceGroupValueResponseMapOutput) ToResourceGroupValueResponseMapOutputWithContext

func (o ResourceGroupValueResponseMapOutput) ToResourceGroupValueResponseMapOutputWithContext(ctx context.Context) ResourceGroupValueResponseMapOutput

type ResourceGroupValueResponseOutput

type ResourceGroupValueResponseOutput struct{ *pulumi.OutputState }

Represents an Azure resource group.

func (ResourceGroupValueResponseOutput) ElementType

func (ResourceGroupValueResponseOutput) Location

Location of the resource group

func (ResourceGroupValueResponseOutput) Name

Name of the resource group

func (ResourceGroupValueResponseOutput) ToResourceGroupValueResponseOutput

func (o ResourceGroupValueResponseOutput) ToResourceGroupValueResponseOutput() ResourceGroupValueResponseOutput

func (ResourceGroupValueResponseOutput) ToResourceGroupValueResponseOutputWithContext

func (o ResourceGroupValueResponseOutput) ToResourceGroupValueResponseOutputWithContext(ctx context.Context) ResourceGroupValueResponseOutput

Jump to

Keyboard shortcuts

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