-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnamedWebhook.ts
More file actions
218 lines (210 loc) · 12.7 KB
/
Copy pathnamedWebhook.ts
File metadata and controls
218 lines (210 loc) · 12.7 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// *** 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 NamedWebhook extends pulumi.CustomResource {
/**
* Get an existing NamedWebhook 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?: NamedWebhookState, opts?: pulumi.CustomResourceOptions): NamedWebhook {
return new NamedWebhook(name, <any>state, { ...opts, id: id });
}
/** @internal */
public static readonly __pulumiType = 'spacelift:index/namedWebhook:NamedWebhook';
/**
* Returns true if the given object is an instance of NamedWebhook. 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 NamedWebhook {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === NamedWebhook.__pulumiType;
}
/**
* enables or disables sending webhooks.
*/
declare public readonly enabled: pulumi.Output<boolean>;
/**
* endpoint to send the requests to
*/
declare public readonly endpoint: pulumi.Output<string>;
/**
* labels for the webhook to use when referring in policies or filtering them
*/
declare public readonly labels: pulumi.Output<string[] | undefined>;
/**
* the name for the webhook which will also be used to generate the id
*/
declare public readonly name: pulumi.Output<string>;
declare public readonly namedWebhookId: pulumi.Output<string>;
/**
* whether to retry the webhook in case of failure. Defaults to <span pulumi-lang-nodejs="`false`" pulumi-lang-dotnet="`False`" pulumi-lang-go="`false`" pulumi-lang-python="`false`" pulumi-lang-yaml="`false`" pulumi-lang-java="`false`" pulumi-lang-hcl="`false`">`false`</span>.
*/
declare public readonly retryOnFailure: pulumi.Output<boolean | undefined>;
/**
* secret used to sign each request so you're able to verify that the request comes from us. Defaults to an empty value. Note that once it's created, it will be just an empty string in the state due to security reasons.
*
* @deprecated Deprecated
*/
declare public readonly secret: pulumi.Output<string | undefined>;
/**
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
* secret used to sign each request so you're able to verify that the request comes from us. Defaults to an empty value. The secret is not stored in the state. Modify<span pulumi-lang-nodejs=" secretWoVersion " pulumi-lang-dotnet=" SecretWoVersion " pulumi-lang-go=" secretWoVersion " pulumi-lang-python=" secret_wo_version " pulumi-lang-yaml=" secretWoVersion " pulumi-lang-java=" secretWoVersion " pulumi-lang-hcl=" secret_wo_version "> secretWoVersion </span>to trigger an update. This field requires Terraform/OpenTofu 1.11+.
*/
declare public readonly secretWo: pulumi.Output<string | undefined>;
/**
* Used together with<span pulumi-lang-nodejs=" secretWo " pulumi-lang-dotnet=" SecretWo " pulumi-lang-go=" secretWo " pulumi-lang-python=" secret_wo " pulumi-lang-yaml=" secretWo " pulumi-lang-java=" secretWo " pulumi-lang-hcl=" secret_wo "> secretWo </span>to trigger an update to the secret. Increment this value when an update to<span pulumi-lang-nodejs=" secretWo " pulumi-lang-dotnet=" SecretWo " pulumi-lang-go=" secretWo " pulumi-lang-python=" secret_wo " pulumi-lang-yaml=" secretWo " pulumi-lang-java=" secretWo " pulumi-lang-hcl=" secret_wo "> secretWo </span>is required. This field requires Terraform/OpenTofu 1.11+.
*/
declare public readonly secretWoVersion: pulumi.Output<string | undefined>;
/**
* ID of the space the webhook is in
*/
declare public readonly spaceId: pulumi.Output<string>;
/**
* Create a NamedWebhook 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: NamedWebhookArgs, opts?: pulumi.CustomResourceOptions)
constructor(name: string, argsOrState?: NamedWebhookArgs | NamedWebhookState, opts?: pulumi.CustomResourceOptions) {
let resourceInputs: pulumi.Inputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState as NamedWebhookState | undefined;
resourceInputs["enabled"] = state?.enabled;
resourceInputs["endpoint"] = state?.endpoint;
resourceInputs["labels"] = state?.labels;
resourceInputs["name"] = state?.name;
resourceInputs["namedWebhookId"] = state?.namedWebhookId;
resourceInputs["retryOnFailure"] = state?.retryOnFailure;
resourceInputs["secret"] = state?.secret;
resourceInputs["secretWo"] = state?.secretWo;
resourceInputs["secretWoVersion"] = state?.secretWoVersion;
resourceInputs["spaceId"] = state?.spaceId;
} else {
const args = argsOrState as NamedWebhookArgs | undefined;
if (args?.enabled === undefined && !opts.urn) {
throw new Error("Missing required property 'enabled'");
}
if (args?.endpoint === undefined && !opts.urn) {
throw new Error("Missing required property 'endpoint'");
}
if (args?.spaceId === undefined && !opts.urn) {
throw new Error("Missing required property 'spaceId'");
}
resourceInputs["enabled"] = args?.enabled;
resourceInputs["endpoint"] = args?.endpoint;
resourceInputs["labels"] = args?.labels;
resourceInputs["name"] = args?.name;
resourceInputs["namedWebhookId"] = args?.namedWebhookId;
resourceInputs["retryOnFailure"] = args?.retryOnFailure;
resourceInputs["secret"] = args?.secret ? pulumi.secret(args.secret) : undefined;
resourceInputs["secretWo"] = args?.secretWo ? pulumi.secret(args.secretWo) : undefined;
resourceInputs["secretWoVersion"] = args?.secretWoVersion;
resourceInputs["spaceId"] = args?.spaceId;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
const secretOpts = { additionalSecretOutputs: ["secret", "secretWo"] };
opts = pulumi.mergeOptions(opts, secretOpts);
super(NamedWebhook.__pulumiType, name, resourceInputs, opts, false /*dependency*/, utilities.getPackage());
}
}
/**
* Input properties used for looking up and filtering NamedWebhook resources.
*/
export interface NamedWebhookState {
/**
* enables or disables sending webhooks.
*/
enabled?: pulumi.Input<boolean | undefined>;
/**
* endpoint to send the requests to
*/
endpoint?: pulumi.Input<string | undefined>;
/**
* labels for the webhook to use when referring in policies or filtering them
*/
labels?: pulumi.Input<pulumi.Input<string>[] | undefined>;
/**
* the name for the webhook which will also be used to generate the id
*/
name?: pulumi.Input<string | undefined>;
namedWebhookId?: pulumi.Input<string | undefined>;
/**
* whether to retry the webhook in case of failure. Defaults to <span pulumi-lang-nodejs="`false`" pulumi-lang-dotnet="`False`" pulumi-lang-go="`false`" pulumi-lang-python="`false`" pulumi-lang-yaml="`false`" pulumi-lang-java="`false`" pulumi-lang-hcl="`false`">`false`</span>.
*/
retryOnFailure?: pulumi.Input<boolean | undefined>;
/**
* secret used to sign each request so you're able to verify that the request comes from us. Defaults to an empty value. Note that once it's created, it will be just an empty string in the state due to security reasons.
*
* @deprecated Deprecated
*/
secret?: pulumi.Input<string | undefined>;
/**
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
* secret used to sign each request so you're able to verify that the request comes from us. Defaults to an empty value. The secret is not stored in the state. Modify<span pulumi-lang-nodejs=" secretWoVersion " pulumi-lang-dotnet=" SecretWoVersion " pulumi-lang-go=" secretWoVersion " pulumi-lang-python=" secret_wo_version " pulumi-lang-yaml=" secretWoVersion " pulumi-lang-java=" secretWoVersion " pulumi-lang-hcl=" secret_wo_version "> secretWoVersion </span>to trigger an update. This field requires Terraform/OpenTofu 1.11+.
*/
secretWo?: pulumi.Input<string | undefined>;
/**
* Used together with<span pulumi-lang-nodejs=" secretWo " pulumi-lang-dotnet=" SecretWo " pulumi-lang-go=" secretWo " pulumi-lang-python=" secret_wo " pulumi-lang-yaml=" secretWo " pulumi-lang-java=" secretWo " pulumi-lang-hcl=" secret_wo "> secretWo </span>to trigger an update to the secret. Increment this value when an update to<span pulumi-lang-nodejs=" secretWo " pulumi-lang-dotnet=" SecretWo " pulumi-lang-go=" secretWo " pulumi-lang-python=" secret_wo " pulumi-lang-yaml=" secretWo " pulumi-lang-java=" secretWo " pulumi-lang-hcl=" secret_wo "> secretWo </span>is required. This field requires Terraform/OpenTofu 1.11+.
*/
secretWoVersion?: pulumi.Input<string | undefined>;
/**
* ID of the space the webhook is in
*/
spaceId?: pulumi.Input<string | undefined>;
}
/**
* The set of arguments for constructing a NamedWebhook resource.
*/
export interface NamedWebhookArgs {
/**
* enables or disables sending webhooks.
*/
enabled: pulumi.Input<boolean>;
/**
* endpoint to send the requests to
*/
endpoint: pulumi.Input<string>;
/**
* labels for the webhook to use when referring in policies or filtering them
*/
labels?: pulumi.Input<pulumi.Input<string>[] | undefined>;
/**
* the name for the webhook which will also be used to generate the id
*/
name?: pulumi.Input<string | undefined>;
namedWebhookId?: pulumi.Input<string | undefined>;
/**
* whether to retry the webhook in case of failure. Defaults to <span pulumi-lang-nodejs="`false`" pulumi-lang-dotnet="`False`" pulumi-lang-go="`false`" pulumi-lang-python="`false`" pulumi-lang-yaml="`false`" pulumi-lang-java="`false`" pulumi-lang-hcl="`false`">`false`</span>.
*/
retryOnFailure?: pulumi.Input<boolean | undefined>;
/**
* secret used to sign each request so you're able to verify that the request comes from us. Defaults to an empty value. Note that once it's created, it will be just an empty string in the state due to security reasons.
*
* @deprecated Deprecated
*/
secret?: pulumi.Input<string | undefined>;
/**
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
* secret used to sign each request so you're able to verify that the request comes from us. Defaults to an empty value. The secret is not stored in the state. Modify<span pulumi-lang-nodejs=" secretWoVersion " pulumi-lang-dotnet=" SecretWoVersion " pulumi-lang-go=" secretWoVersion " pulumi-lang-python=" secret_wo_version " pulumi-lang-yaml=" secretWoVersion " pulumi-lang-java=" secretWoVersion " pulumi-lang-hcl=" secret_wo_version "> secretWoVersion </span>to trigger an update. This field requires Terraform/OpenTofu 1.11+.
*/
secretWo?: pulumi.Input<string | undefined>;
/**
* Used together with<span pulumi-lang-nodejs=" secretWo " pulumi-lang-dotnet=" SecretWo " pulumi-lang-go=" secretWo " pulumi-lang-python=" secret_wo " pulumi-lang-yaml=" secretWo " pulumi-lang-java=" secretWo " pulumi-lang-hcl=" secret_wo "> secretWo </span>to trigger an update to the secret. Increment this value when an update to<span pulumi-lang-nodejs=" secretWo " pulumi-lang-dotnet=" SecretWo " pulumi-lang-go=" secretWo " pulumi-lang-python=" secret_wo " pulumi-lang-yaml=" secretWo " pulumi-lang-java=" secretWo " pulumi-lang-hcl=" secret_wo "> secretWo </span>is required. This field requires Terraform/OpenTofu 1.11+.
*/
secretWoVersion?: pulumi.Input<string | undefined>;
/**
* ID of the space the webhook is in
*/
spaceId: pulumi.Input<string>;
}