-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathelasticsearchIndexTemplateIlmAttachment.ts
More file actions
104 lines (96 loc) · 4.86 KB
/
Copy pathelasticsearchIndexTemplateIlmAttachment.ts
File metadata and controls
104 lines (96 loc) · 4.86 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// *** 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 utilities from "./utilities";
export class ElasticsearchIndexTemplateIlmAttachment extends pulumi.CustomResource {
/**
* Get an existing ElasticsearchIndexTemplateIlmAttachment resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
public static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ElasticsearchIndexTemplateIlmAttachmentState, opts?: pulumi.CustomResourceOptions): ElasticsearchIndexTemplateIlmAttachment {
return new ElasticsearchIndexTemplateIlmAttachment(name, <any>state, { ...opts, id: id });
}
/** @internal */
public static readonly __pulumiType = 'elasticstack:index/elasticsearchIndexTemplateIlmAttachment:ElasticsearchIndexTemplateIlmAttachment';
/**
* Returns true if the given object is an instance of ElasticsearchIndexTemplateIlmAttachment. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
public static isInstance(obj: any): obj is ElasticsearchIndexTemplateIlmAttachment {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === ElasticsearchIndexTemplateIlmAttachment.__pulumiType;
}
/**
* Name of the index template to attach the ILM policy to. For Fleet-managed templates, this is typically the template name
* (e.g., 'logs-system.syslog').
*/
declare public readonly indexTemplate: pulumi.Output<string>;
/**
* Name of the ILM policy to attach to the index template.
*/
declare public readonly lifecycleName: pulumi.Output<string>;
/**
* Create a ElasticsearchIndexTemplateIlmAttachment resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: ElasticsearchIndexTemplateIlmAttachmentArgs, opts?: pulumi.CustomResourceOptions)
constructor(name: string, argsOrState?: ElasticsearchIndexTemplateIlmAttachmentArgs | ElasticsearchIndexTemplateIlmAttachmentState, opts?: pulumi.CustomResourceOptions) {
let resourceInputs: pulumi.Inputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState as ElasticsearchIndexTemplateIlmAttachmentState | undefined;
resourceInputs["indexTemplate"] = state?.indexTemplate;
resourceInputs["lifecycleName"] = state?.lifecycleName;
} else {
const args = argsOrState as ElasticsearchIndexTemplateIlmAttachmentArgs | undefined;
if (args?.indexTemplate === undefined && !opts.urn) {
throw new Error("Missing required property 'indexTemplate'");
}
if (args?.lifecycleName === undefined && !opts.urn) {
throw new Error("Missing required property 'lifecycleName'");
}
resourceInputs["indexTemplate"] = args?.indexTemplate;
resourceInputs["lifecycleName"] = args?.lifecycleName;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(ElasticsearchIndexTemplateIlmAttachment.__pulumiType, name, resourceInputs, opts, false /*dependency*/, utilities.getPackage());
}
}
/**
* Input properties used for looking up and filtering ElasticsearchIndexTemplateIlmAttachment resources.
*/
export interface ElasticsearchIndexTemplateIlmAttachmentState {
/**
* Name of the index template to attach the ILM policy to. For Fleet-managed templates, this is typically the template name
* (e.g., 'logs-system.syslog').
*/
indexTemplate?: pulumi.Input<string>;
/**
* Name of the ILM policy to attach to the index template.
*/
lifecycleName?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a ElasticsearchIndexTemplateIlmAttachment resource.
*/
export interface ElasticsearchIndexTemplateIlmAttachmentArgs {
/**
* Name of the index template to attach the ILM policy to. For Fleet-managed templates, this is typically the template name
* (e.g., 'logs-system.syslog').
*/
indexTemplate: pulumi.Input<string>;
/**
* Name of the ILM policy to attach to the index template.
*/
lifecycleName: pulumi.Input<string>;
}