mirror of https://github.com/pulumi/pulumi.git
67 lines
3.9 KiB
C#
67 lines
3.9 KiB
C#
// Copyright 2016-2019, Pulumi Corporation
|
|
|
|
using Pulumi.Serialization;
|
|
|
|
namespace Pulumi
|
|
{
|
|
/// <summary>
|
|
/// CustomResource is a resource whose create, read, update, and delete (CRUD) operations are
|
|
/// managed by performing external operations on some physical entity. The engine understands
|
|
/// how to diff and perform partial updates of them, and these CRUD operations are implemented
|
|
/// in a dynamically loaded plugin for the defining package.
|
|
/// </summary>
|
|
public class CustomResource : Resource
|
|
{
|
|
/// <summary>
|
|
/// Id is the provider-assigned unique ID for this managed resource. It is set during
|
|
/// deployments and may be missing (unknown) during planning phases.
|
|
/// </summary>
|
|
// Set using reflection, so we silence the NRT warnings with `null!`.
|
|
[Output(Constants.IdPropertyName)]
|
|
public Output<string> Id { get; private protected set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Creates and registers a new managed resource. <paramref name="type"/> is the fully
|
|
/// qualified type token and <paramref name="name"/> is the "name" part to use in creating a
|
|
/// stable and globally unique URN for the object. <see cref="ResourceOptions.DependsOn"/>
|
|
/// is an optional list of other resources that this resource depends on, controlling the
|
|
/// order in which we perform resource operations. Creating an instance does not necessarily
|
|
/// perform a create on the physical entity which it represents, and instead, this is
|
|
/// dependent upon the diffing of the new goal state compared to the current known resource
|
|
/// state.
|
|
/// </summary>
|
|
/// <param name="type">The type of the resource.</param>
|
|
/// <param name="name">The unique name of the resource.</param>
|
|
/// <param name="args">The arguments to use to populate the new resource.</param>
|
|
/// <param name="options">A bag of options that control this resource's behavior.</param>
|
|
#pragma warning disable RS0022 // Constructor make noninheritable base class inheritable
|
|
public CustomResource(string type, string name, ResourceArgs? args, CustomResourceOptions? options = null)
|
|
: this(type, name, args, options, dependency: false)
|
|
#pragma warning restore RS0022 // Constructor make noninheritable base class inheritable
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates and registers a new managed resource. <paramref name="type"/> is the fully
|
|
/// qualified type token and <paramref name="name"/> is the "name" part to use in creating a
|
|
/// stable and globally unique URN for the object. <see cref="ResourceOptions.DependsOn"/>
|
|
/// is an optional list of other resources that this resource depends on, controlling the
|
|
/// order in which we perform resource operations. Creating an instance does not necessarily
|
|
/// perform a create on the physical entity which it represents, and instead, this is
|
|
/// dependent upon the diffing of the new goal state compared to the current known resource
|
|
/// state.
|
|
/// </summary>
|
|
/// <param name="type">The type of the resource.</param>
|
|
/// <param name="name">The unique name of the resource.</param>
|
|
/// <param name="args">The arguments to use to populate the new resource.</param>
|
|
/// <param name="options">A bag of options that control this resource's behavior.</param>
|
|
/// <param name="dependency">True if this is a synthetic resource used internally for dependency tracking.</param>
|
|
private protected CustomResource(
|
|
string type, string name, ResourceArgs? args, CustomResourceOptions? options = null, bool dependency = false)
|
|
: base(type, name, custom: true, args ?? ResourceArgs.Empty, options ?? new CustomResourceOptions(),
|
|
remote: false, dependency: dependency)
|
|
{
|
|
}
|
|
}
|
|
}
|