@pulumi/confluentcloud 2.47.0-alpha.1760420152 → 2.47.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/getProviderIntegrationAuthorization.d.ts +56 -0
- package/getProviderIntegrationAuthorization.js +24 -0
- package/getProviderIntegrationAuthorization.js.map +1 -0
- package/getProviderIntegrationSetup.d.ts +196 -0
- package/getProviderIntegrationSetup.js +154 -0
- package/getProviderIntegrationSetup.js.map +1 -0
- package/index.d.ts +12 -0
- package/index.js +19 -3
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/providerIntegrationAuthorization.d.ts +101 -0
- package/providerIntegrationAuthorization.js +76 -0
- package/providerIntegrationAuthorization.js.map +1 -0
- package/providerIntegrationSetup.d.ts +169 -0
- package/providerIntegrationSetup.js +145 -0
- package/providerIntegrationSetup.js.map +1 -0
- package/types/input.d.ts +58 -0
- package/types/output.d.ts +66 -0
package/types/input.d.ts
CHANGED
|
@@ -1371,6 +1371,18 @@ export interface GetPrivateLinkAttachmentEnvironmentArgs {
|
|
|
1371
1371
|
*/
|
|
1372
1372
|
id: pulumi.Input<string>;
|
|
1373
1373
|
}
|
|
1374
|
+
export interface GetProviderIntegrationAuthorizationEnvironment {
|
|
1375
|
+
/**
|
|
1376
|
+
* The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
1377
|
+
*/
|
|
1378
|
+
id: string;
|
|
1379
|
+
}
|
|
1380
|
+
export interface GetProviderIntegrationAuthorizationEnvironmentArgs {
|
|
1381
|
+
/**
|
|
1382
|
+
* The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
1383
|
+
*/
|
|
1384
|
+
id: pulumi.Input<string>;
|
|
1385
|
+
}
|
|
1374
1386
|
export interface GetProviderIntegrationEnvironment {
|
|
1375
1387
|
/**
|
|
1376
1388
|
* The ID of the Environment that the Provider Integration belongs to, for example, `env-xyz456`.
|
|
@@ -1387,6 +1399,18 @@ export interface GetProviderIntegrationEnvironmentArgs {
|
|
|
1387
1399
|
*/
|
|
1388
1400
|
id: pulumi.Input<string>;
|
|
1389
1401
|
}
|
|
1402
|
+
export interface GetProviderIntegrationSetupEnvironment {
|
|
1403
|
+
/**
|
|
1404
|
+
* The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
1405
|
+
*/
|
|
1406
|
+
id: string;
|
|
1407
|
+
}
|
|
1408
|
+
export interface GetProviderIntegrationSetupEnvironmentArgs {
|
|
1409
|
+
/**
|
|
1410
|
+
* The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
1411
|
+
*/
|
|
1412
|
+
id: pulumi.Input<string>;
|
|
1413
|
+
}
|
|
1390
1414
|
export interface GetSchemaCredentials {
|
|
1391
1415
|
/**
|
|
1392
1416
|
* The Schema Registry API Key.
|
|
@@ -2590,6 +2614,34 @@ export interface PrivateLinkAttachmentGcp {
|
|
|
2590
2614
|
*/
|
|
2591
2615
|
privateServiceConnectServiceAttachment?: pulumi.Input<string>;
|
|
2592
2616
|
}
|
|
2617
|
+
export interface ProviderIntegrationAuthorizationAzure {
|
|
2618
|
+
/**
|
|
2619
|
+
* (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
|
|
2620
|
+
*/
|
|
2621
|
+
confluentMultiTenantAppId?: pulumi.Input<string>;
|
|
2622
|
+
/**
|
|
2623
|
+
* Customer's Azure Tenant ID.
|
|
2624
|
+
*/
|
|
2625
|
+
customerAzureTenantId: pulumi.Input<string>;
|
|
2626
|
+
}
|
|
2627
|
+
export interface ProviderIntegrationAuthorizationEnvironment {
|
|
2628
|
+
/**
|
|
2629
|
+
* The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
2630
|
+
*/
|
|
2631
|
+
id: pulumi.Input<string>;
|
|
2632
|
+
}
|
|
2633
|
+
export interface ProviderIntegrationAuthorizationGcp {
|
|
2634
|
+
/**
|
|
2635
|
+
* Customer's Google Service Account that Confluent Cloud impersonates.
|
|
2636
|
+
*
|
|
2637
|
+
* > **Note:** Exactly one of `azure` or `gcp` configuration blocks must be provided, matching the cloud provider of the associated provider integration.
|
|
2638
|
+
*/
|
|
2639
|
+
customerGoogleServiceAccount: pulumi.Input<string>;
|
|
2640
|
+
/**
|
|
2641
|
+
* (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
|
|
2642
|
+
*/
|
|
2643
|
+
googleServiceAccount?: pulumi.Input<string>;
|
|
2644
|
+
}
|
|
2593
2645
|
export interface ProviderIntegrationAws {
|
|
2594
2646
|
/**
|
|
2595
2647
|
* Amazon Resource Name (ARN) that identifies the AWS Identity and Access Management (IAM) role that Confluent Cloud assumes when it accesses resources in your AWS account.
|
|
@@ -2614,6 +2666,12 @@ export interface ProviderIntegrationEnvironment {
|
|
|
2614
2666
|
*/
|
|
2615
2667
|
id: pulumi.Input<string>;
|
|
2616
2668
|
}
|
|
2669
|
+
export interface ProviderIntegrationSetupEnvironment {
|
|
2670
|
+
/**
|
|
2671
|
+
* The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
2672
|
+
*/
|
|
2673
|
+
id: pulumi.Input<string>;
|
|
2674
|
+
}
|
|
2617
2675
|
export interface ProviderOauth {
|
|
2618
2676
|
/**
|
|
2619
2677
|
* OAuth existing static access token already fetched from external Identity Provider.
|
package/types/output.d.ts
CHANGED
|
@@ -1492,6 +1492,32 @@ export interface GetPrivateLinkAttachmentGcp {
|
|
|
1492
1492
|
*/
|
|
1493
1493
|
privateServiceConnectServiceAttachment: string;
|
|
1494
1494
|
}
|
|
1495
|
+
export interface GetProviderIntegrationAuthorizationAzure {
|
|
1496
|
+
/**
|
|
1497
|
+
* (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
|
|
1498
|
+
*/
|
|
1499
|
+
confluentMultiTenantAppId: string;
|
|
1500
|
+
/**
|
|
1501
|
+
* (Computed String) Customer's Azure Tenant ID.
|
|
1502
|
+
*/
|
|
1503
|
+
customerAzureTenantId: string;
|
|
1504
|
+
}
|
|
1505
|
+
export interface GetProviderIntegrationAuthorizationEnvironment {
|
|
1506
|
+
/**
|
|
1507
|
+
* The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
1508
|
+
*/
|
|
1509
|
+
id: string;
|
|
1510
|
+
}
|
|
1511
|
+
export interface GetProviderIntegrationAuthorizationGcp {
|
|
1512
|
+
/**
|
|
1513
|
+
* (Computed String) Customer's Google Service Account that Confluent Cloud impersonates.
|
|
1514
|
+
*/
|
|
1515
|
+
customerGoogleServiceAccount: string;
|
|
1516
|
+
/**
|
|
1517
|
+
* (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
|
|
1518
|
+
*/
|
|
1519
|
+
googleServiceAccount: string;
|
|
1520
|
+
}
|
|
1495
1521
|
export interface GetProviderIntegrationAw {
|
|
1496
1522
|
/**
|
|
1497
1523
|
* (Required String) Amazon Resource Name (ARN) that identifies the AWS Identity and Access Management (IAM) role that Confluent Cloud assumes when it accesses resources in your AWS account, and must be unique in the same environment.
|
|
@@ -1514,6 +1540,12 @@ export interface GetProviderIntegrationEnvironment {
|
|
|
1514
1540
|
*/
|
|
1515
1541
|
id: string;
|
|
1516
1542
|
}
|
|
1543
|
+
export interface GetProviderIntegrationSetupEnvironment {
|
|
1544
|
+
/**
|
|
1545
|
+
* The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
1546
|
+
*/
|
|
1547
|
+
id: string;
|
|
1548
|
+
}
|
|
1517
1549
|
export interface GetSchemaCredentials {
|
|
1518
1550
|
/**
|
|
1519
1551
|
* The Schema Registry API Key.
|
|
@@ -2525,6 +2557,34 @@ export interface PrivateLinkAttachmentGcp {
|
|
|
2525
2557
|
*/
|
|
2526
2558
|
privateServiceConnectServiceAttachment: string;
|
|
2527
2559
|
}
|
|
2560
|
+
export interface ProviderIntegrationAuthorizationAzure {
|
|
2561
|
+
/**
|
|
2562
|
+
* (Computed String) Confluent Multi-Tenant App ID used to access customer Azure resources.
|
|
2563
|
+
*/
|
|
2564
|
+
confluentMultiTenantAppId: string;
|
|
2565
|
+
/**
|
|
2566
|
+
* Customer's Azure Tenant ID.
|
|
2567
|
+
*/
|
|
2568
|
+
customerAzureTenantId: string;
|
|
2569
|
+
}
|
|
2570
|
+
export interface ProviderIntegrationAuthorizationEnvironment {
|
|
2571
|
+
/**
|
|
2572
|
+
* The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
2573
|
+
*/
|
|
2574
|
+
id: string;
|
|
2575
|
+
}
|
|
2576
|
+
export interface ProviderIntegrationAuthorizationGcp {
|
|
2577
|
+
/**
|
|
2578
|
+
* Customer's Google Service Account that Confluent Cloud impersonates.
|
|
2579
|
+
*
|
|
2580
|
+
* > **Note:** Exactly one of `azure` or `gcp` configuration blocks must be provided, matching the cloud provider of the associated provider integration.
|
|
2581
|
+
*/
|
|
2582
|
+
customerGoogleServiceAccount: string;
|
|
2583
|
+
/**
|
|
2584
|
+
* (Computed String) Google Service Account that Confluent Cloud uses for impersonation.
|
|
2585
|
+
*/
|
|
2586
|
+
googleServiceAccount: string;
|
|
2587
|
+
}
|
|
2528
2588
|
export interface ProviderIntegrationAws {
|
|
2529
2589
|
/**
|
|
2530
2590
|
* Amazon Resource Name (ARN) that identifies the AWS Identity and Access Management (IAM) role that Confluent Cloud assumes when it accesses resources in your AWS account.
|
|
@@ -2549,6 +2609,12 @@ export interface ProviderIntegrationEnvironment {
|
|
|
2549
2609
|
*/
|
|
2550
2610
|
id: string;
|
|
2551
2611
|
}
|
|
2612
|
+
export interface ProviderIntegrationSetupEnvironment {
|
|
2613
|
+
/**
|
|
2614
|
+
* The ID of the Environment that the Provider Integration belongs to, for example, `env-abc123`.
|
|
2615
|
+
*/
|
|
2616
|
+
id: string;
|
|
2617
|
+
}
|
|
2552
2618
|
export interface SchemaCredentials {
|
|
2553
2619
|
/**
|
|
2554
2620
|
* The Schema Registry API Key.
|