@pulumi/alicloud 3.30.0 → 3.31.0
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/adb/dbclusterLakeVersion.d.ts +30 -0
- package/adb/dbclusterLakeVersion.js +4 -0
- package/adb/dbclusterLakeVersion.js.map +1 -1
- package/cen/transitRouterVpnAttachment.d.ts +81 -9
- package/cen/transitRouterVpnAttachment.js +81 -9
- package/cen/transitRouterVpnAttachment.js.map +1 -1
- package/dcdn/domain.d.ts +8 -0
- package/dcdn/domain.js +2 -0
- package/dcdn/domain.js.map +1 -1
- package/dcdn/getKvAccount.d.ts +66 -0
- package/dcdn/getKvAccount.js +52 -0
- package/dcdn/getKvAccount.js.map +1 -0
- package/dcdn/index.d.ts +9 -0
- package/dcdn/index.js +14 -1
- package/dcdn/index.js.map +1 -1
- package/dcdn/kv.d.ts +109 -0
- package/dcdn/kv.js +99 -0
- package/dcdn/kv.js.map +1 -0
- package/dcdn/kvNamespace.d.ts +97 -0
- package/dcdn/kvNamespace.js +88 -0
- package/dcdn/kvNamespace.js.map +1 -0
- package/dts/getInstances.d.ts +109 -0
- package/dts/getInstances.js +61 -0
- package/dts/getInstances.js.map +1 -0
- package/dts/index.d.ts +6 -0
- package/dts/index.js +9 -1
- package/dts/index.js.map +1 -1
- package/dts/instance.d.ts +533 -0
- package/dts/instance.js +110 -0
- package/dts/instance.js.map +1 -0
- package/dts/subscriptionJob.d.ts +7 -7
- package/dts/subscriptionJob.js +10 -1
- package/dts/subscriptionJob.js.map +1 -1
- package/expressconnect/physicalConnection.d.ts +2 -2
- package/expressconnect/physicalConnection.js +0 -3
- package/expressconnect/physicalConnection.js.map +1 -1
- package/gpdb/elasticInstance.d.ts +0 -5
- package/gpdb/elasticInstance.js +0 -5
- package/gpdb/elasticInstance.js.map +1 -1
- package/hbr/getHanaBackupClients.d.ts +133 -0
- package/hbr/getHanaBackupClients.js +66 -0
- package/hbr/getHanaBackupClients.js.map +1 -0
- package/hbr/hanaBackupClient.d.ts +147 -0
- package/hbr/hanaBackupClient.js +97 -0
- package/hbr/hanaBackupClient.js.map +1 -0
- package/hbr/index.d.ts +6 -0
- package/hbr/index.js +9 -1
- package/hbr/index.js.map +1 -1
- package/kms/getKeys.d.ts +8 -0
- package/kms/getKeys.js.map +1 -1
- package/kms/getSecrets.d.ts +4 -2
- package/kms/getSecrets.js.map +1 -1
- package/nlb/index.d.ts +3 -0
- package/nlb/index.js +6 -1
- package/nlb/index.js.map +1 -1
- package/nlb/loadBalancerSecurityGroupAttachment.d.ts +137 -0
- package/nlb/loadBalancerSecurityGroupAttachment.js +124 -0
- package/nlb/loadBalancerSecurityGroupAttachment.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/rds/account.d.ts +3 -0
- package/rds/account.js +2 -0
- package/rds/account.js.map +1 -1
- package/rds/ddrInstance.d.ts +1041 -0
- package/rds/ddrInstance.js +214 -0
- package/rds/ddrInstance.js.map +1 -0
- package/rds/getCharacterSetNames.d.ts +69 -0
- package/rds/getCharacterSetNames.js +54 -0
- package/rds/getCharacterSetNames.js.map +1 -0
- package/rds/getCollationTimeZones.d.ts +77 -0
- package/rds/getCollationTimeZones.js +59 -0
- package/rds/getCollationTimeZones.js.map +1 -0
- package/rds/index.d.ts +9 -0
- package/rds/index.js +12 -1
- package/rds/index.js.map +1 -1
- package/rds/instance.d.ts +27 -9
- package/rds/instance.js +2 -0
- package/rds/instance.js.map +1 -1
- package/rds/rdsAccount.d.ts +12 -0
- package/rds/rdsAccount.js +2 -0
- package/rds/rdsAccount.js.map +1 -1
- package/sae/application.d.ts +12 -0
- package/sae/application.js +2 -0
- package/sae/application.js.map +1 -1
- package/types/input.d.ts +69 -0
- package/types/output.d.ts +178 -0
package/types/output.d.ts
CHANGED
|
@@ -14370,6 +14370,63 @@ export declare namespace dts {
|
|
|
14370
14370
|
*/
|
|
14371
14371
|
unconsumedData: number;
|
|
14372
14372
|
}
|
|
14373
|
+
interface GetInstancesInstance {
|
|
14374
|
+
/**
|
|
14375
|
+
* Instance creation time
|
|
14376
|
+
*/
|
|
14377
|
+
createTime: string;
|
|
14378
|
+
/**
|
|
14379
|
+
* The target database engine type.
|
|
14380
|
+
*/
|
|
14381
|
+
destinationEndpointEngineName: string;
|
|
14382
|
+
/**
|
|
14383
|
+
* The destination instance region.
|
|
14384
|
+
*/
|
|
14385
|
+
destinationRegion: string;
|
|
14386
|
+
/**
|
|
14387
|
+
* The ID of the subscription instance.
|
|
14388
|
+
*/
|
|
14389
|
+
dtsInstanceId: string;
|
|
14390
|
+
/**
|
|
14391
|
+
* The ID of the instance.
|
|
14392
|
+
*/
|
|
14393
|
+
id: string;
|
|
14394
|
+
/**
|
|
14395
|
+
* The type of the migration or synchronization instance.- The specifications of the migration instance: **xxlarge**, **xlarge**, **large**, **medium**, **small**.- The types of synchronization instances: **large**, **medium**, **small**, **micro**.
|
|
14396
|
+
*/
|
|
14397
|
+
instanceClass: string;
|
|
14398
|
+
instanceName: string;
|
|
14399
|
+
/**
|
|
14400
|
+
* The payment type of the resource.
|
|
14401
|
+
*/
|
|
14402
|
+
paymentType: string;
|
|
14403
|
+
/**
|
|
14404
|
+
* Resource Group ID
|
|
14405
|
+
*/
|
|
14406
|
+
resourceGroupId: string;
|
|
14407
|
+
/**
|
|
14408
|
+
* Source instance database engine type.
|
|
14409
|
+
*/
|
|
14410
|
+
sourceEndpointEngineName: string;
|
|
14411
|
+
/**
|
|
14412
|
+
* The source instance region.
|
|
14413
|
+
*/
|
|
14414
|
+
sourceRegion: string;
|
|
14415
|
+
/**
|
|
14416
|
+
* Instance status.
|
|
14417
|
+
*/
|
|
14418
|
+
status: string;
|
|
14419
|
+
/**
|
|
14420
|
+
* The tag value corresponding to the tag key.
|
|
14421
|
+
*/
|
|
14422
|
+
tags?: {
|
|
14423
|
+
[key: string]: any;
|
|
14424
|
+
};
|
|
14425
|
+
/**
|
|
14426
|
+
* The instance type. Valid values: -**MIGRATION**: MIGRATION.-**SYNC**: synchronization.-**SUBSCRIBE**: SUBSCRIBE.
|
|
14427
|
+
*/
|
|
14428
|
+
type: string;
|
|
14429
|
+
}
|
|
14373
14430
|
interface GetMigrationJobsJob {
|
|
14374
14431
|
/**
|
|
14375
14432
|
* Whether or not to execute DTS supports schema migration, full data migration, or full-data initialization.
|
|
@@ -25965,6 +26022,68 @@ export declare namespace hbr {
|
|
|
25965
26022
|
*/
|
|
25966
26023
|
vaultId: string;
|
|
25967
26024
|
}
|
|
26025
|
+
interface GetHanaBackupClientsHanaBackupClient {
|
|
26026
|
+
/**
|
|
26027
|
+
* The alert settings.
|
|
26028
|
+
*/
|
|
26029
|
+
alertSetting: string;
|
|
26030
|
+
/**
|
|
26031
|
+
* The ID of the backup client.
|
|
26032
|
+
*/
|
|
26033
|
+
clientId: string;
|
|
26034
|
+
/**
|
|
26035
|
+
* The name of the backup client.
|
|
26036
|
+
*/
|
|
26037
|
+
clientName: string;
|
|
26038
|
+
/**
|
|
26039
|
+
* The type of the backup client.
|
|
26040
|
+
*/
|
|
26041
|
+
clientType: string;
|
|
26042
|
+
/**
|
|
26043
|
+
* The version number of the backup client.
|
|
26044
|
+
*/
|
|
26045
|
+
clientVersion: string;
|
|
26046
|
+
/**
|
|
26047
|
+
* The ID of the SAP HANA instance.
|
|
26048
|
+
*/
|
|
26049
|
+
clusterId: string;
|
|
26050
|
+
/**
|
|
26051
|
+
* The id of the Hana Backup Client. It formats as `<vault_id>:<client_id>`.
|
|
26052
|
+
*/
|
|
26053
|
+
id: string;
|
|
26054
|
+
/**
|
|
26055
|
+
* The ID of the instance.
|
|
26056
|
+
*/
|
|
26057
|
+
instanceId: string;
|
|
26058
|
+
/**
|
|
26059
|
+
* The name of the ECS instance.
|
|
26060
|
+
*/
|
|
26061
|
+
instanceName: string;
|
|
26062
|
+
/**
|
|
26063
|
+
* The maximum version number of the backup client.
|
|
26064
|
+
*/
|
|
26065
|
+
maxVersion: string;
|
|
26066
|
+
/**
|
|
26067
|
+
* The network type.
|
|
26068
|
+
*/
|
|
26069
|
+
networkType: string;
|
|
26070
|
+
/**
|
|
26071
|
+
* The status of the Hana Backup Client. Valid Values: `REGISTERED`, `ACTIVATED`, `DEACTIVATED`, `INSTALLING`, `INSTALL_FAILED`, `NOT_INSTALLED`, `UPGRADING`, `UPGRADE_FAILED`, `UNINSTALLING`, `UNINSTALL_FAILED`, `STOPPED`, `UNKNOWN`.
|
|
26072
|
+
*/
|
|
26073
|
+
status: string;
|
|
26074
|
+
/**
|
|
26075
|
+
* The status information.
|
|
26076
|
+
*/
|
|
26077
|
+
statusMessage: string;
|
|
26078
|
+
/**
|
|
26079
|
+
* Indicates whether data is transmitted over HTTPS.
|
|
26080
|
+
*/
|
|
26081
|
+
useHttps: boolean;
|
|
26082
|
+
/**
|
|
26083
|
+
* The ID of the backup vault.
|
|
26084
|
+
*/
|
|
26085
|
+
vaultId: string;
|
|
26086
|
+
}
|
|
25968
26087
|
interface GetHanaBackupPlansPlan {
|
|
25969
26088
|
/**
|
|
25970
26089
|
* The backup prefix.
|
|
@@ -27807,6 +27926,10 @@ export declare namespace log {
|
|
|
27807
27926
|
* The owner of project.
|
|
27808
27927
|
*/
|
|
27809
27928
|
owner: string;
|
|
27929
|
+
/**
|
|
27930
|
+
* The policy of project.
|
|
27931
|
+
*/
|
|
27932
|
+
policy: string;
|
|
27810
27933
|
/**
|
|
27811
27934
|
* The name of the project.
|
|
27812
27935
|
*/
|
|
@@ -33325,6 +33448,47 @@ export declare namespace rdc {
|
|
|
33325
33448
|
}
|
|
33326
33449
|
}
|
|
33327
33450
|
export declare namespace rds {
|
|
33451
|
+
interface DdrInstanceParameter {
|
|
33452
|
+
name: string;
|
|
33453
|
+
value: string;
|
|
33454
|
+
}
|
|
33455
|
+
interface DdrInstancePgHbaConf {
|
|
33456
|
+
/**
|
|
33457
|
+
* The IP addresses from which the specified users can access the specified databases. If you set this parameter to 0.0.0.0/0, the specified users are allowed to access the specified databases from all IP addresses.
|
|
33458
|
+
*/
|
|
33459
|
+
address: string;
|
|
33460
|
+
/**
|
|
33461
|
+
* The name of the database that the specified users are allowed to access. If you set this parameter to all, the specified users are allowed to access all databases in the instance. If you specify multiple databases, separate the database names with commas (,).
|
|
33462
|
+
*/
|
|
33463
|
+
database: string;
|
|
33464
|
+
/**
|
|
33465
|
+
* The mask of the instance. If the value of the `Address` parameter is an IP address, you can use this parameter to specify the mask of the IP address.
|
|
33466
|
+
*/
|
|
33467
|
+
mask: string;
|
|
33468
|
+
/**
|
|
33469
|
+
* The authentication method of Lightweight Directory Access Protocol (LDAP). Valid values: `trust`, `reject`, `scram-sha-256`, `md5`, `password`, `gss`, `sspi`, `ldap`, `radius`, `cert`, `pam`.
|
|
33470
|
+
*/
|
|
33471
|
+
method: string;
|
|
33472
|
+
/**
|
|
33473
|
+
* Optional. The value of this parameter is based on the value of the HbaItem.N.Method parameter. In this topic, LDAP is used as an example. You must configure this parameter. For more information, see [Authentication Methods](https://www.postgresql.org/docs/11/auth-methods.html).
|
|
33474
|
+
*/
|
|
33475
|
+
option: string;
|
|
33476
|
+
/**
|
|
33477
|
+
* The priority of an AD domain. If you set this parameter to 0, the AD domain has the highest priority. Valid values: 0 to 10000. This parameter is used to identify each AD domain. When you add an AD domain, the value of the PriorityId parameter of the new AD domain cannot be the same as the value of the PriorityId parameter for any existing AD domain. When you modify or delete an AD domain, you must also modify or delete the value of the PriorityId parameter for this AD domain.
|
|
33478
|
+
*/
|
|
33479
|
+
priorityId: number;
|
|
33480
|
+
/**
|
|
33481
|
+
* The type of connection to the instance. Valid values:
|
|
33482
|
+
* * **host**: specifies to verify TCP/IP connections, including SSL connections and non-SSL connections.
|
|
33483
|
+
* * **hostssl**: specifies to verify only TCP/IP connections that are established over SSL connections.
|
|
33484
|
+
* * **hostnossl**: specifies to verify only TCP/IP connections that are established over non-SSL connections.
|
|
33485
|
+
*/
|
|
33486
|
+
type: string;
|
|
33487
|
+
/**
|
|
33488
|
+
* The user that is allowed to access the instance. If you specify multiple users, separate the usernames with commas (,).
|
|
33489
|
+
*/
|
|
33490
|
+
user: string;
|
|
33491
|
+
}
|
|
33328
33492
|
interface GetAccountsAccount {
|
|
33329
33493
|
/**
|
|
33330
33494
|
* Database description.
|
|
@@ -33369,6 +33533,20 @@ export declare namespace rds {
|
|
|
33369
33533
|
*/
|
|
33370
33534
|
dbName: string;
|
|
33371
33535
|
}
|
|
33536
|
+
interface GetCollationTimeZonesCollationTimeZone {
|
|
33537
|
+
/**
|
|
33538
|
+
* The code of the instance type.
|
|
33539
|
+
*/
|
|
33540
|
+
description?: string;
|
|
33541
|
+
/**
|
|
33542
|
+
* The offset of the UTC time. The offset is in the following format: (UTC+<i>HH:mm</i>).
|
|
33543
|
+
*/
|
|
33544
|
+
standardTimeOffset?: string;
|
|
33545
|
+
/**
|
|
33546
|
+
* The time zone that is available for use in ApsaraDB RDS.
|
|
33547
|
+
*/
|
|
33548
|
+
timeZone?: string;
|
|
33549
|
+
}
|
|
33372
33550
|
interface GetCrossRegionBackupsBackup {
|
|
33373
33551
|
/**
|
|
33374
33552
|
* The time when the cross-region data backup file was generated.
|