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",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
dns_check = tencentcloud.CssAuthenticateDomainOwnerOperation("dnsCheck",
domain_name="your_domain_name",
verify_type="dnsCheck")
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
})
}
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",
});
});
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());
}
}
resources:
dnsCheck:
type: tencentcloud:CssAuthenticateDomainOwnerOperation
properties:
domainName: your_domain_name
verifyType: dnsCheck
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",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
file_check = tencentcloud.CssAuthenticateDomainOwnerOperation("fileCheck",
domain_name="your_domain_name",
verify_type="fileCheck")
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
})
}
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",
});
});
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());
}
}
resources:
fileCheck:
type: tencentcloud:CssAuthenticateDomainOwnerOperation
properties:
domainName: your_domain_name
verifyType: fileCheck
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 string
- The unique name of the resource.
- args CssAuthenticateDomainOwnerOperationArgs
- 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 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 string
- The unique name of the resource.
- args CssAuthenticateDomainOwnerOperationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CssAuthenticateDomainOwnerOperationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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:
- Domain
Name string - The domain name to verify.
- Css
Authenticate stringDomain Owner Operation Id - ID of the resource.
- Verify
Type 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 string - The domain name to verify.
- Css
Authenticate stringDomain Owner Operation Id - ID of the resource.
- Verify
Type 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 String - The domain name to verify.
- css
Authenticate StringDomain Owner Operation Id - ID of the resource.
- verify
Type 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 string - The domain name to verify.
- css
Authenticate stringDomain Owner Operation Id - ID of the resource.
- verify
Type 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 str - The domain name to verify.
- css_
authenticate_ strdomain_ owner_ operation_ id - 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.
- domain
Name String - The domain name to verify.
- css
Authenticate StringDomain Owner Operation Id - ID of the resource.
- verify
Type 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
- 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.
- Css
Authenticate stringDomain Owner Operation Id - ID of the resource.
- Domain
Name string - The domain name to verify.
- Verify
Type 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 stringDomain Owner Operation Id - ID of the resource.
- Domain
Name string - The domain name to verify.
- Verify
Type 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 StringDomain Owner Operation Id - ID of the resource.
- domain
Name String - The domain name to verify.
- verify
Type 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 stringDomain Owner Operation Id - ID of the resource.
- domain
Name string - The domain name to verify.
- verify
Type 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_ strdomain_ owner_ operation_ id - 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.
- css
Authenticate StringDomain Owner Operation Id - ID of the resource.
- domain
Name String - The domain name to verify.
- verify
Type 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.