@byteplus/pulumi-bytepluscc 0.0.14 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/clb/getNlbSecurityPolicies.d.ts +22 -0
- package/clb/getNlbSecurityPolicies.js +24 -0
- package/clb/getNlbSecurityPolicies.js.map +1 -0
- package/clb/getNlbSecurityPolicy.d.ts +81 -0
- package/clb/getNlbSecurityPolicy.js +28 -0
- package/clb/getNlbSecurityPolicy.js.map +1 -0
- package/clb/index.d.ts +9 -0
- package/clb/index.js +12 -1
- package/clb/index.js.map +1 -1
- package/clb/nlbSecurityPolicy.d.ts +167 -0
- package/clb/nlbSecurityPolicy.js +105 -0
- package/clb/nlbSecurityPolicy.js.map +1 -0
- package/cloudidentity/getGroup.d.ts +73 -0
- package/cloudidentity/getGroup.js +28 -0
- package/cloudidentity/getGroup.js.map +1 -0
- package/cloudidentity/getGroups.d.ts +22 -0
- package/cloudidentity/getGroups.js +24 -0
- package/cloudidentity/getGroups.js.map +1 -0
- package/cloudidentity/getPermissionSet.d.ts +73 -0
- package/cloudidentity/getPermissionSet.js +28 -0
- package/cloudidentity/getPermissionSet.js.map +1 -0
- package/cloudidentity/getPermissionSets.d.ts +22 -0
- package/cloudidentity/getPermissionSets.js +24 -0
- package/cloudidentity/getPermissionSets.js.map +1 -0
- package/cloudidentity/group.d.ts +130 -0
- package/cloudidentity/group.js +80 -0
- package/cloudidentity/group.js.map +1 -0
- package/cloudidentity/index.d.ts +18 -0
- package/cloudidentity/index.js +23 -1
- package/cloudidentity/index.js.map +1 -1
- package/cloudidentity/permissionSet.d.ts +130 -0
- package/cloudidentity/permissionSet.js +77 -0
- package/cloudidentity/permissionSet.js.map +1 -0
- package/filenas/getMountPoint.d.ts +97 -0
- package/filenas/getMountPoint.js +28 -0
- package/filenas/getMountPoint.js.map +1 -0
- package/filenas/getMountPoints.d.ts +22 -0
- package/filenas/getMountPoints.js +24 -0
- package/filenas/getMountPoints.js.map +1 -0
- package/filenas/index.d.ts +9 -0
- package/filenas/index.js +12 -1
- package/filenas/index.js.map +1 -1
- package/filenas/mountPoint.d.ts +196 -0
- package/filenas/mountPoint.js +116 -0
- package/filenas/mountPoint.js.map +1 -0
- package/package.json +1 -1
- package/rdspostgresql/dbAccount.d.ts +133 -0
- package/rdspostgresql/dbAccount.js +93 -0
- package/rdspostgresql/dbAccount.js.map +1 -0
- package/rdspostgresql/getDbAccount.d.ts +60 -0
- package/rdspostgresql/getDbAccount.js +28 -0
- package/rdspostgresql/getDbAccount.js.map +1 -0
- package/rdspostgresql/getDbAccounts.d.ts +22 -0
- package/rdspostgresql/getDbAccounts.js +24 -0
- package/rdspostgresql/getDbAccounts.js.map +1 -0
- package/rdspostgresql/index.d.ts +9 -0
- package/rdspostgresql/index.js +12 -1
- package/rdspostgresql/index.js.map +1 -1
- package/types/input.d.ts +87 -0
- package/types/output.d.ts +211 -0
package/types/input.d.ts
CHANGED
|
@@ -1543,6 +1543,16 @@ export declare namespace clb {
|
|
|
1543
1543
|
*/
|
|
1544
1544
|
value?: pulumi.Input<string>;
|
|
1545
1545
|
}
|
|
1546
|
+
interface NlbSecurityPolicyTag {
|
|
1547
|
+
/**
|
|
1548
|
+
* 用户标签的标签键。
|
|
1549
|
+
*/
|
|
1550
|
+
key?: pulumi.Input<string>;
|
|
1551
|
+
/**
|
|
1552
|
+
* 用户标签的标签值。
|
|
1553
|
+
*/
|
|
1554
|
+
value?: pulumi.Input<string>;
|
|
1555
|
+
}
|
|
1546
1556
|
interface NlbServerGroupHealthCheck {
|
|
1547
1557
|
/**
|
|
1548
1558
|
* 健康检查的域名。
|
|
@@ -1776,6 +1786,28 @@ export declare namespace clb {
|
|
|
1776
1786
|
value?: pulumi.Input<string>;
|
|
1777
1787
|
}
|
|
1778
1788
|
}
|
|
1789
|
+
export declare namespace cloudidentity {
|
|
1790
|
+
interface GroupMember {
|
|
1791
|
+
/**
|
|
1792
|
+
* 用户id。
|
|
1793
|
+
*/
|
|
1794
|
+
userId?: pulumi.Input<string>;
|
|
1795
|
+
}
|
|
1796
|
+
interface PermissionSetPermissionPolicy {
|
|
1797
|
+
/**
|
|
1798
|
+
* 策略语法内容。语法可参考 策略语法说明。
|
|
1799
|
+
*/
|
|
1800
|
+
permissionPolicyDocument?: pulumi.Input<string>;
|
|
1801
|
+
/**
|
|
1802
|
+
* 策略名称。
|
|
1803
|
+
*/
|
|
1804
|
+
permissionPolicyName?: pulumi.Input<string>;
|
|
1805
|
+
/**
|
|
1806
|
+
* 策略类型,System or Inline。
|
|
1807
|
+
*/
|
|
1808
|
+
permissionPolicyType?: pulumi.Input<string>;
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1779
1811
|
export declare namespace cloudmonitor {
|
|
1780
1812
|
interface RuleCondition {
|
|
1781
1813
|
/**
|
|
@@ -3404,6 +3436,61 @@ export declare namespace filenas {
|
|
|
3404
3436
|
*/
|
|
3405
3437
|
value?: pulumi.Input<string>;
|
|
3406
3438
|
}
|
|
3439
|
+
interface MountPointClient {
|
|
3440
|
+
/**
|
|
3441
|
+
* 客户端的私有网络 IP 地址。
|
|
3442
|
+
*/
|
|
3443
|
+
ip?: pulumi.Input<string>;
|
|
3444
|
+
/**
|
|
3445
|
+
* 挂载协议版本号。取值:NFSv3。
|
|
3446
|
+
*/
|
|
3447
|
+
protocolVersion?: pulumi.Input<string>;
|
|
3448
|
+
/**
|
|
3449
|
+
* 私有网络名称。
|
|
3450
|
+
*/
|
|
3451
|
+
vpcName?: pulumi.Input<string>;
|
|
3452
|
+
}
|
|
3453
|
+
interface MountPointPermissionGroup {
|
|
3454
|
+
/**
|
|
3455
|
+
* 权限组创建时间。
|
|
3456
|
+
*/
|
|
3457
|
+
createTime?: pulumi.Input<string>;
|
|
3458
|
+
/**
|
|
3459
|
+
* 权限组描述信息。
|
|
3460
|
+
*/
|
|
3461
|
+
description?: pulumi.Input<string>;
|
|
3462
|
+
/**
|
|
3463
|
+
* 关联该权限组的文件系统数量。
|
|
3464
|
+
*/
|
|
3465
|
+
fileSystemCount?: pulumi.Input<number>;
|
|
3466
|
+
/**
|
|
3467
|
+
* 文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
|
|
3468
|
+
*/
|
|
3469
|
+
fileSystemType?: pulumi.Input<string>;
|
|
3470
|
+
mountPoints?: pulumi.Input<pulumi.Input<inputs.filenas.MountPointPermissionGroupMountPoint>[]>;
|
|
3471
|
+
/**
|
|
3472
|
+
* 权限组名称。
|
|
3473
|
+
*/
|
|
3474
|
+
permissionGroupName?: pulumi.Input<string>;
|
|
3475
|
+
/**
|
|
3476
|
+
* 权限规则数量。
|
|
3477
|
+
*/
|
|
3478
|
+
permissionRuleCount?: pulumi.Input<number>;
|
|
3479
|
+
}
|
|
3480
|
+
interface MountPointPermissionGroupMountPoint {
|
|
3481
|
+
/**
|
|
3482
|
+
* 文件系统 ID。
|
|
3483
|
+
*/
|
|
3484
|
+
fileSystemId?: pulumi.Input<string>;
|
|
3485
|
+
/**
|
|
3486
|
+
* 挂载点 ID。
|
|
3487
|
+
*/
|
|
3488
|
+
mountPointId?: pulumi.Input<string>;
|
|
3489
|
+
/**
|
|
3490
|
+
* 挂载点名称。
|
|
3491
|
+
*/
|
|
3492
|
+
mountPointName?: pulumi.Input<string>;
|
|
3493
|
+
}
|
|
3407
3494
|
}
|
|
3408
3495
|
export declare namespace fwcenter {
|
|
3409
3496
|
interface DnsControlPolicyDomainListV1 {
|
package/types/output.d.ts
CHANGED
|
@@ -3068,6 +3068,16 @@ export declare namespace clb {
|
|
|
3068
3068
|
*/
|
|
3069
3069
|
value: string;
|
|
3070
3070
|
}
|
|
3071
|
+
interface GetNlbSecurityPolicyTag {
|
|
3072
|
+
/**
|
|
3073
|
+
* 用户标签的标签键。
|
|
3074
|
+
*/
|
|
3075
|
+
key: string;
|
|
3076
|
+
/**
|
|
3077
|
+
* 用户标签的标签值。
|
|
3078
|
+
*/
|
|
3079
|
+
value: string;
|
|
3080
|
+
}
|
|
3071
3081
|
interface GetNlbServerGroupHealthCheck {
|
|
3072
3082
|
/**
|
|
3073
3083
|
* 健康检查的域名。
|
|
@@ -3412,6 +3422,16 @@ export declare namespace clb {
|
|
|
3412
3422
|
*/
|
|
3413
3423
|
value: string;
|
|
3414
3424
|
}
|
|
3425
|
+
interface NlbSecurityPolicyTag {
|
|
3426
|
+
/**
|
|
3427
|
+
* 用户标签的标签键。
|
|
3428
|
+
*/
|
|
3429
|
+
key: string;
|
|
3430
|
+
/**
|
|
3431
|
+
* 用户标签的标签值。
|
|
3432
|
+
*/
|
|
3433
|
+
value: string;
|
|
3434
|
+
}
|
|
3415
3435
|
interface NlbServerGroupHealthCheck {
|
|
3416
3436
|
/**
|
|
3417
3437
|
* 健康检查的域名。
|
|
@@ -3645,6 +3665,84 @@ export declare namespace clb {
|
|
|
3645
3665
|
value: string;
|
|
3646
3666
|
}
|
|
3647
3667
|
}
|
|
3668
|
+
export declare namespace cloudidentity {
|
|
3669
|
+
interface GetGroupMember {
|
|
3670
|
+
/**
|
|
3671
|
+
* 用户描述信息
|
|
3672
|
+
*/
|
|
3673
|
+
description: string;
|
|
3674
|
+
/**
|
|
3675
|
+
* 用户显示名称。
|
|
3676
|
+
*/
|
|
3677
|
+
displayName: string;
|
|
3678
|
+
/**
|
|
3679
|
+
* 用户邮箱。
|
|
3680
|
+
*/
|
|
3681
|
+
email: string;
|
|
3682
|
+
/**
|
|
3683
|
+
* 用户身份类型。
|
|
3684
|
+
*/
|
|
3685
|
+
identityType: string;
|
|
3686
|
+
/**
|
|
3687
|
+
* 用户加入用户组的时间。
|
|
3688
|
+
*/
|
|
3689
|
+
joinTime: string;
|
|
3690
|
+
/**
|
|
3691
|
+
* 用户手机号。
|
|
3692
|
+
*/
|
|
3693
|
+
phone: string;
|
|
3694
|
+
/**
|
|
3695
|
+
* 用户来源。
|
|
3696
|
+
*/
|
|
3697
|
+
source: string;
|
|
3698
|
+
/**
|
|
3699
|
+
* 用户id。
|
|
3700
|
+
*/
|
|
3701
|
+
userId: string;
|
|
3702
|
+
/**
|
|
3703
|
+
* 用户名。
|
|
3704
|
+
*/
|
|
3705
|
+
userName: string;
|
|
3706
|
+
}
|
|
3707
|
+
interface GetPermissionSetPermissionPolicy {
|
|
3708
|
+
/**
|
|
3709
|
+
* 策略创建时间。
|
|
3710
|
+
*/
|
|
3711
|
+
createdTime: string;
|
|
3712
|
+
/**
|
|
3713
|
+
* 策略语法内容。语法可参考 策略语法说明。
|
|
3714
|
+
*/
|
|
3715
|
+
permissionPolicyDocument: string;
|
|
3716
|
+
/**
|
|
3717
|
+
* 策略名称。
|
|
3718
|
+
*/
|
|
3719
|
+
permissionPolicyName: string;
|
|
3720
|
+
/**
|
|
3721
|
+
* 策略类型,System or Inline。
|
|
3722
|
+
*/
|
|
3723
|
+
permissionPolicyType: string;
|
|
3724
|
+
}
|
|
3725
|
+
interface GroupMember {
|
|
3726
|
+
/**
|
|
3727
|
+
* 用户id。
|
|
3728
|
+
*/
|
|
3729
|
+
userId: string;
|
|
3730
|
+
}
|
|
3731
|
+
interface PermissionSetPermissionPolicy {
|
|
3732
|
+
/**
|
|
3733
|
+
* 策略语法内容。语法可参考 策略语法说明。
|
|
3734
|
+
*/
|
|
3735
|
+
permissionPolicyDocument: string;
|
|
3736
|
+
/**
|
|
3737
|
+
* 策略名称。
|
|
3738
|
+
*/
|
|
3739
|
+
permissionPolicyName: string;
|
|
3740
|
+
/**
|
|
3741
|
+
* 策略类型,System or Inline。
|
|
3742
|
+
*/
|
|
3743
|
+
permissionPolicyType: string;
|
|
3744
|
+
}
|
|
3745
|
+
}
|
|
3648
3746
|
export declare namespace cloudmonitor {
|
|
3649
3747
|
interface GetRuleCondition {
|
|
3650
3748
|
/**
|
|
@@ -6934,6 +7032,64 @@ export declare namespace filenas {
|
|
|
6934
7032
|
*/
|
|
6935
7033
|
value: string;
|
|
6936
7034
|
}
|
|
7035
|
+
interface GetMountPointClient {
|
|
7036
|
+
/**
|
|
7037
|
+
* 客户端的私有网络 IP 地址。
|
|
7038
|
+
*/
|
|
7039
|
+
ip: string;
|
|
7040
|
+
/**
|
|
7041
|
+
* 挂载协议版本号。取值:NFSv3。
|
|
7042
|
+
*/
|
|
7043
|
+
protocolVersion: string;
|
|
7044
|
+
/**
|
|
7045
|
+
* 私有网络名称。
|
|
7046
|
+
*/
|
|
7047
|
+
vpcName: string;
|
|
7048
|
+
}
|
|
7049
|
+
interface GetMountPointPermissionGroup {
|
|
7050
|
+
/**
|
|
7051
|
+
* 权限组创建时间。
|
|
7052
|
+
*/
|
|
7053
|
+
createTime: string;
|
|
7054
|
+
/**
|
|
7055
|
+
* 权限组描述信息。
|
|
7056
|
+
*/
|
|
7057
|
+
description: string;
|
|
7058
|
+
/**
|
|
7059
|
+
* 关联该权限组的文件系统数量。
|
|
7060
|
+
*/
|
|
7061
|
+
fileSystemCount: number;
|
|
7062
|
+
/**
|
|
7063
|
+
* 文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
|
|
7064
|
+
*/
|
|
7065
|
+
fileSystemType: string;
|
|
7066
|
+
/**
|
|
7067
|
+
* 使用该权限组的挂载点信息。
|
|
7068
|
+
*/
|
|
7069
|
+
mountPoints: outputs.filenas.GetMountPointPermissionGroupMountPoint[];
|
|
7070
|
+
/**
|
|
7071
|
+
* 权限组名称。
|
|
7072
|
+
*/
|
|
7073
|
+
permissionGroupName: string;
|
|
7074
|
+
/**
|
|
7075
|
+
* 权限规则数量。
|
|
7076
|
+
*/
|
|
7077
|
+
permissionRuleCount: number;
|
|
7078
|
+
}
|
|
7079
|
+
interface GetMountPointPermissionGroupMountPoint {
|
|
7080
|
+
/**
|
|
7081
|
+
* 文件系统 ID。
|
|
7082
|
+
*/
|
|
7083
|
+
fileSystemId: string;
|
|
7084
|
+
/**
|
|
7085
|
+
* 挂载点 ID。
|
|
7086
|
+
*/
|
|
7087
|
+
mountPointId: string;
|
|
7088
|
+
/**
|
|
7089
|
+
* 挂载点名称。
|
|
7090
|
+
*/
|
|
7091
|
+
mountPointName: string;
|
|
7092
|
+
}
|
|
6937
7093
|
interface InstanceCachePerformance {
|
|
6938
7094
|
/**
|
|
6939
7095
|
* 预配置带宽,用于增加文件系统带宽。
|
|
@@ -6964,6 +7120,61 @@ export declare namespace filenas {
|
|
|
6964
7120
|
*/
|
|
6965
7121
|
value: string;
|
|
6966
7122
|
}
|
|
7123
|
+
interface MountPointClient {
|
|
7124
|
+
/**
|
|
7125
|
+
* 客户端的私有网络 IP 地址。
|
|
7126
|
+
*/
|
|
7127
|
+
ip: string;
|
|
7128
|
+
/**
|
|
7129
|
+
* 挂载协议版本号。取值:NFSv3。
|
|
7130
|
+
*/
|
|
7131
|
+
protocolVersion: string;
|
|
7132
|
+
/**
|
|
7133
|
+
* 私有网络名称。
|
|
7134
|
+
*/
|
|
7135
|
+
vpcName: string;
|
|
7136
|
+
}
|
|
7137
|
+
interface MountPointPermissionGroup {
|
|
7138
|
+
/**
|
|
7139
|
+
* 权限组创建时间。
|
|
7140
|
+
*/
|
|
7141
|
+
createTime: string;
|
|
7142
|
+
/**
|
|
7143
|
+
* 权限组描述信息。
|
|
7144
|
+
*/
|
|
7145
|
+
description: string;
|
|
7146
|
+
/**
|
|
7147
|
+
* 关联该权限组的文件系统数量。
|
|
7148
|
+
*/
|
|
7149
|
+
fileSystemCount: number;
|
|
7150
|
+
/**
|
|
7151
|
+
* 文件系统类型。取值说明如下:Extreme:NAS 极速型。Capacity:NAS 容量型。Cache:NAS 缓存型。
|
|
7152
|
+
*/
|
|
7153
|
+
fileSystemType: string;
|
|
7154
|
+
mountPoints: outputs.filenas.MountPointPermissionGroupMountPoint[];
|
|
7155
|
+
/**
|
|
7156
|
+
* 权限组名称。
|
|
7157
|
+
*/
|
|
7158
|
+
permissionGroupName: string;
|
|
7159
|
+
/**
|
|
7160
|
+
* 权限规则数量。
|
|
7161
|
+
*/
|
|
7162
|
+
permissionRuleCount: number;
|
|
7163
|
+
}
|
|
7164
|
+
interface MountPointPermissionGroupMountPoint {
|
|
7165
|
+
/**
|
|
7166
|
+
* 文件系统 ID。
|
|
7167
|
+
*/
|
|
7168
|
+
fileSystemId: string;
|
|
7169
|
+
/**
|
|
7170
|
+
* 挂载点 ID。
|
|
7171
|
+
*/
|
|
7172
|
+
mountPointId: string;
|
|
7173
|
+
/**
|
|
7174
|
+
* 挂载点名称。
|
|
7175
|
+
*/
|
|
7176
|
+
mountPointName: string;
|
|
7177
|
+
}
|
|
6967
7178
|
}
|
|
6968
7179
|
export declare namespace fwcenter {
|
|
6969
7180
|
interface DnsControlPolicyDomainListV1 {
|