Show / Hide Table of Contents

Struct ResourceTransformArgs

Inherited Members
ValueType.Equals(object)
ValueType.GetHashCode()
ValueType.ToString()
object.Equals(object, object)
object.GetType()
object.ReferenceEquals(object, object)
Namespace: Pulumi
Assembly: Pulumi.dll
Syntax
public readonly struct ResourceTransformArgs

Constructors

View Source

ResourceTransformArgs(string, string, bool, ImmutableDictionary<string, object?>, ResourceOptions)

Declaration
public ResourceTransformArgs(string name, string type, bool custom, ImmutableDictionary<string, object?> args, ResourceOptions options)
Parameters
Type Name Description
string name
string type
bool custom
ImmutableDictionary<string, object> args
ResourceOptions options

Properties

View Source

Args

The original properties passed to the Resource constructor.

Declaration
public ImmutableDictionary<string, object?> Args { get; }
Property Value
Type Description
ImmutableDictionary<string, object>
View Source

Custom

If this is a custom resource.

Declaration
public bool Custom { get; }
Property Value
Type Description
bool
View Source

Name

The name of the resource being transformed.

Declaration
public string Name { get; }
Property Value
Type Description
string
View Source

Options

The original resource options passed to the Resource constructor.

Declaration
public ResourceOptions Options { get; }
Property Value
Type Description
ResourceOptions
View Source

Type

The type of the resource being transformed.

Declaration
public string Type { get; }
Property Value
Type Description
string
  • View Source
Back to top Copyright 2016-2023, Pulumi Corporation.