@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.
Files changed (78) hide show
  1. package/id/getOauth2CredentialProvider.d.ts +74 -0
  2. package/id/getOauth2CredentialProvider.d.ts.map +1 -0
  3. package/id/getOauth2CredentialProvider.js +51 -0
  4. package/id/getOauth2CredentialProvider.js.map +1 -0
  5. package/id/getOauth2CredentialProviders.d.ts +23 -0
  6. package/id/getOauth2CredentialProviders.d.ts.map +1 -0
  7. package/id/getOauth2CredentialProviders.js +47 -0
  8. package/id/getOauth2CredentialProviders.js.map +1 -0
  9. package/id/index.d.ts +9 -0
  10. package/id/index.d.ts.map +1 -1
  11. package/id/index.js +12 -1
  12. package/id/index.js.map +1 -1
  13. package/id/oauth2CredentialProvider.d.ts +191 -0
  14. package/id/oauth2CredentialProvider.d.ts.map +1 -0
  15. package/id/oauth2CredentialProvider.js +157 -0
  16. package/id/oauth2CredentialProvider.js.map +1 -0
  17. package/kms/getSecret.d.ts +29 -0
  18. package/kms/getSecret.d.ts.map +1 -1
  19. package/kms/getSecret.js.map +1 -1
  20. package/kms/secret.d.ts +80 -0
  21. package/kms/secret.d.ts.map +1 -1
  22. package/kms/secret.js +14 -0
  23. package/kms/secret.js.map +1 -1
  24. package/package.json +1 -1
  25. package/tls/alarmContentTemplateType.d.ts +263 -0
  26. package/tls/alarmContentTemplateType.d.ts.map +1 -0
  27. package/tls/alarmContentTemplateType.js +183 -0
  28. package/tls/alarmContentTemplateType.js.map +1 -0
  29. package/tls/getAlarmContentTemplateType.d.ts +90 -0
  30. package/tls/getAlarmContentTemplateType.d.ts.map +1 -0
  31. package/tls/getAlarmContentTemplateType.js +51 -0
  32. package/tls/getAlarmContentTemplateType.js.map +1 -0
  33. package/tls/getAlarmContentTemplateTypes.d.ts +23 -0
  34. package/tls/getAlarmContentTemplateTypes.d.ts.map +1 -0
  35. package/tls/getAlarmContentTemplateTypes.js +47 -0
  36. package/tls/getAlarmContentTemplateTypes.js.map +1 -0
  37. package/tls/index.d.ts +9 -0
  38. package/tls/index.d.ts.map +1 -1
  39. package/tls/index.js +13 -2
  40. package/tls/index.js.map +1 -1
  41. package/tos/bucket.d.ts +1 -1
  42. package/tos/bucket.js +1 -1
  43. package/tos/getObject.d.ts +118 -0
  44. package/tos/getObject.d.ts.map +1 -0
  45. package/tos/getObject.js +51 -0
  46. package/tos/getObject.js.map +1 -0
  47. package/tos/getObjects.d.ts +23 -0
  48. package/tos/getObjects.d.ts.map +1 -0
  49. package/tos/getObjects.js +47 -0
  50. package/tos/getObjects.js.map +1 -0
  51. package/tos/index.d.ts +9 -0
  52. package/tos/index.d.ts.map +1 -1
  53. package/tos/index.js +13 -1
  54. package/tos/index.js.map +1 -1
  55. package/tos/tosObject.d.ts +294 -0
  56. package/tos/tosObject.d.ts.map +1 -0
  57. package/tos/tosObject.js +168 -0
  58. package/tos/tosObject.js.map +1 -0
  59. package/types/input.d.ts +680 -0
  60. package/types/input.d.ts.map +1 -1
  61. package/types/output.d.ts +1404 -47
  62. package/types/output.d.ts.map +1 -1
  63. package/veenedge/getVeen.d.ts +206 -0
  64. package/veenedge/getVeen.d.ts.map +1 -0
  65. package/veenedge/getVeen.js +51 -0
  66. package/veenedge/getVeen.js.map +1 -0
  67. package/veenedge/getVeens.d.ts +23 -0
  68. package/veenedge/getVeens.d.ts.map +1 -0
  69. package/veenedge/getVeens.js +47 -0
  70. package/veenedge/getVeens.js.map +1 -0
  71. package/veenedge/index.d.ts +9 -0
  72. package/veenedge/index.d.ts.map +1 -1
  73. package/veenedge/index.js +12 -1
  74. package/veenedge/index.js.map +1 -1
  75. package/veenedge/veen.d.ts +475 -0
  76. package/veenedge/veen.d.ts.map +1 -0
  77. package/veenedge/veen.js +211 -0
  78. package/veenedge/veen.js.map +1 -0
package/types/output.d.ts CHANGED
@@ -16342,6 +16342,118 @@ export declare namespace id {
16342
16342
  */
16343
16343
  discoveryUrl: string;
16344
16344
  }
16345
+ interface GetOauth2CredentialProviderConfig {
16346
+ /**
16347
+ * OAuth2 Client ID。
16348
+ */
16349
+ clientId: string;
16350
+ /**
16351
+ * OAuth2 Client Secret。
16352
+ */
16353
+ clientSecret: string;
16354
+ /**
16355
+ * Default custom parameters in GetResourceOauth2Token request
16356
+ */
16357
+ customParameters: outputs.id.GetOauth2CredentialProviderConfigCustomParameters;
16358
+ /**
16359
+ * Default Flow in GetResourceOauth2Token request. Optional values: USER_FEDERATION, M2M
16360
+ */
16361
+ flow: string;
16362
+ /**
16363
+ * Default ForceAuthentication in GetResourceOauth2Token request
16364
+ */
16365
+ forceAuthentication: boolean;
16366
+ /**
16367
+ * Maximum token validity (seconds)
16368
+ */
16369
+ maxExpires: number;
16370
+ /**
16371
+ * Custom metadata
16372
+ */
16373
+ metadata: string;
16374
+ /**
16375
+ * OAuth2 discovery information
16376
+ */
16377
+ oauth2Discovery: outputs.id.GetOauth2CredentialProviderConfigOauth2Discovery;
16378
+ /**
16379
+ * Default RedirectUrl in GetResourceOauth2Token request
16380
+ */
16381
+ redirectUrl: string;
16382
+ /**
16383
+ * Default Scopes in GetResourceOauth2Token request
16384
+ */
16385
+ scopes: string[];
16386
+ /**
16387
+ * Encrypted storage configuration
16388
+ */
16389
+ secretStorage: outputs.id.GetOauth2CredentialProviderConfigSecretStorage;
16390
+ }
16391
+ interface GetOauth2CredentialProviderConfigCustomParameters {
16392
+ /**
16393
+ * Custom parameter entry list
16394
+ */
16395
+ entries: outputs.id.GetOauth2CredentialProviderConfigCustomParametersEntry[];
16396
+ }
16397
+ interface GetOauth2CredentialProviderConfigCustomParametersEntry {
16398
+ /**
16399
+ * Parameter key
16400
+ */
16401
+ key: string;
16402
+ /**
16403
+ * Parameter value
16404
+ */
16405
+ value: string;
16406
+ }
16407
+ interface GetOauth2CredentialProviderConfigOauth2Discovery {
16408
+ /**
16409
+ * Authorization server metadata
16410
+ */
16411
+ authorizationServerMetadata: outputs.id.GetOauth2CredentialProviderConfigOauth2DiscoveryAuthorizationServerMetadata;
16412
+ /**
16413
+ * DiscoveryUrl field
16414
+ */
16415
+ discoveryUrl: string;
16416
+ }
16417
+ interface GetOauth2CredentialProviderConfigOauth2DiscoveryAuthorizationServerMetadata {
16418
+ /**
16419
+ * AuthorizationEndpoint field
16420
+ */
16421
+ authorizationEndpoint: string;
16422
+ /**
16423
+ * CodeChallengeMethodsSupported field
16424
+ */
16425
+ codeChallengeMethodsSupporteds: string[];
16426
+ /**
16427
+ * Issuer field
16428
+ */
16429
+ issuer: string;
16430
+ /**
16431
+ * RegistrationEndpoint field
16432
+ */
16433
+ registrationEndpoint: string;
16434
+ /**
16435
+ * ResponseTypes field
16436
+ */
16437
+ responseTypes: string[];
16438
+ /**
16439
+ * RevocationEndpoint field
16440
+ */
16441
+ revocationEndpoint: string;
16442
+ /**
16443
+ * TokenEndpoint field
16444
+ */
16445
+ tokenEndpoint: string;
16446
+ }
16447
+ interface GetOauth2CredentialProviderConfigSecretStorage {
16448
+ /**
16449
+ * KMS key TRN for encrypted credential value. If not specified, the default key is used
16450
+ */
16451
+ encryptionKey: string;
16452
+ /**
16453
+ * Encrypted storage type. 0: SecretManager, 1: KMS
16454
+ */
16455
+ storageType: number;
16456
+ }
16345
16457
  interface GetPermissionNamespaceTag {
16346
16458
  /**
16347
16459
  * Tag Key
@@ -16540,6 +16652,119 @@ export declare namespace id {
16540
16652
  */
16541
16653
  value: string;
16542
16654
  }
