@pulumi/databricks 1.91.0 → 1.91.1

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
@@ -13032,7 +13032,8 @@ export interface GetPostgresBranchSpec {
13032
13032
  isProtected?: boolean;
13033
13033
  /**
13034
13034
  * (boolean) - Explicitly disable expiration. When set to true, the branch will not expire.
13035
- * If set to false, the request is invalid; provide either ttl or expireTime instead
13035
+ * If set to false, the request is invalid; provide either ttl or expireTime instead.
13036
+ * Mutually exclusive with `expireTime` and `ttl`. When updating, use `spec.expiration` in the update_mask
13036
13037
  */
13037
13038
  noExpiry?: boolean;
13038
13039
  /**
@@ -13049,11 +13050,17 @@ export interface GetPostgresBranchSpec {
13049
13050
  */
13050
13051
  sourceBranchTime?: string;
13051
13052
  /**
13052
- * (string) - Relative time-to-live duration. When set, the branch will expire at creationTime + ttl
13053
+ * (string) - Relative time-to-live duration. When set, the branch will expire at creationTime + ttl.
13054
+ * Mutually exclusive with `expireTime` and `noExpiry`. When updating, use `spec.expiration` in the update_mask
13053
13055
  */
13054
13056
  ttl?: string;
13055
13057
  }
