@pulumi/mongodbatlas 4.12.0-alpha.1784012018 → 4.12.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.
Files changed (46) hide show
  1. package/advancedCluster.d.ts +40 -3
  2. package/advancedCluster.d.ts.map +1 -1
  3. package/advancedCluster.js +34 -0
  4. package/advancedCluster.js.map +1 -1
  5. package/getProject.d.ts +12 -0
  6. package/getProject.d.ts.map +1 -1
  7. package/getProject.js.map +1 -1
  8. package/getStreamConnectionFailover.d.ts +136 -0
  9. package/getStreamConnectionFailover.d.ts.map +1 -0
  10. package/getStreamConnectionFailover.js +93 -0
  11. package/getStreamConnectionFailover.js.map +1 -0
  12. package/getStreamConnectionFailovers.d.ts +104 -0
  13. package/getStreamConnectionFailovers.d.ts.map +1 -0
  14. package/getStreamConnectionFailovers.js +89 -0
  15. package/getStreamConnectionFailovers.js.map +1 -0
  16. package/getStreamProcessor.d.ts +4 -0
  17. package/getStreamProcessor.d.ts.map +1 -1
  18. package/getStreamProcessor.js.map +1 -1
  19. package/getStreamWorkspace.d.ts +1 -0
  20. package/getStreamWorkspace.d.ts.map +1 -1
  21. package/getStreamWorkspace.js.map +1 -1
  22. package/index.d.ts +9 -0
  23. package/index.d.ts.map +1 -1
  24. package/index.js +13 -2
  25. package/index.js.map +1 -1
  26. package/package.json +2 -2
  27. package/project.d.ts +37 -1
  28. package/project.d.ts.map +1 -1
  29. package/project.js +7 -1
  30. package/project.js.map +1 -1
  31. package/streamConnectionFailover.d.ts +306 -0
  32. package/streamConnectionFailover.d.ts.map +1 -0
  33. package/streamConnectionFailover.js +193 -0
  34. package/streamConnectionFailover.js.map +1 -0
  35. package/streamProcessor.d.ts +12 -0
  36. package/streamProcessor.d.ts.map +1 -1
  37. package/streamProcessor.js +2 -0
  38. package/streamProcessor.js.map +1 -1
  39. package/streamWorkspace.d.ts +41 -3
  40. package/streamWorkspace.d.ts.map +1 -1
  41. package/streamWorkspace.js +22 -0
  42. package/streamWorkspace.js.map +1 -1
  43. package/types/input.d.ts +120 -2
  44. package/types/input.d.ts.map +1 -1
  45. package/types/output.d.ts +400 -4
  46. package/types/output.d.ts.map +1 -1
