tencentcloud.MpsPersonSample
Explore with Pulumi AI
Provides a resource to create a mps person_sample
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fs from "fs";
import * as tencentcloud from "@pulumi/tencentcloud";
const personSample = new tencentcloud.MpsPersonSample("personSample", {
usages: ["Review.Face"],
description: "test",
faceContents: [fs.readFileSync("./person.png", { encoding: "base64" })],
});
import pulumi
import base64
import pulumi_tencentcloud as tencentcloud
person_sample = tencentcloud.MpsPersonSample("personSample",
usages=["Review.Face"],
description="test",
face_contents=[(lambda path: base64.b64encode(open(path).read().encode()).decode())("./person.png")])
package main
import (
"encoding/base64"
"os"
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func filebase64OrPanic(path string) string {
if fileData, err := os.ReadFile(path); err == nil {
return base64.StdEncoding.EncodeToString(fileData[:])
} else {
panic(err.Error())
}
}
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.NewMpsPersonSample(ctx, "personSample", &tencentcloud.MpsPersonSampleArgs{
Usages: pulumi.StringArray{
pulumi.String("Review.Face"),
},
Description: pulumi.String("test"),
FaceContents: pulumi.StringArray{
pulumi.String(filebase64OrPanic("./person.png")),
},
})
if err != nil {
return err
}
return nil
})
}
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
string ReadFileBase64(string path)
{
return Convert.ToBase64String(Encoding.UTF8.GetBytes(File.ReadAllText(path)));
}
return await Deployment.RunAsync(() =>
{
var personSample = new Tencentcloud.MpsPersonSample("personSample", new()
{
Usages = new[]
{
"Review.Face",
},
Description = "test",
FaceContents = new[]
{
ReadFileBase64("./person.png"),
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.MpsPersonSample;
import com.pulumi.tencentcloud.MpsPersonSampleArgs;
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 personSample = new MpsPersonSample("personSample", MpsPersonSampleArgs.builder()
.usages("Review.Face")
.description("test")
.faceContents(Base64.getEncoder().encodeToString(Files.readAllBytes(Paths.get("./person.png"))))
.build());
}
}
Coming soon!
Create MpsPersonSample Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MpsPersonSample(name: string, args: MpsPersonSampleArgs, opts?: CustomResourceOptions);
@overload
def MpsPersonSample(resource_name: str,
args: MpsPersonSampleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MpsPersonSample(resource_name: str,
opts: Optional[ResourceOptions] = None,
usages: Optional[Sequence[str]] = None,
description: Optional[str] = None,
face_contents: Optional[Sequence[str]] = None,
mps_person_sample_id: Optional[str] = None,
name: Optional[str] = None)
func NewMpsPersonSample(ctx *Context, name string, args MpsPersonSampleArgs, opts ...ResourceOption) (*MpsPersonSample, error)
public MpsPersonSample(string name, MpsPersonSampleArgs args, CustomResourceOptions? opts = null)
public MpsPersonSample(String name, MpsPersonSampleArgs args)
public MpsPersonSample(String name, MpsPersonSampleArgs args, CustomResourceOptions options)
type: tencentcloud:MpsPersonSample
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 MpsPersonSampleArgs
- 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 MpsPersonSampleArgs
- 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 MpsPersonSampleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MpsPersonSampleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MpsPersonSampleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
MpsPersonSample 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 MpsPersonSample resource accepts the following input properties:
- Usages List<string>
- Material application scene, optional value:1. Recognition.Face: used for content recognition 2. Review.Face: used for inappropriate content identification 3. All: contains all of the above, equivalent to 1+2.
- Description string
- Material description, length limit: 1024 characters.
- Face
Contents List<string> - Material image Base64 encoded string only supports jpeg and png image formats. Array length limit: 5 images.Note: The picture must be a single portrait with clearer facial features, with a pixel size of not less than 200*200.
- Mps
Person stringSample Id - ID of the resource.
- Name string
- Material name, length limit: 20 characters.
- Usages []string
- Material application scene, optional value:1. Recognition.Face: used for content recognition 2. Review.Face: used for inappropriate content identification 3. All: contains all of the above, equivalent to 1+2.
- Description string
- Material description, length limit: 1024 characters.
- Face
Contents []string - Material image Base64 encoded string only supports jpeg and png image formats. Array length limit: 5 images.Note: The picture must be a single portrait with clearer facial features, with a pixel size of not less than 200*200.
- Mps
Person stringSample Id - ID of the resource.
- Name string
- Material name, length limit: 20 characters.
- usages List<String>
- Material application scene, optional value:1. Recognition.Face: used for content recognition 2. Review.Face: used for inappropriate content identification 3. All: contains all of the above, equivalent to 1+2.
- description String
- Material description, length limit: 1024 characters.
- face
Contents List<String> - Material image Base64 encoded string only supports jpeg and png image formats. Array length limit: 5 images.Note: The picture must be a single portrait with clearer facial features, with a pixel size of not less than 200*200.
- mps
Person StringSample Id - ID of the resource.
- name String
- Material name, length limit: 20 characters.
- usages string[]
- Material application scene, optional value:1. Recognition.Face: used for content recognition 2. Review.Face: used for inappropriate content identification 3. All: contains all of the above, equivalent to 1+2.
- description string
- Material description, length limit: 1024 characters.
- face
Contents string[] - Material image Base64 encoded string only supports jpeg and png image formats. Array length limit: 5 images.Note: The picture must be a single portrait with clearer facial features, with a pixel size of not less than 200*200.
- mps
Person stringSample Id - ID of the resource.
- name string
- Material name, length limit: 20 characters.
- usages Sequence[str]
- Material application scene, optional value:1. Recognition.Face: used for content recognition 2. Review.Face: used for inappropriate content identification 3. All: contains all of the above, equivalent to 1+2.
- description str
- Material description, length limit: 1024 characters.
- face_
contents Sequence[str] - Material image Base64 encoded string only supports jpeg and png image formats. Array length limit: 5 images.Note: The picture must be a single portrait with clearer facial features, with a pixel size of not less than 200*200.
- mps_
person_ strsample_ id - ID of the resource.
- name str
- Material name, length limit: 20 characters.
- usages List<String>
- Material application scene, optional value:1. Recognition.Face: used for content recognition 2. Review.Face: used for inappropriate content identification 3. All: contains all of the above, equivalent to 1+2.
- description String
- Material description, length limit: 1024 characters.
- face
Contents List<String> - Material image Base64 encoded string only supports jpeg and png image formats. Array length limit: 5 images.Note: The picture must be a single portrait with clearer facial features, with a pixel size of not less than 200*200.
- mps
Person StringSample Id - ID of the resource.
- name String
- Material name, length limit: 20 characters.
Outputs
All input properties are implicitly available as output properties. Additionally, the MpsPersonSample 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 MpsPersonSample Resource
Get an existing MpsPersonSample 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?: MpsPersonSampleState, opts?: CustomResourceOptions): MpsPersonSample
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
face_contents: Optional[Sequence[str]] = None,
mps_person_sample_id: Optional[str] = None,
name: Optional[str] = None,
usages: Optional[Sequence[str]] = None) -> MpsPersonSample
func GetMpsPersonSample(ctx *Context, name string, id IDInput, state *MpsPersonSampleState, opts ...ResourceOption) (*MpsPersonSample, error)
public static MpsPersonSample Get(string name, Input<string> id, MpsPersonSampleState? state, CustomResourceOptions? opts = null)
public static MpsPersonSample get(String name, Output<String> id, MpsPersonSampleState state, CustomResourceOptions options)
resources: _: type: tencentcloud:MpsPersonSample 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.
- Description string
- Material description, length limit: 1024 characters.
- Face
Contents List<string> - Material image Base64 encoded string only supports jpeg and png image formats. Array length limit: 5 images.Note: The picture must be a single portrait with clearer facial features, with a pixel size of not less than 200*200.
- Mps
Person stringSample Id - ID of the resource.
- Name string
- Material name, length limit: 20 characters.
- Usages List<string>
- Material application scene, optional value:1. Recognition.Face: used for content recognition 2. Review.Face: used for inappropriate content identification 3. All: contains all of the above, equivalent to 1+2.
- Description string
- Material description, length limit: 1024 characters.
- Face
Contents []string - Material image Base64 encoded string only supports jpeg and png image formats. Array length limit: 5 images.Note: The picture must be a single portrait with clearer facial features, with a pixel size of not less than 200*200.
- Mps
Person stringSample Id - ID of the resource.
- Name string
- Material name, length limit: 20 characters.
- Usages []string
- Material application scene, optional value:1. Recognition.Face: used for content recognition 2. Review.Face: used for inappropriate content identification 3. All: contains all of the above, equivalent to 1+2.
- description String
- Material description, length limit: 1024 characters.
- face
Contents List<String> - Material image Base64 encoded string only supports jpeg and png image formats. Array length limit: 5 images.Note: The picture must be a single portrait with clearer facial features, with a pixel size of not less than 200*200.
- mps
Person StringSample Id - ID of the resource.
- name String
- Material name, length limit: 20 characters.
- usages List<String>
- Material application scene, optional value:1. Recognition.Face: used for content recognition 2. Review.Face: used for inappropriate content identification 3. All: contains all of the above, equivalent to 1+2.
- description string
- Material description, length limit: 1024 characters.
- face
Contents string[] - Material image Base64 encoded string only supports jpeg and png image formats. Array length limit: 5 images.Note: The picture must be a single portrait with clearer facial features, with a pixel size of not less than 200*200.
- mps
Person stringSample Id - ID of the resource.
- name string
- Material name, length limit: 20 characters.
- usages string[]
- Material application scene, optional value:1. Recognition.Face: used for content recognition 2. Review.Face: used for inappropriate content identification 3. All: contains all of the above, equivalent to 1+2.
- description str
- Material description, length limit: 1024 characters.
- face_
contents Sequence[str] - Material image Base64 encoded string only supports jpeg and png image formats. Array length limit: 5 images.Note: The picture must be a single portrait with clearer facial features, with a pixel size of not less than 200*200.
- mps_
person_ strsample_ id - ID of the resource.
- name str
- Material name, length limit: 20 characters.
- usages Sequence[str]
- Material application scene, optional value:1. Recognition.Face: used for content recognition 2. Review.Face: used for inappropriate content identification 3. All: contains all of the above, equivalent to 1+2.
- description String
- Material description, length limit: 1024 characters.
- face
Contents List<String> - Material image Base64 encoded string only supports jpeg and png image formats. Array length limit: 5 images.Note: The picture must be a single portrait with clearer facial features, with a pixel size of not less than 200*200.
- mps
Person StringSample Id - ID of the resource.
- name String
- Material name, length limit: 20 characters.
- usages List<String>
- Material application scene, optional value:1. Recognition.Face: used for content recognition 2. Review.Face: used for inappropriate content identification 3. All: contains all of the above, equivalent to 1+2.
Import
mps person_sample can be imported using the id, e.g.
$ pulumi import tencentcloud:index/mpsPersonSample:MpsPersonSample person_sample person_sample_id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.