mirror of https://github.com/pulumi/pulumi.git
57 lines
2.4 KiB
C#
57 lines
2.4 KiB
C#
// Copyright 2016-2019, Pulumi Corporation
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Pulumi
|
|
{
|
|
/// <summary>
|
|
/// <see cref="CustomResourceOptions"/> is a bag of optional settings that control a <see
|
|
/// cref="CustomResource"/>'s behavior.
|
|
/// </summary>
|
|
public sealed class CustomResourceOptions : ResourceOptions
|
|
{
|
|
/// <summary>
|
|
/// When set to <c>true</c>, indicates that this resource should be deleted before its
|
|
/// replacement is created when replacement is necessary.
|
|
/// </summary>
|
|
public bool? DeleteBeforeReplace { get; set; }
|
|
|
|
private List<string>? _additionalSecretOutputs;
|
|
|
|
/// <summary>
|
|
/// The names of outputs for this resource that should be treated as secrets. This augments
|
|
/// the list that the resource provider and pulumi engine already determine based on inputs
|
|
/// to your resource. It can be used to mark certain outputs as a secrets on a per resource
|
|
/// basis.
|
|
/// </summary>
|
|
public List<string> AdditionalSecretOutputs
|
|
{
|
|
get => _additionalSecretOutputs ?? (_additionalSecretOutputs = new List<string>());
|
|
set => _additionalSecretOutputs = value;
|
|
}
|
|
|
|
/// <summary>
|
|
/// When provided with a resource ID, import indicates that this resource's provider should
|
|
/// import its state from the cloud resource with the given ID.The inputs to the resource's
|
|
/// constructor must align with the resource's current state.Once a resource has been
|
|
/// imported, the import property must be removed from the resource's options.
|
|
/// </summary>
|
|
public string? ImportId { get; set; }
|
|
|
|
internal override ResourceOptions Clone()
|
|
=> CreateCustomResourceOptionsCopy(this);
|
|
|
|
/// <inheritdoc cref="ResourceOptions.Merge(ResourceOptions, ResourceOptions)"/>
|
|
public static new CustomResourceOptions Merge(ResourceOptions? options1, ResourceOptions? options2)
|
|
{
|
|
if (options1 is ComponentResourceOptions || options2 is ComponentResourceOptions)
|
|
throw new ArgumentException($"{nameof(CustomResourceOptions)}.{nameof(Merge)} cannot be used to merge {nameof(ComponentResourceOptions)}");
|
|
|
|
return (CustomResourceOptions)ResourceOptions.Merge(
|
|
CreateCustomResourceOptionsCopy(options1),
|
|
CreateCustomResourceOptionsCopy(options2));
|
|
}
|
|
}
|
|
}
|