@pierskarsenbarg/sdm 1.23.1 → 1.24.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/types/output.d.ts CHANGED
@@ -508,7 +508,9 @@ export interface GetResourceResource {
508
508
  amazonEksUserImpersonations: outputs.GetResourceResourceAmazonEksUserImpersonation[];
509
509
  amazonEs: outputs.GetResourceResourceAmazonE[];
510
510
  amazonmqAmqp091s: outputs.GetResourceResourceAmazonmqAmqp091[];
511
+ athenaIams: outputs.GetResourceResourceAthenaIam[];
511
512
  athenas: outputs.GetResourceResourceAthena[];
513
+ auroraMysqlIams: outputs.GetResourceResourceAuroraMysqlIam[];
512
514
  auroraMysqls: outputs.GetResourceResourceAuroraMysql[];
513
515
  auroraPostgres: outputs.GetResourceResourceAuroraPostgre[];
514
516
  auroraPostgresIams: outputs.GetResourceResourceAuroraPostgresIam[];
@@ -524,15 +526,20 @@ export interface GetResourceResource {
524
526
  bigQueries: outputs.GetResourceResourceBigQuery[];
525
527
  cassandras: outputs.GetResourceResourceCassandra[];
526
528
  cituses: outputs.GetResourceResourceCitus[];
529
+ clickHouseHttps: outputs.GetResourceResourceClickHouseHttp[];
530
+ clickHouseMySqls: outputs.GetResourceResourceClickHouseMySql[];
531
+ clickHouseTcps: outputs.GetResourceResourceClickHouseTcp[];
527
532
  clustrixes: outputs.GetResourceResourceClustrix[];
528
533
  cockroaches: outputs.GetResourceResourceCockroach[];
529
534
  couchbaseDatabases: outputs.GetResourceResourceCouchbaseDatabase[];
530
535
  couchbaseWebUis: outputs.GetResourceResourceCouchbaseWebUi[];
531
536
  db2Is: outputs.GetResourceResourceDb2I[];
532
537
  db2Luws: outputs.GetResourceResourceDb2Luw[];
538
+ documentDbHostIams: outputs.GetResourceResourceDocumentDbHostIam[];
533
539
  documentDbHosts: outputs.GetResourceResourceDocumentDbHost[];
534
540
  documentDbReplicaSets: outputs.GetResourceResourceDocumentDbReplicaSet[];
535
541
  druids: outputs.GetResourceResourceDruid[];
542
+ dynamoDbiams: outputs.GetResourceResourceDynamoDbiam[];
536
543
  dynamoDbs: outputs.GetResourceResourceDynamoDb[];
537
544
  elasticacheRedis: outputs.GetResourceResourceElasticacheRedi[];
538
545
  elastics: outputs.GetResourceResourceElastic[];
@@ -1446,6 +1453,62 @@ export interface GetResourceResourceAthena {
1446
1453
  [key: string]: string;
1447
1454
  };
1448
1455
  }
1456
+ export interface GetResourceResourceAthenaIam {
1457
+ /**
1458
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
1459
+ */
1460
+ bindInterface?: string;
1461
+ /**
1462
+ * A filter applied to the routing logic to pin datasource to nodes.
1463
+ */
1464
+ egressFilter?: string;
1465
+ /**
1466
+ * Unique identifier of the Resource.
1467
+ */
1468
+ id?: string;
1469
+ /**
1470
+ * Unique human-readable name of the Resource.
1471
+ */
1472
+ name?: string;
1473
+ /**
1474
+ * The AWS S3 output location.
1475
+ */
1476
+ output?: string;
1477
+ /**
1478
+ * The local port used by clients to connect to this resource.
1479
+ */
1480
+ portOverride?: number;
1481
+ /**
1482
+ * ID of the proxy cluster for this resource, if any.
1483
+ */
1484
+ proxyClusterId?: string;
1485
+ /**
1486
+ * The AWS region to connect to.
1487
+ */
1488
+ region?: string;
1489
+ /**
1490
+ * The role to assume after logging in.
1491
+ */
1492
+ roleArn?: string;
1493
+ /**
1494
+ * The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
1495
+ */
1496
+ roleExternalId?: string;
1497
+ /**
1498
+ * ID of the secret store containing credentials for this resource, if any.
1499
+ */
1500
+ secretStoreId?: string;
1501
+ /**
1502
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1503
+ */
1504
+ subdomain?: string;
1505
+ /**
1506
+ * Tags is a map of key, value pairs.
1507
+ */
1508
+ tags?: {
1509
+ [key: string]: string;
1510
+ };
1511
+ }
1449
1512
  export interface GetResourceResourceAuroraMysql {
1450
1513
  /**
1451
1514
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
@@ -1514,6 +1577,70 @@ export interface GetResourceResourceAuroraMysql {
1514
1577
  */
1515
1578
  username?: string;
1516
1579
  }
1580
+ export interface GetResourceResourceAuroraMysqlIam {
1581
+ /**
1582
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
1583
+ */
1584
+ bindInterface?: string;
1585
+ /**
1586
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
1587
+ */
1588
+ database?: string;
1589
+ /**
1590
+ * A filter applied to the routing logic to pin datasource to nodes.
1591
+ */
1592
+ egressFilter?: string;
1593
+ /**
1594
+ * The host to dial to initiate a connection from the egress node to this resource.
1595
+ */
1596
+ hostname?: string;
1597
+ /**
1598
+ * Unique identifier of the Resource.
1599
+ */
1600
+ id?: string;
1601
+ /**
1602
+ * Unique human-readable name of the Resource.
1603
+ */
1604
+ name?: string;
1605
+ /**
1606
+ * The port to dial to initiate a connection from the egress node to this resource.
1607
+ */
1608
+ port?: number;
1609
+ /**
1610
+ * The local port used by clients to connect to this resource.
1611
+ */
1612
+ portOverride?: number;
1613
+ /**
1614
+ * ID of the proxy cluster for this resource, if any.
1615
+ */
1616
+ proxyClusterId?: string;
1617
+ /**
1618
+ * The AWS region to connect to.
1619
+ */
1620
+ region?: string;
1621
+ /**
1622
+ * If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
1623
+ */
1624
+ roleAssumptionArn?: string;
1625
+ /**
1626
+ * ID of the secret store containing credentials for this resource, if any.
1627
+ */
1628
+ secretStoreId?: string;
1629
+ /**
1630
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
1631
+ */
1632
+ subdomain?: string;
1633
+ /**
1634
+ * Tags is a map of key, value pairs.
1635
+ */
1636
+ tags?: {
1637
+ [key: string]: string;
1638
+ };
1639
+ /**
1640
+ * The username to authenticate with.
1641
+ */
1642
+ username?: string;
1643
+ }
1517
1644
  export interface GetResourceResourceAuroraPostgre {
1518
1645
  /**
1519
1646
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
@@ -2388,7 +2515,7 @@ export interface GetResourceResourceCitus {
2388
2515
  */
2389
2516
  username?: string;
2390
2517
  }
2391
- export interface GetResourceResourceClustrix {
2518
+ export interface GetResourceResourceClickHouseHttp {
2392
2519
  /**
2393
2520
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
2394
2521
  */
@@ -2401,10 +2528,6 @@ export interface GetResourceResourceClustrix {
2401
2528
  * A filter applied to the routing logic to pin datasource to nodes.
2402
2529
  */
2403
2530
  egressFilter?: string;
2404
- /**
2405
- * The host to dial to initiate a connection from the egress node to this resource.
2406
- */
2407
- hostname?: string;
2408
2531
  /**
2409
2532
  * Unique identifier of the Resource.
2410
2533
  */
@@ -2417,10 +2540,6 @@ export interface GetResourceResourceClustrix {
2417
2540
  * The password to authenticate with.
2418
2541
  */
2419
2542
  password?: string;
2420
- /**
2421
- * The port to dial to initiate a connection from the egress node to this resource.
2422
- */
2423
- port?: number;
2424
2543
  /**
2425
2544
  * The local port used by clients to connect to this resource.
2426
2545
  */
@@ -2429,18 +2548,10 @@ export interface GetResourceResourceClustrix {
2429
2548
  * ID of the proxy cluster for this resource, if any.
2430
2549
  */
2431
2550
  proxyClusterId?: string;
2432
- /**
2433
- * Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
2434
- */
2435
- requireNativeAuth?: boolean;
2436
2551
  /**
2437
2552
  * ID of the secret store containing credentials for this resource, if any.
2438
2553
  */
2439
2554
  secretStoreId?: string;
2440
- /**
2441
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
2442
- */
2443
- subdomain?: string;
2444
2555
  /**
2445
2556
  * Tags is a map of key, value pairs.
2446
2557
  */
@@ -2448,15 +2559,16 @@ export interface GetResourceResourceClustrix {
2448
2559
  [key: string]: string;
2449
2560
  };
2450
2561
  /**
2451
- * If true, appends the hostname to the username when hitting a database.azure.com address
2562
+ * The base address of your website without the path.
2563
+ * * kubernetes:
2452
2564
  */
2453
- useAzureSingleServerUsernames?: boolean;
2565
+ url?: string;
2454
2566
  /**
2455
2567
  * The username to authenticate with.
2456
2568
  */
2457
2569
  username?: string;
2458
2570
  }
2459
- export interface GetResourceResourceCockroach {
2571
+ export interface GetResourceResourceClickHouseMySql {
2460
2572
  /**
2461
2573
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
2462
2574
  */
@@ -2481,10 +2593,6 @@ export interface GetResourceResourceCockroach {
2481
2593
  * Unique human-readable name of the Resource.
2482
2594
  */
2483
2595
  name?: string;
2484
- /**
2485
- * If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
2486
- */
2487
- overrideDatabase?: boolean;
2488
2596
  /**
2489
2597
  * The password to authenticate with.
2490
2598
  */
@@ -2501,6 +2609,10 @@ export interface GetResourceResourceCockroach {
2501
2609
  * ID of the proxy cluster for this resource, if any.
2502
2610
  */
2503
2611
  proxyClusterId?: string;
2612
+ /**
2613
+ * Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
2614
+ */
2615
+ requireNativeAuth?: boolean;
2504
2616
  /**
2505
2617
  * ID of the secret store containing credentials for this resource, if any.
2506
2618
  */
@@ -2520,11 +2632,15 @@ export interface GetResourceResourceCockroach {
2520
2632
  */
2521
2633
  username?: string;
2522
2634
  }
2523
- export interface GetResourceResourceCouchbaseDatabase {
2635
+ export interface GetResourceResourceClickHouseTcp {
2524
2636
  /**
2525
2637
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
2526
2638
  */
2527
2639
  bindInterface?: string;
2640
+ /**
2641
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
2642
+ */
2643
+ database?: string;
2528
2644
  /**
2529
2645
  * A filter applied to the routing logic to pin datasource to nodes.
2530
2646
  */
@@ -2537,10 +2653,6 @@ export interface GetResourceResourceCouchbaseDatabase {
2537
2653
  * Unique identifier of the Resource.
2538
2654
  */
2539
2655
  id?: string;
2540
- /**
2541
- * The port number for N1QL queries. Default HTTP is 8093. Default HTTPS is 18093.
2542
- */
2543
- n1QlPort?: number;
2544
2656
  /**
2545
2657
  * Unique human-readable name of the Resource.
2546
2658
  */
@@ -2584,15 +2696,23 @@ export interface GetResourceResourceCouchbaseDatabase {
2584
2696
  */
2585
2697
  username?: string;
2586
2698
  }
2587
- export interface GetResourceResourceCouchbaseWebUi {
2699
+ export interface GetResourceResourceClustrix {
2588
2700
  /**
2589
2701
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
2590
2702
  */
2591
2703
  bindInterface?: string;
2704
+ /**
2705
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
2706
+ */
2707
+ database?: string;
2592
2708
  /**
2593
2709
  * A filter applied to the routing logic to pin datasource to nodes.
2594
2710
  */
2595
2711
  egressFilter?: string;
2712
+ /**
2713
+ * The host to dial to initiate a connection from the egress node to this resource.
2714
+ */
2715
+ hostname?: string;
2596
2716
  /**
2597
2717
  * Unique identifier of the Resource.
2598
2718
  */
@@ -2605,6 +2725,10 @@ export interface GetResourceResourceCouchbaseWebUi {
2605
2725
  * The password to authenticate with.
2606
2726
  */
2607
2727
  password?: string;
2728
+ /**
2729
+ * The port to dial to initiate a connection from the egress node to this resource.
2730
+ */
2731
+ port?: number;
2608
2732
  /**
2609
2733
  * The local port used by clients to connect to this resource.
2610
2734
  */
@@ -2613,6 +2737,10 @@ export interface GetResourceResourceCouchbaseWebUi {
2613
2737
  * ID of the proxy cluster for this resource, if any.
2614
2738
  */
2615
2739
  proxyClusterId?: string;
2740
+ /**
2741
+ * Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
2742
+ */
2743
+ requireNativeAuth?: boolean;
2616
2744
  /**
2617
2745
  * ID of the secret store containing credentials for this resource, if any.
2618
2746
  */
@@ -2628,20 +2756,23 @@ export interface GetResourceResourceCouchbaseWebUi {
2628
2756
  [key: string]: string;
2629
2757
  };
2630
2758
  /**
2631
- * The base address of your website without the path.
2632
- * * kubernetes:
2759
+ * If true, appends the hostname to the username when hitting a database.azure.com address
2633
2760
  */
2634
- url?: string;
2761
+ useAzureSingleServerUsernames?: boolean;
2635
2762
  /**
2636
2763
  * The username to authenticate with.
2637
2764
  */
2638
2765
  username?: string;
2639
2766
  }
2640
- export interface GetResourceResourceDb2I {
2767
+ export interface GetResourceResourceCockroach {
2641
2768
  /**
2642
2769
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
2643
2770
  */
2644
2771
  bindInterface?: string;
2772
+ /**
2773
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
2774
+ */
2775
+ database?: string;
2645
2776
  /**
2646
2777
  * A filter applied to the routing logic to pin datasource to nodes.
2647
2778
  */
@@ -2658,6 +2789,10 @@ export interface GetResourceResourceDb2I {
2658
2789
  * Unique human-readable name of the Resource.
2659
2790
  */
2660
2791
  name?: string;
2792
+ /**
2793
+ * If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
2794
+ */
2795
+ overrideDatabase?: boolean;
2661
2796
  /**
2662
2797
  * The password to authenticate with.
2663
2798
  */
@@ -2688,24 +2823,16 @@ export interface GetResourceResourceDb2I {
2688
2823
  tags?: {
2689
2824
  [key: string]: string;
2690
2825
  };
2691
- /**
2692
- * If set, TLS must be used to connect to this resource.
2693
- */
2694
- tlsRequired?: boolean;
2695
2826
  /**
2696
2827
  * The username to authenticate with.
2697
2828
  */
2698
2829
  username?: string;
2699
2830
  }
2700
- export interface GetResourceResourceDb2Luw {
2831
+ export interface GetResourceResourceCouchbaseDatabase {
2701
2832
  /**
2702
2833
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
2703
2834
  */
2704
2835
  bindInterface?: string;
2705
- /**
2706
- * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
2707
- */
2708
- database?: string;
2709
2836
  /**
2710
2837
  * A filter applied to the routing logic to pin datasource to nodes.
2711
2838
  */
@@ -2718,6 +2845,10 @@ export interface GetResourceResourceDb2Luw {
2718
2845
  * Unique identifier of the Resource.
2719
2846
  */
2720
2847
  id?: string;
2848
+ /**
2849
+ * The port number for N1QL queries. Default HTTP is 8093. Default HTTPS is 18093.
2850
+ */
2851
+ n1QlPort?: number;
2721
2852
  /**
2722
2853
  * Unique human-readable name of the Resource.
2723
2854
  */
@@ -2752,16 +2883,16 @@ export interface GetResourceResourceDb2Luw {
2752
2883
  tags?: {
2753
2884
  [key: string]: string;
2754
2885
  };
2886
+ /**
2887
+ * If set, TLS must be used to connect to this resource.
2888
+ */
2889
+ tlsRequired?: boolean;
2755
2890
  /**
2756
2891
  * The username to authenticate with.
2757
2892
  */
2758
2893
  username?: string;
2759
2894
  }
2760
- export interface GetResourceResourceDocumentDbHost {
2761
- /**
2762
- * The authentication database to use.
2763
- */
2764
- authDatabase?: string;
2895
+ export interface GetResourceResourceCouchbaseWebUi {
2765
2896
  /**
2766
2897
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
2767
2898
  */
@@ -2770,10 +2901,6 @@ export interface GetResourceResourceDocumentDbHost {
2770
2901
  * A filter applied to the routing logic to pin datasource to nodes.
2771
2902
  */
2772
2903
  egressFilter?: string;
2773
- /**
2774
- * The host to dial to initiate a connection from the egress node to this resource.
2775
- */
2776
- hostname?: string;
2777
2904
  /**
2778
2905
  * Unique identifier of the Resource.
2779
2906
  */
@@ -2786,10 +2913,6 @@ export interface GetResourceResourceDocumentDbHost {
2786
2913
  * The password to authenticate with.
2787
2914
  */
2788
2915
  password?: string;
2789
- /**
2790
- * The port to dial to initiate a connection from the egress node to this resource.
2791
- */
2792
- port?: number;
2793
2916
  /**
2794
2917
  * The local port used by clients to connect to this resource.
2795
2918
  */
@@ -2812,24 +2935,21 @@ export interface GetResourceResourceDocumentDbHost {
2812
2935
  tags?: {
2813
2936
  [key: string]: string;
2814
2937
  };
2938
+ /**
2939
+ * The base address of your website without the path.
2940
+ * * kubernetes:
2941
+ */
2942
+ url?: string;
2815
2943
  /**
2816
2944
  * The username to authenticate with.
2817
2945
  */
2818
2946
  username?: string;
2819
2947
  }
2820
- export interface GetResourceResourceDocumentDbReplicaSet {
2821
- /**
2822
- * The authentication database to use.
2823
- */
2824
- authDatabase?: string;
2948
+ export interface GetResourceResourceDb2I {
2825
2949
  /**
2826
2950
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
2827
2951
  */
2828
2952
  bindInterface?: string;
2829
- /**
2830
- * Set to connect to a replica instead of the primary node.
2831
- */
2832
- connectToReplica?: boolean;
2833
2953
  /**
2834
2954
  * A filter applied to the routing logic to pin datasource to nodes.
2835
2955
  */
@@ -2850,6 +2970,10 @@ export interface GetResourceResourceDocumentDbReplicaSet {
2850
2970
  * The password to authenticate with.
2851
2971
  */
2852
2972
  password?: string;
2973
+ /**
2974
+ * The port to dial to initiate a connection from the egress node to this resource.
2975
+ */
2976
+ port?: number;
2853
2977
  /**
2854
2978
  * The local port used by clients to connect to this resource.
2855
2979
  */
@@ -2858,10 +2982,6 @@ export interface GetResourceResourceDocumentDbReplicaSet {
2858
2982
  * ID of the proxy cluster for this resource, if any.
2859
2983
  */
2860
2984
  proxyClusterId?: string;
2861
- /**
2862
- * The name of the mongo replicaset.
2863
- */
2864
- replicaSet?: string;
2865
2985
  /**
2866
2986
  * ID of the secret store containing credentials for this resource, if any.
2867
2987
  */
@@ -2876,12 +2996,252 @@ export interface GetResourceResourceDocumentDbReplicaSet {
2876
2996
  tags?: {
2877
2997
  [key: string]: string;
2878
2998
  };
2999
+ /**
3000
+ * If set, TLS must be used to connect to this resource.
3001
+ */
3002
+ tlsRequired?: boolean;
2879
3003
  /**
2880
3004
  * The username to authenticate with.
2881
3005
  */
2882
3006
  username?: string;
2883
3007
  }
2884
- export interface GetResourceResourceDruid {
3008
+ export interface GetResourceResourceDb2Luw {
3009
+ /**
3010
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
3011
+ */
3012
+ bindInterface?: string;
3013
+ /**
3014
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
3015
+ */
3016
+ database?: string;
3017
+ /**
3018
+ * A filter applied to the routing logic to pin datasource to nodes.
3019
+ */
3020
+ egressFilter?: string;
3021
+ /**
3022
+ * The host to dial to initiate a connection from the egress node to this resource.
3023
+ */
3024
+ hostname?: string;
3025
+ /**
3026
+ * Unique identifier of the Resource.
3027
+ */
3028
+ id?: string;
3029
+ /**
3030
+ * Unique human-readable name of the Resource.
3031
+ */
3032
+ name?: string;
3033
+ /**
3034
+ * The password to authenticate with.
3035
+ */
3036
+ password?: string;
3037
+ /**
3038
+ * The port to dial to initiate a connection from the egress node to this resource.
3039
+ */
3040
+ port?: number;
3041
+ /**
3042
+ * The local port used by clients to connect to this resource.
3043
+ */
3044
+ portOverride?: number;
3045
+ /**
3046
+ * ID of the proxy cluster for this resource, if any.
3047
+ */
3048
+ proxyClusterId?: string;
3049
+ /**
3050
+ * ID of the secret store containing credentials for this resource, if any.
3051
+ */
3052
+ secretStoreId?: string;
3053
+ /**
3054
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3055
+ */
3056
+ subdomain?: string;
3057
+ /**
3058
+ * Tags is a map of key, value pairs.
3059
+ */
3060
+ tags?: {
3061
+ [key: string]: string;
3062
+ };
3063
+ /**
3064
+ * The username to authenticate with.
3065
+ */
3066
+ username?: string;
3067
+ }
3068
+ export interface GetResourceResourceDocumentDbHost {
3069
+ /**
3070
+ * The authentication database to use.
3071
+ */
3072
+ authDatabase?: string;
3073
+ /**
3074
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
3075
+ */
3076
+ bindInterface?: string;
3077
+ /**
3078
+ * A filter applied to the routing logic to pin datasource to nodes.
3079
+ */
3080
+ egressFilter?: string;
3081
+ /**
3082
+ * The host to dial to initiate a connection from the egress node to this resource.
3083
+ */
3084
+ hostname?: string;
3085
+ /**
3086
+ * Unique identifier of the Resource.
3087
+ */
3088
+ id?: string;
3089
+ /**
3090
+ * Unique human-readable name of the Resource.
3091
+ */
3092
+ name?: string;
3093
+ /**
3094
+ * The password to authenticate with.
3095
+ */
3096
+ password?: string;
3097
+ /**
3098
+ * The port to dial to initiate a connection from the egress node to this resource.
3099
+ */
3100
+ port?: number;
3101
+ /**
3102
+ * The local port used by clients to connect to this resource.
3103
+ */
3104
+ portOverride?: number;
3105
+ /**
3106
+ * ID of the proxy cluster for this resource, if any.
3107
+ */
3108
+ proxyClusterId?: string;
3109
+ /**
3110
+ * ID of the secret store containing credentials for this resource, if any.
3111
+ */
3112
+ secretStoreId?: string;
3113
+ /**
3114
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3115
+ */
3116
+ subdomain?: string;
3117
+ /**
3118
+ * Tags is a map of key, value pairs.
3119
+ */
3120
+ tags?: {
3121
+ [key: string]: string;
3122
+ };
3123
+ /**
3124
+ * The username to authenticate with.
3125
+ */
3126
+ username?: string;
3127
+ }
3128
+ export interface GetResourceResourceDocumentDbHostIam {
3129
+ /**
3130
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
3131
+ */
3132
+ bindInterface?: string;
3133
+ /**
3134
+ * A filter applied to the routing logic to pin datasource to nodes.
3135
+ */
3136
+ egressFilter?: string;
3137
+ /**
3138
+ * The host to dial to initiate a connection from the egress node to this resource.
3139
+ */
3140
+ hostname?: string;
3141
+ /**
3142
+ * Unique identifier of the Resource.
3143
+ */
3144
+ id?: string;
3145
+ /**
3146
+ * Unique human-readable name of the Resource.
3147
+ */
3148
+ name?: string;
3149
+ /**
3150
+ * The port to dial to initiate a connection from the egress node to this resource.
3151
+ */
3152
+ port?: number;
3153
+ /**
3154
+ * The local port used by clients to connect to this resource.
3155
+ */
3156
+ portOverride?: number;
3157
+ /**
3158
+ * ID of the proxy cluster for this resource, if any.
3159
+ */
3160
+ proxyClusterId?: string;
3161
+ /**
3162
+ * The AWS region to connect to.
3163
+ */
3164
+ region?: string;
3165
+ /**
3166
+ * ID of the secret store containing credentials for this resource, if any.
3167
+ */
3168
+ secretStoreId?: string;
3169
+ /**
3170
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3171
+ */
3172
+ subdomain?: string;
3173
+ /**
3174
+ * Tags is a map of key, value pairs.
3175
+ */
3176
+ tags?: {
3177
+ [key: string]: string;
3178
+ };
3179
+ }
3180
+ export interface GetResourceResourceDocumentDbReplicaSet {
3181
+ /**
3182
+ * The authentication database to use.
3183
+ */
3184
+ authDatabase?: string;
3185
+ /**
3186
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
3187
+ */
3188
+ bindInterface?: string;
3189
+ /**
3190
+ * Set to connect to a replica instead of the primary node.
3191
+ */
3192
+ connectToReplica?: boolean;
3193
+ /**
3194
+ * A filter applied to the routing logic to pin datasource to nodes.
3195
+ */
3196
+ egressFilter?: string;
3197
+ /**
3198
+ * The host to dial to initiate a connection from the egress node to this resource.
3199
+ */
3200
+ hostname?: string;
3201
+ /**
3202
+ * Unique identifier of the Resource.
3203
+ */
3204
+ id?: string;
3205
+ /**
3206
+ * Unique human-readable name of the Resource.
3207
+ */
3208
+ name?: string;
3209
+ /**
3210
+ * The password to authenticate with.
3211
+ */
3212
+ password?: string;
3213
+ /**
3214
+ * The local port used by clients to connect to this resource.
3215
+ */
3216
+ portOverride?: number;
3217
+ /**
3218
+ * ID of the proxy cluster for this resource, if any.
3219
+ */
3220
+ proxyClusterId?: string;
3221
+ /**
3222
+ * The name of the mongo replicaset.
3223
+ */
3224
+ replicaSet?: string;
3225
+ /**
3226
+ * ID of the secret store containing credentials for this resource, if any.
3227
+ */
3228
+ secretStoreId?: string;
3229
+ /**
3230
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3231
+ */
3232
+ subdomain?: string;
3233
+ /**
3234
+ * Tags is a map of key, value pairs.
3235
+ */
3236
+ tags?: {
3237
+ [key: string]: string;
3238
+ };
3239
+ /**
3240
+ * The username to authenticate with.
3241
+ */
3242
+ username?: string;
3243
+ }
3244
+ export interface GetResourceResourceDruid {
2885
3245
  /**
2886
3246
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
2887
3247
  */
@@ -3001,6 +3361,62 @@ export interface GetResourceResourceDynamoDb {
3001
3361
  [key: string]: string;
3002
3362
  };
3003
3363
  }
3364
+ export interface GetResourceResourceDynamoDbiam {
3365
+ /**
3366
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
3367
+ */
3368
+ bindInterface?: string;
3369
+ /**
3370
+ * A filter applied to the routing logic to pin datasource to nodes.
3371
+ */
3372
+ egressFilter?: string;
3373
+ /**
3374
+ * The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
3375
+ */
3376
+ endpoint?: string;
3377
+ /**
3378
+ * Unique identifier of the Resource.
3379
+ */
3380
+ id?: string;
3381
+ /**
3382
+ * Unique human-readable name of the Resource.
3383
+ */
3384
+ name?: string;
3385
+ /**
3386
+ * The local port used by clients to connect to this resource.
3387
+ */
3388
+ portOverride?: number;
3389
+ /**
3390
+ * ID of the proxy cluster for this resource, if any.
3391
+ */
3392
+ proxyClusterId?: string;
3393
+ /**
3394
+ * The AWS region to connect to.
3395
+ */
3396
+ region?: string;
3397
+ /**
3398
+ * The role to assume after logging in.
3399
+ */
3400
+ roleArn?: string;
3401
+ /**
3402
+ * The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
3403
+ */
3404
+ roleExternalId?: string;
3405
+ /**
3406
+ * ID of the secret store containing credentials for this resource, if any.
3407
+ */
3408
+ secretStoreId?: string;
3409
+ /**
3410
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
3411
+ */
3412
+ subdomain?: string;
3413
+ /**
3414
+ * Tags is a map of key, value pairs.
3415
+ */
3416
+ tags?: {
3417
+ [key: string]: string;
3418
+ };
3419
+ }
3004
3420
  export interface GetResourceResourceElastic {
3005
3421
  /**
3006
3422
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
@@ -7205,6 +7621,14 @@ export interface GetWorkflowRoleWorkflowRole {
7205
7621
  workflowId?: string;
7206
7622
  }
7207
7623
  export interface GetWorkflowWorkflow {
7624
+ /**
7625
+ * Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
7626
+ */
7627
+ accessRequestFixedDuration?: string;
7628
+ /**
7629
+ * Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
7630
+ */
7631
+ accessRequestMaxDuration?: string;
7208
7632
  /**
7209
7633
  * AccessRules is a list of access rules defining the resources this Workflow provides access to.
7210
7634
  */
@@ -8062,15 +8486,83 @@ export interface ResourceAmazonmqAmqp091 {
8062
8486
  /**
8063
8487
  * The port to dial to initiate a connection from the egress node to this resource.
8064
8488
  */
8065
- port?: number;
8489
+ port?: number;
8490
+ /**
8491
+ * The local port used by clients to connect to this resource.
8492
+ */
8493
+ portOverride: number;
8494
+ /**
8495
+ * ID of the proxy cluster for this resource, if any.
8496
+ */
8497
+ proxyClusterId?: string;
8498
+ /**
8499
+ * ID of the secret store containing credentials for this resource, if any.
8500
+ */
8501
+ secretStoreId?: string;
8502
+ /**
8503
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
8504
+ */
8505
+ subdomain: string;
8506
+ /**
8507
+ * Tags is a map of key, value pairs.
8508
+ */
8509
+ tags?: {
8510
+ [key: string]: string;
8511
+ };
8512
+ /**
8513
+ * If set, TLS must be used to connect to this resource.
8514
+ */
8515
+ tlsRequired?: boolean;
8516
+ /**
8517
+ * The username to authenticate with.
8518
+ */
8519
+ username?: string;
8520
+ }
8521
+ export interface ResourceAthena {
8522
+ /**
8523
+ * The Access Key ID to use to authenticate.
8524
+ */
8525
+ accessKey?: string;
8526
+ /**
8527
+ * The AWS S3 output location.
8528
+ */
8529
+ athenaOutput: string;
8530
+ /**
8531
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
8532
+ */
8533
+ bindInterface: string;
8534
+ /**
8535
+ * A filter applied to the routing logic to pin datasource to nodes.
8536
+ */
8537
+ egressFilter?: string;
8538
+ /**
8539
+ * Unique human-readable name of the Resource.
8540
+ */
8541
+ name: string;
8542
+ /**
8543
+ * The local port used by clients to connect to this resource.
8544
+ */
8545
+ portOverride: number;
8546
+ /**
8547
+ * ID of the proxy cluster for this resource, if any.
8548
+ */
8549
+ proxyClusterId?: string;
8550
+ /**
8551
+ * The AWS region to connect to.
8552
+ */
8553
+ region?: string;
8554
+ /**
8555
+ * The role to assume after logging in.
8556
+ */
8557
+ roleArn?: string;
8066
8558
  /**
8067
- * The local port used by clients to connect to this resource.
8559
+ * The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
8068
8560
  */
8069
- portOverride: number;
8561
+ roleExternalId?: string;
8070
8562
  /**
8071
- * ID of the proxy cluster for this resource, if any.
8563
+ * The Secret Access Key to use to authenticate.
8072
8564
  */
8073
- proxyClusterId?: string;
8565
+ secretAccessKey?: string;
8074
8566
  /**
8075
8567
  * ID of the secret store containing credentials for this resource, if any.
8076
8568
  */
@@ -8085,24 +8577,8 @@ export interface ResourceAmazonmqAmqp091 {
8085
8577
  tags?: {
8086
8578
  [key: string]: string;
8087
8579
  };
8088
- /**
8089
- * If set, TLS must be used to connect to this resource.
8090
- */
8091
- tlsRequired?: boolean;
8092
- /**
8093
- * The username to authenticate with.
8094
- */
8095
- username?: string;
8096
8580
  }
8097
- export interface ResourceAthena {
8098
- /**
8099
- * The Access Key ID to use to authenticate.
8100
- */
8101
- accessKey?: string;
8102
- /**
8103
- * The AWS S3 output location.
8104
- */
8105
- athenaOutput: string;
8581
+ export interface ResourceAthenaIam {
8106
8582
  /**
8107
8583
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
8108
8584
  */
@@ -8115,6 +8591,10 @@ export interface ResourceAthena {
8115
8591
  * Unique human-readable name of the Resource.
8116
8592
  */
8117
8593
  name: string;
8594
+ /**
8595
+ * The AWS S3 output location.
8596
+ */
8597
+ output: string;
8118
8598
  /**
8119
8599
  * The local port used by clients to connect to this resource.
8120
8600
  */
@@ -8135,10 +8615,6 @@ export interface ResourceAthena {
8135
8615
  * The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
8136
8616
  */
8137
8617
  roleExternalId?: string;
8138
- /**
8139
- * The Secret Access Key to use to authenticate.
8140
- */
8141
- secretAccessKey?: string;
8142
8618
  /**
8143
8619
  * ID of the secret store containing credentials for this resource, if any.
8144
8620
  */
@@ -8218,6 +8694,66 @@ export interface ResourceAuroraMysql {
8218
8694
  */
8219
8695
  username?: string;
8220
8696
  }
8697
+ export interface ResourceAuroraMysqlIam {
8698
+ /**
8699
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
8700
+ */
8701
+ bindInterface: string;
8702
+ /**
8703
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
8704
+ */
8705
+ database?: string;
8706
+ /**
8707
+ * A filter applied to the routing logic to pin datasource to nodes.
8708
+ */
8709
+ egressFilter?: string;
8710
+ /**
8711
+ * The host to dial to initiate a connection from the egress node to this resource.
8712
+ */
8713
+ hostname: string;
8714
+ /**
8715
+ * Unique human-readable name of the Resource.
8716
+ */
8717
+ name: string;
8718
+ /**
8719
+ * The port to dial to initiate a connection from the egress node to this resource.
8720
+ */
8721
+ port?: number;
8722
+ /**
8723
+ * The local port used by clients to connect to this resource.
8724
+ */
8725
+ portOverride: number;
8726
+ /**
8727
+ * ID of the proxy cluster for this resource, if any.
8728
+ */
8729
+ proxyClusterId?: string;
8730
+ /**
8731
+ * The AWS region to connect to.
8732
+ */
8733
+ region: string;
8734
+ /**
8735
+ * If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
8736
+ */
8737
+ roleAssumptionArn?: string;
8738
+ /**
8739
+ * ID of the secret store containing credentials for this resource, if any.
8740
+ */
8741
+ secretStoreId?: string;
8742
+ /**
8743
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
8744
+ */
8745
+ subdomain: string;
8746
+ /**
8747
+ * Tags is a map of key, value pairs.
8748
+ */
8749
+ tags?: {
8750
+ [key: string]: string;
8751
+ };
8752
+ /**
8753
+ * The username to authenticate with.
8754
+ */
8755
+ username?: string;
8756
+ }
8221
8757
  export interface ResourceAuroraPostgres {
8222
8758
  /**
8223
8759
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
@@ -8626,32 +9162,217 @@ export interface ResourceAzure {
8626
9162
  [key: string]: string;
8627
9163
  };
8628
9164
  /**
8629
- * The Azure AD directory (tenant) ID with which to authenticate.
8630
- * * sql_server_kerberos_ad:
9165
+ * The Azure AD directory (tenant) ID with which to authenticate.
9166
+ * * sql_server_kerberos_ad:
9167
+ */
9168
+ tenantId?: string;
9169
+ }
9170
+ export interface ResourceAzureCertificate {
9171
+ /**
9172
+ * The application ID to authenticate with.
9173
+ */
9174
+ appId?: string;
9175
+ /**
9176
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
9177
+ */
9178
+ bindInterface: string;
9179
+ /**
9180
+ * The certificate to authenticate TLS connections with.
9181
+ */
9182
+ clientCertificate?: string;
9183
+ /**
9184
+ * A filter applied to the routing logic to pin datasource to nodes.
9185
+ */
9186
+ egressFilter?: string;
9187
+ /**
9188
+ * Unique human-readable name of the Resource.
9189
+ */
9190
+ name: string;
9191
+ /**
9192
+ * The local port used by clients to connect to this resource.
9193
+ */
9194
+ portOverride: number;
9195
+ /**
9196
+ * ID of the proxy cluster for this resource, if any.
9197
+ */
9198
+ proxyClusterId?: string;
9199
+ /**
9200
+ * ID of the secret store containing credentials for this resource, if any.
9201
+ */
9202
+ secretStoreId?: string;
9203
+ /**
9204
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9205
+ */
9206
+ subdomain: string;
9207
+ /**
9208
+ * Tags is a map of key, value pairs.
9209
+ */
9210
+ tags?: {
9211
+ [key: string]: string;
9212
+ };
9213
+ /**
9214
+ * The Azure AD directory (tenant) ID with which to authenticate.
9215
+ * * sql_server_kerberos_ad:
9216
+ */
9217
+ tenantId?: string;
9218
+ }
9219
+ export interface ResourceAzureMysql {
9220
+ /**
9221
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
9222
+ */
9223
+ bindInterface: string;
9224
+ /**
9225
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
9226
+ */
9227
+ database?: string;
9228
+ /**
9229
+ * A filter applied to the routing logic to pin datasource to nodes.
9230
+ */
9231
+ egressFilter?: string;
9232
+ /**
9233
+ * The host to dial to initiate a connection from the egress node to this resource.
9234
+ */
9235
+ hostname: string;
9236
+ /**
9237
+ * Unique human-readable name of the Resource.
9238
+ */
9239
+ name: string;
9240
+ /**
9241
+ * The password to authenticate with.
9242
+ */
9243
+ password?: string;
9244
+ /**
9245
+ * The port to dial to initiate a connection from the egress node to this resource.
9246
+ */
9247
+ port?: number;
9248
+ /**
9249
+ * The local port used by clients to connect to this resource.
9250
+ */
9251
+ portOverride: number;
9252
+ /**
9253
+ * ID of the proxy cluster for this resource, if any.
9254
+ */
9255
+ proxyClusterId?: string;
9256
+ /**
9257
+ * Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
9258
+ */
9259
+ requireNativeAuth?: boolean;
9260
+ /**
9261
+ * ID of the secret store containing credentials for this resource, if any.
9262
+ */
9263
+ secretStoreId?: string;
9264
+ /**
9265
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9266
+ */
9267
+ subdomain: string;
9268
+ /**
9269
+ * Tags is a map of key, value pairs.
9270
+ */
9271
+ tags?: {
9272
+ [key: string]: string;
9273
+ };
9274
+ /**
9275
+ * If true, appends the hostname to the username when hitting a database.azure.com address
9276
+ */
9277
+ useAzureSingleServerUsernames?: boolean;
9278
+ /**
9279
+ * The username to authenticate with.
9280
+ */
9281
+ username?: string;
9282
+ }
9283
+ export interface ResourceAzurePostgres {
9284
+ /**
9285
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
9286
+ */
9287
+ bindInterface: string;
9288
+ /**
9289
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
9290
+ */
9291
+ database: string;
9292
+ /**
9293
+ * A filter applied to the routing logic to pin datasource to nodes.
9294
+ */
9295
+ egressFilter?: string;
9296
+ /**
9297
+ * The host to dial to initiate a connection from the egress node to this resource.
9298
+ */
9299
+ hostname: string;
9300
+ /**
9301
+ * Unique human-readable name of the Resource.
9302
+ */
9303
+ name: string;
9304
+ /**
9305
+ * If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
9306
+ */
9307
+ overrideDatabase?: boolean;
9308
+ /**
9309
+ * The password to authenticate with.
9310
+ */
9311
+ password?: string;
9312
+ /**
9313
+ * The port to dial to initiate a connection from the egress node to this resource.
9314
+ */
9315
+ port?: number;
9316
+ /**
9317
+ * The local port used by clients to connect to this resource.
9318
+ */
9319
+ portOverride: number;
9320
+ /**
9321
+ * ID of the proxy cluster for this resource, if any.
9322
+ */
9323
+ proxyClusterId?: string;
9324
+ /**
9325
+ * ID of the secret store containing credentials for this resource, if any.
9326
+ */
9327
+ secretStoreId?: string;
9328
+ /**
9329
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
9330
+ */
9331
+ subdomain: string;
9332
+ /**
9333
+ * Tags is a map of key, value pairs.
9334
+ */
9335
+ tags?: {
9336
+ [key: string]: string;
9337
+ };
9338
+ /**
9339
+ * The username to authenticate with.
8631
9340
  */
8632
- tenantId?: string;
9341
+ username?: string;
8633
9342
  }
8634
- export interface ResourceAzureCertificate {
8635
- /**
8636
- * The application ID to authenticate with.
8637
- */
8638
- appId?: string;
9343
+ export interface ResourceAzurePostgresManagedIdentity {
8639
9344
  /**
8640
9345
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
8641
9346
  */
8642
9347
  bindInterface: string;
8643
9348
  /**
8644
- * The certificate to authenticate TLS connections with.
9349
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
8645
9350
  */
8646
- clientCertificate?: string;
9351
+ database: string;
8647
9352
  /**
8648
9353
  * A filter applied to the routing logic to pin datasource to nodes.
8649
9354
  */
8650
9355
  egressFilter?: string;
9356
+ /**
9357
+ * The host to dial to initiate a connection from the egress node to this resource.
9358
+ */
9359
+ hostname: string;
8651
9360
  /**
8652
9361
  * Unique human-readable name of the Resource.
8653
9362
  */
8654
9363
  name: string;
9364
+ /**
9365
+ * If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
9366
+ */
9367
+ overrideDatabase?: boolean;
9368
+ /**
9369
+ * The password to authenticate with.
9370
+ */
9371
+ password?: string;
9372
+ /**
9373
+ * The port to dial to initiate a connection from the egress node to this resource.
9374
+ */
9375
+ port?: number;
8655
9376
  /**
8656
9377
  * The local port used by clients to connect to this resource.
8657
9378
  */
@@ -8675,52 +9396,47 @@ export interface ResourceAzureCertificate {
8675
9396
  [key: string]: string;
8676
9397
  };
8677
9398
  /**
8678
- * The Azure AD directory (tenant) ID with which to authenticate.
8679
- * * sql_server_kerberos_ad:
9399
+ * If true, appends the hostname to the username when hitting a database.azure.com address
8680
9400
  */
8681
- tenantId?: string;
9401
+ useAzureSingleServerUsernames?: boolean;
9402
+ /**
9403
+ * The username to authenticate with.
9404
+ */
9405
+ username?: string;
8682
9406
  }
8683
- export interface ResourceAzureMysql {
9407
+ export interface ResourceBigQuery {
8684
9408
  /**
8685
9409
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
8686
9410
  */
8687
9411
  bindInterface: string;
8688
- /**
8689
- * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
8690
- */
8691
- database?: string;
8692
9412
  /**
8693
9413
  * A filter applied to the routing logic to pin datasource to nodes.
8694
9414
  */
8695
9415
  egressFilter?: string;
8696
9416
  /**
8697
- * The host to dial to initiate a connection from the egress node to this resource.
9417
+ * The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
8698
9418
  */
8699
- hostname: string;
9419
+ endpoint: string;
8700
9420
  /**
8701
9421
  * Unique human-readable name of the Resource.
8702
9422
  */
8703
9423
  name: string;
8704
9424
  /**
8705
- * The password to authenticate with.
9425
+ * The local port used by clients to connect to this resource.
8706
9426
  */
8707
- password?: string;
9427
+ portOverride: number;
8708
9428
  /**
8709
- * The port to dial to initiate a connection from the egress node to this resource.
9429
+ * The private key used to authenticate with the server.
8710
9430
  */
8711
- port?: number;
9431
+ privateKey?: string;
8712
9432
  /**
8713
- * The local port used by clients to connect to this resource.
9433
+ * The project to connect to.
8714
9434
  */
8715
- portOverride: number;
9435
+ project: string;
8716
9436
  /**
8717
9437
  * ID of the proxy cluster for this resource, if any.
8718
9438
  */
8719
9439
  proxyClusterId?: string;
8720
- /**
8721
- * Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
8722
- */
8723
- requireNativeAuth?: boolean;
8724
9440
  /**
8725
9441
  * ID of the secret store containing credentials for this resource, if any.
8726
9442
  */
@@ -8735,24 +9451,16 @@ export interface ResourceAzureMysql {
8735
9451
  tags?: {
8736
9452
  [key: string]: string;
8737
9453
  };
8738
- /**
8739
- * If true, appends the hostname to the username when hitting a database.azure.com address
8740
- */
8741
- useAzureSingleServerUsernames?: boolean;
8742
9454
  /**
8743
9455
  * The username to authenticate with.
8744
9456
  */
8745
9457
  username?: string;
8746
9458
  }
8747
- export interface ResourceAzurePostgres {
9459
+ export interface ResourceCassandra {
8748
9460
  /**
8749
9461
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
8750
9462
  */
8751
9463
  bindInterface: string;
8752
- /**
8753
- * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
8754
- */
8755
- database: string;
8756
9464
  /**
8757
9465
  * A filter applied to the routing logic to pin datasource to nodes.
8758
9466
  */
@@ -8765,10 +9473,6 @@ export interface ResourceAzurePostgres {
8765
9473
  * Unique human-readable name of the Resource.
8766
9474
  */
8767
9475
  name: string;
8768
- /**
8769
- * If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
8770
- */
8771
- overrideDatabase?: boolean;
8772
9476
  /**
8773
9477
  * The password to authenticate with.
8774
9478
  */
@@ -8799,12 +9503,16 @@ export interface ResourceAzurePostgres {
8799
9503
  tags?: {
8800
9504
  [key: string]: string;
8801
9505
  };
9506
+ /**
9507
+ * If set, TLS must be used to connect to this resource.
9508
+ */
9509
+ tlsRequired?: boolean;
8802
9510
  /**
8803
9511
  * The username to authenticate with.
8804
9512
  */
8805
9513
  username?: string;
8806
9514
  }
8807
- export interface ResourceAzurePostgresManagedIdentity {
9515
+ export interface ResourceCitus {
8808
9516
  /**
8809
9517
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
8810
9518
  */
@@ -8859,44 +9567,36 @@ export interface ResourceAzurePostgresManagedIdentity {
8859
9567
  tags?: {
8860
9568
  [key: string]: string;
8861
9569
  };
8862
- /**
8863
- * If true, appends the hostname to the username when hitting a database.azure.com address
8864
- */
8865
- useAzureSingleServerUsernames?: boolean;
8866
9570
  /**
8867
9571
  * The username to authenticate with.
8868
9572
  */
8869
9573
  username?: string;
8870
9574
  }
8871
- export interface ResourceBigQuery {
9575
+ export interface ResourceClickHouseHttp {
8872
9576
  /**
8873
9577
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
8874
9578
  */
8875
9579
  bindInterface: string;
8876
9580
  /**
8877
- * A filter applied to the routing logic to pin datasource to nodes.
9581
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
8878
9582
  */
8879
- egressFilter?: string;
9583
+ database?: string;
8880
9584
  /**
8881
- * The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
9585
+ * A filter applied to the routing logic to pin datasource to nodes.
8882
9586
  */
8883
- endpoint: string;
9587
+ egressFilter?: string;
8884
9588
  /**
8885
9589
  * Unique human-readable name of the Resource.
8886
9590
  */
8887
9591
  name: string;
8888
9592
  /**
8889
- * The local port used by clients to connect to this resource.
8890
- */
8891
- portOverride: number;
8892
- /**
8893
- * The private key used to authenticate with the server.
9593
+ * The password to authenticate with.
8894
9594
  */
8895
- privateKey?: string;
9595
+ password?: string;
8896
9596
  /**
8897
- * The project to connect to.
9597
+ * The local port used by clients to connect to this resource.
8898
9598
  */
8899
- project: string;
9599
+ portOverride: number;
8900
9600
  /**
8901
9601
  * ID of the proxy cluster for this resource, if any.
8902
9602
  */
@@ -8905,26 +9605,31 @@ export interface ResourceBigQuery {
8905
9605
  * ID of the secret store containing credentials for this resource, if any.
8906
9606
  */
8907
9607
  secretStoreId?: string;
8908
- /**
8909
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
8910
- */
8911
- subdomain: string;
8912
9608
  /**
8913
9609
  * Tags is a map of key, value pairs.
8914
9610
  */
8915
9611
  tags?: {
8916
9612
  [key: string]: string;
8917
9613
  };
9614
+ /**
9615
+ * The base address of your website without the path.
9616
+ * * kubernetes:
9617
+ */
9618
+ url: string;
8918
9619
  /**
8919
9620
  * The username to authenticate with.
8920
9621
  */
8921
9622
  username?: string;
8922
9623
  }
8923
- export interface ResourceCassandra {
9624
+ export interface ResourceClickHouseMySql {
8924
9625
  /**
8925
9626
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
8926
9627
  */
8927
9628
  bindInterface: string;
9629
+ /**
9630
+ * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
9631
+ */
9632
+ database?: string;
8928
9633
  /**
8929
9634
  * A filter applied to the routing logic to pin datasource to nodes.
8930
9635
  */
@@ -8953,6 +9658,10 @@ export interface ResourceCassandra {
8953
9658
  * ID of the proxy cluster for this resource, if any.
8954
9659
  */
8955
9660
  proxyClusterId?: string;
9661
+ /**
9662
+ * Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
9663
+ */
9664
+ requireNativeAuth?: boolean;
8956
9665
  /**
8957
9666
  * ID of the secret store containing credentials for this resource, if any.
8958
9667
  */
@@ -8967,16 +9676,12 @@ export interface ResourceCassandra {
8967
9676
  tags?: {
8968
9677
  [key: string]: string;
8969
9678
  };
8970
- /**
8971
- * If set, TLS must be used to connect to this resource.
8972
- */
8973
- tlsRequired?: boolean;
8974
9679
  /**
8975
9680
  * The username to authenticate with.
8976
9681
  */
8977
9682
  username?: string;
8978
9683
  }
8979
- export interface ResourceCitus {
9684
+ export interface ResourceClickHouseTcp {
8980
9685
  /**
8981
9686
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
8982
9687
  */
@@ -8984,7 +9689,7 @@ export interface ResourceCitus {
8984
9689
  /**
8985
9690
  * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
8986
9691
  */
8987
- database: string;
9692
+ database?: string;
8988
9693
  /**
8989
9694
  * A filter applied to the routing logic to pin datasource to nodes.
8990
9695
  */
@@ -8997,10 +9702,6 @@ export interface ResourceCitus {
8997
9702
  * Unique human-readable name of the Resource.
8998
9703
  */
8999
9704
  name: string;
9000
- /**
9001
- * If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
9002
- */
9003
- overrideDatabase?: boolean;
9004
9705
  /**
9005
9706
  * The password to authenticate with.
9006
9707
  */
@@ -9008,7 +9709,7 @@ export interface ResourceCitus {
9008
9709
  /**
9009
9710
  * The port to dial to initiate a connection from the egress node to this resource.
9010
9711
  */
9011
- port?: number;
9712
+ port: number;
9012
9713
  /**
9013
9714
  * The local port used by clients to connect to this resource.
9014
9715
  */
@@ -9031,6 +9732,10 @@ export interface ResourceCitus {
9031
9732
  tags?: {
9032
9733
  [key: string]: string;
9033
9734
  };
9735
+ /**
9736
+ * If set, TLS must be used to connect to this resource.
9737
+ */
9738
+ tlsRequired?: boolean;
9034
9739
  /**
9035
9740
  * The username to authenticate with.
9036
9741
  */
@@ -9437,6 +10142,54 @@ export interface ResourceDocumentDbHost {
9437
10142
  */
9438
10143
  username?: string;
9439
10144
  }
10145
+ export interface ResourceDocumentDbHostIam {
10146
+ /**
10147
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
10148
+ */
10149
+ bindInterface: string;
10150
+ /**
10151
+ * A filter applied to the routing logic to pin datasource to nodes.
10152
+ */
10153
+ egressFilter?: string;
10154
+ /**
10155
+ * The host to dial to initiate a connection from the egress node to this resource.
10156
+ */
10157
+ hostname: string;
10158
+ /**
10159
+ * Unique human-readable name of the Resource.
10160
+ */
10161
+ name: string;
10162
+ /**
10163
+ * The port to dial to initiate a connection from the egress node to this resource.
10164
+ */
10165
+ port?: number;
10166
+ /**
10167
+ * The local port used by clients to connect to this resource.
10168
+ */
10169
+ portOverride: number;
10170
+ /**
10171
+ * ID of the proxy cluster for this resource, if any.
10172
+ */
10173
+ proxyClusterId?: string;
10174
+ /**
10175
+ * The AWS region to connect to.
10176
+ */
10177
+ region: string;
10178
+ /**
10179
+ * ID of the secret store containing credentials for this resource, if any.
10180
+ */
10181
+ secretStoreId?: string;
10182
+ /**
10183
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10184
+ */
10185
+ subdomain: string;
10186
+ /**
10187
+ * Tags is a map of key, value pairs.
10188
+ */
10189
+ tags?: {
10190
+ [key: string]: string;
10191
+ };
10192
+ }
9440
10193
  export interface ResourceDocumentDbReplicaSet {
9441
10194
  /**
9442
10195
  * The authentication database to use.
@@ -9609,6 +10362,58 @@ export interface ResourceDynamoDb {
9609
10362
  [key: string]: string;
9610
10363
  };
9611
10364
  }
10365
+ export interface ResourceDynamoDbiam {
10366
+ /**
10367
+ * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
10368
+ */
10369
+ bindInterface: string;
10370
+ /**
10371
+ * A filter applied to the routing logic to pin datasource to nodes.
10372
+ */
10373
+ egressFilter?: string;
10374
+ /**
10375
+ * The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
10376
+ */
10377
+ endpoint: string;
10378
+ /**
10379
+ * Unique human-readable name of the Resource.
10380
+ */
10381
+ name: string;
10382
+ /**
10383
+ * The local port used by clients to connect to this resource.
10384
+ */
10385
+ portOverride: number;
10386
+ /**
10387
+ * ID of the proxy cluster for this resource, if any.
10388
+ */
10389
+ proxyClusterId?: string;
10390
+ /**
10391
+ * The AWS region to connect to.
10392
+ */
10393
+ region: string;
10394
+ /**
10395
+ * The role to assume after logging in.
10396
+ */
10397
+ roleArn?: string;
10398
+ /**
10399
+ * The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
10400
+ */
10401
+ roleExternalId?: string;
10402
+ /**
10403
+ * ID of the secret store containing credentials for this resource, if any.
10404
+ */
10405
+ secretStoreId?: string;
10406
+ /**
10407
+ * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
10408
+ */
10409
+ subdomain: string;
10410
+ /**
10411
+ * Tags is a map of key, value pairs.
10412
+ */
10413
+ tags?: {
10414
+ [key: string]: string;
10415
+ };
10416
+ }
9612
10417
  export interface ResourceElastic {
9613
10418
  /**
9614
10419
  * The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.