@pierskarsenbarg/sdm 1.23.0 → 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.
@@ -3259,6 +3675,10 @@ export interface GetResourceResourceGcpwif {
3259
3675
  * The local port used by clients to connect to this resource.
3260
3676
  */
3261
3677
  portOverride?: number;
3678
+ /**
3679
+ * When specified, all project scoped requests will use this Project ID, overriding the project ID specified by clients
3680
+ */
3681
+ projectId?: string;
3262
3682
  /**
3263
3683
  * ID of the proxy cluster for this resource, if any.
3264
3684
  */
@@ -5269,6 +5689,10 @@ export interface GetResourceResourceRdpCert {
5269
5689
  * The ID of the identity set to use for identity connections.
5270
5690
  */
5271
5691
  identitySetId?: string;
5692
+ /**
5693
+ * When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
5694
+ */
5695
+ lockRequired?: boolean;
5272
5696
  /**
5273
5697
  * Unique human-readable name of the Resource.
5274
5698
  */
@@ -7197,6 +7621,14 @@ export interface GetWorkflowRoleWorkflowRole {
7197
7621
  workflowId?: string;
7198
7622
  }
7199
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;
7200
7632
  /**
7201
7633
  * AccessRules is a list of access rules defining the resources this Workflow provides access to.
7202
7634
  */
@@ -8060,9 +8492,77 @@ export interface ResourceAmazonmqAmqp091 {
8060
8492
  */
8061
8493
  portOverride: number;
8062
8494
  /**
8063
- * ID of the proxy cluster for this resource, if any.
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;
8558
+ /**
8559
+ * The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
8560
+ */
8561
+ roleExternalId?: string;
8562
+ /**
8563
+ * The Secret Access Key to use to authenticate.
8064
8564
  */
8065
- proxyClusterId?: string;
8565
+ secretAccessKey?: string;
8066
8566
  /**
8067
8567
  * ID of the secret store containing credentials for this resource, if any.
8068
8568
  */
@@ -8077,24 +8577,8 @@ export interface ResourceAmazonmqAmqp091 {
8077
8577
  tags?: {
8078
8578
  [key: string]: string;
8079
8579
  };
8080
- /**
8081
- * If set, TLS must be used to connect to this resource.
8082
- */
8083
- tlsRequired?: boolean;
8084
- /**
8085
- * The username to authenticate with.
8086
- */
8087
- username?: string;
8088
8580
  }
8089
- export interface ResourceAthena {
8090
- /**
8091
- * The Access Key ID to use to authenticate.
8092
- */
8093
- accessKey?: string;
8094
- /**
8095
- * The AWS S3 output location.
8096
- */
8097
- athenaOutput: string;
8581
+ export interface ResourceAthenaIam {
8098
8582
  /**
8099
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.
8100
8584
  */
@@ -8107,6 +8591,10 @@ export interface ResourceAthena {
8107
8591
  * Unique human-readable name of the Resource.
8108
8592
  */
8109
8593
  name: string;
8594
+ /**
8595
+ * The AWS S3 output location.
8596
+ */
8597
+ output: string;
8110
8598
  /**
8111
8599
  * The local port used by clients to connect to this resource.
8112
8600
  */
@@ -8127,10 +8615,6 @@ export interface ResourceAthena {
8127
8615
  * The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
8128
8616
  */
8129
8617
  roleExternalId?: string;
8130
- /**
8131
- * The Secret Access Key to use to authenticate.
8132
- */
8133
- secretAccessKey?: string;
8134
8618
  /**
8135
8619
  * ID of the secret store containing credentials for this resource, if any.
8136
8620
  */
@@ -8210,6 +8694,66 @@ export interface ResourceAuroraMysql {
8210
8694
  */
8211
8695
  username?: string;
8212
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
+ }
8213
8757
  export interface ResourceAuroraPostgres {
8214
8758
  /**
8215
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.
@@ -8618,32 +9162,217 @@ export interface ResourceAzure {
8618
9162
  [key: string]: string;
8619
9163
  };
8620
9164
  /**
8621
- * The Azure AD directory (tenant) ID with which to authenticate.
8622
- * * 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.
8623
9340
  */
8624
- tenantId?: string;
9341
+ username?: string;
8625
9342
  }
8626
- export interface ResourceAzureCertificate {
8627
- /**
8628
- * The application ID to authenticate with.
8629
- */
8630
- appId?: string;
9343
+ export interface ResourceAzurePostgresManagedIdentity {
8631
9344
  /**
8632
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.
8633
9346
  */
8634
9347
  bindInterface: string;
8635
9348
  /**
8636
- * 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.
8637
9350
  */
8638
- clientCertificate?: string;
9351
+ database: string;
8639
9352
  /**
8640
9353
  * A filter applied to the routing logic to pin datasource to nodes.
8641
9354
  */
8642
9355
  egressFilter?: string;
9356
+ /**
9357
+ * The host to dial to initiate a connection from the egress node to this resource.
9358
+ */
9359
+ hostname: string;
8643
9360
  /**
8644
9361
  * Unique human-readable name of the Resource.
8645
9362
  */
8646
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;
8647
9376
  /**
8648
9377
  * The local port used by clients to connect to this resource.
8649
9378
  */
@@ -8667,52 +9396,47 @@ export interface ResourceAzureCertificate {
8667
9396
  [key: string]: string;
8668
9397
  };
8669
9398
  /**
8670
- * The Azure AD directory (tenant) ID with which to authenticate.
8671
- * * sql_server_kerberos_ad:
9399
+ * If true, appends the hostname to the username when hitting a database.azure.com address
8672
9400
  */
8673
- tenantId?: string;
9401
+ useAzureSingleServerUsernames?: boolean;
9402
+ /**
9403
+ * The username to authenticate with.
9404
+ */
9405
+ username?: string;
8674
9406
  }
8675
- export interface ResourceAzureMysql {
9407
+ export interface ResourceBigQuery {
8676
9408
  /**
8677
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.
8678
9410
  */
8679
9411
  bindInterface: string;
8680
- /**
8681
- * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
8682
- */
8683
- database?: string;
8684
9412
  /**
8685
9413
  * A filter applied to the routing logic to pin datasource to nodes.
8686
9414
  */
8687
9415
  egressFilter?: string;
8688
9416
  /**
8689
- * 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
8690
9418
  */
8691
- hostname: string;
9419
+ endpoint: string;
8692
9420
  /**
8693
9421
  * Unique human-readable name of the Resource.
8694
9422
  */
8695
9423
  name: string;
8696
9424
  /**
8697
- * The password to authenticate with.
9425
+ * The local port used by clients to connect to this resource.
8698
9426
  */
8699
- password?: string;
9427
+ portOverride: number;
8700
9428
  /**
8701
- * 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.
8702
9430
  */
8703
- port?: number;
9431
+ privateKey?: string;
8704
9432
  /**
8705
- * The local port used by clients to connect to this resource.
9433
+ * The project to connect to.
8706
9434
  */
8707
- portOverride: number;
9435
+ project: string;
8708
9436
  /**
8709
9437
  * ID of the proxy cluster for this resource, if any.
8710
9438
  */
8711
9439
  proxyClusterId?: string;
8712
- /**
8713
- * Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
8714
- */
8715
- requireNativeAuth?: boolean;
8716
9440
  /**
8717
9441
  * ID of the secret store containing credentials for this resource, if any.
8718
9442
  */
@@ -8727,24 +9451,16 @@ export interface ResourceAzureMysql {
8727
9451
  tags?: {
8728
9452
  [key: string]: string;
8729
9453
  };
8730
- /**
8731
- * If true, appends the hostname to the username when hitting a database.azure.com address
8732
- */
8733
- useAzureSingleServerUsernames?: boolean;
8734
9454
  /**
8735
9455
  * The username to authenticate with.
8736
9456
  */
8737
9457
  username?: string;
8738
9458
  }
8739
- export interface ResourceAzurePostgres {
9459
+ export interface ResourceCassandra {
8740
9460
  /**
8741
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.
8742
9462
  */
8743
9463
  bindInterface: string;
8744
- /**
8745
- * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
8746
- */
8747
- database: string;
8748
9464
  /**
8749
9465
  * A filter applied to the routing logic to pin datasource to nodes.
8750
9466
  */
@@ -8757,10 +9473,6 @@ export interface ResourceAzurePostgres {
8757
9473
  * Unique human-readable name of the Resource.
8758
9474
  */
8759
9475
  name: string;
8760
- /**
8761
- * 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.
8762
- */
8763
- overrideDatabase?: boolean;
8764
9476
  /**
8765
9477
  * The password to authenticate with.
8766
9478
  */
@@ -8791,12 +9503,16 @@ export interface ResourceAzurePostgres {
8791
9503
  tags?: {
8792
9504
  [key: string]: string;
8793
9505
  };
9506
+ /**
9507
+ * If set, TLS must be used to connect to this resource.
9508
+ */
9509
+ tlsRequired?: boolean;
8794
9510
  /**
8795
9511
  * The username to authenticate with.
8796
9512
  */
8797
9513
  username?: string;
8798
9514
  }
8799
- export interface ResourceAzurePostgresManagedIdentity {
9515
+ export interface ResourceCitus {
8800
9516
  /**
8801
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.
8802
9518
  */
@@ -8851,44 +9567,36 @@ export interface ResourceAzurePostgresManagedIdentity {
8851
9567
  tags?: {
8852
9568
  [key: string]: string;
8853
9569
  };
8854
- /**
8855
- * If true, appends the hostname to the username when hitting a database.azure.com address
8856
- */
8857
- useAzureSingleServerUsernames?: boolean;
8858
9570
  /**
8859
9571
  * The username to authenticate with.
8860
9572
  */
8861
9573
  username?: string;
8862
9574
  }
8863
- export interface ResourceBigQuery {
9575
+ export interface ResourceClickHouseHttp {
8864
9576
  /**
8865
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.
8866
9578
  */
8867
9579
  bindInterface: string;
8868
9580
  /**
8869
- * 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.
8870
9582
  */
8871
- egressFilter?: string;
9583
+ database?: string;
8872
9584
  /**
8873
- * 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.
8874
9586
  */
8875
- endpoint: string;
9587
+ egressFilter?: string;
8876
9588
  /**
8877
9589
  * Unique human-readable name of the Resource.
8878
9590
  */
8879
9591
  name: string;
8880
9592
  /**
8881
- * The local port used by clients to connect to this resource.
8882
- */
8883
- portOverride: number;
8884
- /**
8885
- * The private key used to authenticate with the server.
9593
+ * The password to authenticate with.
8886
9594
  */
8887
- privateKey?: string;
9595
+ password?: string;
8888
9596
  /**
8889
- * The project to connect to.
9597
+ * The local port used by clients to connect to this resource.
8890
9598
  */
8891
- project: string;
9599
+ portOverride: number;
8892
9600
  /**
8893
9601
  * ID of the proxy cluster for this resource, if any.
8894
9602
  */
@@ -8897,26 +9605,31 @@ export interface ResourceBigQuery {
8897
9605
  * ID of the secret store containing credentials for this resource, if any.
8898
9606
  */
8899
9607
  secretStoreId?: string;
8900
- /**
8901
- * Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
8902
- */
8903
- subdomain: string;
8904
9608
  /**
8905
9609
  * Tags is a map of key, value pairs.
8906
9610
  */
8907
9611
  tags?: {
8908
9612
  [key: string]: string;
8909
9613
  };
9614
+ /**
9615
+ * The base address of your website without the path.
9616
+ * * kubernetes:
9617
+ */
9618
+ url: string;
8910
9619
  /**
8911
9620
  * The username to authenticate with.
8912
9621
  */
8913
9622
  username?: string;
8914
9623
  }
8915
- export interface ResourceCassandra {
9624
+ export interface ResourceClickHouseMySql {
8916
9625
  /**
8917
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.
8918
9627
  */
8919
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;
8920
9633
  /**
8921
9634
  * A filter applied to the routing logic to pin datasource to nodes.
8922
9635
  */
@@ -8945,6 +9658,10 @@ export interface ResourceCassandra {
8945
9658
  * ID of the proxy cluster for this resource, if any.
8946
9659
  */
8947
9660
  proxyClusterId?: string;
9661
+ /**
9662
+ * Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
9663
+ */
9664
+ requireNativeAuth?: boolean;
8948
9665
  /**
8949
9666
  * ID of the secret store containing credentials for this resource, if any.
8950
9667
  */
@@ -8959,16 +9676,12 @@ export interface ResourceCassandra {
8959
9676
  tags?: {
8960
9677
  [key: string]: string;
8961
9678
  };
8962
- /**
8963
- * If set, TLS must be used to connect to this resource.
8964
- */
8965
- tlsRequired?: boolean;
8966
9679
  /**
8967
9680
  * The username to authenticate with.
8968
9681
  */
8969
9682
  username?: string;
8970
9683
  }
8971
- export interface ResourceCitus {
9684
+ export interface ResourceClickHouseTcp {
8972
9685
  /**
8973
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.
8974
9687
  */
@@ -8976,7 +9689,7 @@ export interface ResourceCitus {
8976
9689
  /**
8977
9690
  * The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
8978
9691
  */
8979
- database: string;
9692
+ database?: string;
8980
9693
  /**
8981
9694
  * A filter applied to the routing logic to pin datasource to nodes.
8982
9695
  */
@@ -8989,10 +9702,6 @@ export interface ResourceCitus {
8989
9702
  * Unique human-readable name of the Resource.
8990
9703
  */
8991
9704
  name: string;
8992
- /**
8993
- * 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.
8994
- */
8995
- overrideDatabase?: boolean;
8996
9705
  /**
8997
9706
  * The password to authenticate with.
8998
9707
  */
@@ -9000,7 +9709,7 @@ export interface ResourceCitus {
9000
9709
  /**
9001
9710
  * The port to dial to initiate a connection from the egress node to this resource.
9002
9711
  */
9003
- port?: number;
9712
+ port: number;
9004
9713
  /**
9005
9714
  * The local port used by clients to connect to this resource.
9006
9715
  */
@@ -9023,6 +9732,10 @@ export interface ResourceCitus {
9023
9732
  tags?: {
9024
9733
  [key: string]: string;
9025
9734
  };
9735
+ /**
9736
+ * If set, TLS must be used to connect to this resource.
9737
+ */
9738
+ tlsRequired?: boolean;
9026
9739
  /**
9027
9740
  * The username to authenticate with.
9028
9741
  */
@@ -9429,6 +10142,54 @@ export interface ResourceDocumentDbHost {
9429
10142
  */
9430
10143
  username?: string;
9431
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
+ }
9432
10193
  export interface ResourceDocumentDbReplicaSet {
9433
10194
  /**
9434
10195
  * The authentication database to use.
@@ -9601,6 +10362,58 @@ export interface ResourceDynamoDb {
9601
10362
  [key: string]: string;
9602
10363
  };
9603
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
+ }
9604
10417
  export interface ResourceElastic {
9605
10418
  /**
9606
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.
@@ -9839,6 +10652,10 @@ export interface ResourceGcpwif {
9839
10652
  * The local port used by clients to connect to this resource.
9840
10653
  */
9841
10654
  portOverride: number;
10655
+ /**
10656
+ * When specified, all project scoped requests will use this Project ID, overriding the project ID specified by clients
10657
+ */
10658
+ projectId?: string;
9842
10659
  /**
9843
10660
  * ID of the proxy cluster for this resource, if any.
9844
10661
  */
@@ -11725,6 +12542,10 @@ export interface ResourceRdpCert {
11725
12542
  * The ID of the identity set to use for identity connections.
11726
12543
  */
11727
12544
  identitySetId?: string;
12545
+ /**
12546
+ * When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
12547
+ */
12548
+ lockRequired?: boolean;
11728
12549
  /**
11729
12550
  * Unique human-readable name of the Resource.
11730
12551
  */