@pulumi/aiven 6.47.0-alpha.1767071446 → 6.47.0-alpha.1767930389

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/types/output.d.ts CHANGED
@@ -6014,6 +6014,10 @@ export interface GetMySqlMysqlUserConfigMigration {
6014
6014
  * Port number of the server where to migrate data from. Example: `1234`.
6015
6015
  */
6016
6016
  port: number;
6017
+ /**
6018
+ * Skip dump-restore part and start replication. Default: `false`.
6019
+ */
6020
+ reestablishReplication?: boolean;
6017
6021
  /**
6018
6022
  * The server where to migrate data from is secured with SSL. Default: `true`.
6019
6023
  */
@@ -6227,6 +6231,18 @@ export interface GetMySqlTechEmail {
6227
6231
  */
6228
6232
  email: string;
6229
6233
  }
6234
+ export interface GetMysqlDatabaseTimeouts {
6235
+ /**
6236
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
6237
+ */
6238
+ read?: string;
6239
+ }
6240
+ export interface GetMysqlUserTimeouts {
6241
+ /**
6242
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
6243
+ */
6244
+ read?: string;
6245
+ }
6230
6246
  export interface GetOpenSearchComponent {
6231
6247
  /**
6232
6248
  * Service component name
@@ -7700,6 +7716,12 @@ export interface GetOrganizationUserListUserUserInfo {
7700
7716
  */
7701
7717
  userEmail: string;
7702
7718
  }
7719
+ export interface GetOrganizationalUnitTimeouts {
7720
+ /**
7721
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
7722
+ */
7723
+ read?: string;
7724
+ }
7703
7725
  export interface GetPgComponent {
7704
7726
  /**
7705
7727
  * Service component name
@@ -9709,6 +9731,78 @@ export interface GetServiceIntegrationPrometheusUserConfigSourceMysqlTelegraf {
9709
9731
  */
9710
9732
  perfEventsStatementsTimeLimit?: number;
9711
9733
  }
9734
+ export interface GetServiceListService {
9735
+ /**
9736
+ * Cloud provider and location.
9737
+ */
9738
+ cloudDescription: string;
9739
+ /**
9740
+ * Target cloud.
9741
+ */
9742
+ cloudName: string;
9743
+ /**
9744
+ * Service creation timestamp (ISO 8601).
9745
+ */
9746
+ createTime: string;
9747
+ /**
9748
+ * Megabytes of disk space for data storage.
9749
+ */
9750
+ diskSpaceMb: number;
9751
+ /**
9752
+ * Number of service nodes in the active plan.
9753
+ */
9754
+ nodeCount: number;
9755
+ /**
9756
+ * Number of CPUs for each node.
9757
+ */
9758
+ nodeCpuCount: number;
9759
+ /**
9760
+ * Megabytes of memory for each node.
9761
+ */
9762
+ nodeMemoryMb: number;
9763
+ /**
9764
+ * Subscription plan.
9765
+ */
9766
+ plan: string;
9767
+ /**
9768
+ * Project VPC ID.
9769
+ */
9770
+ projectVpcId: string;
9771
+ /**
9772
+ * Service name.
9773
+ */
9774
+ serviceName: string;
9775
+ /**
9776
+ * Service type code.
9777
+ */
9778
+ serviceType: string;
9779
+ /**
9780
+ * Single line description of the service.
9781
+ */
9782
+ serviceTypeDescription: string;
9783
+ /**
9784
+ * URI for connecting to the service (may be null).
9785
+ */
9786
+ serviceUri: string;
9787
+ /**
9788
+ * State of the service. The possible values are `POWEROFF`, `REBALANCING`, `REBUILDING` and `RUNNING`.
9789
+ */
9790
+ state: string;
9791
+ /**
9792
+ * Service is protected against termination and powering off.
9793
+ */
9794
+ terminationProtection: boolean;
9795
+ /**
9796
+ * Service last update timestamp (ISO 8601).
9797
+ */
9798
+ updateTime: string;
9799
+ }
9800
+ export interface GetServiceListTimeouts {
9801
+ /**
9802
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
9803
+ */
9804
+ read?: string;
9805
+ }
9712
9806
  export interface GetServicePlanBackupConfig {
9713
9807
  /**
9714
9808
  * Interval of taking a frequent backup in service types supporting different backup schedules.
@@ -13198,6 +13292,10 @@ export interface MySqlMysqlUserConfigMigration {
13198
13292
  * Port number of the server where to migrate data from. Example: `1234`.
13199
13293
  */
13200
13294
  port: number;
13295
+ /**
13296
+ * Skip dump-restore part and start replication. Default: `false`.
13297
+ */
13298
+ reestablishReplication?: boolean;
13201
13299
  /**
13202
13300
  * The server where to migrate data from is secured with SSL. Default: `true`.
13203
13301
  */
@@ -13411,6 +13509,54 @@ export interface MySqlTechEmail {
13411
13509
  */
13412
13510
  email: string;
13413
13511
  }
13512
+ export interface MysqlDatabaseTimeouts {
13513
+ /**
13514
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
13515
+ */
13516
+ create?: string;
13517
+ /**
13518
+ * Timeout for all operations. Deprecated, use operation-specific timeouts instead.
13519
+ *
13520
+ * @deprecated Use operation-specific timeouts instead. This field will be removed in the next major version.
13521
+ */
13522
+ default?: string;
13523
+ /**
13524
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
13525
+ */
13526
+ delete?: string;
13527
+ /**
13528
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
13529
+ */
13530
+ read?: string;
13531
+ /**
13532
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
13533
+ */
13534
+ update?: string;
13535
+ }
13536
+ export interface MysqlUserTimeouts {
13537
+ /**
13538
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
13539
+ */
13540
+ create?: string;
13541
+ /**
13542
+ * Timeout for all operations. Deprecated, use operation-specific timeouts instead.
13543
+ *
13544
+ * @deprecated Use operation-specific timeouts instead. This field will be removed in the next major version.
13545
+ */
13546
+ default?: string;
13547
+ /**
13548
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
13549
+ */
13550
+ delete?: string;
13551
+ /**
13552
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
13553
+ */
13554
+ read?: string;
13555
+ /**
13556
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
13557
+ */
13558
+ update?: string;
13559
+ }
13414
13560
  export interface OpenSearchComponent {
13415
13561
  /**
13416
13562
  * Service component name
@@ -14810,6 +14956,30 @@ export interface OrganizationUserGroupMemberTimeouts {
14810
14956
  */
14811
14957
  update?: string;
14812
14958
  }
14959
+ export interface OrganizationalUnitTimeouts {
14960
+ /**
14961
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
14962
+ */
14963
+ create?: string;
14964
+ /**
14965
+ * Timeout for all operations. Deprecated, use operation-specific timeouts instead.
14966
+ *
14967
+ * @deprecated Use operation-specific timeouts instead. This field will be removed in the next major version.
14968
+ */
14969
+ default?: string;
14970
+ /**
14971
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
14972
+ */
14973
+ delete?: string;
14974
+ /**
14975
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
14976
+ */
14977
+ read?: string;
14978
+ /**
14979
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
14980
+ */
14981
+ update?: string;
14982
+ }
14813
14983
  export interface PgComponent {
14814
14984
  /**
14815
14985
  * Service component name