package/types/output.d.ts CHANGED
@@ -6862,6 +6862,10 @@ export interface GetProjectsResult {
6862
6862
  * @deprecated This parameter is deprecated. Please transition to mongodbatlas.getProjectIpAddresses data source.
6863
6863
  */
6864
6864
  ipAddresses: outputs.GetProjectsResultIpAddresses;
6865
+ /**
6866
+ * Flag that indicates whether the AI Assistant is enabled for the project's clusters.
6867
+ */
6868
+ isClusterAiAssistantEnabled: boolean;
6865
6869
  /**
6866
6870
  * Flag that indicates whether to enable statistics in [cluster metrics](https://www.mongodb.com/docs/atlas/monitor-cluster-metrics/) collection for the project.
6867
6871
  */
@@ -6870,6 +6874,15 @@ export interface GetProjectsResult {
6870
6874
  * Flag that indicates whether to enable Data Explorer for the project. If enabled, you can query your database with an easy to use interface.
6871
6875
  */
6872
6876
  isDataExplorerEnabled: boolean;
6877
+ /**
6878
+ * Flag that indicates whether generative AI features are enabled in the Data Explorer for the project.
6879
+ */
6880
+ isDataExplorerGenAiFeaturesEnabled: boolean;
6881
+ /**
6882
+ * Flag that indicates whether passing sample documents to generative AI features in the Data Explorer is enabled for the project.
6883
+ * #std-label-performance-advisor) and the [Data Explorer](https://www.mongodb.com/docs/atlas/atlas-ui/#std-label-atlas-ui).
6884
+ */
6885
+ isDataExplorerGenAiSampleDocumentPassingEnabled: boolean;
6873
6886
  /**
6874
6887
  * Flag that indicates whether to enable extended storage sizes for the specified project.
6875
6888
  */
@@ -6883,7 +6896,7 @@ export interface GetProjectsResult {
6883
6896
  */
6884
6897
  isRealtimePerformancePanelEnabled: boolean;
6885
6898
  /**
6886
- * Flag that indicates whether to enable Schema Advisor for the project. If enabled, you receive customized recommendations to optimize your data model and enhance performance. Disable this setting to disable schema suggestions in the [Performance Advisor](https://www.mongodb.com/docs/atlas/performance-advisor/#std-label-performance-advisor) and the [Data Explorer](https://www.mongodb.com/docs/atlas/atlas-ui/#std-label-atlas-ui).
6899
+ * Flag that indicates whether to enable Schema Advisor for the project. If enabled, you receive customized recommendations to optimize your data model and enhance performance. Disable this setting to disable schema suggestions in the [Performance Advisor](https://www.mongodb.com/docs/atlas/performance-advisor/).
6887
6900
  */
6888
6901
  isSchemaAdvisorEnabled: boolean;
6889
6902
  /**
@@ -6999,7 +7012,7 @@ export interface GetProjectsResultUser {
6999
7012
  *
7000
7013
  * > **NOTE:** - Does not return pending users invited via the deprecated [Invite One MongoDB Cloud User to Join One Project](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/operation/operation-createprojectinvitation) endpoint or pending invitations created using `mongodbatlas.ProjectInvitation` resource.
7001
7014
  *
7002
- * See [MongoDB Atlas API - Projects](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Projects) Documentation for more information.
7015
+ * See [MongoDB Atlas API - Projects](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects) Documentation for more information.
7003
7016
  */
7004
7017
  inviterUsername: string;
7005
7018
  /**
@@ -7632,6 +7645,246 @@ export interface GetStreamConnectionDbRoleToExecute {
7632
7645
  */
7633
7646
  type: string;
7634
7647
  }
7648
+ export interface GetStreamConnectionFailoverAuthentication {
7649
+ /**
7650
+ * OIDC client identifier for authentication to the Kafka cluster.
7651
+ */
7652
+ clientId: string;
7653
+ /**
7654
+ * OIDC client secret for authentication to the Kafka cluster.
7655
+ */
7656
+ clientSecret: string;
7657
+ /**
7658
+ * Style of authentication. Can be one of PLAIN, SCRAM-256, SCRAM-512, or OAUTHBEARER.
7659
+ */
7660
+ mechanism: string;
7661
+ /**
7662
+ * SASL OAUTHBEARER authentication method. Can only be OIDC currently.
7663
+ */
7664
+ method: string;
7665
+ /**
7666
+ * Password of the account to connect to the Kafka cluster.
7667
+ */
7668
+ password: string;
7669
+ /**
7670
+ * SASL OAUTHBEARER extensions parameter for additional OAuth2 configuration.
7671
+ */
7672
+ saslOauthbearerExtensions: string;
7673
+ /**
7674
+ * OIDC scope parameter defining the access permissions requested.
7675
+ */
7676
+ scope: string;
7677
+ /**
7678
+ * SSL certificate for client authentication to Kafka.
7679
+ */
7680
+ sslCertificate: string;
7681
+ /**
7682
+ * SSL key for client authentication to Kafka.
7683
+ */
7684
+ sslKey: string;
7685
+ /**
7686
+ * Password for the SSL key, if it is password protected.
7687
+ */
7688
+ sslKeyPassword: string;
7689
+ /**
7690
+ * OIDC token endpoint URL for obtaining access tokens.
7691
+ */
7692
+ tokenEndpointUrl: string;
7693
+ /**
7694
+ * Username of the account to connect to the Kafka cluster.
7695
+ */
7696
+ username: string;
7697
+ }
7698
+ export interface GetStreamConnectionFailoverDbRoleToExecute {
7699
+ /**
7700
+ * The name of the role to use. Can be a built in role or a custom role.
7701
+ */
7702
+ role: string;
7703
+ /**
7704
+ * Type of the DB role. Can be either Built In or Custom.
7705
+ */
7706
+ type: string;
7707
+ }
7708
+ export interface GetStreamConnectionFailoverNetworking {
7709
+ /**
7710
+ * Information about networking access.
7711
+ */
7712
+ access: outputs.GetStreamConnectionFailoverNetworkingAccess;
7713
+ }
7714
+ export interface GetStreamConnectionFailoverNetworkingAccess {
7715
+ /**
7716
+ * Reserved. Will be used by `PRIVATE_LINK` connection type.
7717
+ */
7718
+ connectionId: string;
7719
+ /**
7720
+ * Reserved. Will be used by `PRIVATE_LINK` connection type.
7721
+ */
7722
+ name: string;
7723
+ /**
7724
+ * Reserved. Will be used by `TRANSIT_GATEWAY` connection type.
7725
+ */
7726
+ tgwRouteId: string;
7727
+ /**
7728
+ * Selected networking type. Either `PUBLIC`, `VPC`, `PRIVATE_LINK`, or `TRANSIT_GATEWAY`. Defaults to `PUBLIC`. For VPC, ensure that VPC peering exists and connectivity has been established between Atlas VPC and the VPC where Kafka cluster is hosted for the connection to function properly. `TRANSIT_GATEWAY` support is coming soon.
7729
+ */
7730
+ type: string;
7731
+ }
7732
+ export interface GetStreamConnectionFailoverSecurity {
7733
+ /**
7734
+ * A trusted, public x509 certificate for connecting to Kafka over SSL.
7735
+ */
7736
+ brokerPublicCertificate: string;
7737
+ /**
7738
+ * Describes the transport type. Can be either `SASL_PLAINTEXT`, `SASL_SSL`, or `SSL`.
7739
+ */
7740
+ protocol: string;
7741
+ }
7742
+ export interface GetStreamConnectionFailoversResult {
7743
+ /**
7744
+ * Applies to type: Kafka. User credentials required to connect to a Kafka Cluster. Includes the authentication type, as well as the parameters for that authentication mode.
7745
+ */
7746
+ authentication: outputs.GetStreamConnectionFailoversResultAuthentication;
7747
+ /**
7748
+ * Applies to type: Kafka. Comma separated list of server addresses.
7749
+ */
7750
+ bootstrapServers: string;
7751
+ /**
7752
+ * Applies to type: Cluster. Name of the cluster configured for this connection.
7753
+ */
7754
+ clusterName: string;
7755
+ /**
7756
+ * Applies to type: Cluster. Unique 24-hexadecimal digit string that identifies the project that contains the configured cluster. Required if the ID does not match the project containing the streams workspace. You must first enable the organization setting.
7757
+ */
7758
+ clusterProjectId: string;
7759
+ /**
7760
+ * Applies to type: Kafka. A map of Kafka key-value pairs for optional configuration. This is a flat object, and keys can have '.' characters.
7761
+ */
7762
+ config: {
7763
+ [key: string]: string;
7764
+ };
7765
+ /**
7766
+ * Applies to type: Cluster. The name of a Built in or Custom DB Role to connect to an Atlas Cluster.
7767
+ */
7768
+ dbRoleToExecute: outputs.GetStreamConnectionFailoversResultDbRoleToExecute;
7769
+ /**
7770
+ * Unique identifier of the connection.
7771
+ */
7772
+ failoverConnectionId: string;
7773
+ /**
7774
+ * Applies to type: Kafka. Networking configuration for Streams connections.
7775
+ */
7776
+ networking: outputs.GetStreamConnectionFailoversResultNetworking;
7777
+ /**
7778
+ * The connection's region.
7779
+ */
7780
+ region: string;
7781
+ /**
7782
+ * Applies to type: Kafka. Properties for the secure transport connection to Kafka. For SSL, this can include the trusted certificate to use.
7783
+ */
7784
+ security: outputs.GetStreamConnectionFailoversResultSecurity;
7785
+ /**
7786
+ * The state of the connection.
7787
+ */
7788
+ state: string;
7789
+ /**
7790
+ * Type of the connection.
7791
+ */
7792
+ type: string;
7793
+ }
7794
+ export interface GetStreamConnectionFailoversResultAuthentication {
7795
+ /**
7796
+ * OIDC client identifier for authentication to the Kafka cluster.
7797
+ */
7798
+ clientId: string;
7799
+ /**
7800
+ * OIDC client secret for authentication to the Kafka cluster.
7801
+ */
7802
+ clientSecret: string;
7803
+ /**
7804
+ * Style of authentication. Can be one of PLAIN, SCRAM-256, SCRAM-512, or OAUTHBEARER.
7805
+ */
7806
+ mechanism: string;
7807
+ /**
7808
+ * SASL OAUTHBEARER authentication method. Can only be OIDC currently.
7809
+ */
7810
+ method: string;
7811
+ /**
7812
+ * Password of the account to connect to the Kafka cluster.
7813
+ */
7814
+ password: string;
7815
+ /**
7816
+ * SASL OAUTHBEARER extensions parameter for additional OAuth2 configuration.
7817
+ */
7818
+ saslOauthbearerExtensions: string;
7819
+ /**
7820
+ * OIDC scope parameter defining the access permissions requested.
7821
+ */
7822
+ scope: string;
7823
+ /**
7824
+ * SSL certificate for client authentication to Kafka.
7825
+ */
7826
+ sslCertificate: string;
7827
+ /**
7828
+ * SSL key for client authentication to Kafka.
7829
+ */
7830
+ sslKey: string;
7831
+ /**
7832
+ * Password for the SSL key, if it is password protected.
7833
+ */
7834
+ sslKeyPassword: string;
7835
+ /**
7836
+ * OIDC token endpoint URL for obtaining access tokens.
7837
+ */
7838
+ tokenEndpointUrl: string;
7839
+ /**
7840
+ * Username of the account to connect to the Kafka cluster.
7841
+ */
7842
+ username: string;
7843
+ }
7844
+ export interface GetStreamConnectionFailoversResultDbRoleToExecute {
7845
+ /**
7846
+ * The name of the role to use. Can be a built in role or a custom role.
7847
+ */
7848
+ role: string;
7849
+ /**
7850
+ * Type of the DB role. Can be either Built In or Custom.
7851
+ */
7852
+ type: string;
7853
+ }
7854
+ export interface GetStreamConnectionFailoversResultNetworking {
7855
+ /**
7856
+ * Information about networking access.
7857
+ */
7858
+ access: outputs.GetStreamConnectionFailoversResultNetworkingAccess;
7859
+ }
7860
+ export interface GetStreamConnectionFailoversResultNetworkingAccess {
7861
+ /**
7862
+ * Reserved. Will be used by `PRIVATE_LINK` connection type.
7863
+ */
7864
+ connectionId: string;
7865
+ /**
7866
+ * Reserved. Will be used by `PRIVATE_LINK` connection type.
7867
+ */
7868
+ name: string;
7869
+ /**
7870
+ * Reserved. Will be used by `TRANSIT_GATEWAY` connection type.
7871
+ */
7872
+ tgwRouteId: string;
7873
+ /**
7874
+ * Selected networking type. Either `PUBLIC`, `VPC`, `PRIVATE_LINK`, or `TRANSIT_GATEWAY`. Defaults to `PUBLIC`. For VPC, ensure that VPC peering exists and connectivity has been established between Atlas VPC and the VPC where Kafka cluster is hosted for the connection to function properly. `TRANSIT_GATEWAY` support is coming soon.
7875
+ */
7876
+ type: string;
7877
+ }
7878
+ export interface GetStreamConnectionFailoversResultSecurity {
7879
+ /**
7880
+ * A trusted, public x509 certificate for connecting to Kafka over SSL.
7881
+ */
7882
+ brokerPublicCertificate: string;
7883
+ /**
7884
+ * Describes the transport type. Can be either `SASL_PLAINTEXT`, `SASL_SSL`, or `SSL`.
7885
+ */
7886
+ protocol: string;
7887
+ }
7635
7888
  export interface GetStreamConnectionGcp {
7636
7889
  /**
7637
7890
  * Email address of the Google Cloud Platform (GCP) service account that Atlas Streams uses to connect to GCP Pub/Sub resources.
@@ -8053,6 +8306,10 @@ export interface GetStreamProcessorOptionsDlq {
8053
8306
  db: string;
8054
8307
  }
8055
8308
  export interface GetStreamProcessorsResult {
8309
+ /**
8310
+ * Indicates whether this stream processor is eligible for failover. When `true`, an operator can trigger a failover event to migrate the stream processor to a secondary region configured in the workspace's `failoverRegions`. Requires an Atlas-to-Atlas or Atlas-to-Kafka pipeline with `failoverRegions` configured on the workspace.
8311
+ */
8312
+ failoverEnabled: boolean;
8056
8313
  /**
8057
8314
  * Unique 24-hexadecimal character string that identifies the stream processor.
8058
8315
  */
@@ -8126,6 +8383,16 @@ export interface GetStreamWorkspaceDataProcessRegion {
8126
8383
  */
8127
8384
  region: string;
8128
8385
  }
8386
+ export interface GetStreamWorkspaceFailoverRegion {
8387
+ /**
8388
+ * Label that identifies the cloud service provider where MongoDB Cloud performs stream processing. The [MongoDB Atlas API](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Streams/operation/creategroupstreamworkspace) describes the valid values.
8389
+ */
8390
+ cloudProvider: string;
8391
+ /**
8392
+ * Name of the cloud provider region hosting Atlas Stream Processing. The [MongoDB Atlas API](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Streams/operation/creategroupstreamworkspace) describes the valid values.
8393
+ */
8394
+ region: string;
8395
+ }
8129
8396
  export interface GetStreamWorkspaceStreamConfig {
8130
8397
  maxTierSize: string;
8131
8398
  /**
@@ -8138,6 +8405,7 @@ export interface GetStreamWorkspacesResult {
8138
8405
  * Defines the cloud service provider and region where MongoDB Cloud performs stream processing. See data process region.
8139
8406
  */
8140
8407
  dataProcessRegion: outputs.GetStreamWorkspacesResultDataProcessRegion;
8408
+ failoverRegions: outputs.GetStreamWorkspacesResultFailoverRegion[];
8141
8409
  /**
8142
8410
  * List that contains the hostnames assigned to the stream workspace.
8143
8411
  */
@@ -8166,6 +8434,16 @@ export interface GetStreamWorkspacesResultDataProcessRegion {
8166
8434
  */
8167
8435
  region: string;
8168
8436
  }
8437
+ export interface GetStreamWorkspacesResultFailoverRegion {
8438
+ /**
8439
+ * Label that identifies the cloud service provider where MongoDB Cloud performs stream processing. The [MongoDB Atlas API](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Streams/operation/creategroupstreamworkspace) describes the valid values.
8440
+ */
8441
+ cloudProvider: string;
8442
+ /**
8443
+ * Name of the cloud provider region hosting Atlas Stream Processing. The [MongoDB Atlas API](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Streams/operation/creategroupstreamworkspace) describes the valid values.
8444
+ */
8445
+ region: string;
8446
+ }
8169
8447
  export interface GetStreamWorkspacesResultStreamConfig {
8170
8448
  maxTierSize: string;
8171
8449
  /**
@@ -8595,11 +8873,11 @@ export interface ProjectLimit {
8595
8873
  defaultLimit: number;
8596
8874
  maximumLimit: number;
8597
8875
  /**
8598
- * Human-readable label that identifies this project limit. See [Project Limit Documentation](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Projects/operation/setProjectLimit) under `limitName` parameter to find all the limits that can be defined.
8876
+ * Human-readable label that identifies this project limit. See [Project Limit Documentation](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/setProjectLimit) under `limitName` parameter to find all the limits that can be defined.
8599
8877
  */
8600
8878
  name: string;
8601
8879
  /**
8602
- * Amount to set the limit to. Use the [Project Limit Documentation](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Projects/operation/setProjectLimit) under `limitName` parameter to verify the override limits.
8880
+ * Amount to set the limit to. Use the [Project Limit Documentation](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Projects/operation/setProjectLimit) under `limitName` parameter to verify the override limits.
8603
8881
  */
8604
8882
  value: number;
8605
8883
  }
@@ -8843,6 +9121,114 @@ export interface StreamConnectionDbRoleToExecute {
8843
9121
  */
8844
9122
  type: string;
8845
9123
  }
9124
+ export interface StreamConnectionFailoverAuthentication {
9125
+ /**
9126
+ * OIDC client identifier for authentication to the Kafka cluster.
9127
+ */
9128
+ clientId?: string;
9129
+ /**
9130
+ * OIDC client secret for authentication to the Kafka cluster.
9131
+ */
9132
+ clientSecret?: string;
9133
+ /**
9134
+ * Style of authentication. Can be one of PLAIN, SCRAM-256, SCRAM-512, or OAUTHBEARER.
9135
+ */
9136
+ mechanism?: string;
9137
+ /**
9138
+ * SASL OAUTHBEARER authentication method. Can only be OIDC currently.
9139
+ */
9140
+ method?: string;
9141
+ /**
9142
+ * Password of the account to connect to the Kafka cluster.
9143
+ */
9144
+ password?: string;
9145
+ /**
9146
+ * SASL OAUTHBEARER extensions parameter for additional OAuth2 configuration.
9147
+ */
9148
+ saslOauthbearerExtensions?: string;
9149
+ /**
9150
+ * OIDC scope parameter defining the access permissions requested.
9151
+ */
9152
+ scope?: string;
9153
+ /**
9154
+ * SSL certificate for client authentication to Kafka.
9155
+ */
9156
+ sslCertificate?: string;
9157
+ /**
9158
+ * SSL key for client authentication to Kafka.
9159
+ */
9160
+ sslKey?: string;
9161
+ /**
9162
+ * Password for the SSL key, if it is password protected.
9163
+ */
9164
+ sslKeyPassword?: string;
9165
+ /**
9166
+ * OIDC token endpoint URL for obtaining access tokens.
9167
+ */
9168
+ tokenEndpointUrl?: string;
9169
+ /**
9170
+ * Username of the account to connect to the Kafka cluster.
9171
+ */
9172
+ username?: string;
9173
+ }
9174
+ export interface StreamConnectionFailoverDbRoleToExecute {
9175
+ /**
9176
+ * The name of the role to use. Can be a built in role or a custom role.
9177
+ */
9178
+ role: string;
9179
+ /**
9180
+ * Type of the DB role. Can be either Built In or Custom.
9181
+ */
9182
+ type: string;
9183
+ }
9184
+ export interface StreamConnectionFailoverNetworking {
9185
+ /**
9186
+ * Information about networking access.
9187
+ */
9188
+ access: outputs.StreamConnectionFailoverNetworkingAccess;
9189
+ }
9190
+ export interface StreamConnectionFailoverNetworkingAccess {
9191
+ /**
9192
+ * Reserved. Will be used by `PRIVATE_LINK` connection type.
9193
+ */
9194
+ connectionId?: string;
9195
+ /**
9196
+ * Reserved. Will be used by `PRIVATE_LINK` connection type.
9197
+ */
9198
+ name?: string;
9199
+ /**
9200
+ * Reserved. Will be used by `TRANSIT_GATEWAY` connection type.
9201
+ */
9202
+ tgwRouteId?: string;
9203
+ /**
9204
+ * Selected networking type. Either `PUBLIC`, `VPC`, `PRIVATE_LINK`, or `TRANSIT_GATEWAY`. Defaults to `PUBLIC`. For VPC, ensure that VPC peering exists and connectivity has been established between Atlas VPC and the VPC where Kafka cluster is hosted for the connection to function properly. `TRANSIT_GATEWAY` support is coming soon.
9205
+ */
9206
+ type: string;
9207
+ }
9208
+ export interface StreamConnectionFailoverSecurity {
9209
+ /**
9210
+ * A trusted, public x509 certificate for connecting to Kafka over SSL.
9211
+ */
9212
+ brokerPublicCertificate?: string;
9213
+ /**
9214
+ * Describes the transport type. Can be either `SASL_PLAINTEXT`, `SASL_SSL`, or `SSL`.
9215
+ */
9216
+ protocol?: string;
9217
+ }
9218
+ export interface StreamConnectionFailoverTimeouts {
9219
+ /**
9220
+ * 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).
9221
+ */
9222
+ create?: string;
9223
+ /**
9224
+ * 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.
9225
+ */
9226
+ delete?: string;
9227
+ /**
9228
+ * 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).
9229
+ */
9230
+ update?: string;
9231
+ }
8846
9232
  export interface StreamConnectionGcp {
8847
9233
  /**
8848
9234
  * Email address of the Google Cloud Platform (GCP) service account that Atlas Streams uses to connect to GCP Pub/Sub resources.
@@ -8961,6 +9347,16 @@ export interface StreamWorkspaceDataProcessRegion {
8961
9347
  */
8962
9348
  region: string;
8963
9349
  }
9350
+ export interface StreamWorkspaceFailoverRegion {
9351
+ /**
9352
+ * Cloud service provider for the failover region. Must match the primary region's cloud provider.
9353
+ */
9354
+ cloudProvider: string;
9355
+ /**
9356
+ * Name of the failover cloud provider region.
9357
+ */
9358
+ region: string;
9359
+ }
8964
9360
  export interface StreamWorkspaceStreamConfig {
8965
9361
  /**
8966
9362
  * Max tier size for the Stream Workspace. Configures Memory / VCPU allowances.