cribl-control-plane 0.0.57 → 0.0.59
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/README.md +13 -4
- package/dist/commonjs/lib/config.d.ts +2 -2
- package/dist/commonjs/lib/config.js +2 -2
- package/dist/esm/lib/config.d.ts +2 -2
- package/dist/esm/lib/config.js +2 -2
- package/examples/example-cloud-auth.ts +2 -2
- package/examples/example-cloud-search-packs-lake.ts +2 -2
- package/examples/example-cloud-worker-group.ts +2 -2
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
package/README.md
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
# cribl-control-plane-sdk-typescript
|
|
2
|
-
<!-- Start Summary [summary] -->
|
|
3
|
-
## Summary
|
|
4
2
|
|
|
5
|
-
Cribl
|
|
6
|
-
|
|
3
|
+
The Cribl TypeScript SDK for the control plane provides operational control over Cribl resources and helps streamline the process of integrating with Cribl.
|
|
4
|
+
|
|
5
|
+
In addition to the usage examples in this repository, you can adapt the [code examples for common use cases](https://docs.cribl.io/cribl-as-code/code-examples) in the Cribl documentation to use TypeScript instead of Python.
|
|
6
|
+
|
|
7
|
+
Complementary API reference documentation is available at https://docs.cribl.io/cribl-as-code/api-reference. Product documentation is available at https://docs.cribl.io.
|
|
8
|
+
|
|
9
|
+
> [!IMPORTANT]
|
|
10
|
+
> **Preview Feature**
|
|
11
|
+
> The Cribl SDKs are Preview features that are still being developed. We do not recommend using them in a production environment, because the features might not be fully tested or optimized for performance, and related documentation could be incomplete.
|
|
12
|
+
>
|
|
13
|
+
> Please continue to submit feedback through normal Cribl support channels, but assistance might be limited while the features remain in Preview.
|
|
14
|
+
|
|
15
|
+
<!-- No Summary [summary] -->
|
|
7
16
|
|
|
8
17
|
<!-- Start Table of Contents [toc] -->
|
|
9
18
|
## Table of Contents
|
|
@@ -35,8 +35,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
35
35
|
export declare const SDK_METADATA: {
|
|
36
36
|
readonly language: "typescript";
|
|
37
37
|
readonly openapiDocVersion: "4.14.0-837595d5";
|
|
38
|
-
readonly sdkVersion: "0.0.
|
|
38
|
+
readonly sdkVersion: "0.0.59";
|
|
39
39
|
readonly genVersion: "2.721.0";
|
|
40
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.0.
|
|
40
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.0.59 2.721.0 4.14.0-837595d5 cribl-control-plane";
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.d.ts.map
|
|
@@ -28,8 +28,8 @@ function serverURLFromOptions(options) {
|
|
|
28
28
|
exports.SDK_METADATA = {
|
|
29
29
|
language: "typescript",
|
|
30
30
|
openapiDocVersion: "4.14.0-837595d5",
|
|
31
|
-
sdkVersion: "0.0.
|
|
31
|
+
sdkVersion: "0.0.59",
|
|
32
32
|
genVersion: "2.721.0",
|
|
33
|
-
userAgent: "speakeasy-sdk/typescript 0.0.
|
|
33
|
+
userAgent: "speakeasy-sdk/typescript 0.0.59 2.721.0 4.14.0-837595d5 cribl-control-plane",
|
|
34
34
|
};
|
|
35
35
|
//# sourceMappingURL=config.js.map
|
package/dist/esm/lib/config.d.ts
CHANGED
|
@@ -35,8 +35,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
35
35
|
export declare const SDK_METADATA: {
|
|
36
36
|
readonly language: "typescript";
|
|
37
37
|
readonly openapiDocVersion: "4.14.0-837595d5";
|
|
38
|
-
readonly sdkVersion: "0.0.
|
|
38
|
+
readonly sdkVersion: "0.0.59";
|
|
39
39
|
readonly genVersion: "2.721.0";
|
|
40
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.0.
|
|
40
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.0.59 2.721.0 4.14.0-837595d5 cribl-control-plane";
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.d.ts.map
|
package/dist/esm/lib/config.js
CHANGED
|
@@ -24,8 +24,8 @@ export function serverURLFromOptions(options) {
|
|
|
24
24
|
export const SDK_METADATA = {
|
|
25
25
|
language: "typescript",
|
|
26
26
|
openapiDocVersion: "4.14.0-837595d5",
|
|
27
|
-
sdkVersion: "0.0.
|
|
27
|
+
sdkVersion: "0.0.59",
|
|
28
28
|
genVersion: "2.721.0",
|
|
29
|
-
userAgent: "speakeasy-sdk/typescript 0.0.
|
|
29
|
+
userAgent: "speakeasy-sdk/typescript 0.0.59 2.721.0 4.14.0-837595d5 cribl-control-plane",
|
|
30
30
|
};
|
|
31
31
|
//# sourceMappingURL=config.js.map
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
* Prerequisites: Replace the placeholder values for ORG_ID, CLIENT_ID,
|
|
13
13
|
* CLIENT_SECRET, and WORKSPACE_NAME with your Organization ID, Client ID and
|
|
14
14
|
* Secret, and Workspace name. To get your CLIENT_ID and CLIENT_SECRET values,
|
|
15
|
-
* follow the steps at https://docs.cribl.io/
|
|
16
|
-
* and Secret are sensitive information and should be kept private.
|
|
15
|
+
* follow the steps at https://docs.cribl.io/cribl-as-code/authentication/#cloud-auth.
|
|
16
|
+
* Your Client ID and Secret are sensitive information and should be kept private.
|
|
17
17
|
*
|
|
18
18
|
* NOTE: This example is for Cribl.Cloud deployments only. It does not require
|
|
19
19
|
* .env file configuration.
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
* Prerequisites: Replace the placeholder values for ORG_ID, CLIENT_ID,
|
|
12
12
|
* CLIENT_SECRET, and WORKSPACE_NAME with your Organization ID, Client ID and
|
|
13
13
|
* Secret, and Workspace name. To get your CLIENT_ID and CLIENT_SECRET values,
|
|
14
|
-
* follow the steps at https://docs.cribl.io/
|
|
15
|
-
* and Secret are sensitive information and should be kept private.
|
|
14
|
+
* follow the steps at https://docs.cribl.io/cribl-as-code/authentication/#cloud-auth.
|
|
15
|
+
* Your Client ID and Secret are sensitive information and should be kept private.
|
|
16
16
|
*
|
|
17
17
|
* NOTE: This example is for Cribl.Cloud deployments only. It does not require
|
|
18
18
|
* .env file configuration.
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
* Prerequisites: Replace the placeholder values for ORG_ID, CLIENT_ID,
|
|
20
20
|
* CLIENT_SECRET, and WORKSPACE_NAME with your Organization ID, Client ID and
|
|
21
21
|
* Secret, and Workspace name. To get your CLIENT_ID and CLIENT_SECRET values,
|
|
22
|
-
* follow the steps at https://docs.cribl.io/
|
|
23
|
-
* and Secret are sensitive information and should be kept private.
|
|
22
|
+
* follow the steps at https://docs.cribl.io/cribl-as-code/authentication/#cloud-auth.
|
|
23
|
+
* Your Client ID and Secret are sensitive information and should be kept private.
|
|
24
24
|
*
|
|
25
25
|
* NOTE: This example is for Cribl.Cloud deployments only. It does not require
|
|
26
26
|
* .env file configuration.
|
package/jsr.json
CHANGED
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -62,8 +62,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
62
62
|
export const SDK_METADATA = {
|
|
63
63
|
language: "typescript",
|
|
64
64
|
openapiDocVersion: "4.14.0-837595d5",
|
|
65
|
-
sdkVersion: "0.0.
|
|
65
|
+
sdkVersion: "0.0.59",
|
|
66
66
|
genVersion: "2.721.0",
|
|
67
67
|
userAgent:
|
|
68
|
-
"speakeasy-sdk/typescript 0.0.
|
|
68
|
+
"speakeasy-sdk/typescript 0.0.59 2.721.0 4.14.0-837595d5 cribl-control-plane",
|
|
69
69
|
} as const;
|