1. Packages
  2. Akamai
  3. API Docs
  4. CpsDvValidation
Akamai v7.0.0 published on Monday, Apr 8, 2024 by Pulumi

akamai.CpsDvValidation

Explore with Pulumi AI

akamai logo
Akamai v7.0.0 published on Monday, Apr 8, 2024 by Pulumi

    Create CpsDvValidation Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CpsDvValidation(name: string, args: CpsDvValidationArgs, opts?: CustomResourceOptions);
    @overload
    def CpsDvValidation(resource_name: str,
                        args: CpsDvValidationArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def CpsDvValidation(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        enrollment_id: Optional[int] = None,
                        sans: Optional[Sequence[str]] = None,
                        timeouts: Optional[CpsDvValidationTimeoutsArgs] = None)
    func NewCpsDvValidation(ctx *Context, name string, args CpsDvValidationArgs, opts ...ResourceOption) (*CpsDvValidation, error)
    public CpsDvValidation(string name, CpsDvValidationArgs args, CustomResourceOptions? opts = null)
    public CpsDvValidation(String name, CpsDvValidationArgs args)
    public CpsDvValidation(String name, CpsDvValidationArgs args, CustomResourceOptions options)
    
    type: akamai:CpsDvValidation
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args CpsDvValidationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args CpsDvValidationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args CpsDvValidationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CpsDvValidationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CpsDvValidationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var cpsDvValidationResource = new Akamai.CpsDvValidation("cpsDvValidationResource", new()
    {
        EnrollmentId = 0,
        Sans = new[]
        {
            "string",
        },
        Timeouts = new Akamai.Inputs.CpsDvValidationTimeoutsArgs
        {
            Default = "string",
        },
    });
    
    example, err := akamai.NewCpsDvValidation(ctx, "cpsDvValidationResource", &akamai.CpsDvValidationArgs{
    	EnrollmentId: pulumi.Int(0),
    	Sans: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Timeouts: &akamai.CpsDvValidationTimeoutsArgs{
    		Default: pulumi.String("string"),
    	},
    })
    
    var cpsDvValidationResource = new CpsDvValidation("cpsDvValidationResource", CpsDvValidationArgs.builder()        
        .enrollmentId(0)
        .sans("string")
        .timeouts(CpsDvValidationTimeoutsArgs.builder()
            .default_("string")
            .build())
        .build());
    
    cps_dv_validation_resource = akamai.CpsDvValidation("cpsDvValidationResource",
        enrollment_id=0,
        sans=["string"],
        timeouts=akamai.CpsDvValidationTimeoutsArgs(
            default="string",
        ))
    
    const cpsDvValidationResource = new akamai.CpsDvValidation("cpsDvValidationResource", {
        enrollmentId: 0,
        sans: ["string"],
        timeouts: {
            "default": "string",
        },
    });
    
    type: akamai:CpsDvValidation
    properties:
        enrollmentId: 0
        sans:
            - string
        timeouts:
            default: string
    

    CpsDvValidation Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The CpsDvValidation resource accepts the following input properties:

    EnrollmentId int
    The unique identifier of enrollment
    Sans List<string>
    List of SANs
    Timeouts CpsDvValidationTimeouts
    Enables to set timeout for processing
    EnrollmentId int
    The unique identifier of enrollment
    Sans []string
    List of SANs
    Timeouts CpsDvValidationTimeoutsArgs
    Enables to set timeout for processing
    enrollmentId Integer
    The unique identifier of enrollment
    sans List<String>
    List of SANs
    timeouts CpsDvValidationTimeouts
    Enables to set timeout for processing
    enrollmentId number
    The unique identifier of enrollment
    sans string[]
    List of SANs
    timeouts CpsDvValidationTimeouts
    Enables to set timeout for processing
    enrollment_id int
    The unique identifier of enrollment
    sans Sequence[str]
    List of SANs
    timeouts CpsDvValidationTimeoutsArgs
    Enables to set timeout for processing
    enrollmentId Number
    The unique identifier of enrollment
    sans List<String>
    List of SANs
    timeouts Property Map
    Enables to set timeout for processing

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CpsDvValidation resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Status of validation
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Status of validation
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Status of validation
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    Status of validation
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    Status of validation
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Status of validation

    Look up Existing CpsDvValidation Resource

    Get an existing CpsDvValidation resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: CpsDvValidationState, opts?: CustomResourceOptions): CpsDvValidation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            enrollment_id: Optional[int] = None,
            sans: Optional[Sequence[str]] = None,
            status: Optional[str] = None,
            timeouts: Optional[CpsDvValidationTimeoutsArgs] = None) -> CpsDvValidation
    func GetCpsDvValidation(ctx *Context, name string, id IDInput, state *CpsDvValidationState, opts ...ResourceOption) (*CpsDvValidation, error)
    public static CpsDvValidation Get(string name, Input<string> id, CpsDvValidationState? state, CustomResourceOptions? opts = null)
    public static CpsDvValidation get(String name, Output<String> id, CpsDvValidationState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    EnrollmentId int
    The unique identifier of enrollment
    Sans List<string>
    List of SANs
    Status string
    Status of validation
    Timeouts CpsDvValidationTimeouts
    Enables to set timeout for processing
    EnrollmentId int
    The unique identifier of enrollment
    Sans []string
    List of SANs
    Status string
    Status of validation
    Timeouts CpsDvValidationTimeoutsArgs
    Enables to set timeout for processing
    enrollmentId Integer
    The unique identifier of enrollment
    sans List<String>
    List of SANs
    status String
    Status of validation
    timeouts CpsDvValidationTimeouts
    Enables to set timeout for processing
    enrollmentId number
    The unique identifier of enrollment
    sans string[]
    List of SANs
    status string
    Status of validation
    timeouts CpsDvValidationTimeouts
    Enables to set timeout for processing
    enrollment_id int
    The unique identifier of enrollment
    sans Sequence[str]
    List of SANs
    status str
    Status of validation
    timeouts CpsDvValidationTimeoutsArgs
    Enables to set timeout for processing
    enrollmentId Number
    The unique identifier of enrollment
    sans List<String>
    List of SANs
    status String
    Status of validation
    timeouts Property Map
    Enables to set timeout for processing

    Supporting Types

    CpsDvValidationTimeouts, CpsDvValidationTimeoutsArgs

    Default string
    Default string
    default_ String
    default string
    default String

    Package Details

    Repository
    Akamai pulumi/pulumi-akamai
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the akamai Terraform Provider.
    akamai logo
    Akamai v7.0.0 published on Monday, Apr 8, 2024 by Pulumi