16655
+ interface Oauth2CredentialProviderConfig {
16656
+ /**
16657
+ * OAuth2 Client ID。
16658
+ */
16659
+ clientId: string;
16660
+ /**
16661
+ * OAuth2 Client Secret。
16662
+ */
16663
+ clientSecret: string;
16664
+ /**
16665
+ * Default custom parameters in GetResourceOauth2Token request
16666
+ */
16667
+ customParameters: outputs.id.Oauth2CredentialProviderConfigCustomParameters;
16668
+ /**
16669
+ * Default Flow in GetResourceOauth2Token request. Optional values: USER_FEDERATION, M2M
16670
+ */
16671
+ flow: string;
16672
+ /**
16673
+ * Default ForceAuthentication in GetResourceOauth2Token request
16674
+ */
16675
+ forceAuthentication: boolean;
16676
+ /**
16677
+ * Maximum token validity (seconds)
16678
+ */
16679
+ maxExpires: number;
16680
+ /**
16681
+ * Custom metadata
16682
+ */
16683
+ metadata: string;
16684
+ /**
16685
+ * OAuth2 discovery information
16686
+ */
16687
+ oauth2Discovery: outputs.id.Oauth2CredentialProviderConfigOauth2Discovery;
16688
+ /**
16689
+ * Default RedirectUrl in GetResourceOauth2Token request
16690
+ */
16691
+ redirectUrl: string;
16692
+ /**
16693
+ * Default Scopes in GetResourceOauth2Token request
16694
+ */
16695
+ scopes: string[];
16696
+ /**
16697
+ * Encrypted storage configuration
16698
+ */
16699
+ secretStorage: outputs.id.Oauth2CredentialProviderConfigSecretStorage;
16700
+ }
16701
+ interface Oauth2CredentialProviderConfigCustomParameters {
16702
+ /**
16703
+ * Custom parameter entry list
16704
+ * 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.
16705
+ */
16706
+ entries: outputs.id.Oauth2CredentialProviderConfigCustomParametersEntry[];
16707
+ }
16708
+ interface Oauth2CredentialProviderConfigCustomParametersEntry {
16709
+ /**
16710
+ * Parameter key
16711
+ */
16712
+ key: string;
16713
+ /**
16714
+ * Parameter value
16715
+ */
16716
+ value: string;
16717
+ }
16718
+ interface Oauth2CredentialProviderConfigOauth2Discovery {
16719
+ /**
16720
+ * Authorization server metadata
16721
+ */
16722
+ authorizationServerMetadata: outputs.id.Oauth2CredentialProviderConfigOauth2DiscoveryAuthorizationServerMetadata;
16723
+ /**
16724
+ * DiscoveryUrl field
16725
+ */
16726
+ discoveryUrl: string;
16727
+ }
16728
+ interface Oauth2CredentialProviderConfigOauth2DiscoveryAuthorizationServerMetadata {
16729
+ /**
16730
+ * AuthorizationEndpoint field
16731
+ */
16732
+ authorizationEndpoint: string;
16733
+ /**
16734
+ * CodeChallengeMethodsSupported field
16735
+ */
16736
+ codeChallengeMethodsSupporteds: string[];
16737
+ /**
16738
+ * Issuer field
16739
+ */
16740
+ issuer: string;
16741
+ /**
16742
+ * RegistrationEndpoint field
16743
+ */
16744
+ registrationEndpoint: string;
16745
+ /**
16746
+ * ResponseTypes field
16747
+ */
16748
+ responseTypes: string[];
16749
+ /**
16750
+ * RevocationEndpoint field
16751
+ */
16752
+ revocationEndpoint: string;
16753
+ /**
16754
+ * TokenEndpoint field
16755
+ */
16756
+ tokenEndpoint: string;
16757
+ }
16758
+ interface Oauth2CredentialProviderConfigSecretStorage {
16759
+ /**
16760
+ * KMS key TRN for encrypted credential value. If not specified, the default key is used
16761
+ */
16762
+ encryptionKey: string;
16763
+ /**
16764
+ * Encrypted storage type. 0: SecretManager, 1: KMS
16765
+ */
16766
+ storageType: number;
16767
+ }
16543
16768
  interface PermissionNamespaceTag {
16544
16769
  /**
16545
16770
  * Tag Key
@@ -17101,6 +17326,48 @@ export declare namespace kms {
17101
17326
  */
17102
17327
  value: string;
17103
17328
  }
17329
+ interface GetSecretSecretRestore {
17330
+ /**
17331
+ * Complete credential data returned by backup, in JSON format.
17332
+ */
17333
+ backupData: string;
17334
+ /**
17335
+ * Encrypted data key returned by backup, Base64 encoded.
17336
+ */
17337
+ secretDataKey: string;
17338
+ /**
17339
+ * Signature of the backup data, Base64 encoded.
17340
+ */
17341
+ signature: string;
17342
+ }
17343
+ interface GetSecretSecretRestoreRead {
17344
+ /**
17345
+ * Complete credential data returned by backup, in JSON format.
17346
+ */
17347
+ backupData: string;
17348
+ /**
17349
+ * Encrypted data key returned by backup, Base64 encoded.
17350
+ */
17351
+ secretDataKey: string;
17352
+ /**
17353
+ * Signature of the backup data, Base64 encoded.
17354
+ */
17355
+ signature: string;
17356
+ }
17357
+ interface GetSecretSecretVersion {
17358
+ /**
17359
+ * Credential version creation time.
17360
+ */
17361
+ creationDate: number;
17362
+ /**
17363
+ * Unique identifier for the credential version, in UUID format.
17364
+ */
17365
+ versionId: string;
17366
+ /**
17367
+ * Credential version tags.
17368
+ */
17369
+ versionStage: string;
17370
+ }
17104
17371
  interface KeyAsymmetricCiphertext {
17105
17372
  /**
17106
17373
  * Encryption algorithm. Optional values: RSAES*OAEP*SHA_256, SM2PKE.
@@ -17251,6 +17518,48 @@ export declare namespace kms {
17251
17518
  */
17252
17519
  value: string;
17253
17520
  }
