@pierskarsenbarg/sdm 1.37.0 → 1.38.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/package.json +1 -1
- package/resource.d.ts +12 -0
- package/resource.d.ts.map +1 -1
- package/resource.js +2 -0
- package/resource.js.map +1 -1
- package/types/input.d.ts +53 -0
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +111 -0
- package/types/output.d.ts.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -1094,6 +1094,7 @@ export interface GetResourceResource {
|
|
|
1094
1094
|
* @deprecated kubernetes_user_impersonation is deprecated, see docs for more info
|
|
1095
1095
|
*/
|
|
1096
1096
|
kubernetesUserImpersonations: outputs.GetResourceResourceKubernetesUserImpersonation[];
|
|
1097
|
+
llms: outputs.GetResourceResourceLlm[];
|
|
1097
1098
|
marias: outputs.GetResourceResourceMaria[];
|
|
1098
1099
|
mcpGatewayNoAuths: outputs.GetResourceResourceMcpGatewayNoAuth[];
|
|
1099
1100
|
mcpGatewayOAuthDcrs: outputs.GetResourceResourceMcpGatewayOAuthDcr[];
|
|
@@ -5638,6 +5639,59 @@ export interface GetResourceResourceKubernetesUserImpersonation {
|
|
|
5638
5639
|
[key: string]: string;
|
|
5639
5640
|
};
|
|
5640
5641
|
}
|
|
5642
|
+
export interface GetResourceResourceLlm {
|
|
5643
|
+
/**
|
|
5644
|
+
* 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 and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.
|
|
5645
|
+
*/
|
|
5646
|
+
bindInterface?: string;
|
|
5647
|
+
/**
|
|
5648
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
5649
|
+
*/
|
|
5650
|
+
egressFilter?: string;
|
|
5651
|
+
/**
|
|
5652
|
+
* Unique identifier of the Resource.
|
|
5653
|
+
*/
|
|
5654
|
+
id?: string;
|
|
5655
|
+
/**
|
|
5656
|
+
* Space-separated list of model names this resource accepts. Requests for unlisted models are rejected. Leave empty to allow all models.
|
|
5657
|
+
*/
|
|
5658
|
+
models?: string;
|
|
5659
|
+
/**
|
|
5660
|
+
* Unique human-readable name of the Resource.
|
|
5661
|
+
*/
|
|
5662
|
+
name?: string;
|
|
5663
|
+
/**
|
|
5664
|
+
* The password to authenticate with.
|
|
5665
|
+
*/
|
|
5666
|
+
password?: string;
|
|
5667
|
+
/**
|
|
5668
|
+
* The local port used by clients to connect to this resource. It is automatically generated if not provided on create and may be re-generated on update by specifying a value of -1.
|
|
5669
|
+
*/
|
|
5670
|
+
portOverride?: number;
|
|
5671
|
+
/**
|
|
5672
|
+
* ID of the proxy cluster for this resource, if any.
|
|
5673
|
+
*/
|
|
5674
|
+
proxyClusterId?: string;
|
|
5675
|
+
/**
|
|
5676
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
5677
|
+
*/
|
|
5678
|
+
secretStoreId?: string;
|
|
5679
|
+
/**
|
|
5680
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
5681
|
+
*/
|
|
5682
|
+
subdomain?: string;
|
|
5683
|
+
/**
|
|
5684
|
+
* Tags is a map of key, value pairs.
|
|
5685
|
+
*/
|
|
5686
|
+
tags?: {
|
|
5687
|
+
[key: string]: string;
|
|
5688
|
+
};
|
|
5689
|
+
/**
|
|
5690
|
+
* The URL to dial to initiate a connection from the egress node to this resource.
|
|
5691
|
+
* * memcached:
|
|
5692
|
+
*/
|
|
5693
|
+
url?: string;
|
|
5694
|
+
}
|
|
5641
5695
|
export interface GetResourceResourceMaria {
|
|
5642
5696
|
/**
|
|
5643
5697
|
* 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 and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.
|
|
@@ -8074,6 +8128,10 @@ export interface GetResourceResourceSqlServerKerberosAd {
|
|
|
8074
8128
|
* 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.
|
|
8075
8129
|
*/
|
|
8076
8130
|
overrideDatabase?: boolean;
|
|
8131
|
+
/**
|
|
8132
|
+
* The password to authenticate with.
|
|
8133
|
+
*/
|
|
8134
|
+
password?: string;
|
|
8077
8135
|
/**
|
|
8078
8136
|
* The port to dial to initiate a connection from the egress node to this resource.
|
|
8079
8137
|
*/
|
|
@@ -14378,6 +14436,55 @@ export interface ResourceKubernetesUserImpersonation {
|
|
|
14378
14436
|
[key: string]: string;
|
|
14379
14437
|
};
|
|
14380
14438
|
}
|
|
14439
|
+
export interface ResourceLlm {
|
|
14440
|
+
/**
|
|
14441
|
+
* 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 and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.
|
|
14442
|
+
*/
|
|
14443
|
+
bindInterface: string;
|
|
14444
|
+
/**
|
|
14445
|
+
* A filter applied to the routing logic to pin datasource to nodes.
|
|
14446
|
+
*/
|
|
14447
|
+
egressFilter?: string;
|
|
14448
|
+
/**
|
|
14449
|
+
* Space-separated list of model names this resource accepts. Requests for unlisted models are rejected. Leave empty to allow all models.
|
|
14450
|
+
*/
|
|
14451
|
+
models?: string;
|
|
14452
|
+
/**
|
|
14453
|
+
* Unique human-readable name of the Resource.
|
|
14454
|
+
*/
|
|
14455
|
+
name: string;
|
|
14456
|
+
/**
|
|
14457
|
+
* The password to authenticate with.
|
|
14458
|
+
*/
|
|
14459
|
+
password?: string;
|
|
14460
|
+
/**
|
|
14461
|
+
* The local port used by clients to connect to this resource. It is automatically generated if not provided on create and may be re-generated on update by specifying a value of -1.
|
|
14462
|
+
*/
|
|
14463
|
+
portOverride: number;
|
|
14464
|
+
/**
|
|
14465
|
+
* ID of the proxy cluster for this resource, if any.
|
|
14466
|
+
*/
|
|
14467
|
+
proxyClusterId?: string;
|
|
14468
|
+
/**
|
|
14469
|
+
* ID of the secret store containing credentials for this resource, if any.
|
|
14470
|
+
*/
|
|
14471
|
+
secretStoreId?: string;
|
|
14472
|
+
/**
|
|
14473
|
+
* DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
|
|
14474
|
+
*/
|
|
14475
|
+
subdomain: string;
|
|
14476
|
+
/**
|
|
14477
|
+
* Tags is a map of key, value pairs.
|
|
14478
|
+
*/
|
|
14479
|
+
tags?: {
|
|
14480
|
+
[key: string]: string;
|
|
14481
|
+
};
|
|
14482
|
+
/**
|
|
14483
|
+
* The URL to dial to initiate a connection from the egress node to this resource.
|
|
14484
|
+
* * memcached:
|
|
14485
|
+
*/
|
|
14486
|
+
url?: string;
|
|
14487
|
+
}
|
|
14381
14488
|
export interface ResourceMaria {
|
|
14382
14489
|
/**
|
|
14383
14490
|
* 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 and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.
|
|
@@ -16662,6 +16769,10 @@ export interface ResourceSqlServerKerberosAd {
|
|
|
16662
16769
|
* 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.
|
|
16663
16770
|
*/
|
|
16664
16771
|
overrideDatabase?: boolean;
|
|
16772
|
+
/**
|
|
16773
|
+
* The password to authenticate with.
|
|
16774
|
+
*/
|
|
16775
|
+
password?: string;
|
|
16665
16776
|
/**
|
|
16666
16777
|
* The port to dial to initiate a connection from the egress node to this resource.
|
|
16667
16778
|
*/
|