published on Monday, Mar 9, 2026 by Byteplus
published on Monday, Mar 9, 2026 by Byteplus
查看和管理您组织内的所有账号。每个账号可以直接放在根节点中,也可以移动到您创建的任意组织节点层级结构中,每个账号只能归属于一个节点。您可以分层树状结构管理您的组织结构以及成员账号。
Example Usage
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
resources:
organizationAccountDemo:
type: bytepluscc:organization:Account
name: OrganizationAccountDemo
properties:
accountName: testdemo
description: test-desc
orgUnitId: 7538034613*****190
showName: test-show-name
allowConsole: 1
secureContactInfo:
new_email: ""
new_phone: '*********'
tags:
- key: env
value: test
Create Account Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);@overload
def Account(resource_name: str,
args: AccountArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Account(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
show_name: Optional[str] = None,
allow_console: Optional[int] = None,
allow_exit: Optional[int] = None,
delete_uk: Optional[str] = None,
description: Optional[str] = None,
org_unit_id: Optional[str] = None,
password: Optional[str] = None,
secure_contact_info: Optional[AccountSecureContactInfoArgs] = None,
tags: Optional[Sequence[AccountTagArgs]] = None,
verification_relation_id: Optional[str] = None)func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
public Account(String name, AccountArgs args)
public Account(String name, AccountArgs args, CustomResourceOptions options)
type: bytepluscc:organization:Account
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 AccountArgs
- 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 AccountArgs
- 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 AccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountArgs
- 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 accountResource = new Bytepluscc.Organization.Account("accountResource", new()
{
AccountName = "string",
ShowName = "string",
AllowConsole = 0,
AllowExit = 0,
DeleteUk = "string",
Description = "string",
OrgUnitId = "string",
Password = "string",
SecureContactInfo = new Bytepluscc.Organization.Inputs.AccountSecureContactInfoArgs
{
Email = "string",
EmailVerified = 0,
NewEmail = "string",
NewPhone = "string",
Phone = "string",
PhoneVerified = 0,
},
Tags = new[]
{
new Bytepluscc.Organization.Inputs.AccountTagArgs
{
Key = "string",
Value = "string",
},
},
VerificationRelationId = "string",
});
example, err := organization.NewAccount(ctx, "accountResource", &organization.AccountArgs{
AccountName: pulumi.String("string"),
ShowName: pulumi.String("string"),
AllowConsole: pulumi.Int(0),
AllowExit: pulumi.Int(0),
DeleteUk: pulumi.String("string"),
Description: pulumi.String("string"),
OrgUnitId: pulumi.String("string"),
Password: pulumi.String("string"),
SecureContactInfo: &organization.AccountSecureContactInfoArgs{
Email: pulumi.String("string"),
EmailVerified: pulumi.Int(0),
NewEmail: pulumi.String("string"),
NewPhone: pulumi.String("string"),
Phone: pulumi.String("string"),
PhoneVerified: pulumi.Int(0),
},
Tags: organization.AccountTagArray{
&organization.AccountTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
VerificationRelationId: pulumi.String("string"),
})
var accountResource = new com.byteplus.bytepluscc.organization.Account("accountResource", com.byteplus.bytepluscc.organization.AccountArgs.builder()
.accountName("string")
.showName("string")
.allowConsole(0)
.allowExit(0)
.deleteUk("string")
.description("string")
.orgUnitId("string")
.password("string")
.secureContactInfo(AccountSecureContactInfoArgs.builder()
.email("string")
.emailVerified(0)
.newEmail("string")
.newPhone("string")
.phone("string")
.phoneVerified(0)
.build())
.tags(AccountTagArgs.builder()
.key("string")
.value("string")
.build())
.verificationRelationId("string")
.build());
account_resource = bytepluscc.organization.Account("accountResource",
account_name="string",
show_name="string",
allow_console=0,
allow_exit=0,
delete_uk="string",
description="string",
org_unit_id="string",
password="string",
secure_contact_info={
"email": "string",
"email_verified": 0,
"new_email": "string",
"new_phone": "string",
"phone": "string",
"phone_verified": 0,
},
tags=[{
"key": "string",
"value": "string",
}],
verification_relation_id="string")
const accountResource = new bytepluscc.organization.Account("accountResource", {
accountName: "string",
showName: "string",
allowConsole: 0,
allowExit: 0,
deleteUk: "string",
description: "string",
orgUnitId: "string",
password: "string",
secureContactInfo: {
email: "string",
emailVerified: 0,
newEmail: "string",
newPhone: "string",
phone: "string",
phoneVerified: 0,
},
tags: [{
key: "string",
value: "string",
}],
verificationRelationId: "string",
});
type: bytepluscc:organization:Account
properties:
accountName: string
allowConsole: 0
allowExit: 0
deleteUk: string
description: string
orgUnitId: string
password: string
secureContactInfo:
email: string
emailVerified: 0
newEmail: string
newPhone: string
phone: string
phoneVerified: 0
showName: string
tags:
- key: string
value: string
verificationRelationId: string
Account 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 Account resource accepts the following input properties:
- Account
Name string - 账户名称。5-20个字符。
- Show
Name string - 显示名称。
- Allow
Console int - 允许控制台访问,1: 允许,2: 不允许。
- Allow
Exit int - 允许退出,1: 允许,2: 不允许。
- Delete
Uk string - 删除标记。
- Description string
- 描述。
- Org
Unit stringId - 组织单元ID。传入 0 加入到 root 单元。
- Password string
- 账户密码。
- Secure
Contact Byteplus.Info Account Secure Contact Info - 安全联系信息。
-
List<Byteplus.
Account Tag> - Verification
Relation stringId - 被继承认证主体的账号ID,给非管理员认证主体创建账号时需要,账号需已加入企业组织。默认不传,则继承企业组织管理员的认证主体。
- Account
Name string - 账户名称。5-20个字符。
- Show
Name string - 显示名称。
- Allow
Console int - 允许控制台访问,1: 允许,2: 不允许。
- Allow
Exit int - 允许退出,1: 允许,2: 不允许。
- Delete
Uk string - 删除标记。
- Description string
- 描述。
- Org
Unit stringId - 组织单元ID。传入 0 加入到 root 单元。
- Password string
- 账户密码。
- Secure
Contact AccountInfo Secure Contact Info Args - 安全联系信息。
-
[]Account
Tag Args - Verification
Relation stringId - 被继承认证主体的账号ID,给非管理员认证主体创建账号时需要,账号需已加入企业组织。默认不传,则继承企业组织管理员的认证主体。
- account
Name String - 账户名称。5-20个字符。
- show
Name String - 显示名称。
- allow
Console Integer - 允许控制台访问,1: 允许,2: 不允许。
- allow
Exit Integer - 允许退出,1: 允许,2: 不允许。
- delete
Uk String - 删除标记。
- description String
- 描述。
- org
Unit StringId - 组织单元ID。传入 0 加入到 root 单元。
- password String
- 账户密码。
- secure
Contact AccountInfo Secure Contact Info - 安全联系信息。
-
List<Account
Tag> - verification
Relation StringId - 被继承认证主体的账号ID,给非管理员认证主体创建账号时需要,账号需已加入企业组织。默认不传,则继承企业组织管理员的认证主体。
- account
Name string - 账户名称。5-20个字符。
- show
Name string - 显示名称。
- allow
Console number - 允许控制台访问,1: 允许,2: 不允许。
- allow
Exit number - 允许退出,1: 允许,2: 不允许。
- delete
Uk string - 删除标记。
- description string
- 描述。
- org
Unit stringId - 组织单元ID。传入 0 加入到 root 单元。
- password string
- 账户密码。
- secure
Contact AccountInfo Secure Contact Info - 安全联系信息。
-
Account
Tag[] - verification
Relation stringId - 被继承认证主体的账号ID,给非管理员认证主体创建账号时需要,账号需已加入企业组织。默认不传,则继承企业组织管理员的认证主体。
- account_
name str - 账户名称。5-20个字符。
- show_
name str - 显示名称。
- allow_
console int - 允许控制台访问,1: 允许,2: 不允许。
- allow_
exit int - 允许退出,1: 允许,2: 不允许。
- delete_
uk str - 删除标记。
- description str
- 描述。
- org_
unit_ strid - 组织单元ID。传入 0 加入到 root 单元。
- password str
- 账户密码。
- secure_
contact_ Accountinfo Secure Contact Info Args - 安全联系信息。
-
Sequence[Account
Tag Args] - verification_
relation_ strid - 被继承认证主体的账号ID,给非管理员认证主体创建账号时需要,账号需已加入企业组织。默认不传,则继承企业组织管理员的认证主体。
- account
Name String - 账户名称。5-20个字符。
- show
Name String - 显示名称。
- allow
Console Number - 允许控制台访问,1: 允许,2: 不允许。
- allow
Exit Number - 允许退出,1: 允许,2: 不允许。
- delete
Uk String - 删除标记。
- description String
- 描述。
- org
Unit StringId - 组织单元ID。传入 0 加入到 root 单元。
- password String
- 账户密码。
- secure
Contact Property MapInfo - 安全联系信息。
- List<Property Map>
- verification
Relation StringId - 被继承认证主体的账号ID,给非管理员认证主体创建账号时需要,账号需已加入企业组织。默认不传,则继承企业组织管理员的认证主体。
Outputs
All input properties are implicitly available as output properties. Additionally, the Account resource produces the following output properties:
- Account
Id string - 火山账号ID。
- Created
Time string - 创建时间。
- Deleted
Time string - 删除时间。
- Iam
Role string - IAM角色名称。
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Owner int - 是否是管理员,0.非管理员,1.管理员。
- Join
Type int - 加入类型,1: 创建,2: 邀请。
- Main
Name string - 主体名称。
- Member
Account stringId - 组织成员账号ID。
- Org
Id string - 组织ID。
- Org
Type int - 组织类型,1.企业组织。
- Org
Unit stringName - 组织单元名称。
- Org
Verification stringId - 认证主体ID。
- Owner string
- 管理员ID。
- Updated
Time string - 更新时间。
- Account
Id string - 火山账号ID。
- Created
Time string - 创建时间。
- Deleted
Time string - 删除时间。
- Iam
Role string - IAM角色名称。
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Owner int - 是否是管理员,0.非管理员,1.管理员。
- Join
Type int - 加入类型,1: 创建,2: 邀请。
- Main
Name string - 主体名称。
- Member
Account stringId - 组织成员账号ID。
- Org
Id string - 组织ID。
- Org
Type int - 组织类型,1.企业组织。
- Org
Unit stringName - 组织单元名称。
- Org
Verification stringId - 认证主体ID。
- Owner string
- 管理员ID。
- Updated
Time string - 更新时间。
- account
Id String - 火山账号ID。
- created
Time String - 创建时间。
- deleted
Time String - 删除时间。
- iam
Role String - IAM角色名称。
- id String
- The provider-assigned unique ID for this managed resource.
- is
Owner Integer - 是否是管理员,0.非管理员,1.管理员。
- join
Type Integer - 加入类型,1: 创建,2: 邀请。
- main
Name String - 主体名称。
- member
Account StringId - 组织成员账号ID。
- org
Id String - 组织ID。
- org
Type Integer - 组织类型,1.企业组织。
- org
Unit StringName - 组织单元名称。
- org
Verification StringId - 认证主体ID。
- owner String
- 管理员ID。
- updated
Time String - 更新时间。
- account
Id string - 火山账号ID。
- created
Time string - 创建时间。
- deleted
Time string - 删除时间。
- iam
Role string - IAM角色名称。
- id string
- The provider-assigned unique ID for this managed resource.
- is
Owner number - 是否是管理员,0.非管理员,1.管理员。
- join
Type number - 加入类型,1: 创建,2: 邀请。
- main
Name string - 主体名称。
- member
Account stringId - 组织成员账号ID。
- org
Id string - 组织ID。
- org
Type number - 组织类型,1.企业组织。
- org
Unit stringName - 组织单元名称。
- org
Verification stringId - 认证主体ID。
- owner string
- 管理员ID。
- updated
Time string - 更新时间。
- account_
id str - 火山账号ID。
- created_
time str - 创建时间。
- deleted_
time str - 删除时间。
- iam_
role str - IAM角色名称。
- id str
- The provider-assigned unique ID for this managed resource.
- is_
owner int - 是否是管理员,0.非管理员,1.管理员。
- join_
type int - 加入类型,1: 创建,2: 邀请。
- main_
name str - 主体名称。
- member_
account_ strid - 组织成员账号ID。
- org_
id str - 组织ID。
- org_
type int - 组织类型,1.企业组织。
- org_
unit_ strname - 组织单元名称。
- org_
verification_ strid - 认证主体ID。
- owner str
- 管理员ID。
- updated_
time str - 更新时间。
- account
Id String - 火山账号ID。
- created
Time String - 创建时间。
- deleted
Time String - 删除时间。
- iam
Role String - IAM角色名称。
- id String
- The provider-assigned unique ID for this managed resource.
- is
Owner Number - 是否是管理员,0.非管理员,1.管理员。
- join
Type Number - 加入类型,1: 创建,2: 邀请。
- main
Name String - 主体名称。
- member
Account StringId - 组织成员账号ID。
- org
Id String - 组织ID。
- org
Type Number - 组织类型,1.企业组织。
- org
Unit StringName - 组织单元名称。
- org
Verification StringId - 认证主体ID。
- owner String
- 管理员ID。
- updated
Time String - 更新时间。
Look up Existing Account Resource
Get an existing Account 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?: AccountState, opts?: CustomResourceOptions): Account@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
account_name: Optional[str] = None,
allow_console: Optional[int] = None,
allow_exit: Optional[int] = None,
created_time: Optional[str] = None,
delete_uk: Optional[str] = None,
deleted_time: Optional[str] = None,
description: Optional[str] = None,
iam_role: Optional[str] = None,
is_owner: Optional[int] = None,
join_type: Optional[int] = None,
main_name: Optional[str] = None,
member_account_id: Optional[str] = None,
org_id: Optional[str] = None,
org_type: Optional[int] = None,
org_unit_id: Optional[str] = None,
org_unit_name: Optional[str] = None,
org_verification_id: Optional[str] = None,
owner: Optional[str] = None,
password: Optional[str] = None,
secure_contact_info: Optional[AccountSecureContactInfoArgs] = None,
show_name: Optional[str] = None,
tags: Optional[Sequence[AccountTagArgs]] = None,
updated_time: Optional[str] = None,
verification_relation_id: Optional[str] = None) -> Accountfunc GetAccount(ctx *Context, name string, id IDInput, state *AccountState, opts ...ResourceOption) (*Account, error)public static Account Get(string name, Input<string> id, AccountState? state, CustomResourceOptions? opts = null)public static Account get(String name, Output<String> id, AccountState state, CustomResourceOptions options)resources: _: type: bytepluscc:organization:Account 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.
- Account
Id string - 火山账号ID。
- Account
Name string - 账户名称。5-20个字符。
- Allow
Console int - 允许控制台访问,1: 允许,2: 不允许。
- Allow
Exit int - 允许退出,1: 允许,2: 不允许。
- Created
Time string - 创建时间。
- Delete
Uk string - 删除标记。
- Deleted
Time string - 删除时间。
- Description string
- 描述。
- Iam
Role string - IAM角色名称。
- Is
Owner int - 是否是管理员,0.非管理员,1.管理员。
- Join
Type int - 加入类型,1: 创建,2: 邀请。
- Main
Name string - 主体名称。
- Member
Account stringId - 组织成员账号ID。
- Org
Id string - 组织ID。
- Org
Type int - 组织类型,1.企业组织。
- Org
Unit stringId - 组织单元ID。传入 0 加入到 root 单元。
- Org
Unit stringName - 组织单元名称。
- Org
Verification stringId - 认证主体ID。
- Owner string
- 管理员ID。
- Password string
- 账户密码。
- Secure
Contact Byteplus.Info Account Secure Contact Info - 安全联系信息。
- Show
Name string - 显示名称。
-
List<Byteplus.
Account Tag> - Updated
Time string - 更新时间。
- Verification
Relation stringId - 被继承认证主体的账号ID,给非管理员认证主体创建账号时需要,账号需已加入企业组织。默认不传,则继承企业组织管理员的认证主体。
- Account
Id string - 火山账号ID。
- Account
Name string - 账户名称。5-20个字符。
- Allow
Console int - 允许控制台访问,1: 允许,2: 不允许。
- Allow
Exit int - 允许退出,1: 允许,2: 不允许。
- Created
Time string - 创建时间。
- Delete
Uk string - 删除标记。
- Deleted
Time string - 删除时间。
- Description string
- 描述。
- Iam
Role string - IAM角色名称。
- Is
Owner int - 是否是管理员,0.非管理员,1.管理员。
- Join
Type int - 加入类型,1: 创建,2: 邀请。
- Main
Name string - 主体名称。
- Member
Account stringId - 组织成员账号ID。
- Org
Id string - 组织ID。
- Org
Type int - 组织类型,1.企业组织。
- Org
Unit stringId - 组织单元ID。传入 0 加入到 root 单元。
- Org
Unit stringName - 组织单元名称。
- Org
Verification stringId - 认证主体ID。
- Owner string
- 管理员ID。
- Password string
- 账户密码。
- Secure
Contact AccountInfo Secure Contact Info Args - 安全联系信息。
- Show
Name string - 显示名称。
-
[]Account
Tag Args - Updated
Time string - 更新时间。
- Verification
Relation stringId - 被继承认证主体的账号ID,给非管理员认证主体创建账号时需要,账号需已加入企业组织。默认不传,则继承企业组织管理员的认证主体。
- account
Id String - 火山账号ID。
- account
Name String - 账户名称。5-20个字符。
- allow
Console Integer - 允许控制台访问,1: 允许,2: 不允许。
- allow
Exit Integer - 允许退出,1: 允许,2: 不允许。
- created
Time String - 创建时间。
- delete
Uk String - 删除标记。
- deleted
Time String - 删除时间。
- description String
- 描述。
- iam
Role String - IAM角色名称。
- is
Owner Integer - 是否是管理员,0.非管理员,1.管理员。
- join
Type Integer - 加入类型,1: 创建,2: 邀请。
- main
Name String - 主体名称。
- member
Account StringId - 组织成员账号ID。
- org
Id String - 组织ID。
- org
Type Integer - 组织类型,1.企业组织。
- org
Unit StringId - 组织单元ID。传入 0 加入到 root 单元。
- org
Unit StringName - 组织单元名称。
- org
Verification StringId - 认证主体ID。
- owner String
- 管理员ID。
- password String
- 账户密码。
- secure
Contact AccountInfo Secure Contact Info - 安全联系信息。
- show
Name String - 显示名称。
-
List<Account
Tag> - updated
Time String - 更新时间。
- verification
Relation StringId - 被继承认证主体的账号ID,给非管理员认证主体创建账号时需要,账号需已加入企业组织。默认不传,则继承企业组织管理员的认证主体。
- account
Id string - 火山账号ID。
- account
Name string - 账户名称。5-20个字符。
- allow
Console number - 允许控制台访问,1: 允许,2: 不允许。
- allow
Exit number - 允许退出,1: 允许,2: 不允许。
- created
Time string - 创建时间。
- delete
Uk string - 删除标记。
- deleted
Time string - 删除时间。
- description string
- 描述。
- iam
Role string - IAM角色名称。
- is
Owner number - 是否是管理员,0.非管理员,1.管理员。
- join
Type number - 加入类型,1: 创建,2: 邀请。
- main
Name string - 主体名称。
- member
Account stringId - 组织成员账号ID。
- org
Id string - 组织ID。
- org
Type number - 组织类型,1.企业组织。
- org
Unit stringId - 组织单元ID。传入 0 加入到 root 单元。
- org
Unit stringName - 组织单元名称。
- org
Verification stringId - 认证主体ID。
- owner string
- 管理员ID。
- password string
- 账户密码。
- secure
Contact AccountInfo Secure Contact Info - 安全联系信息。
- show
Name string - 显示名称。
-
Account
Tag[] - updated
Time string - 更新时间。
- verification
Relation stringId - 被继承认证主体的账号ID,给非管理员认证主体创建账号时需要,账号需已加入企业组织。默认不传,则继承企业组织管理员的认证主体。
- account_
id str - 火山账号ID。
- account_
name str - 账户名称。5-20个字符。
- allow_
console int - 允许控制台访问,1: 允许,2: 不允许。
- allow_
exit int - 允许退出,1: 允许,2: 不允许。
- created_
time str - 创建时间。
- delete_
uk str - 删除标记。
- deleted_
time str - 删除时间。
- description str
- 描述。
- iam_
role str - IAM角色名称。
- is_
owner int - 是否是管理员,0.非管理员,1.管理员。
- join_
type int - 加入类型,1: 创建,2: 邀请。
- main_
name str - 主体名称。
- member_
account_ strid - 组织成员账号ID。
- org_
id str - 组织ID。
- org_
type int - 组织类型,1.企业组织。
- org_
unit_ strid - 组织单元ID。传入 0 加入到 root 单元。
- org_
unit_ strname - 组织单元名称。
- org_
verification_ strid - 认证主体ID。
- owner str
- 管理员ID。
- password str
- 账户密码。
- secure_
contact_ Accountinfo Secure Contact Info Args - 安全联系信息。
- show_
name str - 显示名称。
-
Sequence[Account
Tag Args] - updated_
time str - 更新时间。
- verification_
relation_ strid - 被继承认证主体的账号ID,给非管理员认证主体创建账号时需要,账号需已加入企业组织。默认不传,则继承企业组织管理员的认证主体。
- account
Id String - 火山账号ID。
- account
Name String - 账户名称。5-20个字符。
- allow
Console Number - 允许控制台访问,1: 允许,2: 不允许。
- allow
Exit Number - 允许退出,1: 允许,2: 不允许。
- created
Time String - 创建时间。
- delete
Uk String - 删除标记。
- deleted
Time String - 删除时间。
- description String
- 描述。
- iam
Role String - IAM角色名称。
- is
Owner Number - 是否是管理员,0.非管理员,1.管理员。
- join
Type Number - 加入类型,1: 创建,2: 邀请。
- main
Name String - 主体名称。
- member
Account StringId - 组织成员账号ID。
- org
Id String - 组织ID。
- org
Type Number - 组织类型,1.企业组织。
- org
Unit StringId - 组织单元ID。传入 0 加入到 root 单元。
- org
Unit StringName - 组织单元名称。
- org
Verification StringId - 认证主体ID。
- owner String
- 管理员ID。
- password String
- 账户密码。
- secure
Contact Property MapInfo - 安全联系信息。
- show
Name String - 显示名称。
- List<Property Map>
- updated
Time String - 更新时间。
- verification
Relation StringId - 被继承认证主体的账号ID,给非管理员认证主体创建账号时需要,账号需已加入企业组织。默认不传,则继承企业组织管理员的认证主体。
Supporting Types
AccountSecureContactInfo, AccountSecureContactInfoArgs
- Email string
- 安全邮箱。
- Email
Verified int - 安全邮箱是否验证,1: 未验证,2: 已验证。
- New
Email string - 变更中的新邮箱。
- New
Phone string - 变更中的新手机号。
- Phone string
- 安全手机号。
- Phone
Verified int - 安全手机号是否验证,1: 未验证,2: 已验证。
- Email string
- 安全邮箱。
- Email
Verified int - 安全邮箱是否验证,1: 未验证,2: 已验证。
- New
Email string - 变更中的新邮箱。
- New
Phone string - 变更中的新手机号。
- Phone string
- 安全手机号。
- Phone
Verified int - 安全手机号是否验证,1: 未验证,2: 已验证。
- email String
- 安全邮箱。
- email
Verified Integer - 安全邮箱是否验证,1: 未验证,2: 已验证。
- new
Email String - 变更中的新邮箱。
- new
Phone String - 变更中的新手机号。
- phone String
- 安全手机号。
- phone
Verified Integer - 安全手机号是否验证,1: 未验证,2: 已验证。
- email string
- 安全邮箱。
- email
Verified number - 安全邮箱是否验证,1: 未验证,2: 已验证。
- new
Email string - 变更中的新邮箱。
- new
Phone string - 变更中的新手机号。
- phone string
- 安全手机号。
- phone
Verified number - 安全手机号是否验证,1: 未验证,2: 已验证。
- email str
- 安全邮箱。
- email_
verified int - 安全邮箱是否验证,1: 未验证,2: 已验证。
- new_
email str - 变更中的新邮箱。
- new_
phone str - 变更中的新手机号。
- phone str
- 安全手机号。
- phone_
verified int - 安全手机号是否验证,1: 未验证,2: 已验证。
- email String
- 安全邮箱。
- email
Verified Number - 安全邮箱是否验证,1: 未验证,2: 已验证。
- new
Email String - 变更中的新邮箱。
- new
Phone String - 变更中的新手机号。
- phone String
- 安全手机号。
- phone
Verified Number - 安全手机号是否验证,1: 未验证,2: 已验证。
AccountTag, AccountTagArgs
Import
$ pulumi import bytepluscc:organization/account:Account example "account_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- bytepluscc byteplus-sdk/pulumi-bytepluscc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
byteplusccTerraform Provider.
published on Monday, Mar 9, 2026 by Byteplus
