-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetKibanaExportSavedObjects.ts
More file actions
58 lines (53 loc) · 2.48 KB
/
getKibanaExportSavedObjects.ts
File metadata and controls
58 lines (53 loc) · 2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
import * as utilities from "./utilities";
export function getKibanaExportSavedObjects(args: GetKibanaExportSavedObjectsArgs, opts?: pulumi.InvokeOptions): Promise<GetKibanaExportSavedObjectsResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("elasticstack:index/getKibanaExportSavedObjects:getKibanaExportSavedObjects", {
"excludeExportDetails": args.excludeExportDetails,
"includeReferencesDeep": args.includeReferencesDeep,
"objects": args.objects,
"spaceId": args.spaceId,
}, opts, utilities.getPackage());
}
/**
* A collection of arguments for invoking getKibanaExportSavedObjects.
*/
export interface GetKibanaExportSavedObjectsArgs {
excludeExportDetails?: boolean;
includeReferencesDeep?: boolean;
objects: inputs.GetKibanaExportSavedObjectsObject[];
spaceId?: string;
}
/**
* A collection of values returned by getKibanaExportSavedObjects.
*/
export interface GetKibanaExportSavedObjectsResult {
readonly excludeExportDetails?: boolean;
readonly exportedObjects: string;
readonly id: string;
readonly includeReferencesDeep?: boolean;
readonly objects: outputs.GetKibanaExportSavedObjectsObject[];
readonly spaceId?: string;
}
export function getKibanaExportSavedObjectsOutput(args: GetKibanaExportSavedObjectsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetKibanaExportSavedObjectsResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("elasticstack:index/getKibanaExportSavedObjects:getKibanaExportSavedObjects", {
"excludeExportDetails": args.excludeExportDetails,
"includeReferencesDeep": args.includeReferencesDeep,
"objects": args.objects,
"spaceId": args.spaceId,
}, opts, utilities.getPackage());
}
/**
* A collection of arguments for invoking getKibanaExportSavedObjects.
*/
export interface GetKibanaExportSavedObjectsOutputArgs {
excludeExportDetails?: pulumi.Input<boolean>;
includeReferencesDeep?: pulumi.Input<boolean>;
objects: pulumi.Input<pulumi.Input<inputs.GetKibanaExportSavedObjectsObjectArgs>[]>;
spaceId?: pulumi.Input<string>;
}