tencentcloud.AuditTrack
Explore with Pulumi AI
Provides a resource to create a audit track
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = new tencentcloud.AuditTrack("example", {
actionType: "Read",
eventNames: ["*"],
resourceType: "*",
status: 1,
storage: {
storageName: "db90b92c-91d2-46b0-94ac-debbbb21dc4e",
storagePrefix: "cloudaudit",
storageRegion: "ap-guangzhou",
storageType: "cls",
},
trackForAllMembers: 0,
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.AuditTrack("example",
action_type="Read",
event_names=["*"],
resource_type="*",
status=1,
storage={
"storage_name": "db90b92c-91d2-46b0-94ac-debbbb21dc4e",
"storage_prefix": "cloudaudit",
"storage_region": "ap-guangzhou",
"storage_type": "cls",
},
track_for_all_members=0)
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.NewAuditTrack(ctx, "example", &tencentcloud.AuditTrackArgs{
ActionType: pulumi.String("Read"),
EventNames: pulumi.StringArray{
pulumi.String("*"),
},
ResourceType: pulumi.String("*"),
Status: pulumi.Float64(1),
Storage: &tencentcloud.AuditTrackStorageArgs{
StorageName: pulumi.String("db90b92c-91d2-46b0-94ac-debbbb21dc4e"),
StoragePrefix: pulumi.String("cloudaudit"),
StorageRegion: pulumi.String("ap-guangzhou"),
StorageType: pulumi.String("cls"),
},
TrackForAllMembers: pulumi.Float64(0),
})
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 example = new Tencentcloud.AuditTrack("example", new()
{
ActionType = "Read",
EventNames = new[]
{
"*",
},
ResourceType = "*",
Status = 1,
Storage = new Tencentcloud.Inputs.AuditTrackStorageArgs
{
StorageName = "db90b92c-91d2-46b0-94ac-debbbb21dc4e",
StoragePrefix = "cloudaudit",
StorageRegion = "ap-guangzhou",
StorageType = "cls",
},
TrackForAllMembers = 0,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.AuditTrack;
import com.pulumi.tencentcloud.AuditTrackArgs;
import com.pulumi.tencentcloud.inputs.AuditTrackStorageArgs;
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 AuditTrack("example", AuditTrackArgs.builder()
.actionType("Read")
.eventNames("*")
.resourceType("*")
.status(1)
.storage(AuditTrackStorageArgs.builder()
.storageName("db90b92c-91d2-46b0-94ac-debbbb21dc4e")
.storagePrefix("cloudaudit")
.storageRegion("ap-guangzhou")
.storageType("cls")
.build())
.trackForAllMembers(0)
.build());
}
}
resources:
example:
type: tencentcloud:AuditTrack
properties:
actionType: Read
eventNames:
- '*'
resourceType: '*'
status: 1
storage:
storageName: db90b92c-91d2-46b0-94ac-debbbb21dc4e
storagePrefix: cloudaudit
storageRegion: ap-guangzhou
storageType: cls
trackForAllMembers: 0
Specify storage user
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = new tencentcloud.AuditTrack("example", {
actionType: "Read",
eventNames: ["*"],
resourceType: "*",
status: 1,
storage: {
storageAccountId: "100037717137",
storageAppId: "1309116520",
storageName: "db90b92c-91d2-46b0-94ac-debbbb21dc4e",
storagePrefix: "cloudaudit",
storageRegion: "ap-guangzhou",
storageType: "cos",
},
trackForAllMembers: 0,
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.AuditTrack("example",
action_type="Read",
event_names=["*"],
resource_type="*",
status=1,
storage={
"storage_account_id": "100037717137",
"storage_app_id": "1309116520",
"storage_name": "db90b92c-91d2-46b0-94ac-debbbb21dc4e",
"storage_prefix": "cloudaudit",
"storage_region": "ap-guangzhou",
"storage_type": "cos",
},
track_for_all_members=0)
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.NewAuditTrack(ctx, "example", &tencentcloud.AuditTrackArgs{
ActionType: pulumi.String("Read"),
EventNames: pulumi.StringArray{
pulumi.String("*"),
},
ResourceType: pulumi.String("*"),
Status: pulumi.Float64(1),
Storage: &tencentcloud.AuditTrackStorageArgs{
StorageAccountId: pulumi.String("100037717137"),
StorageAppId: pulumi.String("1309116520"),
StorageName: pulumi.String("db90b92c-91d2-46b0-94ac-debbbb21dc4e"),
StoragePrefix: pulumi.String("cloudaudit"),
StorageRegion: pulumi.String("ap-guangzhou"),
StorageType: pulumi.String("cos"),
},
TrackForAllMembers: pulumi.Float64(0),
})
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 example = new Tencentcloud.AuditTrack("example", new()
{
ActionType = "Read",
EventNames = new[]
{
"*",
},
ResourceType = "*",
Status = 1,
Storage = new Tencentcloud.Inputs.AuditTrackStorageArgs
{
StorageAccountId = "100037717137",
StorageAppId = "1309116520",
StorageName = "db90b92c-91d2-46b0-94ac-debbbb21dc4e",
StoragePrefix = "cloudaudit",
StorageRegion = "ap-guangzhou",
StorageType = "cos",
},
TrackForAllMembers = 0,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.AuditTrack;
import com.pulumi.tencentcloud.AuditTrackArgs;
import com.pulumi.tencentcloud.inputs.AuditTrackStorageArgs;
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 AuditTrack("example", AuditTrackArgs.builder()
.actionType("Read")
.eventNames("*")
.resourceType("*")
.status(1)
.storage(AuditTrackStorageArgs.builder()
.storageAccountId("100037717137")
.storageAppId("1309116520")
.storageName("db90b92c-91d2-46b0-94ac-debbbb21dc4e")
.storagePrefix("cloudaudit")
.storageRegion("ap-guangzhou")
.storageType("cos")
.build())
.trackForAllMembers(0)
.build());
}
}
resources:
example:
type: tencentcloud:AuditTrack
properties:
actionType: Read
eventNames:
- '*'
resourceType: '*'
status: 1
storage:
storageAccountId: '100037717137'
storageAppId: '1309116520'
storageName: db90b92c-91d2-46b0-94ac-debbbb21dc4e
storagePrefix: cloudaudit
storageRegion: ap-guangzhou
storageType: cos
trackForAllMembers: 0
Create AuditTrack Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuditTrack(name: string, args: AuditTrackArgs, opts?: CustomResourceOptions);
@overload
def AuditTrack(resource_name: str,
args: AuditTrackArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AuditTrack(resource_name: str,
opts: Optional[ResourceOptions] = None,
action_type: Optional[str] = None,
event_names: Optional[Sequence[str]] = None,
resource_type: Optional[str] = None,
status: Optional[float] = None,
storage: Optional[AuditTrackStorageArgs] = None,
audit_track_id: Optional[str] = None,
name: Optional[str] = None,
track_for_all_members: Optional[float] = None)
func NewAuditTrack(ctx *Context, name string, args AuditTrackArgs, opts ...ResourceOption) (*AuditTrack, error)
public AuditTrack(string name, AuditTrackArgs args, CustomResourceOptions? opts = null)
public AuditTrack(String name, AuditTrackArgs args)
public AuditTrack(String name, AuditTrackArgs args, CustomResourceOptions options)
type: tencentcloud:AuditTrack
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 AuditTrackArgs
- 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 AuditTrackArgs
- 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 AuditTrackArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuditTrackArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuditTrackArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
AuditTrack 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 AuditTrack resource accepts the following input properties:
- Action
Type string - Track interface type, optional:-
Read
: Read interface-Write
: Write interface-*
: All interface. - Event
Names List<string> - Track interface name list:- when ResourceType is
*
, EventNames is must[&quot;*&quot;]
- when ResourceType is a single product, EventNames support all interface:[&quot;*&quot;]
- when ResourceType is a single product, EventNames support some interface, up to 10. - Resource
Type string - Track product, optional:-
*
: All product- Single product, such ascos
. - Status double
- Track status, optional:-
0
: Close-1
: Open. - Storage
Audit
Track Storage - Track Storage, support
cos
andcls
. - Audit
Track stringId - ID of the resource.
- Name string
- Track name.
- Track
For doubleAll Members - Whether to enable the delivery of group member operation logs to the group management account or trusted service management account, optional:-
0
: Close-1
: Open.
- Action
Type string - Track interface type, optional:-
Read
: Read interface-Write
: Write interface-*
: All interface. - Event
Names []string - Track interface name list:- when ResourceType is
*
, EventNames is must[&quot;*&quot;]
- when ResourceType is a single product, EventNames support all interface:[&quot;*&quot;]
- when ResourceType is a single product, EventNames support some interface, up to 10. - Resource
Type string - Track product, optional:-
*
: All product- Single product, such ascos
. - Status float64
- Track status, optional:-
0
: Close-1
: Open. - Storage
Audit
Track Storage Args - Track Storage, support
cos
andcls
. - Audit
Track stringId - ID of the resource.
- Name string
- Track name.
- Track
For float64All Members - Whether to enable the delivery of group member operation logs to the group management account or trusted service management account, optional:-
0
: Close-1
: Open.
- action
Type String - Track interface type, optional:-
Read
: Read interface-Write
: Write interface-*
: All interface. - event
Names List<String> - Track interface name list:- when ResourceType is
*
, EventNames is must[&quot;*&quot;]
- when ResourceType is a single product, EventNames support all interface:[&quot;*&quot;]
- when ResourceType is a single product, EventNames support some interface, up to 10. - resource
Type String - Track product, optional:-
*
: All product- Single product, such ascos
. - status Double
- Track status, optional:-
0
: Close-1
: Open. - storage
Audit
Track Storage - Track Storage, support
cos
andcls
. - audit
Track StringId - ID of the resource.
- name String
- Track name.
- track
For DoubleAll Members - Whether to enable the delivery of group member operation logs to the group management account or trusted service management account, optional:-
0
: Close-1
: Open.
- action
Type string - Track interface type, optional:-
Read
: Read interface-Write
: Write interface-*
: All interface. - event
Names string[] - Track interface name list:- when ResourceType is
*
, EventNames is must[&quot;*&quot;]
- when ResourceType is a single product, EventNames support all interface:[&quot;*&quot;]
- when ResourceType is a single product, EventNames support some interface, up to 10. - resource
Type string - Track product, optional:-
*
: All product- Single product, such ascos
. - status number
- Track status, optional:-
0
: Close-1
: Open. - storage
Audit
Track Storage - Track Storage, support
cos
andcls
. - audit
Track stringId - ID of the resource.
- name string
- Track name.
- track
For numberAll Members - Whether to enable the delivery of group member operation logs to the group management account or trusted service management account, optional:-
0
: Close-1
: Open.
- action_
type str - Track interface type, optional:-
Read
: Read interface-Write
: Write interface-*
: All interface. - event_
names Sequence[str] - Track interface name list:- when ResourceType is
*
, EventNames is must[&quot;*&quot;]
- when ResourceType is a single product, EventNames support all interface:[&quot;*&quot;]
- when ResourceType is a single product, EventNames support some interface, up to 10. - resource_
type str - Track product, optional:-
*
: All product- Single product, such ascos
. - status float
- Track status, optional:-
0
: Close-1
: Open. - storage
Audit
Track Storage Args - Track Storage, support
cos
andcls
. - audit_
track_ strid - ID of the resource.
- name str
- Track name.
- track_
for_ floatall_ members - Whether to enable the delivery of group member operation logs to the group management account or trusted service management account, optional:-
0
: Close-1
: Open.
- action
Type String - Track interface type, optional:-
Read
: Read interface-Write
: Write interface-*
: All interface. - event
Names List<String> - Track interface name list:- when ResourceType is
*
, EventNames is must[&quot;*&quot;]
- when ResourceType is a single product, EventNames support all interface:[&quot;*&quot;]
- when ResourceType is a single product, EventNames support some interface, up to 10. - resource
Type String - Track product, optional:-
*
: All product- Single product, such ascos
. - status Number
- Track status, optional:-
0
: Close-1
: Open. - storage Property Map
- Track Storage, support
cos
andcls
. - audit
Track StringId - ID of the resource.
- name String
- Track name.
- track
For NumberAll Members - Whether to enable the delivery of group member operation logs to the group management account or trusted service management account, optional:-
0
: Close-1
: Open.
Outputs
All input properties are implicitly available as output properties. Additionally, the AuditTrack resource produces the following output properties:
- Create
Time string - Track create time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Create
Time string - Track create time.
- Id string
- The provider-assigned unique ID for this managed resource.
- create
Time String - Track create time.
- id String
- The provider-assigned unique ID for this managed resource.
- create
Time string - Track create time.
- id string
- The provider-assigned unique ID for this managed resource.
- create_
time str - Track create time.
- id str
- The provider-assigned unique ID for this managed resource.
- create
Time String - Track create time.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing AuditTrack Resource
Get an existing AuditTrack 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?: AuditTrackState, opts?: CustomResourceOptions): AuditTrack
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action_type: Optional[str] = None,
audit_track_id: Optional[str] = None,
create_time: Optional[str] = None,
event_names: Optional[Sequence[str]] = None,
name: Optional[str] = None,
resource_type: Optional[str] = None,
status: Optional[float] = None,
storage: Optional[AuditTrackStorageArgs] = None,
track_for_all_members: Optional[float] = None) -> AuditTrack
func GetAuditTrack(ctx *Context, name string, id IDInput, state *AuditTrackState, opts ...ResourceOption) (*AuditTrack, error)
public static AuditTrack Get(string name, Input<string> id, AuditTrackState? state, CustomResourceOptions? opts = null)
public static AuditTrack get(String name, Output<String> id, AuditTrackState state, CustomResourceOptions options)
resources: _: type: tencentcloud:AuditTrack 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.
- Action
Type string - Track interface type, optional:-
Read
: Read interface-Write
: Write interface-*
: All interface. - Audit
Track stringId - ID of the resource.
- Create
Time string - Track create time.
- Event
Names List<string> - Track interface name list:- when ResourceType is
*
, EventNames is must[&quot;*&quot;]
- when ResourceType is a single product, EventNames support all interface:[&quot;*&quot;]
- when ResourceType is a single product, EventNames support some interface, up to 10. - Name string
- Track name.
- Resource
Type string - Track product, optional:-
*
: All product- Single product, such ascos
. - Status double
- Track status, optional:-
0
: Close-1
: Open. - Storage
Audit
Track Storage - Track Storage, support
cos
andcls
. - Track
For doubleAll Members - Whether to enable the delivery of group member operation logs to the group management account or trusted service management account, optional:-
0
: Close-1
: Open.
- Action
Type string - Track interface type, optional:-
Read
: Read interface-Write
: Write interface-*
: All interface. - Audit
Track stringId - ID of the resource.
- Create
Time string - Track create time.
- Event
Names []string - Track interface name list:- when ResourceType is
*
, EventNames is must[&quot;*&quot;]
- when ResourceType is a single product, EventNames support all interface:[&quot;*&quot;]
- when ResourceType is a single product, EventNames support some interface, up to 10. - Name string
- Track name.
- Resource
Type string - Track product, optional:-
*
: All product- Single product, such ascos
. - Status float64
- Track status, optional:-
0
: Close-1
: Open. - Storage
Audit
Track Storage Args - Track Storage, support
cos
andcls
. - Track
For float64All Members - Whether to enable the delivery of group member operation logs to the group management account or trusted service management account, optional:-
0
: Close-1
: Open.
- action
Type String - Track interface type, optional:-
Read
: Read interface-Write
: Write interface-*
: All interface. - audit
Track StringId - ID of the resource.
- create
Time String - Track create time.
- event
Names List<String> - Track interface name list:- when ResourceType is
*
, EventNames is must[&quot;*&quot;]
- when ResourceType is a single product, EventNames support all interface:[&quot;*&quot;]
- when ResourceType is a single product, EventNames support some interface, up to 10. - name String
- Track name.
- resource
Type String - Track product, optional:-
*
: All product- Single product, such ascos
. - status Double
- Track status, optional:-
0
: Close-1
: Open. - storage
Audit
Track Storage - Track Storage, support
cos
andcls
. - track
For DoubleAll Members - Whether to enable the delivery of group member operation logs to the group management account or trusted service management account, optional:-
0
: Close-1
: Open.
- action
Type string - Track interface type, optional:-
Read
: Read interface-Write
: Write interface-*
: All interface. - audit
Track stringId - ID of the resource.
- create
Time string - Track create time.
- event
Names string[] - Track interface name list:- when ResourceType is
*
, EventNames is must[&quot;*&quot;]
- when ResourceType is a single product, EventNames support all interface:[&quot;*&quot;]
- when ResourceType is a single product, EventNames support some interface, up to 10. - name string
- Track name.
- resource
Type string - Track product, optional:-
*
: All product- Single product, such ascos
. - status number
- Track status, optional:-
0
: Close-1
: Open. - storage
Audit
Track Storage - Track Storage, support
cos
andcls
. - track
For numberAll Members - Whether to enable the delivery of group member operation logs to the group management account or trusted service management account, optional:-
0
: Close-1
: Open.
- action_
type str - Track interface type, optional:-
Read
: Read interface-Write
: Write interface-*
: All interface. - audit_
track_ strid - ID of the resource.
- create_
time str - Track create time.
- event_
names Sequence[str] - Track interface name list:- when ResourceType is
*
, EventNames is must[&quot;*&quot;]
- when ResourceType is a single product, EventNames support all interface:[&quot;*&quot;]
- when ResourceType is a single product, EventNames support some interface, up to 10. - name str
- Track name.
- resource_
type str - Track product, optional:-
*
: All product- Single product, such ascos
. - status float
- Track status, optional:-
0
: Close-1
: Open. - storage
Audit
Track Storage Args - Track Storage, support
cos
andcls
. - track_
for_ floatall_ members - Whether to enable the delivery of group member operation logs to the group management account or trusted service management account, optional:-
0
: Close-1
: Open.
- action
Type String - Track interface type, optional:-
Read
: Read interface-Write
: Write interface-*
: All interface. - audit
Track StringId - ID of the resource.
- create
Time String - Track create time.
- event
Names List<String> - Track interface name list:- when ResourceType is
*
, EventNames is must[&quot;*&quot;]
- when ResourceType is a single product, EventNames support all interface:[&quot;*&quot;]
- when ResourceType is a single product, EventNames support some interface, up to 10. - name String
- Track name.
- resource
Type String - Track product, optional:-
*
: All product- Single product, such ascos
. - status Number
- Track status, optional:-
0
: Close-1
: Open. - storage Property Map
- Track Storage, support
cos
andcls
. - track
For NumberAll Members - Whether to enable the delivery of group member operation logs to the group management account or trusted service management account, optional:-
0
: Close-1
: Open.
Supporting Types
AuditTrackStorage, AuditTrackStorageArgs
- Storage
Name string - Track Storage name:- when StorageType is
cls
, StorageName is cls topicId- when StorageType iscos
, StorageName is cos bucket name that does not contain-APPID
. - Storage
Prefix string - Storage path prefix.
- Storage
Region string - Storage region.
- Storage
Type string - Track Storage type, optional:-
cos
-cls
. - Storage
Account stringId - Designated to store user ID.
- Storage
App stringId - Designated to store user appid.
- Storage
Name string - Track Storage name:- when StorageType is
cls
, StorageName is cls topicId- when StorageType iscos
, StorageName is cos bucket name that does not contain-APPID
. - Storage
Prefix string - Storage path prefix.
- Storage
Region string - Storage region.
- Storage
Type string - Track Storage type, optional:-
cos
-cls
. - Storage
Account stringId - Designated to store user ID.
- Storage
App stringId - Designated to store user appid.
- storage
Name String - Track Storage name:- when StorageType is
cls
, StorageName is cls topicId- when StorageType iscos
, StorageName is cos bucket name that does not contain-APPID
. - storage
Prefix String - Storage path prefix.
- storage
Region String - Storage region.
- storage
Type String - Track Storage type, optional:-
cos
-cls
. - storage
Account StringId - Designated to store user ID.
- storage
App StringId - Designated to store user appid.
- storage
Name string - Track Storage name:- when StorageType is
cls
, StorageName is cls topicId- when StorageType iscos
, StorageName is cos bucket name that does not contain-APPID
. - storage
Prefix string - Storage path prefix.
- storage
Region string - Storage region.
- storage
Type string - Track Storage type, optional:-
cos
-cls
. - storage
Account stringId - Designated to store user ID.
- storage
App stringId - Designated to store user appid.
- storage_
name str - Track Storage name:- when StorageType is
cls
, StorageName is cls topicId- when StorageType iscos
, StorageName is cos bucket name that does not contain-APPID
. - storage_
prefix str - Storage path prefix.
- storage_
region str - Storage region.
- storage_
type str - Track Storage type, optional:-
cos
-cls
. - storage_
account_ strid - Designated to store user ID.
- storage_
app_ strid - Designated to store user appid.
- storage
Name String - Track Storage name:- when StorageType is
cls
, StorageName is cls topicId- when StorageType iscos
, StorageName is cos bucket name that does not contain-APPID
. - storage
Prefix String - Storage path prefix.
- storage
Region String - Storage region.
- storage
Type String - Track Storage type, optional:-
cos
-cls
. - storage
Account StringId - Designated to store user ID.
- storage
App StringId - Designated to store user appid.
Import
audit track can be imported using the id, e.g.
$ pulumi import tencentcloud:index/auditTrack:AuditTrack example 24283
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.