13056
13058
  export interface GetPostgresBranchStatus {
13059
+ /**
13060
+ * (string) - The short identifier of the branch, suitable for showing to the users.
13061
+ * For a branch with name `projects/my-project/branches/my-branch`, the branchId is `my-branch`.
13062
+ */
13063
+ branchId: string;
13057
13064
  /**
13058
13065
  * (string) - The branch's state, indicating if it is initializing, ready for use, or archived. Possible values are: `ARCHIVED`, `IMPORTING`, `INIT`, `READY`, `RESETTING`
13059
13066
  */
@@ -13149,7 +13156,8 @@ export interface GetPostgresBranchesBranchSpec {
13149
13156
  isProtected?: boolean;
13150
13157
  /**
13151
13158
  * (boolean) - Explicitly disable expiration. When set to true, the branch will not expire.
13152
- * If set to false, the request is invalid; provide either ttl or expireTime instead
13159
+ * If set to false, the request is invalid; provide either ttl or expireTime instead.
13160
+ * Mutually exclusive with `expireTime` and `ttl`. When updating, use `spec.expiration` in the update_mask
13153
13161
  */
13154
13162
  noExpiry?: boolean;
13155
13163
  /**
@@ -13166,11 +13174,17 @@ export interface GetPostgresBranchesBranchSpec {
13166
13174
  */
13167
13175
  sourceBranchTime?: string;
13168
13176
  /**
13169
- * (string) - Relative time-to-live duration. When set, the branch will expire at creationTime + ttl
13177
+ * (string) - Relative time-to-live duration. When set, the branch will expire at creationTime + ttl.
13178
+ * Mutually exclusive with `expireTime` and `noExpiry`. When updating, use `spec.expiration` in the update_mask
13170
13179
  */
13171
13180
  ttl?: string;
13172
13181
  }
13173
13182
  export interface GetPostgresBranchesBranchStatus {
13183
+ /**
13184
+ * (string) - The short identifier of the branch, suitable for showing to the users.
13185
+ * For a branch with name `projects/my-project/branches/my-branch`, the branchId is `my-branch`.
13186
+ */
13187
+ branchId: string;
13174
13188
  /**
13175
13189
  * (string) - The branch's state, indicating if it is initializing, ready for use, or archived. Possible values are: `ARCHIVED`, `IMPORTING`, `INIT`, `READY`, `RESETTING`
13176
13190
  */
@@ -13246,6 +13260,11 @@ export interface GetPostgresCatalogStatus {
13246
13260
  * (string) - The resource path of the branch associated with the catalog.
13247
13261
  */
13248
13262
  branch: string;
13263
+ /**
13264
+ * (string) - The short identifier of the catalog, suitable for showing to the users.
13265
+ * For a catalog with name `catalogs/my-catalog`, the catalogId is `my-catalog`.
13266
+ */
13267
+ catalogId: string;
13249
13268
  /**
13250
13269
  * (string) - The name of the Postgres database associated with the catalog
13251
13270
  */
@@ -13273,6 +13292,12 @@ export interface GetPostgresDatabaseSpec {
13273
13292
  role?: string;
13274
13293
  }
13275
13294
  export interface GetPostgresDatabaseStatus {
13295
+ /**
13296
+ * (string) - The short identifier of the database, suitable for showing to the users.
13297
+ * For a database with name `projects/my-project/branches/my-branch/databases/my-db`,
13298
+ * the databaseId is `my-db`.
13299
+ */
13300
+ databaseId: string;
13276
13301
  /**
13277
13302
  * (string) - The name of the Postgres database
13278
13303
  */
@@ -13333,6 +13358,12 @@ export interface GetPostgresDatabasesDatabaseSpec {
13333
13358
  role?: string;
13334
13359
  }
13335
13360
  export interface GetPostgresDatabasesDatabaseStatus {
13361
+ /**
13362
+ * (string) - The short identifier of the database, suitable for showing to the users.
13363
+ * For a database with name `projects/my-project/branches/my-branch/databases/my-db`,
13364
+ * the databaseId is `my-db`.
13365
+ */
13366
+ databaseId: string;
13336
13367
  /**
13337
13368
  * (string) - The name of the Postgres database
13338
13369
  */
@@ -13357,7 +13388,8 @@ export interface GetPostgresEndpointProviderConfig {
13357
13388
  }
13358
13389
  export interface GetPostgresEndpointSpec {
13359
13390
  /**
13360
- * (number) - The maximum number of Compute Units
13391
+ * (number) - The maximum number of Compute Units. The maximum value is 64.
13392
+ * The difference between the minimum and maximum Compute Units (max - min) must not exceed 16
13361
13393
  */
13362
13394
  autoscalingLimitMaxCu?: number;
13363
13395
  /**
@@ -13381,7 +13413,8 @@ export interface GetPostgresEndpointSpec {
13381
13413
  group?: outputs.GetPostgresEndpointSpecGroup;
13382
13414
  /**
13383
13415
  * (boolean) - When set to true, explicitly disables automatic suspension (never suspend).
13384
- * Should be set to true when provided
13416
+ * Should be set to true when provided.
13417
+ * Mutually exclusive with `suspendTimeoutDuration`. When updating, use `spec.suspension` in the update_mask
13385
13418
  */
13386
13419
  noSuspension?: boolean;
13387
13420
  /**
@@ -13421,7 +13454,8 @@ export interface GetPostgresEndpointSpecSettings {
13421
13454
  }
13422
13455
  export interface GetPostgresEndpointStatus {
13423
13456
  /**
13424
- * (number) - The maximum number of Compute Units
13457
+ * (number) - The maximum number of Compute Units. The maximum value is 64.
13458
+ * The difference between the minimum and maximum Compute Units (max - min) must not exceed 16
13425
13459
  */
13426
13460
  autoscalingLimitMaxCu: number;
13427
13461
  /**
@@ -13439,6 +13473,12 @@ export interface GetPostgresEndpointStatus {
13439
13473
  * console action
13440
13474
  */
13441
13475
  disabled: boolean;
13476
+ /**
13477
+ * (string) - The short identifier of the endpoint, suitable for showing to the users.
13478
+ * For an endpoint with name `projects/my-project/branches/my-branch/endpoints/my-endpoint`,
13479
+ * the endpointId is `my-endpoint`.
13480
+ */
13481
+ endpointId: string;
13442
13482
  /**
13443
13483
  * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `ENDPOINT_TYPE_READ_ONLY`, `ENDPOINT_TYPE_READ_WRITE`
13444
13484
  */
@@ -13547,7 +13587,8 @@ export interface GetPostgresEndpointsEndpointProviderConfig {
13547
13587
  }
13548
13588
  export interface GetPostgresEndpointsEndpointSpec {
13549
13589
  /**
13550
- * (number) - The maximum number of Compute Units
13590
+ * (number) - The maximum number of Compute Units. The maximum value is 64.
13591
+ * The difference between the minimum and maximum Compute Units (max - min) must not exceed 16
13551
13592
  */
13552
13593
  autoscalingLimitMaxCu?: number;
13553
13594
  /**
@@ -13571,7 +13612,8 @@ export interface GetPostgresEndpointsEndpointSpec {
13571
13612
  group?: outputs.GetPostgresEndpointsEndpointSpecGroup;
13572
13613
  /**
13573
13614
  * (boolean) - When set to true, explicitly disables automatic suspension (never suspend).
13574
- * Should be set to true when provided
13615
+ * Should be set to true when provided.
13616
+ * Mutually exclusive with `suspendTimeoutDuration`. When updating, use `spec.suspension` in the update_mask
13575
13617
  */
13576
13618
  noSuspension?: boolean;
13577
13619
  /**
@@ -13611,7 +13653,8 @@ export interface GetPostgresEndpointsEndpointSpecSettings {
13611
13653
  }
13612
13654
  export interface GetPostgresEndpointsEndpointStatus {
13613
13655
  /**
13614
- * (number) - The maximum number of Compute Units
13656
+ * (number) - The maximum number of Compute Units. The maximum value is 64.
13657
+ * The difference between the minimum and maximum Compute Units (max - min) must not exceed 16
13615
13658
  */
13616
13659
  autoscalingLimitMaxCu: number;
13617
13660
  /**
@@ -13629,6 +13672,12 @@ export interface GetPostgresEndpointsEndpointStatus {
13629
13672
  * console action
13630
13673
  */
13631
13674
  disabled: boolean;
13675
+ /**
13676
+ * (string) - The short identifier of the endpoint, suitable for showing to the users.
13677
+ * For an endpoint with name `projects/my-project/branches/my-branch/endpoints/my-endpoint`,
13678
+ * the endpointId is `my-endpoint`.
13679
+ */
13680
+ endpointId: string;
13632
13681
  /**
13633
13682
  * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `ENDPOINT_TYPE_READ_ONLY`, `ENDPOINT_TYPE_READ_WRITE`
13634
13683
  */
@@ -13784,7 +13833,8 @@ export interface GetPostgresProjectSpecDefaultEndpointSettings {
13784
13833
  autoscalingLimitMinCu?: number;
13785
13834
  /**
13786
13835
  * (boolean) - When set to true, explicitly disables automatic suspension (never suspend).
13787
- * Should be set to true when provided
13836
+ * Should be set to true when provided.
13837
+ * Mutually exclusive with `suspendTimeoutDuration`. When updating, use `spec.project_default_settings.suspension` in the update_mask
13788
13838
  */
13789
13839
  noSuspension?: boolean;
13790
13840
  /**
@@ -13795,7 +13845,8 @@ export interface GetPostgresProjectSpecDefaultEndpointSettings {
13795
13845
  };
13796
13846
  /**
13797
13847
  * (string) - Duration of inactivity after which the compute endpoint is automatically suspended.
13798
- * If specified should be between 60s and 604800s (1 minute to 1 week)
13848
+ * If specified should be between 60s and 604800s (1 minute to 1 week).
13849
+ * Mutually exclusive with `noSuspension`. When updating, use `spec.project_default_settings.suspension` in the update_mask
13799
13850
  */
13800
13851
  suspendTimeoutDuration?: string;
13801
13852
  }
@@ -13840,6 +13891,11 @@ export interface GetPostgresProjectStatus {
13840
13891
  * (integer) - The effective major Postgres version number
13841
13892
  */
13842
13893
  pgVersion: number;
13894
+ /**
13895
+ * (string) - The short identifier of the project, suitable for showing to the users.
13896
+ * For a project with name `projects/my-project`, the projectId is `my-project`.
13897
+ */
13898
+ projectId: string;
13843
13899
  /**
13844
13900
  * (integer) - The current space occupied by the project in storage
13845
13901
  */
@@ -13866,7 +13922,8 @@ export interface GetPostgresProjectStatusDefaultEndpointSettings {
13866
13922
  autoscalingLimitMinCu?: number;
13867
13923
  /**
13868
13924
  * (boolean) - When set to true, explicitly disables automatic suspension (never suspend).
13869
- * Should be set to true when provided
13925
+ * Should be set to true when provided.
13926
+ * Mutually exclusive with `suspendTimeoutDuration`. When updating, use `spec.project_default_settings.suspension` in the update_mask
13870
13927
  */
13871
13928
  noSuspension?: boolean;
13872
13929
  /**
@@ -13877,7 +13934,8 @@ export interface GetPostgresProjectStatusDefaultEndpointSettings {
13877
13934
  };
13878
13935
  /**
13879
13936
  * (string) - Duration of inactivity after which the compute endpoint is automatically suspended.
13880
- * If specified should be between 60s and 604800s (1 minute to 1 week)
13937
+ * If specified should be between 60s and 604800s (1 minute to 1 week).
13938
+ * Mutually exclusive with `noSuspension`. When updating, use `spec.project_default_settings.suspension` in the update_mask
13881
13939
  */
13882
13940
  suspendTimeoutDuration?: string;
13883
13941
  }
@@ -13887,7 +13945,12 @@ export interface GetPostgresProjectsProject {
13887
13945
  */
13888
13946
  createTime: string;
13889
13947
  /**
13890
- * (InitialEndpointSpec) - Configuration settings for the initial Read/Write endpoint created inside the default branch for a newly
13948
+ * (string) - A timestamp indicating when the project was soft-deleted.
13949
+ * Empty if the project is not deleted, otherwise set to a timestamp in the past
13950
+ */
13951
+ deleteTime: string;
13952
+ /**
13953
+ * (InitialEndpointSpec) - Configuration settings for the initial Read/Write endpoint created inside the initial branch for a newly
13891
13954
  * created project. If omitted, the initial endpoint created will have default settings, without high availability
13892
13955
  * configured. This field does not apply to any endpoints created after project creation. Use
13893
13956
  * spec.default_endpoint_settings to configure default settings for endpoints created after project creation
@@ -13902,6 +13965,11 @@ export interface GetPostgresProjectsProject {
13902
13965
  * Configure the provider for management through account provider.
13903
13966
  */
13904
13967
  providerConfig?: outputs.GetPostgresProjectsProjectProviderConfig;
13968
+ /**
13969
+ * (string) - A timestamp indicating when the project is scheduled for permanent deletion.
13970
+ * Empty if the project is not deleted, otherwise set to a timestamp in the future
13971
+ */
13972
+ purgeTime: string;
13905
13973
  /**
13906
13974
  * (ProjectSpec) - The spec contains the project configuration, including display_name, pgVersion (Postgres version), history_retention_duration, and default_endpoint_settings
13907
13975
  */
@@ -14004,7 +14072,8 @@ export interface GetPostgresProjectsProjectSpecDefaultEndpointSettings {
14004
14072
  autoscalingLimitMinCu?: number;
14005
14073
  /**
14006
14074
  * (boolean) - When set to true, explicitly disables automatic suspension (never suspend).
14007
- * Should be set to true when provided
14075
+ * Should be set to true when provided.
14076
+ * Mutually exclusive with `suspendTimeoutDuration`. When updating, use `spec.project_default_settings.suspension` in the update_mask
14008
14077
  */
14009
14078
  noSuspension?: boolean;
14010
14079
  /**
@@ -14015,7 +14084,8 @@ export interface GetPostgresProjectsProjectSpecDefaultEndpointSettings {
14015
14084
  };
14016
14085
  /**
14017
14086
  * (string) - Duration of inactivity after which the compute endpoint is automatically suspended.
14018
- * If specified should be between 60s and 604800s (1 minute to 1 week)
14087
+ * If specified should be between 60s and 604800s (1 minute to 1 week).
14088
+ * Mutually exclusive with `noSuspension`. When updating, use `spec.project_default_settings.suspension` in the update_mask
14019
14089
  */
14020
14090
  suspendTimeoutDuration?: string;
14021
14091
  }
@@ -14060,6 +14130,11 @@ export interface GetPostgresProjectsProjectStatus {
14060
14130
  * (integer) - The effective major Postgres version number
14061
14131
  */
14062
14132
  pgVersion: number;
14133
+ /**
14134
+ * (string) - The short identifier of the project, suitable for showing to the users.
14135
+ * For a project with name `projects/my-project`, the projectId is `my-project`.
14136
+ */
14137
+ projectId: string;
14063
14138
  /**
14064
14139
  * (integer) - The current space occupied by the project in storage
14065
14140
  */
@@ -14086,7 +14161,8 @@ export interface GetPostgresProjectsProjectStatusDefaultEndpointSettings {
14086
14161
  autoscalingLimitMinCu?: number;
14087
14162
  /**
14088
14163
  * (boolean) - When set to true, explicitly disables automatic suspension (never suspend).
14089
- * Should be set to true when provided
14164
+ * Should be set to true when provided.
14165
+ * Mutually exclusive with `suspendTimeoutDuration`. When updating, use `spec.project_default_settings.suspension` in the update_mask
14090
14166
  */
14091
14167
  noSuspension?: boolean;
14092
14168
  /**
@@ -14097,7 +14173,8 @@ export interface GetPostgresProjectsProjectStatusDefaultEndpointSettings {
14097
14173
  };
14098
14174
  /**
14099
14175
  * (string) - Duration of inactivity after which the compute endpoint is automatically suspended.
14100
- * If specified should be between 60s and 604800s (1 minute to 1 week)
14176
+ * If specified should be between 60s and 604800s (1 minute to 1 week).
14177
+ * Mutually exclusive with `noSuspension`. When updating, use `spec.project_default_settings.suspension` in the update_mask
14101
14178
  */
14102
14179
  suspendTimeoutDuration?: string;
14103
14180
  }
@@ -14170,6 +14247,12 @@ export interface GetPostgresRoleStatus {
14170
14247
  * (string) - The name of the Postgres role
14171
14248
  */
14172
14249
  postgresRole?: string;
14250
+ /**
14251
+ * (string) - The short identifier of the role, suitable for showing to the users.
14252
+ * For a role with name `projects/my-project/branches/my-branch/roles/my-role`,
14253
+ * the roleId is `my-role`.
14254
+ */
14255
+ roleId: string;
14173
14256
  }
14174
14257
  export interface GetPostgresRoleStatusAttributes {
14175
14258
  /**
@@ -14286,6 +14369,12 @@ export interface GetPostgresRolesRoleStatus {
14286
14369
  * (string) - The name of the Postgres role
14287
14370
  */
14288
14371
  postgresRole?: string;
14372
+ /**
14373
+ * (string) - The short identifier of the role, suitable for showing to the users.
14374
+ * For a role with name `projects/my-project/branches/my-branch/roles/my-role`,
14375
+ * the roleId is `my-role`.
14376
+ */
14377
+ roleId: string;
14289
14378
  }
14290
14379
  export interface GetPostgresRolesRoleStatusAttributes {
14291
14380
  /**
@@ -14395,6 +14484,10 @@ export interface GetPostgresSyncedTableStatus {
14395
14484
  * (string) - ID of the associated pipeline
14396
14485
  */
14397
14486
  pipelineId: string;
14487
+ /**
14488
+ * (string) - The full resource name of the project associated with the table.
14489
+ */
14490
+ project: string;
14398
14491
  /**
14399
14492
  * (string) - The current phase of the data synchronization pipeline. Possible values are: `PROVISIONING_PHASE_INDEX_SCAN`, `PROVISIONING_PHASE_INDEX_SORT`, `PROVISIONING_PHASE_MAIN`
14400
14493
  */
@@ -21715,7 +21808,8 @@ export interface PostgresBranchSpec {
21715
21808
  isProtected?: boolean;
21716
21809
  /**
21717
21810
  * Explicitly disable expiration. When set to true, the branch will not expire.
21718
- * If set to false, the request is invalid; provide either ttl or expireTime instead
21811
+ * If set to false, the request is invalid; provide either ttl or expireTime instead.
21812
+ * Mutually exclusive with `expireTime` and `ttl`. When updating, use `spec.expiration` in the update_mask
21719
21813
  */
21720
21814
  noExpiry?: boolean;
21721
21815
  /**
@@ -21732,11 +21826,18 @@ export interface PostgresBranchSpec {
21732
21826
  */
21733
21827
  sourceBranchTime?: string;
21734
21828
  /**
21735
- * Relative time-to-live duration. When set, the branch will expire at creationTime + ttl
21829
+ * Relative time-to-live duration. When set, the branch will expire at creationTime + ttl.
21830
+ * Mutually exclusive with `expireTime` and `noExpiry`. When updating, use `spec.expiration` in the update_mask
21736
21831
  */
21737
21832
  ttl?: string;
21738
21833
  }
21739
21834
  export interface PostgresBranchStatus {
21835
+ /**
21836
+ * The ID to use for the Branch. This becomes the final component of the branch's resource name.
21837
+ * The ID is required and must be 1-63 characters long, start with a lowercase letter, and contain only lowercase letters, numbers, and hyphens.
21838
+ * For example, `development` becomes `projects/my-app/branches/development`
21839
+ */
21840
+ branchId: string;
21740
21841
  /**
21741
21842
  * (string) - The branch's state, indicating if it is initializing, ready for use, or archived. Possible values are: `ARCHIVED`, `IMPORTING`, `INIT`, `READY`, `RESETTING`
21742
21843
  */
@@ -21808,6 +21909,11 @@ export interface PostgresCatalogStatus {
21808
21909
  * (string) - The resource path of the branch associated with the catalog.
21809
21910
  */
21810
21911
  branch: string;
21912
+ /**
21913
+ * The ID in the Unity Catalog.
21914
+ * It becomes the full resource name, for example "myCatalog" becomes "catalogs/my_catalog"
21915
+ */
21916
+ catalogId: string;
21811
21917
  /**
21812
21918
  * (string) - The name of the Postgres database associated with the catalog
21813
21919
  */
@@ -21828,6 +21934,17 @@ export interface PostgresDatabaseSpec {
21828
21934
  role?: string;
21829
21935
  }
21830
21936
  export interface PostgresDatabaseStatus {
21937
+ /**
21938
+ * The ID to use for the Database, which will become the final component of
21939
+ * the database's resource name.
21940
+ * This ID becomes the database name in postgres.
21941
+ *
21942
+ * This value should be 4-63 characters, and only use characters available in DNS names,
21943
+ * as defined by RFC-1123
21944
+ *
21945
+ * If databaseId is not specified in the request, it is generated automatically
21946
+ */
21947
+ databaseId: string;
21831
21948
  postgresDatabase?: string;
21832
21949
  role?: string;
21833
21950
  }
@@ -21839,7 +21956,8 @@ export interface PostgresEndpointProviderConfig {
21839
21956
  }
21840
21957
  export interface PostgresEndpointSpec {
21841
21958
  /**
21842
- * (number) - The maximum number of Compute Units
21959
+ * (number) - The maximum number of Compute Units. The maximum value is 64.
21960
+ * The difference between the minimum and maximum Compute Units (max - min) must not exceed 16
21843
21961
  */
21844
21962
  autoscalingLimitMaxCu?: number;
21845
21963
  /**
@@ -21863,7 +21981,8 @@ export interface PostgresEndpointSpec {
21863
21981
  group?: outputs.PostgresEndpointSpecGroup;
21864
21982
  /**
21865
21983
  * When set to true, explicitly disables automatic suspension (never suspend).
21866
- * Should be set to true when provided
21984
+ * Should be set to true when provided.
21985
+ * Mutually exclusive with `suspendTimeoutDuration`. When updating, use `spec.suspension` in the update_mask
21867
21986
  */
21868
21987
  noSuspension?: boolean;
21869
21988
  /**
@@ -21894,7 +22013,8 @@ export interface PostgresEndpointSpecSettings {
21894
22013
  }
21895
22014
  export interface PostgresEndpointStatus {
21896
22015
  /**
21897
- * (number) - The maximum number of Compute Units
22016
+ * (number) - The maximum number of Compute Units. The maximum value is 64.
22017
+ * The difference between the minimum and maximum Compute Units (max - min) must not exceed 16
21898
22018
  */
21899
22019
  autoscalingLimitMaxCu: number;
21900
22020
  /**
@@ -21912,6 +22032,12 @@ export interface PostgresEndpointStatus {
21912
22032
  * console action
21913
22033
  */
21914
22034
  disabled: boolean;
22035
+ /**
22036
+ * The ID to use for the Endpoint. This becomes the final component of the endpoint's resource name.
22037
+ * The ID is required and must be 1-63 characters long, start with a lowercase letter, and contain only lowercase letters, numbers, and hyphens.
22038
+ * For example, `primary` becomes `projects/my-app/branches/development/endpoints/primary`
22039
+ */
22040
+ endpointId: string;
21915
22041
  /**
21916
22042
  * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `ENDPOINT_TYPE_READ_ONLY`, `ENDPOINT_TYPE_READ_WRITE`
21917
22043
  */
@@ -22052,7 +22178,8 @@ export interface PostgresProjectSpecDefaultEndpointSettings {
22052
22178
  autoscalingLimitMinCu?: number;
22053
22179
  /**
22054
22180
  * When set to true, explicitly disables automatic suspension (never suspend).
22055
- * Should be set to true when provided
22181
+ * Should be set to true when provided.
22182
+ * Mutually exclusive with `suspendTimeoutDuration`. When updating, use `spec.project_default_settings.suspension` in the update_mask
22056
22183
  */
22057
22184
  noSuspension?: boolean;
22058
22185
  /**
@@ -22063,7 +22190,8 @@ export interface PostgresProjectSpecDefaultEndpointSettings {
22063
22190
  };
22064
22191
  /**
22065
22192
  * Duration of inactivity after which the compute endpoint is automatically suspended.
22066
- * If specified should be between 60s and 604800s (1 minute to 1 week)
22193
+ * If specified should be between 60s and 604800s (1 minute to 1 week).
22194
+ * Mutually exclusive with `noSuspension`. When updating, use `spec.project_default_settings.suspension` in the update_mask
22067
22195
  */
22068
22196
  suspendTimeoutDuration?: string;
22069
22197
  }
@@ -22108,6 +22236,12 @@ export interface PostgresProjectStatus {
22108
22236
  * (integer) - The effective major Postgres version number
22109
22237
  */
22110
22238
  pgVersion: number;
22239
+ /**
22240
+ * The ID to use for the Project. This becomes the final component of the project's resource name.
22241
+ * The ID is required and must be 1-63 characters long, start with a lowercase letter, and contain only lowercase letters, numbers, and hyphens.
22242
+ * For example, `my-app` becomes `projects/my-app`
22243
+ */
22244
+ projectId: string;
22111
22245
  /**
22112
22246
  * (integer) - The current space occupied by the project in storage
22113
22247
  */
@@ -22134,7 +22268,8 @@ export interface PostgresProjectStatusDefaultEndpointSettings {
22134
22268
  autoscalingLimitMinCu?: number;
22135
22269
  /**
22136
22270
  * When set to true, explicitly disables automatic suspension (never suspend).
22137
- * Should be set to true when provided
22271
+ * Should be set to true when provided.
22272
+ * Mutually exclusive with `suspendTimeoutDuration`. When updating, use `spec.project_default_settings.suspension` in the update_mask
22138
22273
  */
22139
22274
  noSuspension?: boolean;
22140
22275
  /**
@@ -22145,7 +22280,8 @@ export interface PostgresProjectStatusDefaultEndpointSettings {
22145
22280
  };
22146
22281
  /**
22147
22282
  * Duration of inactivity after which the compute endpoint is automatically suspended.
22148
- * If specified should be between 60s and 604800s (1 minute to 1 week)
22283
+ * If specified should be between 60s and 604800s (1 minute to 1 week).
22284
+ * Mutually exclusive with `noSuspension`. When updating, use `spec.project_default_settings.suspension` in the update_mask
22149
22285
  */
22150
22286
  suspendTimeoutDuration?: string;
22151
22287
  }
@@ -22173,6 +22309,17 @@ export interface PostgresRoleStatus {
22173
22309
  identityType?: string;
22174
22310
  membershipRoles?: string[];
22175
22311
  postgresRole?: string;
22312
+ /**
22313
+ * The ID to use for the Role, which will become the final component of
22314
+ * the role's resource name.
22315
+ * This ID becomes the role in Postgres.
22316
+ *
22317
+ * This value should be 4-63 characters, and valid characters
22318
+ * are lowercase letters, numbers, and hyphens, as defined by RFC 1123.
22319
+ *
22320
+ * If roleId is not specified in the request, it is generated automatically
22321
+ */
22322
+ roleId: string;
22176
22323
  }
22177
22324
  export interface PostgresRoleStatusAttributes {
22178
22325
  bypassrls?: boolean;
@@ -22291,6 +22438,10 @@ export interface PostgresSyncedTableStatus {
22291
22438
  * (string) - ID of the associated pipeline
22292
22439
  */
22293
22440
  pipelineId: string;
22441
+ /**
22442
+ * (string) - The full resource name of the project associated with the table.
22443
+ */
22444
+ project: string;
22294
22445
  /**
22295
22446
  * (string) - The current phase of the data synchronization pipeline. Possible values are: `PROVISIONING_PHASE_INDEX_SCAN`, `PROVISIONING_PHASE_INDEX_SORT`, `PROVISIONING_PHASE_MAIN`
22296
22447
  */