17521
+ interface SecretSecretRestore {
17522
+ /**
17523
+ * Complete credential data returned by backup, in JSON format.
17524
+ */
17525
+ backupData: string;
17526
+ /**
17527
+ * Encrypted data key returned by backup, Base64 encoded.
17528
+ */
17529
+ secretDataKey: string;
17530
+ /**
17531
+ * Signature of the backup data, Base64 encoded.
17532
+ */
17533
+ signature: string;
17534
+ }
17535
+ interface SecretSecretRestoreRead {
17536
+ /**
17537
+ * Complete credential data returned by backup, in JSON format.
17538
+ */
17539
+ backupData: string;
17540
+ /**
17541
+ * Encrypted data key returned by backup, Base64 encoded.
17542
+ */
17543
+ secretDataKey: string;
17544
+ /**
17545
+ * Signature of the backup data, Base64 encoded.
17546
+ */
17547
+ signature: string;
17548
+ }
17549
+ interface SecretSecretVersion {
17550
+ /**
17551
+ * Credential version creation time.
17552
+ */
17553
+ creationDate: number;
17554
+ /**
17555
+ * Unique identifier for the credential version, in UUID format.
17556
+ */
17557
+ versionId: string;
17558
+ /**
17559
+ * Credential version tags.
17560
+ */
17561
+ versionStage: string;
17562
+ }
17254
17563
  }
