alicloud logo
Alibaba Cloud v3.34.0, Mar 17 23

alicloud.cloudauth.FaceConfig

Provides a Cloudauth Face Config resource.

For information about Cloudauth Face Config and how to use it, see What is Face Config.

NOTE: Available in v1.137.0+.

Example Usage

Basic Usage

using System.Collections.Generic;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var example = new AliCloud.CloudAuth.FaceConfig("example", new()
    {
        BizName = "example_value",
        BizType = "example_value",
    });

});
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cloudauth"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cloudauth.NewFaceConfig(ctx, "example", &cloudauth.FaceConfigArgs{
			BizName: pulumi.String("example_value"),
			BizType: pulumi.String("example_value"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cloudauth.FaceConfig;
import com.pulumi.alicloud.cloudauth.FaceConfigArgs;
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 example = new FaceConfig("example", FaceConfigArgs.builder()        
            .bizName("example_value")
            .bizType("example_value")
            .build());

    }
}
import pulumi
import pulumi_alicloud as alicloud

example = alicloud.cloudauth.FaceConfig("example",
    biz_name="example_value",
    biz_type="example_value")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const example = new alicloud.cloudauth.FaceConfig("example", {
    bizName: "example_value",
    bizType: "example_value",
});
resources:
  example:
    type: alicloud:cloudauth:FaceConfig
    properties:
      bizName: example_value
      bizType: example_value

Create FaceConfig Resource

new FaceConfig(name: string, args: FaceConfigArgs, opts?: CustomResourceOptions);
@overload
def FaceConfig(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               biz_name: Optional[str] = None,
               biz_type: Optional[str] = None)
@overload
def FaceConfig(resource_name: str,
               args: FaceConfigArgs,
               opts: Optional[ResourceOptions] = None)
func NewFaceConfig(ctx *Context, name string, args FaceConfigArgs, opts ...ResourceOption) (*FaceConfig, error)
public FaceConfig(string name, FaceConfigArgs args, CustomResourceOptions? opts = null)
public FaceConfig(String name, FaceConfigArgs args)
public FaceConfig(String name, FaceConfigArgs args, CustomResourceOptions options)
type: alicloud:cloudauth:FaceConfig
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args FaceConfigArgs
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 FaceConfigArgs
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 FaceConfigArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args FaceConfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args FaceConfigArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

FaceConfig 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 FaceConfig resource accepts the following input properties:

BizName string

Scene name.

BizType string

Scene type. NOTE: The biz_type cannot exceed 32 characters and can only use English letters, numbers and dashes (-).

BizName string

Scene name.

BizType string

Scene type. NOTE: The biz_type cannot exceed 32 characters and can only use English letters, numbers and dashes (-).

bizName String

Scene name.

bizType String

Scene type. NOTE: The biz_type cannot exceed 32 characters and can only use English letters, numbers and dashes (-).

bizName string

Scene name.

bizType string

Scene type. NOTE: The biz_type cannot exceed 32 characters and can only use English letters, numbers and dashes (-).

biz_name str

Scene name.

biz_type str

Scene type. NOTE: The biz_type cannot exceed 32 characters and can only use English letters, numbers and dashes (-).

bizName String

Scene name.

bizType String

Scene type. NOTE: The biz_type cannot exceed 32 characters and can only use English letters, numbers and dashes (-).

Outputs

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

GmtModified string

Last Modified Date.

Id string

The provider-assigned unique ID for this managed resource.

GmtModified string

Last Modified Date.

Id string

The provider-assigned unique ID for this managed resource.

gmtModified String

Last Modified Date.

id String

The provider-assigned unique ID for this managed resource.

gmtModified string

Last Modified Date.

id string

The provider-assigned unique ID for this managed resource.

gmt_modified str

Last Modified Date.

id str

The provider-assigned unique ID for this managed resource.

gmtModified String

Last Modified Date.

id String

The provider-assigned unique ID for this managed resource.

Look up Existing FaceConfig Resource

Get an existing FaceConfig 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?: FaceConfigState, opts?: CustomResourceOptions): FaceConfig
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        biz_name: Optional[str] = None,
        biz_type: Optional[str] = None,
        gmt_modified: Optional[str] = None) -> FaceConfig
func GetFaceConfig(ctx *Context, name string, id IDInput, state *FaceConfigState, opts ...ResourceOption) (*FaceConfig, error)
public static FaceConfig Get(string name, Input<string> id, FaceConfigState? state, CustomResourceOptions? opts = null)
public static FaceConfig get(String name, Output<String> id, FaceConfigState 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:
BizName string

Scene name.

BizType string

Scene type. NOTE: The biz_type cannot exceed 32 characters and can only use English letters, numbers and dashes (-).

GmtModified string

Last Modified Date.

BizName string

Scene name.

BizType string

Scene type. NOTE: The biz_type cannot exceed 32 characters and can only use English letters, numbers and dashes (-).

GmtModified string

Last Modified Date.

bizName String

Scene name.

bizType String

Scene type. NOTE: The biz_type cannot exceed 32 characters and can only use English letters, numbers and dashes (-).

gmtModified String

Last Modified Date.

bizName string

Scene name.

bizType string

Scene type. NOTE: The biz_type cannot exceed 32 characters and can only use English letters, numbers and dashes (-).

gmtModified string

Last Modified Date.

biz_name str

Scene name.

biz_type str

Scene type. NOTE: The biz_type cannot exceed 32 characters and can only use English letters, numbers and dashes (-).

gmt_modified str

Last Modified Date.

bizName String

Scene name.

bizType String

Scene type. NOTE: The biz_type cannot exceed 32 characters and can only use English letters, numbers and dashes (-).

gmtModified String

Last Modified Date.

Import

Cloudauth Face Config can be imported using the id, e.g.

 $ pulumi import alicloud:cloudauth/faceConfig:FaceConfig example <lang>

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes

This Pulumi package is based on the alicloud Terraform Provider.