@volcengine/pulumi-volcenginecc 0.0.47 → 0.0.48
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/id/getOauth2CredentialProvider.d.ts +74 -0
- package/id/getOauth2CredentialProvider.d.ts.map +1 -0
- package/id/getOauth2CredentialProvider.js +51 -0
- package/id/getOauth2CredentialProvider.js.map +1 -0
- package/id/getOauth2CredentialProviders.d.ts +23 -0
- package/id/getOauth2CredentialProviders.d.ts.map +1 -0
- package/id/getOauth2CredentialProviders.js +47 -0
- package/id/getOauth2CredentialProviders.js.map +1 -0
- package/id/index.d.ts +9 -0
- package/id/index.d.ts.map +1 -1
- package/id/index.js +12 -1
- package/id/index.js.map +1 -1
- package/id/oauth2CredentialProvider.d.ts +191 -0
- package/id/oauth2CredentialProvider.d.ts.map +1 -0
- package/id/oauth2CredentialProvider.js +157 -0
- package/id/oauth2CredentialProvider.js.map +1 -0
- package/kms/getSecret.d.ts +29 -0
- package/kms/getSecret.d.ts.map +1 -1
- package/kms/getSecret.js.map +1 -1
- package/kms/secret.d.ts +80 -0
- package/kms/secret.d.ts.map +1 -1
- package/kms/secret.js +14 -0
- package/kms/secret.js.map +1 -1
- package/package.json +1 -1
- package/tls/alarmContentTemplateType.d.ts +263 -0
- package/tls/alarmContentTemplateType.d.ts.map +1 -0
- package/tls/alarmContentTemplateType.js +183 -0
- package/tls/alarmContentTemplateType.js.map +1 -0
- package/tls/getAlarmContentTemplateType.d.ts +90 -0
- package/tls/getAlarmContentTemplateType.d.ts.map +1 -0
- package/tls/getAlarmContentTemplateType.js +51 -0
- package/tls/getAlarmContentTemplateType.js.map +1 -0
- package/tls/getAlarmContentTemplateTypes.d.ts +23 -0
- package/tls/getAlarmContentTemplateTypes.d.ts.map +1 -0
- package/tls/getAlarmContentTemplateTypes.js +47 -0
- package/tls/getAlarmContentTemplateTypes.js.map +1 -0
- package/tls/index.d.ts +9 -0
- package/tls/index.d.ts.map +1 -1
- package/tls/index.js +13 -2
- package/tls/index.js.map +1 -1
- package/tos/bucket.d.ts +1 -1
- package/tos/bucket.js +1 -1
- package/tos/getObject.d.ts +118 -0
- package/tos/getObject.d.ts.map +1 -0
- package/tos/getObject.js +51 -0
- package/tos/getObject.js.map +1 -0
- package/tos/getObjects.d.ts +23 -0
- package/tos/getObjects.d.ts.map +1 -0
- package/tos/getObjects.js +47 -0
- package/tos/getObjects.js.map +1 -0
- package/tos/index.d.ts +9 -0
- package/tos/index.d.ts.map +1 -1
- package/tos/index.js +13 -1
- package/tos/index.js.map +1 -1
- package/tos/tosObject.d.ts +294 -0
- package/tos/tosObject.d.ts.map +1 -0
- package/tos/tosObject.js +168 -0
- package/tos/tosObject.js.map +1 -0
- package/types/input.d.ts +680 -0
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +1404 -47
- package/types/output.d.ts.map +1 -1
- package/veenedge/getVeen.d.ts +206 -0
- package/veenedge/getVeen.d.ts.map +1 -0
- package/veenedge/getVeen.js +51 -0
- package/veenedge/getVeen.js.map +1 -0
- package/veenedge/getVeens.d.ts +23 -0
- package/veenedge/getVeens.d.ts.map +1 -0
- package/veenedge/getVeens.js +47 -0
- package/veenedge/getVeens.js.map +1 -0
- package/veenedge/index.d.ts +9 -0
- package/veenedge/index.d.ts.map +1 -1
- package/veenedge/index.js +12 -1
- package/veenedge/index.js.map +1 -1
- package/veenedge/veen.d.ts +475 -0
- package/veenedge/veen.d.ts.map +1 -0
- package/veenedge/veen.js +211 -0
- package/veenedge/veen.js.map +1 -0
package/types/input.d.ts
CHANGED
|
@@ -8054,6 +8054,119 @@ export declare namespace id {
|
|
|
8054
8054
|
*/
|
|
8055
8055
|
discoveryUrl?: pulumi.Input<string | undefined>;
|
|
8056
8056
|
}
|
|
8057
|
+
interface Oauth2CredentialProviderConfig {
|
|
8058
|
+
/**
|
|
8059
|
+
* OAuth2 Client ID。
|
|
8060
|
+
*/
|
|
8061
|
+
clientId?: pulumi.Input<string | undefined>;
|
|
8062
|
+
/**
|
|
8063
|
+
* OAuth2 Client Secret。
|
|
8064
|
+
*/
|
|
8065
|
+
clientSecret?: pulumi.Input<string | undefined>;
|
|
8066
|
+
/**
|
|
8067
|
+
* Default custom parameters in GetResourceOauth2Token request
|
|
8068
|
+
*/
|
|
8069
|
+
customParameters?: pulumi.Input<inputs.id.Oauth2CredentialProviderConfigCustomParameters | undefined>;
|
|
8070
|
+
/**
|
|
8071
|
+
* Default Flow in GetResourceOauth2Token request. Optional values: USER_FEDERATION, M2M
|
|
8072
|
+
*/
|
|
8073
|
+
flow?: pulumi.Input<string | undefined>;
|
|
8074
|
+
/**
|
|
8075
|
+
* Default ForceAuthentication in GetResourceOauth2Token request
|
|
8076
|
+
*/
|
|
8077
|
+
forceAuthentication?: pulumi.Input<boolean | undefined>;
|
|
8078
|
+
/**
|
|
8079
|
+
* Maximum token validity (seconds)
|
|
8080
|
+
*/
|
|
8081
|
+
maxExpires?: pulumi.Input<number | undefined>;
|
|
8082
|
+
/**
|
|
8083
|
+
* Custom metadata
|
|
8084
|
+
*/
|
|
8085
|
+
metadata?: pulumi.Input<string | undefined>;
|
|
8086
|
+
/**
|
|
8087
|
+
* OAuth2 discovery information
|
|
8088
|
+
*/
|
|
8089
|
+
oauth2Discovery?: pulumi.Input<inputs.id.Oauth2CredentialProviderConfigOauth2Discovery | undefined>;
|
|
8090
|
+
/**
|
|
8091
|
+
* Default RedirectUrl in GetResourceOauth2Token request
|
|
8092
|
+
*/
|
|
8093
|
+
redirectUrl?: pulumi.Input<string | undefined>;
|
|
8094
|
+
/**
|
|
8095
|
+
* Default Scopes in GetResourceOauth2Token request
|
|
8096
|
+
*/
|
|
8097
|
+
scopes?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
8098
|
+
/**
|
|
8099
|
+
* Encrypted storage configuration
|
|
8100
|
+
*/
|
|
8101
|
+
secretStorage?: pulumi.Input<inputs.id.Oauth2CredentialProviderConfigSecretStorage | undefined>;
|
|
8102
|
+
}
|
|
8103
|
+
interface Oauth2CredentialProviderConfigCustomParameters {
|
|
8104
|
+
/**
|
|
8105
|
+
* Custom parameter entry list
|
|
8106
|
+
* Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
|
|
8107
|
+
*/
|
|
8108
|
+
entries?: pulumi.Input<pulumi.Input<inputs.id.Oauth2CredentialProviderConfigCustomParametersEntry>[] | undefined>;
|
|
8109
|
+
}
|
|
8110
|
+
interface Oauth2CredentialProviderConfigCustomParametersEntry {
|
|
8111
|
+
/**
|
|
8112
|
+
* Parameter key
|
|
8113
|
+
*/
|
|
8114
|
+
key?: pulumi.Input<string | undefined>;
|
|
8115
|
+
/**
|
|
8116
|
+
* Parameter value
|
|
8117
|
+
*/
|
|
8118
|
+
value?: pulumi.Input<string | undefined>;
|
|
8119
|
+
}
|
|
8120
|
+
interface Oauth2CredentialProviderConfigOauth2Discovery {
|
|
8121
|
+
/**
|
|
8122
|
+
* Authorization server metadata
|
|
8123
|
+
*/
|
|
8124
|
+
authorizationServerMetadata?: pulumi.Input<inputs.id.Oauth2CredentialProviderConfigOauth2DiscoveryAuthorizationServerMetadata | undefined>;
|
|
8125
|
+
/**
|
|
8126
|
+
* DiscoveryUrl field
|
|
8127
|
+
*/
|
|
8128
|
+
discoveryUrl?: pulumi.Input<string | undefined>;
|
|
8129
|
+
}
|
|
8130
|
+
interface Oauth2CredentialProviderConfigOauth2DiscoveryAuthorizationServerMetadata {
|
|
8131
|
+
/**
|
|
8132
|
+
* AuthorizationEndpoint field
|
|
8133
|
+
*/
|
|
8134
|
+
authorizationEndpoint?: pulumi.Input<string | undefined>;
|
|
8135
|
+
/**
|
|
8136
|
+
* CodeChallengeMethodsSupported field
|
|
8137
|
+
*/
|
|
8138
|
+
codeChallengeMethodsSupporteds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
8139
|
+
/**
|
|
8140
|
+
* Issuer field
|
|
8141
|
+
*/
|
|
8142
|
+
issuer?: pulumi.Input<string | undefined>;
|
|
8143
|
+
/**
|
|
8144
|
+
* RegistrationEndpoint field
|
|
8145
|
+
*/
|
|
8146
|
+
registrationEndpoint?: pulumi.Input<string | undefined>;
|
|
8147
|
+
/**
|
|
8148
|
+
* ResponseTypes field
|
|
8149
|
+
*/
|
|
8150
|
+
responseTypes?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
8151
|
+
/**
|
|
8152
|
+
* RevocationEndpoint field
|
|
8153
|
+
*/
|
|
8154
|
+
revocationEndpoint?: pulumi.Input<string | undefined>;
|
|
8155
|
+
/**
|
|
8156
|
+
* TokenEndpoint field
|
|
8157
|
+
*/
|
|
8158
|
+
tokenEndpoint?: pulumi.Input<string | undefined>;
|
|
8159
|
+
}
|
|
8160
|
+
interface Oauth2CredentialProviderConfigSecretStorage {
|
|
8161
|
+
/**
|
|
8162
|
+
* KMS key TRN for encrypted credential value. If not specified, the default key is used
|
|
8163
|
+
*/
|
|
8164
|
+
encryptionKey?: pulumi.Input<string | undefined>;
|
|
8165
|
+
/**
|
|
8166
|
+
* Encrypted storage type. 0: SecretManager, 1: KMS
|
|
8167
|
+
*/
|
|
8168
|
+
storageType?: pulumi.Input<number | undefined>;
|
|
8169
|
+
}
|
|
8057
8170
|
interface PermissionNamespaceTag {
|
|
8058
8171
|
/**
|
|
8059
8172
|
* Tag Key
|
|
@@ -8511,6 +8624,48 @@ export declare namespace kms {
|
|
|
8511
8624
|
*/
|
|
8512
8625
|
value?: pulumi.Input<string | undefined>;
|
|
8513
8626
|
}
|
|
8627
|
+
interface SecretSecretRestore {
|
|
8628
|
+
/**
|
|
8629
|
+
* Complete credential data returned by backup, in JSON format.
|
|
8630
|
+
*/
|
|
8631
|
+
backupData?: pulumi.Input<string | undefined>;
|
|
8632
|
+
/**
|
|
8633
|
+
* Encrypted data key returned by backup, Base64 encoded.
|
|
8634
|
+
*/
|
|
8635
|
+
secretDataKey?: pulumi.Input<string | undefined>;
|
|
8636
|
+
/**
|
|
8637
|
+
* Signature of the backup data, Base64 encoded.
|
|
8638
|
+
*/
|
|
8639
|
+
signature?: pulumi.Input<string | undefined>;
|
|
8640
|
+
}
|
|
8641
|
+
interface SecretSecretRestoreRead {
|
|
8642
|
+
/**
|
|
8643
|
+
* Complete credential data returned by backup, in JSON format.
|
|
8644
|
+
*/
|
|
8645
|
+
backupData?: pulumi.Input<string | undefined>;
|
|
8646
|
+
/**
|
|
8647
|
+
* Encrypted data key returned by backup, Base64 encoded.
|
|
8648
|
+
*/
|
|
8649
|
+
secretDataKey?: pulumi.Input<string | undefined>;
|
|
8650
|
+
/**
|
|
8651
|
+
* Signature of the backup data, Base64 encoded.
|
|
8652
|
+
*/
|
|
8653
|
+
signature?: pulumi.Input<string | undefined>;
|
|
8654
|
+
}
|
|
8655
|
+
interface SecretSecretVersion {
|
|
8656
|
+
/**
|
|
8657
|
+
* Credential version creation time.
|
|
8658
|
+
*/
|
|
8659
|
+
creationDate?: pulumi.Input<number | undefined>;
|
|
8660
|
+
/**
|
|
8661
|
+
* Unique identifier for the credential version, in UUID format.
|
|
8662
|
+
*/
|
|
8663
|
+
versionId?: pulumi.Input<string | undefined>;
|
|
8664
|
+
/**
|
|
8665
|
+
* Credential version tags.
|
|
8666
|
+
*/
|
|
8667
|
+
versionStage?: pulumi.Input<string | undefined>;
|
|
8668
|
+
}
|
|
8514
8669
|
}
|
|
8515
8670
|
export declare namespace mongodb {
|
|
8516
8671
|
interface AccountAccountPrivilege {
|
|
@@ -11315,6 +11470,88 @@ export declare namespace tls {
|
|
|
11315
11470
|
*/
|
|
11316
11471
|
sms?: pulumi.Input<number | undefined>;
|
|
11317
11472
|
}
|
|
11473
|
+
interface AlarmContentTemplateTypeDingTalk {
|
|
11474
|
+
/**
|
|
11475
|
+
* Alert notification content. Supports plain text format, content variables, and content functions. Note: The maximum length of the notification content after variable rendering is 8 KB. Content exceeding this limit will be truncated. If the body is left blank, the default content will be used.
|
|
11476
|
+
*/
|
|
11477
|
+
content?: pulumi.Input<string | undefined>;
|
|
11478
|
+
/**
|
|
11479
|
+
* The language for fixed content in alert notifications. Available values: zh-CN, en-US.
|
|
11480
|
+
*/
|
|
11481
|
+
locale?: pulumi.Input<string | undefined>;
|
|
11482
|
+
/**
|
|
11483
|
+
* Alert notification subject
|
|
11484
|
+
*/
|
|
11485
|
+
title?: pulumi.Input<string | undefined>;
|
|
11486
|
+
}
|
|
11487
|
+
interface AlarmContentTemplateTypeEmail {
|
|
11488
|
+
/**
|
|
11489
|
+
* Alert notification content. Supports plain text format, content variables, and content functions. Note: The maximum length of the notification content after variable rendering is 8 KB. Content exceeding this limit will be truncated. If the body is left blank, the default content will be used.
|
|
11490
|
+
*/
|
|
11491
|
+
content?: pulumi.Input<string | undefined>;
|
|
11492
|
+
/**
|
|
11493
|
+
* The language for fixed content in alert notifications. Available values: zh-CN, en-US.
|
|
11494
|
+
*/
|
|
11495
|
+
locale?: pulumi.Input<string | undefined>;
|
|
11496
|
+
/**
|
|
11497
|
+
* Email notification subject
|
|
11498
|
+
*/
|
|
11499
|
+
subject?: pulumi.Input<string | undefined>;
|
|
11500
|
+
}
|
|
11501
|
+
interface AlarmContentTemplateTypeLark {
|
|
11502
|
+
/**
|
|
11503
|
+
* Alert notification content. Supports plain text format, content variables, and content functions. Note: The maximum length of the notification content after variable rendering is 8 KB. Content exceeding this limit will be truncated. If the body is left blank, the default content will be used.
|
|
11504
|
+
*/
|
|
11505
|
+
content?: pulumi.Input<string | undefined>;
|
|
11506
|
+
/**
|
|
11507
|
+
* The language for fixed content in alert notifications. Available values: zh-CN, en-US.
|
|
11508
|
+
*/
|
|
11509
|
+
locale?: pulumi.Input<string | undefined>;
|
|
11510
|
+
/**
|
|
11511
|
+
* Alert notification subject
|
|
11512
|
+
*/
|
|
11513
|
+
title?: pulumi.Input<string | undefined>;
|
|
11514
|
+
}
|
|
11515
|
+
interface AlarmContentTemplateTypeSms {
|
|
11516
|
+
/**
|
|
11517
|
+
* Alert notification content. Supports plain text format, content variables, and content functions. Note: The maximum length of the notification content after variable rendering is 8 KB. Content exceeding this limit will be truncated. If the body is left blank, the default content will be used.
|
|
11518
|
+
*/
|
|
11519
|
+
content?: pulumi.Input<string | undefined>;
|
|
11520
|
+
/**
|
|
11521
|
+
* The language for fixed content in alert notifications. Available values: zh-CN, en-US.
|
|
11522
|
+
*/
|
|
11523
|
+
locale?: pulumi.Input<string | undefined>;
|
|
11524
|
+
}
|
|
11525
|
+
interface AlarmContentTemplateTypeVms {
|
|
11526
|
+
/**
|
|
11527
|
+
* Alert notification content. Supports plain text format, content variables, and content functions. Note: The maximum length of the notification content after variable rendering is 8 KB. Content exceeding this limit will be truncated. If the body is left blank, the default content will be used.
|
|
11528
|
+
*/
|
|
11529
|
+
content?: pulumi.Input<string | undefined>;
|
|
11530
|
+
/**
|
|
11531
|
+
* The language for fixed content in alert notifications. Available values: zh-CN, en-US.
|
|
11532
|
+
*/
|
|
11533
|
+
locale?: pulumi.Input<string | undefined>;
|
|
11534
|
+
}
|
|
11535
|
+
interface AlarmContentTemplateTypeWeChat {
|
|
11536
|
+
/**
|
|
11537
|
+
* Alert notification content. Supports plain text format, content variables, and content functions. Note: The maximum length of the notification content after variable rendering is 8 KB. Content exceeding this limit will be truncated. If the body is left blank, the default content will be used.
|
|
11538
|
+
*/
|
|
11539
|
+
content?: pulumi.Input<string | undefined>;
|
|
11540
|
+
/**
|
|
11541
|
+
* The language for fixed content in alert notifications. Available values: zh-CN, en-US.
|
|
11542
|
+
*/
|
|
11543
|
+
locale?: pulumi.Input<string | undefined>;
|
|
11544
|
+
/**
|
|
11545
|
+
* Alert notification subject
|
|
11546
|
+
*/
|
|
11547
|
+
title?: pulumi.Input<string | undefined>;
|
|
11548
|
+
}
|
|
11549
|
+
interface AlarmContentTemplateTypeWebhook {
|
|
11550
|
+
/**
|
|
11551
|
+
* Alert notification content, usually in JSON format. Supports content variables and content functions. Note: The maximum length of the notification content after variable rendering is 8 KB. Content exceeding this limit will be truncated. If the body is left blank, the default content will be used.
|
|
11552
|
+
*/
|
|
11553
|
+
content?: pulumi.Input<string | undefined>;
|
|
11554
|
+
}
|
|
11318
11555
|
interface AlarmJoinConfiguration {
|
|
11319
11556
|
/**
|
|
11320
11557
|
* Expression used for left join or right join.
|
|
@@ -13830,6 +14067,40 @@ export declare namespace tos {
|
|
|
13830
14067
|
*/
|
|
13831
14068
|
replaceKeyWith?: pulumi.Input<string | undefined>;
|
|
13832
14069
|
}
|
|
14070
|
+
interface TosObjectAccountAcl {
|
|
14071
|
+
/**
|
|
14072
|
+
* Authorized account ID.
|
|
14073
|
+
*/
|
|
14074
|
+
accountId?: pulumi.Input<string | undefined>;
|
|
14075
|
+
/**
|
|
14076
|
+
* Authorized principal type. Currently, only CanonicalUser is supported.
|
|
14077
|
+
*/
|
|
14078
|
+
aclType?: pulumi.Input<string | undefined>;
|
|
14079
|
+
/**
|
|
14080
|
+
* Authorization permission type. Includes FULL*CONTROL, READ, READ*ACP, WRITE, WRITE_ACP.
|
|
14081
|
+
*/
|
|
14082
|
+
permission?: pulumi.Input<string | undefined>;
|
|
14083
|
+
}
|
|
14084
|
+
interface TosObjectMetadata {
|
|
14085
|
+
/**
|
|
14086
|
+
* Tag key.
|
|
14087
|
+
*/
|
|
14088
|
+
key?: pulumi.Input<string | undefined>;
|
|
14089
|
+
/**
|
|
14090
|
+
* Tag value.
|
|
14091
|
+
*/
|
|
14092
|
+
value?: pulumi.Input<string | undefined>;
|
|
14093
|
+
}
|
|
14094
|
+
interface TosObjectTag {
|
|
14095
|
+
/**
|
|
14096
|
+
* Tag key.
|
|
14097
|
+
*/
|
|
14098
|
+
key?: pulumi.Input<string | undefined>;
|
|
14099
|
+
/**
|
|
14100
|
+
* Tag value.
|
|
14101
|
+
*/
|
|
14102
|
+
value?: pulumi.Input<string | undefined>;
|
|
14103
|
+
}
|
|
13833
14104
|
}
|
|
13834
14105
|
export declare namespace transitrouter {
|
|
13835
14106
|
interface DirectConnectGatewayAttachmentTag {
|
|
@@ -14633,6 +14904,415 @@ export declare namespace veenedge {
|
|
|
14633
14904
|
*/
|
|
14634
14905
|
value?: pulumi.Input<string | undefined>;
|
|
14635
14906
|
}
|
|
14907
|
+
interface VeenAdvancedConfiguration {
|
|
14908
|
+
/**
|
|
14909
|
+
* Whether deletion protection is enabled for the edge instance. true: enabled. false: not enabled.
|
|
14910
|
+
*/
|
|
14911
|
+
deleteProtection?: pulumi.Input<boolean | undefined>;
|
|
14912
|
+
}
|
|
14913
|
+
interface VeenBandwidthPeakLimitIspConfigs {
|
|
14914
|
+
/**
|
|
14915
|
+
* Bandwidth throttling value for this carrier.
|
|
14916
|
+
*/
|
|
14917
|
+
bandwidthPeakLimit?: pulumi.Input<string | undefined>;
|
|
14918
|
+
/**
|
|
14919
|
+
* Carrier. Value range: CMCC: China Mobile; CTCC: China Telecom; CUCC: China Unicom
|
|
14920
|
+
*/
|
|
14921
|
+
isp?: pulumi.Input<string | undefined>;
|
|
14922
|
+
}
|
|
14923
|
+
interface VeenBilling {
|
|
14924
|
+
/**
|
|
14925
|
+
* Bandwidth billing method: MonthlyP95: Billed by monthly 95th percentile. DailyPeak: Billed by daily peak. If you require daily peak billing or other billing methods, please submit a ticket.
|
|
14926
|
+
*/
|
|
14927
|
+
bandwidthBillingMethod?: pulumi.Input<string | undefined>;
|
|
14928
|
+
/**
|
|
14929
|
+
* Compute billing method: MonthlyPeak: monthly peak billing. DailyPeak: daily peak billing. If you require daily peak billing or other billing methods, please submit a ticket. PrePaid: yearly/monthly subscription.
|
|
14930
|
+
*/
|
|
14931
|
+
computingBillingMethod?: pulumi.Input<string | undefined>;
|
|
14932
|
+
}
|
|
14933
|
+
interface VeenBillingConfig {
|
|
14934
|
+
/**
|
|
14935
|
+
* Enable auto-renewal. Value options: true: enable auto-renewal. false (default): disable auto-renewal.
|
|
14936
|
+
*/
|
|
14937
|
+
autoRenew?: pulumi.Input<boolean | undefined>;
|
|
14938
|
+
/**
|
|
14939
|
+
* Unit of resource purchase duration. This parameter must be used together with the pre*paid*period_number parameter. Valid values: monthly: month
|
|
14940
|
+
*/
|
|
14941
|
+
prePaidPeriod?: pulumi.Input<string | undefined>;
|
|
14942
|
+
/**
|
|
14943
|
+
* Resource purchase duration. This parameter must be used together with the pre*paid*period parameter. Valid values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36
|
|
14944
|
+
*/
|
|
14945
|
+
prePaidPeriodNumber?: pulumi.Input<number | undefined>;
|
|
14946
|
+
}
|
|
14947
|
+
interface VeenCluster {
|
|
14948
|
+
/**
|
|
14949
|
+
* Node alias.
|
|
14950
|
+
*/
|
|
14951
|
+
alias?: pulumi.Input<string | undefined>;
|
|
14952
|
+
/**
|
|
14953
|
+
* City where the node is located.
|
|
14954
|
+
*/
|
|
14955
|
+
city?: pulumi.Input<string | undefined>;
|
|
14956
|
+
/**
|
|
14957
|
+
* Name of the node
|
|
14958
|
+
*/
|
|
14959
|
+
clusterName?: pulumi.Input<string | undefined>;
|
|
14960
|
+
/**
|
|
14961
|
+
* Country where the node is located.
|
|
14962
|
+
*/
|
|
14963
|
+
country?: pulumi.Input<string | undefined>;
|
|
14964
|
+
/**
|
|
14965
|
+
* Network carrier of the node.
|
|
14966
|
+
*/
|
|
14967
|
+
isp?: pulumi.Input<string | undefined>;
|
|
14968
|
+
/**
|
|
14969
|
+
* Node billing category: 1: Beijing, Shanghai, Guangzhou; 2: regional centers; 3: general cities
|
|
14970
|
+
*/
|
|
14971
|
+
level?: pulumi.Input<string | undefined>;
|
|
14972
|
+
/**
|
|
14973
|
+
* Province where the node is located.
|
|
14974
|
+
*/
|
|
14975
|
+
province?: pulumi.Input<string | undefined>;
|
|
14976
|
+
/**
|
|
14977
|
+
* Region where the node is located.
|
|
14978
|
+
*/
|
|
14979
|
+
region?: pulumi.Input<string | undefined>;
|
|
14980
|
+
}
|
|
14981
|
+
interface VeenCustomData {
|
|
14982
|
+
/**
|
|
14983
|
+
* Original user data content. When IsBase64 is true, the data should be Base64 encoded.
|
|
14984
|
+
*/
|
|
14985
|
+
data?: pulumi.Input<string | undefined>;
|
|
14986
|
+
/**
|
|
14987
|
+
* Whether the data uses Base64 encoding
|
|
14988
|
+
*/
|
|
14989
|
+
isBase64?: pulumi.Input<boolean | undefined>;
|
|
14990
|
+
}
|
|
14991
|
+
interface VeenGpu {
|
|
14992
|
+
/**
|
|
14993
|
+
* GPU specification information
|
|
14994
|
+
* Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
|
|
14995
|
+
*/
|
|
14996
|
+
gpuses?: pulumi.Input<pulumi.Input<inputs.veenedge.VeenGpuGpus>[] | undefined>;
|
|
14997
|
+
}
|
|
14998
|
+
interface VeenGpuGpus {
|
|
14999
|
+
/**
|
|
15000
|
+
* GPU specification
|
|
15001
|
+
*/
|
|
15002
|
+
gpuSpec?: pulumi.Input<inputs.veenedge.VeenGpuGpusGpuSpec | undefined>;
|
|
15003
|
+
/**
|
|
15004
|
+
* GPU quantity.
|
|
15005
|
+
*/
|
|
15006
|
+
num?: pulumi.Input<number | undefined>;
|
|
15007
|
+
}
|
|
15008
|
+
interface VeenGpuGpusGpuSpec {
|
|
15009
|
+
/**
|
|
15010
|
+
* GPU type.
|
|
15011
|
+
*/
|
|
15012
|
+
gpuType?: pulumi.Input<string | undefined>;
|
|
15013
|
+
}
|
|
15014
|
+
interface VeenImage {
|
|
15015
|
+
/**
|
|
15016
|
+
* Whether to disable VGA. Value range: true: disable VGA; false: enable VGA.
|
|
15017
|
+
*/
|
|
15018
|
+
disableVga?: pulumi.Input<boolean | undefined>;
|
|
15019
|
+
/**
|
|
15020
|
+
* Image boot mode: BIOS, UEFI
|
|
15021
|
+
*/
|
|
15022
|
+
imageBootMode?: pulumi.Input<string | undefined>;
|
|
15023
|
+
/**
|
|
15024
|
+
* Image ID.
|
|
15025
|
+
*/
|
|
15026
|
+
imageIdentity?: pulumi.Input<string | undefined>;
|
|
15027
|
+
/**
|
|
15028
|
+
* Image name.
|
|
15029
|
+
*/
|
|
15030
|
+
imageName?: pulumi.Input<string | undefined>;
|
|
15031
|
+
/**
|
|
15032
|
+
* Image attributes: BENBuildImage: image created from edge instance. LocalImage: local image. PublicBaseImage: public image. UrlImage: image uploaded via URL
|
|
15033
|
+
*/
|
|
15034
|
+
property?: pulumi.Input<string | undefined>;
|
|
15035
|
+
/**
|
|
15036
|
+
* Operating system architecture.
|
|
15037
|
+
*/
|
|
15038
|
+
systemArch?: pulumi.Input<string | undefined>;
|
|
15039
|
+
/**
|
|
15040
|
+
* Operating system bitness.
|
|
15041
|
+
*/
|
|
15042
|
+
systemBit?: pulumi.Input<string | undefined>;
|
|
15043
|
+
/**
|
|
15044
|
+
* Type of operating system.
|
|
15045
|
+
*/
|
|
15046
|
+
systemType?: pulumi.Input<string | undefined>;
|
|
15047
|
+
/**
|
|
15048
|
+
* Operating system version.
|
|
15049
|
+
*/
|
|
15050
|
+
systemVersion?: pulumi.Input<string | undefined>;
|
|
15051
|
+
}
|
|
15052
|
+
interface VeenInstanceAreaNum {
|
|
15053
|
+
/**
|
|
15054
|
+
* Region name. You can use the ListAvailableResourceInfo API to query supported regions, cities, carriers, and node information for instance types
|
|
15055
|
+
*/
|
|
15056
|
+
areaName?: pulumi.Input<string | undefined>;
|
|
15057
|
+
/**
|
|
15058
|
+
* Node name. Specify the node where you want to deploy the edge service. You can query the supported regions, cities, carriers, and node information for instance types through the ListAvailableResourceInfo API.
|
|
15059
|
+
*/
|
|
15060
|
+
clusterName?: pulumi.Input<string | undefined>;
|
|
15061
|
+
/**
|
|
15062
|
+
* Default ISP. This parameter is only applicable to multi-line nodes. When specifying the default ISP, ensure it is within the range of node ISPs. Only one ISP can be specified as the default. Note: When the value of external*network*mode is single*interface*cmcc*ip, single*interface*cucc*ip, or single*interface*ctcc*ip, the ISP specified in default*isp must be the same as the ISP specified in external*network*mode. For example, when external*network*mode is set to single*interface*cmcc*ip, the value of default*isp must be set to CMCC. When external*network*mode is set to single*interface*multi*ip or multi*interface*multi*ip, the default*isp parameter must be specified, and the value can be set to CMCC, CUCC, or CTCC as needed. When external*network*mode is set to single*interface*single*ip or no*interface, default*isp does not need to be specified.
|
|
15063
|
+
*/
|
|
15064
|
+
defaultIsp?: pulumi.Input<string | undefined>;
|
|
15065
|
+
/**
|
|
15066
|
+
* Public network configuration. This parameter applies only to multi-line nodes. Value options: single*interface*multi*ip: single NIC with multiple IPs. If you are a new user of multi-line nodes, you must submit a ticket to enable the relevant permissions. single*interface*cmcc*ip: single NIC with China Mobile IP. You must submit a ticket to enable the relevant permissions. single*interface*cucc*ip: single NIC with China Unicom IP. You must submit a ticket to enable the relevant permissions.
|
|
15067
|
+
* single*interface*ctcc*ip: single NIC with China Telecom IP. You must submit a ticket to enable the relevant permissions. multi*interface*multi*ip: multiple NICs with multiple IPs. You must submit a ticket to enable the relevant permissions. single*interface*single*ip: single NIC with a single IP. In this mode, the system randomly assigns a public IP address from an available carrier. no*interface: no public network NIC. You must submit a ticket to enable the relevant permissions. Default values: When a public network NIC is available:
|
|
15068
|
+
* Single NIC multi-IP permission enabled: single*interface*multi*ip (single NIC with multiple IPs) is used by default. Single NIC multi-IP permission disabled: single*interface*single*ip (single NIC with a single IP) is used by default. When no public network NIC is available, no*interface is used by default.
|
|
15069
|
+
*/
|
|
15070
|
+
externalNetworkMode?: pulumi.Input<string | undefined>;
|
|
15071
|
+
/**
|
|
15072
|
+
* The host name list to assign to the created instances.
|
|
15073
|
+
*/
|
|
15074
|
+
hostNameLists?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
15075
|
+
/**
|
|
15076
|
+
* Carrier. You can use the ListAvailableResourceInfo API to query supported regions, cities, carriers, and node information for instance types
|
|
15077
|
+
*/
|
|
15078
|
+
isp?: pulumi.Input<string | undefined>;
|
|
15079
|
+
/**
|
|
15080
|
+
* NIC name for edge instances of private network type with multiple public NICs. You can use this parameter to set the names of public and private NICs. When using this parameter, note the following: Usage restrictions: This parameter applies only to edge instances of private network type. You must submit a ticket to enable this feature before you can use this parameter; otherwise, the parameter value is invalid. Effect: If you set the NIC name using the custom*internal*interface*name or custom*external*interface*name parameter in the edge service network*config struct, and also set the NIC name using the multi*interface*name*config parameter, only the latter takes effect.
|
|
15081
|
+
* If you set the public NIC name only through the custom*external*interface*name parameter in the edge service network*config struct, the name cannot be eth2, eth3, Ethernet2, or Ethernet3. The name you set will be used as the name for the China Telecom public NIC. The China Unicom and China Mobile public NICs will use the default values. If you do not set the NIC name, the following default values apply: Linux edge instance: The default name for the private NIC is eth0. The default name for the China Telecom public NIC is eth1. The default name for the China Unicom public NIC is eth2. The default name for the China Mobile public NIC is eth3. Windows edge instance: The default name for the private NIC is Ethernet0. The default name for the China Telecom public NIC is Ethernet1. The default name for the China Unicom public NIC is Ethernet2. The default name for the China Mobile public NIC is Ethernet3.
|
|
15082
|
+
*/
|
|
15083
|
+
multiInterfaceNameConfig?: pulumi.Input<inputs.veenedge.VeenInstanceAreaNumMultiInterfaceNameConfig | undefined>;
|
|
15084
|
+
/**
|
|
15085
|
+
* Number of instances.
|
|
15086
|
+
*/
|
|
15087
|
+
num?: pulumi.Input<number | undefined>;
|
|
15088
|
+
/**
|
|
15089
|
+
* Name of the network interface for a private network type edge instance configured with a single public network interface. You can use this parameter to set the names of both the public and private network interfaces. It is recommended to set both the public and private network interface names. Please note the following when using this parameter: Usage restrictions: This parameter is only applicable to private network type edge instances. You must submit a ticket to enable the related feature before this parameter can be used; otherwise, the parameter value is invalid. Effectiveness: If you set the network interface name using the custom*internal*interface*name or custom*external*interface*name parameter in the network*config structure of the edge service, and also set the network interface name using the single*interface*name*config parameter, only the latter takes effect. If you do not set the network interface name, the default values are used: For Linux edge instances: the default name for the private network interface is eth0, and for the public network interface is eth1. For Windows edge instances: the default name for the private network interface is Ethernet0, and for the public network interface is Ethernet1.
|
|
15090
|
+
*/
|
|
15091
|
+
singleInterfaceNameConfig?: pulumi.Input<inputs.veenedge.VeenInstanceAreaNumSingleInterfaceNameConfig | undefined>;
|
|
15092
|
+
/**
|
|
15093
|
+
* Subnet ID. If you specify a custom private network, you must also set subnetIdentity to specify the subnet.
|
|
15094
|
+
*/
|
|
15095
|
+
subnetIdentity?: pulumi.Input<string | undefined>;
|
|
15096
|
+
/**
|
|
15097
|
+
* Private network ID. This parameter specifies the private network where the edge service is deployed. If vpc*identity is set, cluster*name must also be set. If you specify a custom private network, subnetIdentity must also be set to specify the subnet
|
|
15098
|
+
*/
|
|
15099
|
+
vpcIdentity?: pulumi.Input<string | undefined>;
|
|
15100
|
+
}
|
|
15101
|
+
interface VeenInstanceAreaNumMultiInterfaceNameConfig {
|
|
15102
|
+
/**
|
|
15103
|
+
* Name of the mobile public network interface. Naming rules: 3–15 characters allowed. Uppercase and lowercase letters, numbers, hyphens (-), and underscores (_) are allowed. The network interface name must be unique within the same edge instance.
|
|
15104
|
+
*/
|
|
15105
|
+
cmccExternalInterfaceName?: pulumi.Input<string | undefined>;
|
|
15106
|
+
/**
|
|
15107
|
+
* Telecom public network NIC name. Naming rules: 3–15 characters allowed. Uppercase and lowercase letters, numbers allowed. Hyphens (-) and underscores (_) allowed. NIC names must be unique within the same edge instance
|
|
15108
|
+
*/
|
|
15109
|
+
ctccExternalInterfaceName?: pulumi.Input<string | undefined>;
|
|
15110
|
+
/**
|
|
15111
|
+
* Public network interface name for Unicom. Naming rules: 3–15 characters allowed. Uppercase and lowercase letters, numbers, hyphens (-), and underscores (_) are permitted. Interface names must be unique within the same edge instance
|
|
15112
|
+
*/
|
|
15113
|
+
cuccExternalInterfaceName?: pulumi.Input<string | undefined>;
|
|
15114
|
+
/**
|
|
15115
|
+
* Private network interface name. Naming rules: 3–15 characters allowed. Uppercase and lowercase letters, numbers, hyphens (-), and underscores (_) are permitted. Interface names must be unique within the same edge instance
|
|
15116
|
+
*/
|
|
15117
|
+
internalInterfaceName?: pulumi.Input<string | undefined>;
|
|
15118
|
+
}
|
|
15119
|
+
interface VeenInstanceAreaNumSingleInterfaceNameConfig {
|
|
15120
|
+
/**
|
|
15121
|
+
* Public network interface card name. Naming rules: 3–15 characters allowed. Uppercase and lowercase letters, numbers, hyphens (-), and underscores (_) are permitted. The network interface card name must be unique within the same edge instance.
|
|
15122
|
+
*/
|
|
15123
|
+
externalInterfaceName?: pulumi.Input<string | undefined>;
|
|
15124
|
+
/**
|
|
15125
|
+
* Private network interface name. Naming rules: 3–15 characters allowed. Uppercase and lowercase letters, numbers, hyphens (-), and underscores (_) are permitted. Interface names must be unique within the same edge instance
|
|
15126
|
+
*/
|
|
15127
|
+
internalInterfaceName?: pulumi.Input<string | undefined>;
|
|
15128
|
+
}
|
|
15129
|
+
interface VeenMonitorAgent {
|
|
15130
|
+
/**
|
|
15131
|
+
* Status of the monitoring Agent: running: running. stopped: not running. If the return value is an empty string, it means the Agent is not running.
|
|
15132
|
+
*/
|
|
15133
|
+
agentStatus?: pulumi.Input<string | undefined>;
|
|
15134
|
+
}
|
|
15135
|
+
interface VeenNetwork {
|
|
15136
|
+
/**
|
|
15137
|
+
* Number of allocated auxiliary private IP addresses
|
|
15138
|
+
*/
|
|
15139
|
+
actualSecondaryIpNum?: pulumi.Input<number | undefined>;
|
|
15140
|
+
/**
|
|
15141
|
+
* Percentile peak bandwidth, no fixed bandwidth value.
|
|
15142
|
+
*/
|
|
15143
|
+
bandwidthPeakConfigRatio?: pulumi.Input<inputs.veenedge.VeenNetworkBandwidthPeakConfigRatio | undefined>;
|
|
15144
|
+
/**
|
|
15145
|
+
* Bandwidth peak update status: updating: updating. ready: update complete.
|
|
15146
|
+
*/
|
|
15147
|
+
bandwidthPeakUpdateStatus?: pulumi.Input<string | undefined>;
|
|
15148
|
+
/**
|
|
15149
|
+
* Default carrier
|
|
15150
|
+
*/
|
|
15151
|
+
defaultIsp?: pulumi.Input<string | undefined>;
|
|
15152
|
+
/**
|
|
15153
|
+
* Disable IPv4: true: IPv4 disabled. false: IPv4 enabled
|
|
15154
|
+
*/
|
|
15155
|
+
disableIpv4?: pulumi.Input<boolean | undefined>;
|
|
15156
|
+
/**
|
|
15157
|
+
* DNS list. The first IP address is the primary DNS, and the subsequent IP addresses are backup DNS servers
|
|
15158
|
+
*/
|
|
15159
|
+
dnsLists?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
15160
|
+
/**
|
|
15161
|
+
* DNS type: default: Default DNS. Default DNS configuration: Preferred DNS is 114.114.114.114, alternate DNS is 180.184.1.1. custom: Custom DNS.
|
|
15162
|
+
*/
|
|
15163
|
+
dnsType?: pulumi.Input<string | undefined>;
|
|
15164
|
+
/**
|
|
15165
|
+
* Enable IPv6: true: enable IPv6. false: disable IPv6.
|
|
15166
|
+
*/
|
|
15167
|
+
enableIpv6?: pulumi.Input<boolean | undefined>;
|
|
15168
|
+
/**
|
|
15169
|
+
* Public network configuration for multi-line nodes. single*interface*multi*ip: single NIC, multiple IPs. single*interface*cmcc*ip: single NIC, China Mobile IP. single*interface*cucc*ip: single NIC, China Unicom IP. single*interface*ctcc*ip: single NIC, China Telecom IP. multi*interface*multi*ip: multiple NICs, multiple IPs. no*interface: no public NIC.
|
|
15170
|
+
*/
|
|
15171
|
+
externalNetworkMode?: pulumi.Input<string | undefined>;
|
|
15172
|
+
/**
|
|
15173
|
+
* Bandwidth throttling mode. shared: shared throttling. Bandwidth resources are shared among carriers. isp: throttling by carrier. You set the bandwidth peak for each carrier separately.
|
|
15174
|
+
*/
|
|
15175
|
+
limitMode?: pulumi.Input<string | undefined>;
|
|
15176
|
+
/**
|
|
15177
|
+
* Edge instance TCP session timeout. Unit: seconds.
|
|
15178
|
+
*/
|
|
15179
|
+
tcpTimeout?: pulumi.Input<number | undefined>;
|
|
15180
|
+
/**
|
|
15181
|
+
* UDP session timeout for the edge instance. Unit: seconds.
|
|
15182
|
+
*/
|
|
15183
|
+
udpTimeout?: pulumi.Input<number | undefined>;
|
|
15184
|
+
/**
|
|
15185
|
+
* Whether it is a VF passthrough type: true: VF passthrough type. false: non-VF passthrough type.
|
|
15186
|
+
*/
|
|
15187
|
+
vfPassthrough?: pulumi.Input<boolean | undefined>;
|
|
15188
|
+
/**
|
|
15189
|
+
* Whether it is a VLAN VF passthrough type: true: VLAN VF passthrough type. false: Non-VLAN VF passthrough type.
|
|
15190
|
+
*/
|
|
15191
|
+
vlanVfPassthrough?: pulumi.Input<boolean | undefined>;
|
|
15192
|
+
/**
|
|
15193
|
+
* Number of required auxiliary private network IP addresses
|
|
15194
|
+
*/
|
|
15195
|
+
wantedSecondaryIpNum?: pulumi.Input<number | undefined>;
|
|
15196
|
+
}
|
|
15197
|
+
interface VeenNetworkBandwidthPeakConfigRatio {
|
|
15198
|
+
/**
|
|
15199
|
+
* Bandwidth ratio in enhanced/burst mode
|
|
15200
|
+
*/
|
|
15201
|
+
enhancedRatio?: pulumi.Input<number | undefined>;
|
|
15202
|
+
/**
|
|
15203
|
+
* Bandwidth ratio in standard mode
|
|
15204
|
+
*/
|
|
15205
|
+
normalRatio?: pulumi.Input<number | undefined>;
|
|
15206
|
+
}
|
|
15207
|
+
interface VeenSecret {
|
|
15208
|
+
/**
|
|
15209
|
+
* Edge instance login password type: 2: custom password. 3: SSH Key password. 4: do not inject login credentials.
|
|
15210
|
+
*/
|
|
15211
|
+
secretType?: pulumi.Input<number | undefined>;
|
|
15212
|
+
}
|
|
15213
|
+
interface VeenStorage {
|
|
15214
|
+
/**
|
|
15215
|
+
* Data disk. This parameter is used to add a single data disk
|
|
15216
|
+
*/
|
|
15217
|
+
dataDisk?: pulumi.Input<inputs.veenedge.VeenStorageDataDisk | undefined>;
|
|
15218
|
+
/**
|
|
15219
|
+
* Data disk list
|
|
15220
|
+
* Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
|
|
15221
|
+
*/
|
|
15222
|
+
dataDiskLists?: pulumi.Input<pulumi.Input<inputs.veenedge.VeenStorageDataDiskList>[] | undefined>;
|
|
15223
|
+
/**
|
|
15224
|
+
* System disk
|
|
15225
|
+
*/
|
|
15226
|
+
systemDisk?: pulumi.Input<inputs.veenedge.VeenStorageSystemDisk | undefined>;
|
|
15227
|
+
}
|
|
15228
|
+
interface VeenStorageDataDisk {
|
|
15229
|
+
/**
|
|
15230
|
+
* Disk capacity. Unit: GB.
|
|
15231
|
+
*/
|
|
15232
|
+
capacity?: pulumi.Input<string | undefined>;
|
|
15233
|
+
/**
|
|
15234
|
+
* Release disk when instance is deleted. true: delete disk with instance; false: retain disk independently.
|
|
15235
|
+
*/
|
|
15236
|
+
deleteWithInstance?: pulumi.Input<boolean | undefined>;
|
|
15237
|
+
/**
|
|
15238
|
+
* Unique disk ID, the primary key of the cloud disk resource.
|
|
15239
|
+
*/
|
|
15240
|
+
diskIdentity?: pulumi.Input<string | undefined>;
|
|
15241
|
+
/**
|
|
15242
|
+
* Local disk specification type. Applies only to local disk instances; cloud disk instances leave this blank.
|
|
15243
|
+
*/
|
|
15244
|
+
localDiskClass?: pulumi.Input<string | undefined>;
|
|
15245
|
+
/**
|
|
15246
|
+
* Local disk resource name, exclusive identifier for local disk instances. Not required for cloud disk instances
|
|
15247
|
+
*/
|
|
15248
|
+
localDiskResourceName?: pulumi.Input<string | undefined>;
|
|
15249
|
+
/**
|
|
15250
|
+
* Disk type: CloudBlockHDD: HDD cloud disk. CloudBlockSSD: SSD cloud disk.
|
|
15251
|
+
*/
|
|
15252
|
+
storageType?: pulumi.Input<string | undefined>;
|
|
15253
|
+
}
|
|
15254
|
+
interface VeenStorageDataDiskList {
|
|
15255
|
+
/**
|
|
15256
|
+
* Disk capacity. Unit: GB.
|
|
15257
|
+
*/
|
|
15258
|
+
capacity?: pulumi.Input<string | undefined>;
|
|
15259
|
+
/**
|
|
15260
|
+
* Release disk when instance is deleted. true: delete disk with instance; false: retain disk independently.
|
|
15261
|
+
*/
|
|
15262
|
+
deleteWithInstance?: pulumi.Input<boolean | undefined>;
|
|
15263
|
+
/**
|
|
15264
|
+
* Unique disk ID, the primary key of the cloud disk resource.
|
|
15265
|
+
*/
|
|
15266
|
+
diskIdentity?: pulumi.Input<string | undefined>;
|
|
15267
|
+
/**
|
|
15268
|
+
* Local disk specification type. Applies only to local disk instances; cloud disk instances leave this blank.
|
|
15269
|
+
*/
|
|
15270
|
+
localDiskClass?: pulumi.Input<string | undefined>;
|
|
15271
|
+
/**
|
|
15272
|
+
* Local disk resource name, exclusive identifier for local disk instances. Not required for cloud disk instances
|
|
15273
|
+
*/
|
|
15274
|
+
localDiskResourceName?: pulumi.Input<string | undefined>;
|
|
15275
|
+
/**
|
|
15276
|
+
* Disk type: CloudBlockHDD: HDD cloud disk. CloudBlockSSD: SSD cloud disk.
|
|
15277
|
+
*/
|
|
15278
|
+
storageType?: pulumi.Input<string | undefined>;
|
|
15279
|
+
}
|
|
15280
|
+
interface VeenStorageSystemDisk {
|
|
15281
|
+
/**
|
|
15282
|
+
* Disk capacity. Unit: GB.
|
|
15283
|
+
*/
|
|
15284
|
+
capacity?: pulumi.Input<string | undefined>;
|
|
15285
|
+
/**
|
|
15286
|
+
* Release disk when instance is deleted. true: delete disk with instance; false: retain disk independently.
|
|
15287
|
+
*/
|
|
15288
|
+
deleteWithInstance?: pulumi.Input<boolean | undefined>;
|
|
15289
|
+
/**
|
|
15290
|
+
* Unique disk ID, the primary key of the cloud disk resource.
|
|
15291
|
+
*/
|
|
15292
|
+
diskIdentity?: pulumi.Input<string | undefined>;
|
|
15293
|
+
/**
|
|
15294
|
+
* Local disk specification type. Applies only to local disk instances; cloud disk instances leave this blank.
|
|
15295
|
+
*/
|
|
15296
|
+
localDiskClass?: pulumi.Input<string | undefined>;
|
|
15297
|
+
/**
|
|
15298
|
+
* Local disk resource name, exclusive identifier for local disk instances. Not required for cloud disk instances
|
|
15299
|
+
*/
|
|
15300
|
+
localDiskResourceName?: pulumi.Input<string | undefined>;
|
|
15301
|
+
/**
|
|
15302
|
+
* Disk type: CloudBlockHDD: HDD cloud disk. CloudBlockSSD: SSD cloud disk.
|
|
15303
|
+
*/
|
|
15304
|
+
storageType?: pulumi.Input<string | undefined>;
|
|
15305
|
+
}
|
|
15306
|
+
interface VeenTag {
|
|
15307
|
+
/**
|
|
15308
|
+
* Tag key.
|
|
15309
|
+
*/
|
|
15310
|
+
key?: pulumi.Input<string | undefined>;
|
|
15311
|
+
/**
|
|
15312
|
+
* Tag value.
|
|
15313
|
+
*/
|
|
15314
|
+
value?: pulumi.Input<string | undefined>;
|
|
15315
|
+
}
|
|
14636
15316
|
interface VpcSubnet {
|
|
14637
15317
|
/**
|
|
14638
15318
|
* Subnet CIDR Block, e.g. 10.1.0.0/16
|