Class ResourceOptions
ResourceOptions is a bag of optional settings that control a resource's behavior.
Inherited Members
Namespace: Pulumi
Assembly: Pulumi.dll
Syntax
public abstract class ResourceOptions
Properties
View SourceAliases
An optional list of aliases to treat this resource as matching.
Declaration
public List<Input<Alias>> Aliases { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<Input<Alias>> |
CustomTimeouts
An optional CustomTimeouts configuration block.
Declaration
public CustomTimeouts CustomTimeouts { get; set; }
Property Value
| Type | Description |
|---|---|
| CustomTimeouts |
DependsOn
Optional additional explicit dependencies on other resources.
Declaration
public InputList<Resource> DependsOn { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<Resource> |
Id
An optional existing ID to load, rather than create.
Declaration
public Input<string> Id { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
IgnoreChanges
Ignore changes to any of the specified properties.
Declaration
public List<string> IgnoreChanges { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<System.String> |
Parent
An optional parent resource to which this resource belongs.
Declaration
public Resource Parent { get; set; }
Property Value
| Type | Description |
|---|---|
| Resource |
Protect
When set to true, protect ensures this resource cannot be deleted.
Declaration
public bool? Protect { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
Provider
An optional provider to use for this resource's CRUD operations. If no provider is supplied, the default provider for the resource's package will be used. The default provider is pulled from the parent's provider bag (see also ComponentResourceOptions.providers).
If this is a ComponentResourceOptions do not provide both Provider and Providers.
Declaration
public ProviderResource Provider { get; set; }
Property Value
| Type | Description |
|---|---|
| ProviderResource |
ResourceTransformations
Optional list of transformations to apply to this resource during construction.The transformations are applied in order, and are applied prior to transformation applied to parents walking from the resource up to the stack.
Declaration
public List<ResourceTransformation> ResourceTransformations { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<ResourceTransformation> |
Version
An optional version, corresponding to the version of the provider plugin that should be used when operating on this resource. This version overrides the version information inferred from the current package and should rarely be used.
Declaration
public string Version { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |