1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. CssAuthenticateDomainOwnerOperation
tencentcloud 1.81.183 published on Wednesday, Apr 16, 2025 by tencentcloudstack

tencentcloud.CssAuthenticateDomainOwnerOperation

Explore with Pulumi AI

Provides a resource to verify the domain ownership by specified way when DomainNeedVerifyOwner failed in domain creation.

Example Usage

dnsCheck way:

import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";

const dnsCheck = new tencentcloud.CssAuthenticateDomainOwnerOperation("dnsCheck", {
    domainName: "your_domain_name",
    verifyType: "dnsCheck",
});
Copy
import pulumi
import pulumi_tencentcloud as tencentcloud

dns_check = tencentcloud.CssAuthenticateDomainOwnerOperation("dnsCheck",
    domain_name="your_domain_name",
    verify_type="dnsCheck")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := tencentcloud.NewCssAuthenticateDomainOwnerOperation(ctx, "dnsCheck", &tencentcloud.CssAuthenticateDomainOwnerOperationArgs{
			DomainName: pulumi.String("your_domain_name"),
			VerifyType: pulumi.String("dnsCheck"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;

return await Deployment.RunAsync(() => 
{
    var dnsCheck = new Tencentcloud.CssAuthenticateDomainOwnerOperation("dnsCheck", new()
    {
        DomainName = "your_domain_name",
        VerifyType = "dnsCheck",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.CssAuthenticateDomainOwnerOperation;
import com.pulumi.tencentcloud.CssAuthenticateDomainOwnerOperationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var dnsCheck = new CssAuthenticateDomainOwnerOperation("dnsCheck", CssAuthenticateDomainOwnerOperationArgs.builder()
            .domainName("your_domain_name")
            .verifyType("dnsCheck")
            .build());

    }
}
Copy
resources:
  dnsCheck:
    type: tencentcloud:CssAuthenticateDomainOwnerOperation
    properties:
      domainName: your_domain_name
      verifyType: dnsCheck
Copy

fileCheck way:

import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";

const fileCheck = new tencentcloud.CssAuthenticateDomainOwnerOperation("fileCheck", {
    domainName: "your_domain_name",
    verifyType: "fileCheck",
});
Copy
import pulumi
import pulumi_tencentcloud as tencentcloud

file_check = tencentcloud.CssAuthenticateDomainOwnerOperation("fileCheck",
    domain_name="your_domain_name",
    verify_type="fileCheck")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := tencentcloud.NewCssAuthenticateDomainOwnerOperation(ctx, "fileCheck", &tencentcloud.CssAuthenticateDomainOwnerOperationArgs{
			DomainName: pulumi.String("your_domain_name"),
			VerifyType: pulumi.String("fileCheck"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;

return await Deployment.RunAsync(() => 
{
    var fileCheck = new Tencentcloud.CssAuthenticateDomainOwnerOperation("fileCheck", new()
    {
        DomainName = "your_domain_name",
        VerifyType = "fileCheck",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.CssAuthenticateDomainOwnerOperation;
import com.pulumi.tencentcloud.CssAuthenticateDomainOwnerOperationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var fileCheck = new CssAuthenticateDomainOwnerOperation("fileCheck", CssAuthenticateDomainOwnerOperationArgs.builder()
            .domainName("your_domain_name")
            .verifyType("fileCheck")
            .build());

    }
}
Copy
resources:
  fileCheck:
    type: tencentcloud:CssAuthenticateDomainOwnerOperation
    properties:
      domainName: your_domain_name
      verifyType: fileCheck
Copy

Create CssAuthenticateDomainOwnerOperation Resource

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

Constructor syntax

new CssAuthenticateDomainOwnerOperation(name: string, args: CssAuthenticateDomainOwnerOperationArgs, opts?: CustomResourceOptions);
@overload
def CssAuthenticateDomainOwnerOperation(resource_name: str,
                                        args: CssAuthenticateDomainOwnerOperationArgs,
                                        opts: Optional[ResourceOptions] = None)

@overload
def CssAuthenticateDomainOwnerOperation(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        domain_name: Optional[str] = None,
                                        css_authenticate_domain_owner_operation_id: Optional[str] = None,
                                        verify_type: Optional[str] = None)
func NewCssAuthenticateDomainOwnerOperation(ctx *Context, name string, args CssAuthenticateDomainOwnerOperationArgs, opts ...ResourceOption) (*CssAuthenticateDomainOwnerOperation, error)
public CssAuthenticateDomainOwnerOperation(string name, CssAuthenticateDomainOwnerOperationArgs args, CustomResourceOptions? opts = null)
public CssAuthenticateDomainOwnerOperation(String name, CssAuthenticateDomainOwnerOperationArgs args)
public CssAuthenticateDomainOwnerOperation(String name, CssAuthenticateDomainOwnerOperationArgs args, CustomResourceOptions options)
type: tencentcloud:CssAuthenticateDomainOwnerOperation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

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

CssAuthenticateDomainOwnerOperation Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The CssAuthenticateDomainOwnerOperation resource accepts the following input properties:

DomainName This property is required. string
The domain name to verify.
CssAuthenticateDomainOwnerOperationId string
ID of the resource.
VerifyType string
Authentication type. Possible values:dnsCheck: Immediately verify whether the resolution record of the configured dns is consistent with the content to be verified, and save the record if successful.fileCheck: Immediately verify whether the web file is consistent with the content to be verified, and save the record if successful.dbCheck: Check if authentication has been successful.
DomainName This property is required. string
The domain name to verify.
CssAuthenticateDomainOwnerOperationId string
ID of the resource.
VerifyType string
Authentication type. Possible values:dnsCheck: Immediately verify whether the resolution record of the configured dns is consistent with the content to be verified, and save the record if successful.fileCheck: Immediately verify whether the web file is consistent with the content to be verified, and save the record if successful.dbCheck: Check if authentication has been successful.
domainName This property is required. String
The domain name to verify.
cssAuthenticateDomainOwnerOperationId String
ID of the resource.
verifyType String
Authentication type. Possible values:dnsCheck: Immediately verify whether the resolution record of the configured dns is consistent with the content to be verified, and save the record if successful.fileCheck: Immediately verify whether the web file is consistent with the content to be verified, and save the record if successful.dbCheck: Check if authentication has been successful.
domainName This property is required. string
The domain name to verify.
cssAuthenticateDomainOwnerOperationId string
ID of the resource.
verifyType string
Authentication type. Possible values:dnsCheck: Immediately verify whether the resolution record of the configured dns is consistent with the content to be verified, and save the record if successful.fileCheck: Immediately verify whether the web file is consistent with the content to be verified, and save the record if successful.dbCheck: Check if authentication has been successful.
domain_name This property is required. str
The domain name to verify.
css_authenticate_domain_owner_operation_id str
ID of the resource.
verify_type str
Authentication type. Possible values:dnsCheck: Immediately verify whether the resolution record of the configured dns is consistent with the content to be verified, and save the record if successful.fileCheck: Immediately verify whether the web file is consistent with the content to be verified, and save the record if successful.dbCheck: Check if authentication has been successful.
domainName This property is required. String
The domain name to verify.
cssAuthenticateDomainOwnerOperationId String
ID of the resource.
verifyType String
Authentication type. Possible values:dnsCheck: Immediately verify whether the resolution record of the configured dns is consistent with the content to be verified, and save the record if successful.fileCheck: Immediately verify whether the web file is consistent with the content to be verified, and save the record if successful.dbCheck: Check if authentication has been successful.

Outputs

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

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

Look up Existing CssAuthenticateDomainOwnerOperation Resource

Get an existing CssAuthenticateDomainOwnerOperation 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?: CssAuthenticateDomainOwnerOperationState, opts?: CustomResourceOptions): CssAuthenticateDomainOwnerOperation
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        css_authenticate_domain_owner_operation_id: Optional[str] = None,
        domain_name: Optional[str] = None,
        verify_type: Optional[str] = None) -> CssAuthenticateDomainOwnerOperation
func GetCssAuthenticateDomainOwnerOperation(ctx *Context, name string, id IDInput, state *CssAuthenticateDomainOwnerOperationState, opts ...ResourceOption) (*CssAuthenticateDomainOwnerOperation, error)
public static CssAuthenticateDomainOwnerOperation Get(string name, Input<string> id, CssAuthenticateDomainOwnerOperationState? state, CustomResourceOptions? opts = null)
public static CssAuthenticateDomainOwnerOperation get(String name, Output<String> id, CssAuthenticateDomainOwnerOperationState state, CustomResourceOptions options)
resources:  _:    type: tencentcloud:CssAuthenticateDomainOwnerOperation    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
CssAuthenticateDomainOwnerOperationId string
ID of the resource.
DomainName string
The domain name to verify.
VerifyType string
Authentication type. Possible values:dnsCheck: Immediately verify whether the resolution record of the configured dns is consistent with the content to be verified, and save the record if successful.fileCheck: Immediately verify whether the web file is consistent with the content to be verified, and save the record if successful.dbCheck: Check if authentication has been successful.
CssAuthenticateDomainOwnerOperationId string
ID of the resource.
DomainName string
The domain name to verify.
VerifyType string
Authentication type. Possible values:dnsCheck: Immediately verify whether the resolution record of the configured dns is consistent with the content to be verified, and save the record if successful.fileCheck: Immediately verify whether the web file is consistent with the content to be verified, and save the record if successful.dbCheck: Check if authentication has been successful.
cssAuthenticateDomainOwnerOperationId String
ID of the resource.
domainName String
The domain name to verify.
verifyType String
Authentication type. Possible values:dnsCheck: Immediately verify whether the resolution record of the configured dns is consistent with the content to be verified, and save the record if successful.fileCheck: Immediately verify whether the web file is consistent with the content to be verified, and save the record if successful.dbCheck: Check if authentication has been successful.
cssAuthenticateDomainOwnerOperationId string
ID of the resource.
domainName string
The domain name to verify.
verifyType string
Authentication type. Possible values:dnsCheck: Immediately verify whether the resolution record of the configured dns is consistent with the content to be verified, and save the record if successful.fileCheck: Immediately verify whether the web file is consistent with the content to be verified, and save the record if successful.dbCheck: Check if authentication has been successful.
css_authenticate_domain_owner_operation_id str
ID of the resource.
domain_name str
The domain name to verify.
verify_type str
Authentication type. Possible values:dnsCheck: Immediately verify whether the resolution record of the configured dns is consistent with the content to be verified, and save the record if successful.fileCheck: Immediately verify whether the web file is consistent with the content to be verified, and save the record if successful.dbCheck: Check if authentication has been successful.
cssAuthenticateDomainOwnerOperationId String
ID of the resource.
domainName String
The domain name to verify.
verifyType String
Authentication type. Possible values:dnsCheck: Immediately verify whether the resolution record of the configured dns is consistent with the content to be verified, and save the record if successful.fileCheck: Immediately verify whether the web file is consistent with the content to be verified, and save the record if successful.dbCheck: Check if authentication has been successful.

Package Details

Repository
tencentcloud tencentcloudstack/terraform-provider-tencentcloud
License
Notes
This Pulumi package is based on the tencentcloud Terraform Provider.