alicloud.sddp.Instance
Explore with Pulumi AI
Provides a Data Security Center Instance resource.
For information about Data Security Center Instance and how to use it, see What is Instance.
NOTE: Available in v1.136.0+.
NOTE: The Data Security Center Instance is not support in the international site.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const _default = new alicloud.sddp.Instance("default", {
paymentType: "Subscription",
sddpVersion: "version_company",
sdCbool: "yes",
period: 1,
sdc: "3",
udCbool: "yes",
udc: "2000",
dataphin: "yes",
});
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.sddp.Instance("default",
payment_type="Subscription",
sddp_version="version_company",
sd_cbool="yes",
period=1,
sdc="3",
ud_cbool="yes",
udc="2000",
dataphin="yes")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/sddp"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sddp.NewInstance(ctx, "default", &sddp.InstanceArgs{
PaymentType: pulumi.String("Subscription"),
SddpVersion: pulumi.String("version_company"),
SdCbool: pulumi.String("yes"),
Period: pulumi.Int(1),
Sdc: pulumi.String("3"),
UdCbool: pulumi.String("yes"),
Udc: pulumi.String("2000"),
Dataphin: pulumi.String("yes"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var @default = new AliCloud.Sddp.Instance("default", new()
{
PaymentType = "Subscription",
SddpVersion = "version_company",
SdCbool = "yes",
Period = 1,
Sdc = "3",
UdCbool = "yes",
Udc = "2000",
Dataphin = "yes",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.sddp.Instance;
import com.pulumi.alicloud.sddp.InstanceArgs;
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 default_ = new Instance("default", InstanceArgs.builder()
.paymentType("Subscription")
.sddpVersion("version_company")
.sdCbool("yes")
.period("1")
.sdc("3")
.udCbool("yes")
.udc("2000")
.dataphin("yes")
.build());
}
}
resources:
default:
type: alicloud:sddp:Instance
properties:
paymentType: Subscription
sddpVersion: version_company
sdCbool: yes
period: '1'
sdc: '3'
udCbool: yes
udc: '2000'
dataphin: yes
Create Instance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Instance(name: string, args: InstanceArgs, opts?: CustomResourceOptions);
@overload
def Instance(resource_name: str,
args: InstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Instance(resource_name: str,
opts: Optional[ResourceOptions] = None,
sd_cbool: Optional[str] = None,
period: Optional[int] = None,
udc: Optional[str] = None,
ud_cbool: Optional[str] = None,
sddp_version: Optional[str] = None,
payment_type: Optional[str] = None,
sdc: Optional[str] = None,
oss_size: Optional[str] = None,
dataphin_count: Optional[str] = None,
dataphin: Optional[str] = None,
renewal_status: Optional[str] = None,
renew_period: Optional[int] = None,
modify_type: Optional[str] = None,
logistics: Optional[str] = None)
func NewInstance(ctx *Context, name string, args InstanceArgs, opts ...ResourceOption) (*Instance, error)
public Instance(string name, InstanceArgs args, CustomResourceOptions? opts = null)
public Instance(String name, InstanceArgs args)
public Instance(String name, InstanceArgs args, CustomResourceOptions options)
type: alicloud:sddp:Instance
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 InstanceArgs
- 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 InstanceArgs
- 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 InstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InstanceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampleinstanceResourceResourceFromSddpinstance = new AliCloud.Sddp.Instance("exampleinstanceResourceResourceFromSddpinstance", new()
{
SdCbool = "string",
Period = 0,
Udc = "string",
UdCbool = "string",
SddpVersion = "string",
PaymentType = "string",
Sdc = "string",
OssSize = "string",
DataphinCount = "string",
Dataphin = "string",
RenewalStatus = "string",
RenewPeriod = 0,
ModifyType = "string",
Logistics = "string",
});
example, err := sddp.NewInstance(ctx, "exampleinstanceResourceResourceFromSddpinstance", &sddp.InstanceArgs{
SdCbool: pulumi.String("string"),
Period: pulumi.Int(0),
Udc: pulumi.String("string"),
UdCbool: pulumi.String("string"),
SddpVersion: pulumi.String("string"),
PaymentType: pulumi.String("string"),
Sdc: pulumi.String("string"),
OssSize: pulumi.String("string"),
DataphinCount: pulumi.String("string"),
Dataphin: pulumi.String("string"),
RenewalStatus: pulumi.String("string"),
RenewPeriod: pulumi.Int(0),
ModifyType: pulumi.String("string"),
Logistics: pulumi.String("string"),
})
var exampleinstanceResourceResourceFromSddpinstance = new Instance("exampleinstanceResourceResourceFromSddpinstance", InstanceArgs.builder()
.sdCbool("string")
.period(0)
.udc("string")
.udCbool("string")
.sddpVersion("string")
.paymentType("string")
.sdc("string")
.ossSize("string")
.dataphinCount("string")
.dataphin("string")
.renewalStatus("string")
.renewPeriod(0)
.modifyType("string")
.logistics("string")
.build());
exampleinstance_resource_resource_from_sddpinstance = alicloud.sddp.Instance("exampleinstanceResourceResourceFromSddpinstance",
sd_cbool="string",
period=0,
udc="string",
ud_cbool="string",
sddp_version="string",
payment_type="string",
sdc="string",
oss_size="string",
dataphin_count="string",
dataphin="string",
renewal_status="string",
renew_period=0,
modify_type="string",
logistics="string")
const exampleinstanceResourceResourceFromSddpinstance = new alicloud.sddp.Instance("exampleinstanceResourceResourceFromSddpinstance", {
sdCbool: "string",
period: 0,
udc: "string",
udCbool: "string",
sddpVersion: "string",
paymentType: "string",
sdc: "string",
ossSize: "string",
dataphinCount: "string",
dataphin: "string",
renewalStatus: "string",
renewPeriod: 0,
modifyType: "string",
logistics: "string",
});
type: alicloud:sddp:Instance
properties:
dataphin: string
dataphinCount: string
logistics: string
modifyType: string
ossSize: string
paymentType: string
period: 0
renewPeriod: 0
renewalStatus: string
sdCbool: string
sdc: string
sddpVersion: string
udCbool: string
udc: string
Instance 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 Instance resource accepts the following input properties:
- Payment
Type string - The payment type of the resource. Valid values:
Subscription
. - Period int
- The Prepaid period. Valid values:
1
,2
,3
,6
,12
,24
. - Sd
Cbool string - Whether to use the database. Valid values:
yes
,no
. - Sdc string
- The number of instances.
- Sddp
Version string - The sddp version. Valid values:
version_audit
,version_company
,version_dlp
. - Ud
Cbool string - Whether to use OSS. Valid values:
yes
,no
. - Udc string
- OSS Size.
- Dataphin string
- The dataphin. Valid values:
yes
,no
. - Dataphin
Count string - The dataphin count. Valid values: 1 to 20.
- Logistics string
- The logistics.
- Modify
Type string - The modify type. Valid values:
Upgrade
,Downgrade
. NOTE: Themodify_type
is required when you execute a update operation. - Oss
Size string - The OSS storage capacity.
- Renew
Period int - Automatic renewal period. NOTE: The
renew_period
is required under the condition that renewal_status isAutoRenewal
, - Renewal
Status string - Automatic renewal status. Valid values:
AutoRenewal
,ManualRenewal
. Default Value:ManualRenewal
.
- Payment
Type string - The payment type of the resource. Valid values:
Subscription
. - Period int
- The Prepaid period. Valid values:
1
,2
,3
,6
,12
,24
. - Sd
Cbool string - Whether to use the database. Valid values:
yes
,no
. - Sdc string
- The number of instances.
- Sddp
Version string - The sddp version. Valid values:
version_audit
,version_company
,version_dlp
. - Ud
Cbool string - Whether to use OSS. Valid values:
yes
,no
. - Udc string
- OSS Size.
- Dataphin string
- The dataphin. Valid values:
yes
,no
. - Dataphin
Count string - The dataphin count. Valid values: 1 to 20.
- Logistics string
- The logistics.
- Modify
Type string - The modify type. Valid values:
Upgrade
,Downgrade
. NOTE: Themodify_type
is required when you execute a update operation. - Oss
Size string - The OSS storage capacity.
- Renew
Period int - Automatic renewal period. NOTE: The
renew_period
is required under the condition that renewal_status isAutoRenewal
, - Renewal
Status string - Automatic renewal status. Valid values:
AutoRenewal
,ManualRenewal
. Default Value:ManualRenewal
.
- payment
Type String - The payment type of the resource. Valid values:
Subscription
. - period Integer
- The Prepaid period. Valid values:
1
,2
,3
,6
,12
,24
. - sd
Cbool String - Whether to use the database. Valid values:
yes
,no
. - sdc String
- The number of instances.
- sddp
Version String - The sddp version. Valid values:
version_audit
,version_company
,version_dlp
. - ud
Cbool String - Whether to use OSS. Valid values:
yes
,no
. - udc String
- OSS Size.
- dataphin String
- The dataphin. Valid values:
yes
,no
. - dataphin
Count String - The dataphin count. Valid values: 1 to 20.
- logistics String
- The logistics.
- modify
Type String - The modify type. Valid values:
Upgrade
,Downgrade
. NOTE: Themodify_type
is required when you execute a update operation. - oss
Size String - The OSS storage capacity.
- renew
Period Integer - Automatic renewal period. NOTE: The
renew_period
is required under the condition that renewal_status isAutoRenewal
, - renewal
Status String - Automatic renewal status. Valid values:
AutoRenewal
,ManualRenewal
. Default Value:ManualRenewal
.
- payment
Type string - The payment type of the resource. Valid values:
Subscription
. - period number
- The Prepaid period. Valid values:
1
,2
,3
,6
,12
,24
. - sd
Cbool string - Whether to use the database. Valid values:
yes
,no
. - sdc string
- The number of instances.
- sddp
Version string - The sddp version. Valid values:
version_audit
,version_company
,version_dlp
. - ud
Cbool string - Whether to use OSS. Valid values:
yes
,no
. - udc string
- OSS Size.
- dataphin string
- The dataphin. Valid values:
yes
,no
. - dataphin
Count string - The dataphin count. Valid values: 1 to 20.
- logistics string
- The logistics.
- modify
Type string - The modify type. Valid values:
Upgrade
,Downgrade
. NOTE: Themodify_type
is required when you execute a update operation. - oss
Size string - The OSS storage capacity.
- renew
Period number - Automatic renewal period. NOTE: The
renew_period
is required under the condition that renewal_status isAutoRenewal
, - renewal
Status string - Automatic renewal status. Valid values:
AutoRenewal
,ManualRenewal
. Default Value:ManualRenewal
.
- payment_
type str - The payment type of the resource. Valid values:
Subscription
. - period int
- The Prepaid period. Valid values:
1
,2
,3
,6
,12
,24
. - sd_
cbool str - Whether to use the database. Valid values:
yes
,no
. - sdc str
- The number of instances.
- sddp_
version str - The sddp version. Valid values:
version_audit
,version_company
,version_dlp
. - ud_
cbool str - Whether to use OSS. Valid values:
yes
,no
. - udc str
- OSS Size.
- dataphin str
- The dataphin. Valid values:
yes
,no
. - dataphin_
count str - The dataphin count. Valid values: 1 to 20.
- logistics str
- The logistics.
- modify_
type str - The modify type. Valid values:
Upgrade
,Downgrade
. NOTE: Themodify_type
is required when you execute a update operation. - oss_
size str - The OSS storage capacity.
- renew_
period int - Automatic renewal period. NOTE: The
renew_period
is required under the condition that renewal_status isAutoRenewal
, - renewal_
status str - Automatic renewal status. Valid values:
AutoRenewal
,ManualRenewal
. Default Value:ManualRenewal
.
- payment
Type String - The payment type of the resource. Valid values:
Subscription
. - period Number
- The Prepaid period. Valid values:
1
,2
,3
,6
,12
,24
. - sd
Cbool String - Whether to use the database. Valid values:
yes
,no
. - sdc String
- The number of instances.
- sddp
Version String - The sddp version. Valid values:
version_audit
,version_company
,version_dlp
. - ud
Cbool String - Whether to use OSS. Valid values:
yes
,no
. - udc String
- OSS Size.
- dataphin String
- The dataphin. Valid values:
yes
,no
. - dataphin
Count String - The dataphin count. Valid values: 1 to 20.
- logistics String
- The logistics.
- modify
Type String - The modify type. Valid values:
Upgrade
,Downgrade
. NOTE: Themodify_type
is required when you execute a update operation. - oss
Size String - The OSS storage capacity.
- renew
Period Number - Automatic renewal period. NOTE: The
renew_period
is required under the condition that renewal_status isAutoRenewal
, - renewal
Status String - Automatic renewal status. Valid values:
AutoRenewal
,ManualRenewal
. Default Value:ManualRenewal
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Instance resource produces the following output properties:
- Authed bool
- Whether the required RAM authorization is configured.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Num string - The number of instances.
- Odps
Set bool - Whether the authorized MaxCompute (ODPS) assets.
- Oss
Bucket boolSet - Whether the authorized oss assets.
- Rds
Set bool - Whether the authorized rds assets.
- Remain
Days string - The remaining days of the protection period of the assets in the current login account.
- Status string
- The status of the resource.
- Authed bool
- Whether the required RAM authorization is configured.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Num string - The number of instances.
- Odps
Set bool - Whether the authorized MaxCompute (ODPS) assets.
- Oss
Bucket boolSet - Whether the authorized oss assets.
- Rds
Set bool - Whether the authorized rds assets.
- Remain
Days string - The remaining days of the protection period of the assets in the current login account.
- Status string
- The status of the resource.
- authed Boolean
- Whether the required RAM authorization is configured.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Num String - The number of instances.
- odps
Set Boolean - Whether the authorized MaxCompute (ODPS) assets.
- oss
Bucket BooleanSet - Whether the authorized oss assets.
- rds
Set Boolean - Whether the authorized rds assets.
- remain
Days String - The remaining days of the protection period of the assets in the current login account.
- status String
- The status of the resource.
- authed boolean
- Whether the required RAM authorization is configured.
- id string
- The provider-assigned unique ID for this managed resource.
- instance
Num string - The number of instances.
- odps
Set boolean - Whether the authorized MaxCompute (ODPS) assets.
- oss
Bucket booleanSet - Whether the authorized oss assets.
- rds
Set boolean - Whether the authorized rds assets.
- remain
Days string - The remaining days of the protection period of the assets in the current login account.
- status string
- The status of the resource.
- authed bool
- Whether the required RAM authorization is configured.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_
num str - The number of instances.
- odps_
set bool - Whether the authorized MaxCompute (ODPS) assets.
- oss_
bucket_ boolset - Whether the authorized oss assets.
- rds_
set bool - Whether the authorized rds assets.
- remain_
days str - The remaining days of the protection period of the assets in the current login account.
- status str
- The status of the resource.
- authed Boolean
- Whether the required RAM authorization is configured.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Num String - The number of instances.
- odps
Set Boolean - Whether the authorized MaxCompute (ODPS) assets.
- oss
Bucket BooleanSet - Whether the authorized oss assets.
- rds
Set Boolean - Whether the authorized rds assets.
- remain
Days String - The remaining days of the protection period of the assets in the current login account.
- status String
- The status of the resource.
Look up Existing Instance Resource
Get an existing Instance 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?: InstanceState, opts?: CustomResourceOptions): Instance
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authed: Optional[bool] = None,
dataphin: Optional[str] = None,
dataphin_count: Optional[str] = None,
instance_num: Optional[str] = None,
logistics: Optional[str] = None,
modify_type: Optional[str] = None,
odps_set: Optional[bool] = None,
oss_bucket_set: Optional[bool] = None,
oss_size: Optional[str] = None,
payment_type: Optional[str] = None,
period: Optional[int] = None,
rds_set: Optional[bool] = None,
remain_days: Optional[str] = None,
renew_period: Optional[int] = None,
renewal_status: Optional[str] = None,
sd_cbool: Optional[str] = None,
sdc: Optional[str] = None,
sddp_version: Optional[str] = None,
status: Optional[str] = None,
ud_cbool: Optional[str] = None,
udc: Optional[str] = None) -> Instance
func GetInstance(ctx *Context, name string, id IDInput, state *InstanceState, opts ...ResourceOption) (*Instance, error)
public static Instance Get(string name, Input<string> id, InstanceState? state, CustomResourceOptions? opts = null)
public static Instance get(String name, Output<String> id, InstanceState 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.
- Authed bool
- Whether the required RAM authorization is configured.
- Dataphin string
- The dataphin. Valid values:
yes
,no
. - Dataphin
Count string - The dataphin count. Valid values: 1 to 20.
- Instance
Num string - The number of instances.
- Logistics string
- The logistics.
- Modify
Type string - The modify type. Valid values:
Upgrade
,Downgrade
. NOTE: Themodify_type
is required when you execute a update operation. - Odps
Set bool - Whether the authorized MaxCompute (ODPS) assets.
- Oss
Bucket boolSet - Whether the authorized oss assets.
- Oss
Size string - The OSS storage capacity.
- Payment
Type string - The payment type of the resource. Valid values:
Subscription
. - Period int
- The Prepaid period. Valid values:
1
,2
,3
,6
,12
,24
. - Rds
Set bool - Whether the authorized rds assets.
- Remain
Days string - The remaining days of the protection period of the assets in the current login account.
- Renew
Period int - Automatic renewal period. NOTE: The
renew_period
is required under the condition that renewal_status isAutoRenewal
, - Renewal
Status string - Automatic renewal status. Valid values:
AutoRenewal
,ManualRenewal
. Default Value:ManualRenewal
. - Sd
Cbool string - Whether to use the database. Valid values:
yes
,no
. - Sdc string
- The number of instances.
- Sddp
Version string - The sddp version. Valid values:
version_audit
,version_company
,version_dlp
. - Status string
- The status of the resource.
- Ud
Cbool string - Whether to use OSS. Valid values:
yes
,no
. - Udc string
- OSS Size.
- Authed bool
- Whether the required RAM authorization is configured.
- Dataphin string
- The dataphin. Valid values:
yes
,no
. - Dataphin
Count string - The dataphin count. Valid values: 1 to 20.
- Instance
Num string - The number of instances.
- Logistics string
- The logistics.
- Modify
Type string - The modify type. Valid values:
Upgrade
,Downgrade
. NOTE: Themodify_type
is required when you execute a update operation. - Odps
Set bool - Whether the authorized MaxCompute (ODPS) assets.
- Oss
Bucket boolSet - Whether the authorized oss assets.
- Oss
Size string - The OSS storage capacity.
- Payment
Type string - The payment type of the resource. Valid values:
Subscription
. - Period int
- The Prepaid period. Valid values:
1
,2
,3
,6
,12
,24
. - Rds
Set bool - Whether the authorized rds assets.
- Remain
Days string - The remaining days of the protection period of the assets in the current login account.
- Renew
Period int - Automatic renewal period. NOTE: The
renew_period
is required under the condition that renewal_status isAutoRenewal
, - Renewal
Status string - Automatic renewal status. Valid values:
AutoRenewal
,ManualRenewal
. Default Value:ManualRenewal
. - Sd
Cbool string - Whether to use the database. Valid values:
yes
,no
. - Sdc string
- The number of instances.
- Sddp
Version string - The sddp version. Valid values:
version_audit
,version_company
,version_dlp
. - Status string
- The status of the resource.
- Ud
Cbool string - Whether to use OSS. Valid values:
yes
,no
. - Udc string
- OSS Size.
- authed Boolean
- Whether the required RAM authorization is configured.
- dataphin String
- The dataphin. Valid values:
yes
,no
. - dataphin
Count String - The dataphin count. Valid values: 1 to 20.
- instance
Num String - The number of instances.
- logistics String
- The logistics.
- modify
Type String - The modify type. Valid values:
Upgrade
,Downgrade
. NOTE: Themodify_type
is required when you execute a update operation. - odps
Set Boolean - Whether the authorized MaxCompute (ODPS) assets.
- oss
Bucket BooleanSet - Whether the authorized oss assets.
- oss
Size String - The OSS storage capacity.
- payment
Type String - The payment type of the resource. Valid values:
Subscription
. - period Integer
- The Prepaid period. Valid values:
1
,2
,3
,6
,12
,24
. - rds
Set Boolean - Whether the authorized rds assets.
- remain
Days String - The remaining days of the protection period of the assets in the current login account.
- renew
Period Integer - Automatic renewal period. NOTE: The
renew_period
is required under the condition that renewal_status isAutoRenewal
, - renewal
Status String - Automatic renewal status. Valid values:
AutoRenewal
,ManualRenewal
. Default Value:ManualRenewal
. - sd
Cbool String - Whether to use the database. Valid values:
yes
,no
. - sdc String
- The number of instances.
- sddp
Version String - The sddp version. Valid values:
version_audit
,version_company
,version_dlp
. - status String
- The status of the resource.
- ud
Cbool String - Whether to use OSS. Valid values:
yes
,no
. - udc String
- OSS Size.
- authed boolean
- Whether the required RAM authorization is configured.
- dataphin string
- The dataphin. Valid values:
yes
,no
. - dataphin
Count string - The dataphin count. Valid values: 1 to 20.
- instance
Num string - The number of instances.
- logistics string
- The logistics.
- modify
Type string - The modify type. Valid values:
Upgrade
,Downgrade
. NOTE: Themodify_type
is required when you execute a update operation. - odps
Set boolean - Whether the authorized MaxCompute (ODPS) assets.
- oss
Bucket booleanSet - Whether the authorized oss assets.
- oss
Size string - The OSS storage capacity.
- payment
Type string - The payment type of the resource. Valid values:
Subscription
. - period number
- The Prepaid period. Valid values:
1
,2
,3
,6
,12
,24
. - rds
Set boolean - Whether the authorized rds assets.
- remain
Days string - The remaining days of the protection period of the assets in the current login account.
- renew
Period number - Automatic renewal period. NOTE: The
renew_period
is required under the condition that renewal_status isAutoRenewal
, - renewal
Status string - Automatic renewal status. Valid values:
AutoRenewal
,ManualRenewal
. Default Value:ManualRenewal
. - sd
Cbool string - Whether to use the database. Valid values:
yes
,no
. - sdc string
- The number of instances.
- sddp
Version string - The sddp version. Valid values:
version_audit
,version_company
,version_dlp
. - status string
- The status of the resource.
- ud
Cbool string - Whether to use OSS. Valid values:
yes
,no
. - udc string
- OSS Size.
- authed bool
- Whether the required RAM authorization is configured.
- dataphin str
- The dataphin. Valid values:
yes
,no
. - dataphin_
count str - The dataphin count. Valid values: 1 to 20.
- instance_
num str - The number of instances.
- logistics str
- The logistics.
- modify_
type str - The modify type. Valid values:
Upgrade
,Downgrade
. NOTE: Themodify_type
is required when you execute a update operation. - odps_
set bool - Whether the authorized MaxCompute (ODPS) assets.
- oss_
bucket_ boolset - Whether the authorized oss assets.
- oss_
size str - The OSS storage capacity.
- payment_
type str - The payment type of the resource. Valid values:
Subscription
. - period int
- The Prepaid period. Valid values:
1
,2
,3
,6
,12
,24
. - rds_
set bool - Whether the authorized rds assets.
- remain_
days str - The remaining days of the protection period of the assets in the current login account.
- renew_
period int - Automatic renewal period. NOTE: The
renew_period
is required under the condition that renewal_status isAutoRenewal
, - renewal_
status str - Automatic renewal status. Valid values:
AutoRenewal
,ManualRenewal
. Default Value:ManualRenewal
. - sd_
cbool str - Whether to use the database. Valid values:
yes
,no
. - sdc str
- The number of instances.
- sddp_
version str - The sddp version. Valid values:
version_audit
,version_company
,version_dlp
. - status str
- The status of the resource.
- ud_
cbool str - Whether to use OSS. Valid values:
yes
,no
. - udc str
- OSS Size.
- authed Boolean
- Whether the required RAM authorization is configured.
- dataphin String
- The dataphin. Valid values:
yes
,no
. - dataphin
Count String - The dataphin count. Valid values: 1 to 20.
- instance
Num String - The number of instances.
- logistics String
- The logistics.
- modify
Type String - The modify type. Valid values:
Upgrade
,Downgrade
. NOTE: Themodify_type
is required when you execute a update operation. - odps
Set Boolean - Whether the authorized MaxCompute (ODPS) assets.
- oss
Bucket BooleanSet - Whether the authorized oss assets.
- oss
Size String - The OSS storage capacity.
- payment
Type String - The payment type of the resource. Valid values:
Subscription
. - period Number
- The Prepaid period. Valid values:
1
,2
,3
,6
,12
,24
. - rds
Set Boolean - Whether the authorized rds assets.
- remain
Days String - The remaining days of the protection period of the assets in the current login account.
- renew
Period Number - Automatic renewal period. NOTE: The
renew_period
is required under the condition that renewal_status isAutoRenewal
, - renewal
Status String - Automatic renewal status. Valid values:
AutoRenewal
,ManualRenewal
. Default Value:ManualRenewal
. - sd
Cbool String - Whether to use the database. Valid values:
yes
,no
. - sdc String
- The number of instances.
- sddp
Version String - The sddp version. Valid values:
version_audit
,version_company
,version_dlp
. - status String
- The status of the resource.
- ud
Cbool String - Whether to use OSS. Valid values:
yes
,no
. - udc String
- OSS Size.
Import
Data Security Center Instance can be imported using the id, e.g.
$ pulumi import alicloud:sddp/instance:Instance example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.