17255
17564
  export declare namespace mongodb {
17256
17565
  interface AccountAccountPrivilege {
@@ -23023,6 +23332,88 @@ export declare namespace tls {
23023
23332
  */
23024
23333
  sms: number;
23025
23334
  }
23335
+ interface AlarmContentTemplateTypeDingTalk {
23336
+ /**
23337
+ * 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.
23338
+ */
23339
+ content: string;
23340
+ /**
23341
+ * The language for fixed content in alert notifications. Available values: zh-CN, en-US.
23342
+ */
23343
+ locale: string;
23344
+ /**
23345
+ * Alert notification subject
23346
+ */
23347
+ title: string;
23348
+ }
23349
+ interface AlarmContentTemplateTypeEmail {
23350
+ /**
23351
+ * 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.
23352
+ */
23353
+ content: string;
23354
+ /**
23355
+ * The language for fixed content in alert notifications. Available values: zh-CN, en-US.
23356
+ */
23357
+ locale: string;
23358
+ /**
23359
+ * Email notification subject
23360
+ */
23361
+ subject: string;
23362
+ }
23363
+ interface AlarmContentTemplateTypeLark {
23364
+ /**
23365
+ * 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.
23366
+ */
23367
+ content: string;
23368
+ /**
23369
+ * The language for fixed content in alert notifications. Available values: zh-CN, en-US.
23370
+ */
23371
+ locale: string;
23372
+ /**
23373
+ * Alert notification subject
23374
+ */
23375
+ title: string;
23376
+ }
23377
+ interface AlarmContentTemplateTypeSms {
23378
+ /**
23379
+ * 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.
23380
+ */
23381
+ content: string;
23382
+ /**
23383
+ * The language for fixed content in alert notifications. Available values: zh-CN, en-US.
23384
+ */
23385
+ locale: string;
23386
+ }
23387
+ interface AlarmContentTemplateTypeVms {
23388
+ /**
23389
+ * 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.
23390
+ */
23391
+ content: string;
23392
+ /**
23393
+ * The language for fixed content in alert notifications. Available values: zh-CN, en-US.
23394
+ */
23395
+ locale: string;
23396
+ }
23397
+ interface AlarmContentTemplateTypeWeChat {
23398
+ /**
23399
+ * 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.
23400
+ */
23401
+ content: string;
23402
+ /**
23403
+ * The language for fixed content in alert notifications. Available values: zh-CN, en-US.
23404
+ */
23405
+ locale: string;
23406
+ /**
23407
+ * Alert notification subject
23408
+ */
23409
+ title: string;
23410
+ }
23411
+ interface AlarmContentTemplateTypeWebhook {
23412
+ /**
23413
+ * 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.
23414
+ */
23415
+ content: string;
23416
+ }
23026
23417
  interface AlarmJoinConfiguration {
23027
23418
  /**
23028
23419
  * Expression used for left join or right join.
@@ -23514,53 +23905,135 @@ export declare namespace tls {
23514
23905
  */
23515
23906
  sms: number;
23516
23907
  }
23517
- interface GetAlarmJoinConfiguration {
23908
+ interface GetAlarmContentTemplateTypeDingTalk {
23518
23909
  /**
23519
- * Expression used for left join or right join.
23910
+ * 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.
23520
23911
  */
23521
- condition: string;
23912
+ content: string;
23522
23913
  /**
23523
- * Set operation type. Optional values: CrossJoin: Cartesian product. LeftJoin: Left join. RightJoin: Right join. InnerJoin: Inner join. FullJoin: Full join.
23914
+ * The language for fixed content in alert notifications. Available values: zh-CN, en-US.
23524
23915
  */
23525
- setOperationType: string;
23526
- }
23527
- interface GetAlarmNotifyGroupNoticeRule {
23916
+ locale: string;
23528
23917
  /**
23529
- * Whether there is an end node afterwards.
23918
+ * Alert notification subject
23530
23919
  */
23531
- hasEndNode: boolean;
23920
+ title: string;
23921
+ }
23922
+ interface GetAlarmContentTemplateTypeEmail {
23532
23923
  /**
23533
- * Condition for whether to proceed to the next level.
23924
+ * 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.
23534
23925
  */
23535
- hasNext: boolean;
23926
+ content: string;
23536
23927
  /**
23537
- * Notification channel information.
23928
+ * The language for fixed content in alert notifications. Available values: zh-CN, en-US.
23538
23929
  */
23539
- receiverInfos: outputs.tls.GetAlarmNotifyGroupNoticeRuleReceiverInfo[];
23930
+ locale: string;
23540
23931
  /**
23541
- * Rule node. JSON format.
23932
+ * Email notification subject
23542
23933
  */
23543
- ruleNode: string;
23934
+ subject: string;
23544
23935
  }
23545
- interface GetAlarmNotifyGroupNoticeRuleReceiverInfo {
23936
+ interface GetAlarmContentTemplateTypeLark {
23546
23937
  /**
23547
- * Alarm content template ID.
23938
+ * 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.
23548
23939
  */
23549
- alarmContentTemplateId: string;
23940
+ content: string;
23550
23941
  /**
23551
- * User group name to notify when sending notifications to Feishu, DingTalk, or WeCom via Webhook integration.
23942
+ * The language for fixed content in alert notifications. Available values: zh-CN, en-US.
23552
23943
  */
23553
- alarmWebhookAtGroups: string[];
23944
+ locale: string;
23554
23945
  /**
23555
- * Username to notify when sending notifications to Feishu, DingTalk, or WeCom via Webhook integration.
23946
+ * Alert notification subject
23556
23947
  */
23557
- alarmWebhookAtUsers: string[];
23948
+ title: string;
23949
+ }
23950
+ interface GetAlarmContentTemplateTypeSms {
23558
23951
  /**
23559
- * Alarm webhook integration configuration ID.
23952
+ * 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.
23560
23953
  */
23561
- alarmWebhookIntegrationId: string;
23954
+ content: string;
23562
23955
  /**
23563
- * Name of the alarm Webhook integration configuration.
23956
+ * The language for fixed content in alert notifications. Available values: zh-CN, en-US.
23957
+ */
23958
+ locale: string;
23959
+ }
23960
+ interface GetAlarmContentTemplateTypeVms {
23961
+ /**
23962
+ * 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.
23963
+ */
23964
+ content: string;
23965
+ /**
23966
+ * The language for fixed content in alert notifications. Available values: zh-CN, en-US.
23967
+ */
23968
+ locale: string;
23969
+ }
23970
+ interface GetAlarmContentTemplateTypeWeChat {
23971
+ /**
23972
+ * 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.
23973
+ */
23974
+ content: string;
23975
+ /**
23976
+ * The language for fixed content in alert notifications. Available values: zh-CN, en-US.
23977
+ */
23978
+ locale: string;
23979
+ /**
23980
+ * Alert notification subject
23981
+ */
23982
+ title: string;
23983
+ }
23984
+ interface GetAlarmContentTemplateTypeWebhook {
23985
+ /**
23986
+ * 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.
23987
+ */
23988
+ content: string;
23989
+ }
23990
+ interface GetAlarmJoinConfiguration {
23991
+ /**
23992
+ * Expression used for left join or right join.
23993
+ */
23994
+ condition: string;
23995
+ /**
23996
+ * Set operation type. Optional values: CrossJoin: Cartesian product. LeftJoin: Left join. RightJoin: Right join. InnerJoin: Inner join. FullJoin: Full join.
23997
+ */
23998
+ setOperationType: string;
23999
+ }
24000
+ interface GetAlarmNotifyGroupNoticeRule {
24001
+ /**
24002
+ * Whether there is an end node afterwards.
24003
+ */
24004
+ hasEndNode: boolean;
24005
+ /**
24006
+ * Condition for whether to proceed to the next level.
24007
+ */
24008
+ hasNext: boolean;
24009
+ /**
24010
+ * Notification channel information.
24011
+ */
24012
+ receiverInfos: outputs.tls.GetAlarmNotifyGroupNoticeRuleReceiverInfo[];
24013
+ /**
24014
+ * Rule node. JSON format.
24015
+ */
24016
+ ruleNode: string;
24017
+ }
24018
+ interface GetAlarmNotifyGroupNoticeRuleReceiverInfo {
24019
+ /**
24020
+ * Alarm content template ID.
24021
+ */
24022
+ alarmContentTemplateId: string;
24023
+ /**
24024
+ * User group name to notify when sending notifications to Feishu, DingTalk, or WeCom via Webhook integration.
24025
+ */
24026
+ alarmWebhookAtGroups: string[];
24027
+ /**
24028
+ * Username to notify when sending notifications to Feishu, DingTalk, or WeCom via Webhook integration.
24029
+ */
24030
+ alarmWebhookAtUsers: string[];
24031
+ /**
24032
+ * Alarm webhook integration configuration ID.
24033
+ */
24034
+ alarmWebhookIntegrationId: string;
24035
+ /**
24036
+ * Name of the alarm Webhook integration configuration.
23564
24037
  */
23565
24038
  alarmWebhookIntegrationName: string;
23566
24039
  /**
@@ -28296,6 +28769,74 @@ export declare namespace tos {
28296
28769
  */
28297
28770
  replaceKeyWith: string;
28298
28771
  }
28772
+ interface GetObjectAccountAcl {
28773
+ /**
28774
+ * Authorized account ID.
28775
+ */
28776
+ accountId: string;
28777
+ /**
28778
+ * Authorized principal type. Currently, only CanonicalUser is supported.
28779
+ */
28780
+ aclType: string;
28781
+ /**
28782
+ * Authorization permission type. Includes FULL*CONTROL, READ, READ*ACP, WRITE, WRITE_ACP.
28783
+ */
28784
+ permission: string;
28785
+ }
28786
+ interface GetObjectMetadata {
28787
+ /**
28788
+ * Tag key.
28789
+ */
28790
+ key: string;
28791
+ /**
28792
+ * Tag value.
28793
+ */
28794
+ value: string;
28795
+ }
28796
+ interface GetObjectTag {
28797
+ /**
28798
+ * Tag key.
28799
+ */
28800
+ key: string;
28801
+ /**
28802
+ * Tag value.
28803
+ */
28804
+ value: string;
28805
+ }
28806
+ interface TosObjectAccountAcl {
28807
+ /**
28808
+ * Authorized account ID.
28809
+ */
28810
+ accountId: string;
28811
+ /**
28812
+ * Authorized principal type. Currently, only CanonicalUser is supported.
28813
+ */
28814
+ aclType: string;
28815
+ /**
28816
+ * Authorization permission type. Includes FULL*CONTROL, READ, READ*ACP, WRITE, WRITE_ACP.
28817
+ */
28818
+ permission: string;
28819
+ }
28820
+ interface TosObjectMetadata {
28821
+ /**
28822
+ * Tag key.
28823
+ */
28824
+ key: string;
28825
+ /**
28826
+ * Tag value.
28827
+ */
28828
+ value: string;
28829
+ }
28830
+ interface TosObjectTag {
28831
+ /**
28832
+ * Tag key.
28833
+ */
28834
+ key: string;
28835
+ /**
28836
+ * Tag value.
28837
+ */
28838
+ value: string;
28839
+ }
28299
28840
  }
28300
28841
  export declare namespace transitrouter {
28301
28842
  interface DirectConnectGatewayAttachmentTag {
@@ -29903,51 +30444,867 @@ export declare namespace veenedge {
29903
30444
  */
29904
30445
  value: string;
29905
30446
  }
29906
- interface GetVpcSubnet {
30447
+ interface GetVeenAdvancedConfiguration {
29907
30448
  /**
29908
- * Subnet CIDR Block, e.g. 10.1.0.0/16
30449
+ * Whether deletion protection is enabled for the edge instance. true: enabled. false: not enabled.
29909
30450
  */
29910
- cidr: string;
30451
+ deleteProtection: boolean;
30452
+ }
30453
+ interface GetVeenBandwidthPeakLimitIspConfigs {
29911
30454
  /**
29912
- * Subnet IP Segment, e.g. 10.1.0.0
30455
+ * Bandwidth throttling value for this carrier.
29913
30456
  */
29914
- cidrIp: string;
30457
+ bandwidthPeakLimit: string;
29915
30458
  /**
29916
- * Subnet Mask Length, e.g. 16
30459
+ * Carrier. Value range: CMCC: China Mobile; CTCC: China Telecom; CUCC: China Unicom
29917
30460
  */
29918
- cidrMask: number;
30461
+ isp: string;
30462
+ }
30463
+ interface GetVeenBilling {
29919
30464
  /**
29920
- * Subnet Creation Time, Unix Timestamp
30465
+ * 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.
29921
30466
  */
29922
- createTime: number;
30467
+ bandwidthBillingMethod: string;
29923
30468
  /**
29924
- * Subnet Description
30469
+ * 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.
29925
30470
  */
29926
- desc: string;
30471
+ computingBillingMethod: string;
30472
+ }
30473
+ interface GetVeenBillingConfig {
29927
30474
  /**
29928
- * Subnet Name
30475
+ * Enable auto-renewal. Value options: true: enable auto-renewal. false (default): disable auto-renewal.
29929
30476
  */
29930
- name: string;
30477
+ autoRenew: boolean;
29931
30478
  /**
29932
- * Subnet Status
30479
+ * Unit of resource purchase duration. This parameter must be used together with the pre*paid*period_number parameter. Valid values: monthly: month
29933
30480
  */
29934
- status: string;
30481
+ prePaidPeriod: string;
29935
30482
  /**
29936
- * Unique Identifier of Subnet
30483
+ * 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
30484
+ */
30485
+ prePaidPeriodNumber: number;
30486
+ }
30487
+ interface GetVeenCluster {
30488
+ /**
30489
+ * Node alias.
30490
+ */
30491
+ alias: string;
30492
+ /**
30493
+ * City where the node is located.
30494
+ */
30495
+ city: string;
30496
+ /**
30497
+ * Name of the node
30498
+ */
30499
+ clusterName: string;
30500
+ /**
30501
+ * Country where the node is located.
30502
+ */
30503
+ country: string;
30504
+ /**
30505
+ * Network carrier of the node.
30506
+ */
30507
+ isp: string;
30508
+ /**
30509
+ * Node billing category: 1: Beijing, Shanghai, Guangzhou; 2: regional centers; 3: general cities
30510
+ */
30511
+ level: string;
30512
+ /**
30513
+ * Province where the node is located.
30514
+ */
30515
+ province: string;
30516
+ /**
30517
+ * Region where the node is located.
30518
+ */
30519
+ region: string;
30520
+ }
30521
+ interface GetVeenCustomData {
30522
+ /**
30523
+ * Original user data content. When IsBase64 is true, the data should be Base64 encoded.
30524
+ */
30525
+ data: string;
30526
+ /**
30527
+ * Whether the data uses Base64 encoding
30528
+ */
30529
+ isBase64: boolean;
30530
+ }
30531
+ interface GetVeenGpu {
30532
+ /**
30533
+ * GPU specification information
30534
+ */
30535
+ gpuses: outputs.veenedge.GetVeenGpuGpus[];
30536
+ }
30537
+ interface GetVeenGpuGpus {
30538
+ /**
30539
+ * GPU specification
30540
+ */
30541
+ gpuSpec: outputs.veenedge.GetVeenGpuGpusGpuSpec;
30542
+ /**
30543
+ * GPU quantity.
30544
+ */
30545
+ num: number;
30546
+ }
30547
+ interface GetVeenGpuGpusGpuSpec {
30548
+ /**
30549
+ * GPU type.
30550
+ */
30551
+ gpuType: string;
30552
+ }
30553
+ interface GetVeenImage {
30554
+ /**
30555
+ * Whether to disable VGA. Value range: true: disable VGA; false: enable VGA.
30556
+ */
30557
+ disableVga: boolean;
30558
+ /**
30559
+ * Image boot mode: BIOS, UEFI
30560
+ */
30561
+ imageBootMode: string;
30562
+ /**
30563
+ * Image ID.
30564
+ */
30565
+ imageIdentity: string;
30566
+ /**
30567
+ * Image name.
30568
+ */
30569
+ imageName: string;
30570
+ /**
30571
+ * Image attributes: BENBuildImage: image created from edge instance. LocalImage: local image. PublicBaseImage: public image. UrlImage: image uploaded via URL
30572
+ */
30573
+ property: string;
30574
+ /**
30575
+ * Operating system architecture.
30576
+ */
30577
+ systemArch: string;
30578
+ /**
30579
+ * Operating system bitness.
30580
+ */
30581
+ systemBit: string;
30582
+ /**
30583
+ * Type of operating system.
30584
+ */
30585
+ systemType: string;
30586
+ /**
30587
+ * Operating system version.
30588
+ */
30589
+ systemVersion: string;
30590
+ }
30591
+ interface GetVeenInstanceAreaNum {
30592
+ /**
30593
+ * Region name. You can use the ListAvailableResourceInfo API to query supported regions, cities, carriers, and node information for instance types
30594
+ */
30595
+ areaName: string;
30596
+ /**
30597
+ * 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.
30598
+ */
30599
+ clusterName: string;
30600
+ /**
30601
+ * 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.
30602
+ */
30603
+ defaultIsp: string;
30604
+ /**
30605
+ * 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.
30606
+ * 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:
30607
+ * 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.
30608
+ */
30609
+ externalNetworkMode: string;
30610
+ /**
30611
+ * The host name list to assign to the created instances.
30612
+ */
30613
+ hostNameLists: string[];
30614
+ /**
30615
+ * Carrier. You can use the ListAvailableResourceInfo API to query supported regions, cities, carriers, and node information for instance types
30616
+ */
30617
+ isp: string;
30618
+ /**
30619
+ * 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.
30620
+ * 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.
30621
+ */
30622
+ multiInterfaceNameConfig: outputs.veenedge.GetVeenInstanceAreaNumMultiInterfaceNameConfig;
30623
+ /**
30624
+ * Number of instances.
30625
+ */
30626
+ num: number;
30627
+ /**
30628
+ * 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.
30629
+ */
30630
+ singleInterfaceNameConfig: outputs.veenedge.GetVeenInstanceAreaNumSingleInterfaceNameConfig;
30631
+ /**
30632
+ * Subnet ID. If you specify a custom private network, you must also set subnetIdentity to specify the subnet.
29937
30633
  */
29938
30634
  subnetIdentity: string;
29939
30635
  /**
29940
- * Subnet Update Time, Unix Timestamp
30636
+ * 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
29941
30637
  */
29942
- updateTime: number;
30638
+ vpcIdentity: string;
29943
30639
  }
29944
- interface GetVpcTag {
30640
+ interface GetVeenInstanceAreaNumMultiInterfaceNameConfig {
29945
30641
  /**
29946
- * Tag Key
30642
+ * 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.
29947
30643
  */
29948
- key: string;
30644
+ cmccExternalInterfaceName: string;
29949
30645
  /**
29950
- * Tag Value
30646
+ * 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
30647
+ */
30648
+ ctccExternalInterfaceName: string;
30649
+ /**
30650
+ * 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
30651
+ */
30652
+ cuccExternalInterfaceName: string;
30653
+ /**
30654
+ * 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
30655
+ */
30656
+ internalInterfaceName: string;
30657
+ }
30658
+ interface GetVeenInstanceAreaNumSingleInterfaceNameConfig {
30659
+ /**
30660
+ * 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.
30661
+ */
30662
+ externalInterfaceName: string;
30663
+ /**
30664
+ * 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
30665
+ */
30666
+ internalInterfaceName: string;
30667
+ }
30668
+ interface GetVeenMonitorAgent {
30669
+ /**
30670
+ * 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.
30671
+ */
30672
+ agentStatus: string;
30673
+ }
30674
+ interface GetVeenNetwork {
30675
+ /**
30676
+ * Number of allocated auxiliary private IP addresses
30677
+ */
30678
+ actualSecondaryIpNum: number;
30679
+ /**
30680
+ * Percentile peak bandwidth, no fixed bandwidth value.
30681
+ */
30682
+ bandwidthPeakConfigRatio: outputs.veenedge.GetVeenNetworkBandwidthPeakConfigRatio;
30683
+ /**
30684
+ * Bandwidth peak update status: updating: updating. ready: update complete.
30685
+ */
30686
+ bandwidthPeakUpdateStatus: string;
30687
+ /**
30688
+ * Default carrier
30689
+ */
30690
+ defaultIsp: string;
30691
+ /**
30692
+ * Disable IPv4: true: IPv4 disabled. false: IPv4 enabled
30693
+ */
30694
+ disableIpv4: boolean;
30695
+ /**
30696
+ * DNS list. The first IP address is the primary DNS, and the subsequent IP addresses are backup DNS servers
30697
+ */
30698
+ dnsLists: string[];
30699
+ /**
30700
+ * 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.
30701
+ */
30702
+ dnsType: string;
30703
+ /**
30704
+ * Enable IPv6: true: enable IPv6. false: disable IPv6.
30705
+ */
30706
+ enableIpv6: boolean;
30707
+ /**
30708
+ * 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.
30709
+ */
30710
+ externalNetworkMode: string;
30711
+ /**
30712
+ * 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.
30713
+ */
30714
+ limitMode: string;
30715
+ /**
30716
+ * Edge instance TCP session timeout. Unit: seconds.
30717
+ */
30718
+ tcpTimeout: number;
30719
+ /**
30720
+ * UDP session timeout for the edge instance. Unit: seconds.
30721
+ */
30722
+ udpTimeout: number;
30723
+ /**
30724
+ * Whether it is a VF passthrough type: true: VF passthrough type. false: non-VF passthrough type.
30725
+ */
30726
+ vfPassthrough: boolean;
30727
+ /**
30728
+ * Whether it is a VLAN VF passthrough type: true: VLAN VF passthrough type. false: Non-VLAN VF passthrough type.
30729
+ */
30730
+ vlanVfPassthrough: boolean;
30731
+ /**
30732
+ * Number of required auxiliary private network IP addresses
30733
+ */
30734
+ wantedSecondaryIpNum: number;
30735
+ }
30736
+ interface GetVeenNetworkBandwidthPeakConfigRatio {
30737
+ /**
30738
+ * Bandwidth ratio in enhanced/burst mode
30739
+ */
30740
+ enhancedRatio: number;
30741
+ /**
30742
+ * Bandwidth ratio in standard mode
30743
+ */
30744
+ normalRatio: number;
30745
+ }
30746
+ interface GetVeenSecret {
30747
+ /**
30748
+ * Edge instance login password type: 2: custom password. 3: SSH Key password. 4: do not inject login credentials.
30749
+ */
30750
+ secretType: number;
30751
+ }
30752
+ interface GetVeenStorage {
30753
+ /**
30754
+ * Data disk. This parameter is used to add a single data disk
30755
+ */
30756
+ dataDisk: outputs.veenedge.GetVeenStorageDataDisk;
30757
+ /**
30758
+ * Data disk list
30759
+ */
30760
+ dataDiskLists: outputs.veenedge.GetVeenStorageDataDiskList[];
30761
+ /**
30762
+ * System disk
30763
+ */
30764
+ systemDisk: outputs.veenedge.GetVeenStorageSystemDisk;
30765
+ }
30766
+ interface GetVeenStorageDataDisk {
30767
+ /**
30768
+ * Disk capacity. Unit: GB.
30769
+ */
30770
+ capacity: string;
30771
+ /**
30772
+ * Release disk when instance is deleted. true: delete disk with instance; false: retain disk independently.
30773
+ */
30774
+ deleteWithInstance: boolean;
30775
+ /**
30776
+ * Unique disk ID, the primary key of the cloud disk resource.
30777
+ */
30778
+ diskIdentity: string;
30779
+ /**
30780
+ * Local disk specification type. Applies only to local disk instances; cloud disk instances leave this blank.
30781
+ */
30782
+ localDiskClass: string;
30783
+ /**
30784
+ * Local disk resource name, exclusive identifier for local disk instances. Not required for cloud disk instances
30785
+ */
30786
+ localDiskResourceName: string;
30787
+ /**
30788
+ * Disk type: CloudBlockHDD: HDD cloud disk. CloudBlockSSD: SSD cloud disk.
30789
+ */
30790
+ storageType: string;
30791
+ }
30792
+ interface GetVeenStorageDataDiskList {
30793
+ /**
30794
+ * Disk capacity. Unit: GB.
30795
+ */
30796
+ capacity: string;
30797
+ /**
30798
+ * Release disk when instance is deleted. true: delete disk with instance; false: retain disk independently.
30799
+ */
30800
+ deleteWithInstance: boolean;
30801
+ /**
30802
+ * Unique disk ID, the primary key of the cloud disk resource.
30803
+ */
30804
+ diskIdentity: string;
30805
+ /**
30806
+ * Local disk specification type. Applies only to local disk instances; cloud disk instances leave this blank.
30807
+ */
30808
+ localDiskClass: string;
30809
+ /**
30810
+ * Local disk resource name, exclusive identifier for local disk instances. Not required for cloud disk instances
30811
+ */
30812
+ localDiskResourceName: string;
30813
+ /**
30814
+ * Disk type: CloudBlockHDD: HDD cloud disk. CloudBlockSSD: SSD cloud disk.
30815
+ */
30816
+ storageType: string;
30817
+ }
30818
+ interface GetVeenStorageSystemDisk {
30819
+ /**
30820
+ * Disk capacity. Unit: GB.
30821
+ */
30822
+ capacity: string;
30823
+ /**
30824
+ * Release disk when instance is deleted. true: delete disk with instance; false: retain disk independently.
30825
+ */
30826
+ deleteWithInstance: boolean;
30827
+ /**
30828
+ * Unique disk ID, the primary key of the cloud disk resource.
30829
+ */
30830
+ diskIdentity: string;
30831
+ /**
30832
+ * Local disk specification type. Applies only to local disk instances; cloud disk instances leave this blank.
30833
+ */
30834
+ localDiskClass: string;
30835
+ /**
30836
+ * Local disk resource name, exclusive identifier for local disk instances. Not required for cloud disk instances
30837
+ */
30838
+ localDiskResourceName: string;
30839
+ /**
30840
+ * Disk type: CloudBlockHDD: HDD cloud disk. CloudBlockSSD: SSD cloud disk.
30841
+ */
30842
+ storageType: string;
30843
+ }
30844
+ interface GetVeenTag {
30845
+ /**
30846
+ * Tag key.
30847
+ */
30848
+ key: string;
30849
+ /**
30850
+ * Tag value.
30851
+ */
30852
+ value: string;
30853
+ }
30854
+ interface GetVpcSubnet {
30855
+ /**
30856
+ * Subnet CIDR Block, e.g. 10.1.0.0/16
30857
+ */
30858
+ cidr: string;
30859
+ /**
30860
+ * Subnet IP Segment, e.g. 10.1.0.0
30861
+ */
30862
+ cidrIp: string;
30863
+ /**
30864
+ * Subnet Mask Length, e.g. 16
30865
+ */
30866
+ cidrMask: number;
30867
+ /**
30868
+ * Subnet Creation Time, Unix Timestamp
30869
+ */
30870
+ createTime: number;
30871
+ /**
30872
+ * Subnet Description
30873
+ */
30874
+ desc: string;
30875
+ /**
30876
+ * Subnet Name
30877
+ */
30878
+ name: string;
30879
+ /**
30880
+ * Subnet Status
30881
+ */
30882
+ status: string;
30883
+ /**
30884
+ * Unique Identifier of Subnet
30885
+ */
30886
+ subnetIdentity: string;
30887
+ /**
30888
+ * Subnet Update Time, Unix Timestamp
30889
+ */
30890
+ updateTime: number;
30891
+ }
30892
+ interface GetVpcTag {
30893
+ /**
30894
+ * Tag Key
30895
+ */
30896
+ key: string;
30897
+ /**
30898
+ * Tag Value
30899
+ */
30900
+ value: string;
30901
+ }
30902
+ interface VeenAdvancedConfiguration {
30903
+ /**
30904
+ * Whether deletion protection is enabled for the edge instance. true: enabled. false: not enabled.
30905
+ */
30906
+ deleteProtection: boolean;
30907
+ }
30908
+ interface VeenBandwidthPeakLimitIspConfigs {
30909
+ /**
30910
+ * Bandwidth throttling value for this carrier.
30911
+ */
30912
+ bandwidthPeakLimit: string;
30913
+ /**
30914
+ * Carrier. Value range: CMCC: China Mobile; CTCC: China Telecom; CUCC: China Unicom
30915
+ */
30916
+ isp: string;
30917
+ }
30918
+ interface VeenBilling {
30919
+ /**
30920
+ * 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.
30921
+ */
30922
+ bandwidthBillingMethod: string;
30923
+ /**
30924
+ * 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.
30925
+ */
30926
+ computingBillingMethod: string;
30927
+ }
30928
+ interface VeenBillingConfig {
30929
+ /**
30930
+ * Enable auto-renewal. Value options: true: enable auto-renewal. false (default): disable auto-renewal.
30931
+ */
30932
+ autoRenew: boolean;
30933
+ /**
30934
+ * Unit of resource purchase duration. This parameter must be used together with the pre*paid*period_number parameter. Valid values: monthly: month
30935
+ */
30936
+ prePaidPeriod: string;
30937
+ /**
30938
+ * 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
30939
+ */
30940
+ prePaidPeriodNumber: number;
30941
+ }
30942
+ interface VeenCluster {
30943
+ /**
30944
+ * Node alias.
30945
+ */
30946
+ alias: string;
30947
+ /**
30948
+ * City where the node is located.
30949
+ */
30950
+ city: string;
30951
+ /**
30952
+ * Name of the node
30953
+ */
30954
+ clusterName: string;
30955
+ /**
30956
+ * Country where the node is located.
30957
+ */
30958
+ country: string;
30959
+ /**
30960
+ * Network carrier of the node.
30961
+ */
30962
+ isp: string;
30963
+ /**
30964
+ * Node billing category: 1: Beijing, Shanghai, Guangzhou; 2: regional centers; 3: general cities
30965
+ */
30966
+ level: string;
30967
+ /**
30968
+ * Province where the node is located.
30969
+ */
30970
+ province: string;
30971
+ /**
30972
+ * Region where the node is located.
30973
+ */
30974
+ region: string;
30975
+ }
30976
+ interface VeenCustomData {
30977
+ /**
30978
+ * Original user data content. When IsBase64 is true, the data should be Base64 encoded.
30979
+ */
30980
+ data: string;
30981
+ /**
30982
+ * Whether the data uses Base64 encoding
30983
+ */
30984
+ isBase64: boolean;
30985
+ }
30986
+ interface VeenGpu {
30987
+ /**
30988
+ * GPU specification information
30989
+ * 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.
30990
+ */
30991
+ gpuses: outputs.veenedge.VeenGpuGpus[];
30992
+ }
30993
+ interface VeenGpuGpus {
30994
+ /**
30995
+ * GPU specification
30996
+ */
30997
+ gpuSpec: outputs.veenedge.VeenGpuGpusGpuSpec;
30998
+ /**
30999
+ * GPU quantity.
31000
+ */
31001
+ num: number;
31002
+ }
31003
+ interface VeenGpuGpusGpuSpec {
31004
+ /**
31005
+ * GPU type.
31006
+ */
31007
+ gpuType: string;
31008
+ }
31009
+ interface VeenImage {
31010
+ /**
31011
+ * Whether to disable VGA. Value range: true: disable VGA; false: enable VGA.
31012
+ */
31013
+ disableVga: boolean;
31014
+ /**
31015
+ * Image boot mode: BIOS, UEFI
31016
+ */
31017
+ imageBootMode: string;
31018
+ /**
31019
+ * Image ID.
31020
+ */
31021
+ imageIdentity: string;
31022
+ /**
31023
+ * Image name.
31024
+ */
31025
+ imageName: string;
31026
+ /**
31027
+ * Image attributes: BENBuildImage: image created from edge instance. LocalImage: local image. PublicBaseImage: public image. UrlImage: image uploaded via URL
31028
+ */
31029
+ property: string;
31030
+ /**
31031
+ * Operating system architecture.
31032
+ */
31033
+ systemArch: string;
31034
+ /**
31035
+ * Operating system bitness.
31036
+ */
31037
+ systemBit: string;
31038
+ /**
31039
+ * Type of operating system.
31040
+ */
31041
+ systemType: string;
31042
+ /**
31043
+ * Operating system version.
31044
+ */
31045
+ systemVersion: string;
31046
+ }
31047
+ interface VeenInstanceAreaNum {
31048
+ /**
31049
+ * Region name. You can use the ListAvailableResourceInfo API to query supported regions, cities, carriers, and node information for instance types
31050
+ */
31051
+ areaName: string;
31052
+ /**
31053
+ * 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.
31054
+ */
31055
+ clusterName: string;
31056
+ /**
31057
+ * 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.
31058
+ */
31059
+ defaultIsp: string;
31060
+ /**
31061
+ * 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.
31062
+ * 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:
31063
+ * 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.
31064
+ */
31065
+ externalNetworkMode: string;
31066
+ /**
31067
+ * The host name list to assign to the created instances.
31068
+ */
31069
+ hostNameLists: string[];
31070
+ /**
31071
+ * Carrier. You can use the ListAvailableResourceInfo API to query supported regions, cities, carriers, and node information for instance types
31072
+ */
31073
+ isp: string;
31074
+ /**
31075
+ * 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.
31076
+ * 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.
31077
+ */
31078
+ multiInterfaceNameConfig: outputs.veenedge.VeenInstanceAreaNumMultiInterfaceNameConfig;
31079
+ /**
31080
+ * Number of instances.
31081
+ */
31082
+ num: number;
31083
+ /**
31084
+ * 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.
31085
+ */
31086
+ singleInterfaceNameConfig: outputs.veenedge.VeenInstanceAreaNumSingleInterfaceNameConfig;
31087
+ /**
31088
+ * Subnet ID. If you specify a custom private network, you must also set subnetIdentity to specify the subnet.
31089
+ */
31090
+ subnetIdentity: string;
31091
+ /**
31092
+ * 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
31093
+ */
31094
+ vpcIdentity: string;
31095
+ }
31096
+ interface VeenInstanceAreaNumMultiInterfaceNameConfig {
31097
+ /**
31098
+ * 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.
31099
+ */
31100
+ cmccExternalInterfaceName: string;
31101
+ /**
31102
+ * 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
31103
+ */
31104
+ ctccExternalInterfaceName: string;
31105
+ /**
31106
+ * 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
31107
+ */
31108
+ cuccExternalInterfaceName: string;
31109
+ /**
31110
+ * 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
31111
+ */
31112
+ internalInterfaceName: string;
31113
+ }
31114
+ interface VeenInstanceAreaNumSingleInterfaceNameConfig {
31115
+ /**
31116
+ * 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.
31117
+ */
31118
+ externalInterfaceName: string;
31119
+ /**
31120
+ * 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
31121
+ */
31122
+ internalInterfaceName: string;
31123
+ }
31124
+ interface VeenMonitorAgent {
31125
+ /**
31126
+ * 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.
31127
+ */
31128
+ agentStatus: string;
31129
+ }
31130
+ interface VeenNetwork {
31131
+ /**
31132
+ * Number of allocated auxiliary private IP addresses
31133
+ */
31134
+ actualSecondaryIpNum: number;
31135
+ /**
31136
+ * Percentile peak bandwidth, no fixed bandwidth value.
31137
+ */
31138
+ bandwidthPeakConfigRatio: outputs.veenedge.VeenNetworkBandwidthPeakConfigRatio;
31139
+ /**
31140
+ * Bandwidth peak update status: updating: updating. ready: update complete.
31141
+ */
31142
+ bandwidthPeakUpdateStatus: string;
31143
+ /**
31144
+ * Default carrier
31145
+ */
31146
+ defaultIsp: string;
31147
+ /**
31148
+ * Disable IPv4: true: IPv4 disabled. false: IPv4 enabled
31149
+ */
31150
+ disableIpv4: boolean;
31151
+ /**
31152
+ * DNS list. The first IP address is the primary DNS, and the subsequent IP addresses are backup DNS servers
31153
+ */
31154
+ dnsLists: string[];
31155
+ /**
31156
+ * 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.
31157
+ */
31158
+ dnsType: string;
31159
+ /**
31160
+ * Enable IPv6: true: enable IPv6. false: disable IPv6.
31161
+ */
31162
+ enableIpv6: boolean;
31163
+ /**
31164
+ * 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.
31165
+ */
31166
+ externalNetworkMode: string;
31167
+ /**
31168
+ * 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.
31169
+ */
31170
+ limitMode: string;
31171
+ /**
31172
+ * Edge instance TCP session timeout. Unit: seconds.
31173
+ */
31174
+ tcpTimeout: number;
31175
+ /**
31176
+ * UDP session timeout for the edge instance. Unit: seconds.
31177
+ */
31178
+ udpTimeout: number;
31179
+ /**
31180
+ * Whether it is a VF passthrough type: true: VF passthrough type. false: non-VF passthrough type.
31181
+ */
31182
+ vfPassthrough: boolean;
31183
+ /**
31184
+ * Whether it is a VLAN VF passthrough type: true: VLAN VF passthrough type. false: Non-VLAN VF passthrough type.
31185
+ */
31186
+ vlanVfPassthrough: boolean;
31187
+ /**
31188
+ * Number of required auxiliary private network IP addresses
31189
+ */
31190
+ wantedSecondaryIpNum: number;
31191
+ }
31192
+ interface VeenNetworkBandwidthPeakConfigRatio {
31193
+ /**
31194
+ * Bandwidth ratio in enhanced/burst mode
31195
+ */
31196
+ enhancedRatio: number;
31197
+ /**
31198
+ * Bandwidth ratio in standard mode
31199
+ */
31200
+ normalRatio: number;
31201
+ }
31202
+ interface VeenSecret {
31203
+ /**
31204
+ * Edge instance login password type: 2: custom password. 3: SSH Key password. 4: do not inject login credentials.
31205
+ */
31206
+ secretType: number;
31207
+ }
31208
+ interface VeenStorage {
31209
+ /**
31210
+ * Data disk. This parameter is used to add a single data disk
31211
+ */
31212
+ dataDisk: outputs.veenedge.VeenStorageDataDisk;
31213
+ /**
31214
+ * Data disk list
31215
+ * 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.
31216
+ */
31217
+ dataDiskLists: outputs.veenedge.VeenStorageDataDiskList[];
31218
+ /**
31219
+ * System disk
31220
+ */
31221
+ systemDisk: outputs.veenedge.VeenStorageSystemDisk;
31222
+ }
31223
+ interface VeenStorageDataDisk {
31224
+ /**
31225
+ * Disk capacity. Unit: GB.
31226
+ */
31227
+ capacity: string;
31228
+ /**
31229
+ * Release disk when instance is deleted. true: delete disk with instance; false: retain disk independently.
31230
+ */
31231
+ deleteWithInstance: boolean;
31232
+ /**
31233
+ * Unique disk ID, the primary key of the cloud disk resource.
31234
+ */
31235
+ diskIdentity: string;
31236
+ /**
31237
+ * Local disk specification type. Applies only to local disk instances; cloud disk instances leave this blank.
31238
+ */
31239
+ localDiskClass: string;
31240
+ /**
31241
+ * Local disk resource name, exclusive identifier for local disk instances. Not required for cloud disk instances
31242
+ */
31243
+ localDiskResourceName: string;
31244
+ /**
31245
+ * Disk type: CloudBlockHDD: HDD cloud disk. CloudBlockSSD: SSD cloud disk.
31246
+ */
31247
+ storageType: string;
31248
+ }
31249
+ interface VeenStorageDataDiskList {
31250
+ /**
31251
+ * Disk capacity. Unit: GB.
31252
+ */
31253
+ capacity: string;
31254
+ /**
31255
+ * Release disk when instance is deleted. true: delete disk with instance; false: retain disk independently.
31256
+ */
31257
+ deleteWithInstance: boolean;
31258
+ /**
31259
+ * Unique disk ID, the primary key of the cloud disk resource.
31260
+ */
31261
+ diskIdentity: string;
31262
+ /**
31263
+ * Local disk specification type. Applies only to local disk instances; cloud disk instances leave this blank.
31264
+ */
31265
+ localDiskClass: string;
31266
+ /**
31267
+ * Local disk resource name, exclusive identifier for local disk instances. Not required for cloud disk instances
31268
+ */
31269
+ localDiskResourceName: string;
31270
+ /**
31271
+ * Disk type: CloudBlockHDD: HDD cloud disk. CloudBlockSSD: SSD cloud disk.
31272
+ */
31273
+ storageType: string;
31274
+ }
31275
+ interface VeenStorageSystemDisk {
31276
+ /**
31277
+ * Disk capacity. Unit: GB.
31278
+ */
31279
+ capacity: string;
31280
+ /**
31281
+ * Release disk when instance is deleted. true: delete disk with instance; false: retain disk independently.
31282
+ */
31283
+ deleteWithInstance: boolean;
31284
+ /**
31285
+ * Unique disk ID, the primary key of the cloud disk resource.
31286
+ */
31287
+ diskIdentity: string;
31288
+ /**
31289
+ * Local disk specification type. Applies only to local disk instances; cloud disk instances leave this blank.
31290
+ */
31291
+ localDiskClass: string;
31292
+ /**
31293
+ * Local disk resource name, exclusive identifier for local disk instances. Not required for cloud disk instances
31294
+ */
31295
+ localDiskResourceName: string;
31296
+ /**
31297
+ * Disk type: CloudBlockHDD: HDD cloud disk. CloudBlockSSD: SSD cloud disk.
31298
+ */
31299
+ storageType: string;
31300
+ }
31301
+ interface VeenTag {
31302
+ /**
31303
+ * Tag key.
31304
+ */
31305
+ key: string;
31306
+ /**
31307
+ * Tag value.
29951
31308
  */
29952
31309
  value: string;
29953
31310
  }