@pulumi/cloudamqp 3.24.1 → 3.24.2
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/customDomain.d.ts +2 -2
- package/customDomain.js +2 -2
- package/index.d.ts +6 -0
- package/index.js +12 -2
- package/index.js.map +1 -1
- package/instance.d.ts +74 -14
- package/instance.js +34 -2
- package/instance.js.map +1 -1
- package/integrationAwsEventbridge.d.ts +57 -1
- package/integrationAwsEventbridge.js +47 -1
- package/integrationAwsEventbridge.js.map +1 -1
- package/integrationLog.d.ts +207 -123
- package/integrationLog.js +44 -27
- package/integrationLog.js.map +1 -1
- package/integrationMetric.d.ts +8 -56
- package/integrationMetric.js +3 -9
- package/integrationMetric.js.map +1 -1
- package/integrationMetricPrometheus.d.ts +257 -0
- package/integrationMetricPrometheus.js +233 -0
- package/integrationMetricPrometheus.js.map +1 -0
- package/maintenanceWindow.d.ts +1 -1
- package/maintenanceWindow.js +1 -1
- package/notification.d.ts +1 -1
- package/notification.js +1 -1
- package/oauth2Configuration.d.ts +360 -0
- package/oauth2Configuration.js +208 -0
- package/oauth2Configuration.js.map +1 -0
- package/package.json +2 -2
- package/types/input.d.ts +108 -0
- package/types/output.d.ts +108 -0
- package/vpc.d.ts +2 -2
- package/vpc.js +2 -2
- package/webhook.d.ts +2 -2
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Oauth2Configuration = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource allows you to configure OAuth2 authentication for your RabbitMQ instance.
|
|
10
|
+
*
|
|
11
|
+
* Only available for dedicated subscription plans running ***RabbitMQ***.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* <details>
|
|
16
|
+
* <summary>
|
|
17
|
+
* <b>
|
|
18
|
+
* <i>Basic OAuth2 configuration</i>
|
|
19
|
+
* </b>
|
|
20
|
+
* </summary>
|
|
21
|
+
*
|
|
22
|
+
* ```typescript
|
|
23
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
24
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
25
|
+
*
|
|
26
|
+
* const oauth2Config = new cloudamqp.Oauth2Configuration("oauth2_config", {
|
|
27
|
+
* instanceId: instance.id,
|
|
28
|
+
* resourceServerId: "test-resource-server",
|
|
29
|
+
* issuer: "https://test-issuer.example.com",
|
|
30
|
+
* verifyAud: true,
|
|
31
|
+
* oauthClientId: "test-client-id",
|
|
32
|
+
* oauthScopes: [
|
|
33
|
+
* "read",
|
|
34
|
+
* "write",
|
|
35
|
+
* ],
|
|
36
|
+
* });
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* </details>
|
|
40
|
+
*
|
|
41
|
+
* <details>
|
|
42
|
+
* <summary>
|
|
43
|
+
* <b>
|
|
44
|
+
* <i>OAuth2 configuration with all optional fields</i>
|
|
45
|
+
* </b>
|
|
46
|
+
* </summary>
|
|
47
|
+
*
|
|
48
|
+
* ```typescript
|
|
49
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
50
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
51
|
+
*
|
|
52
|
+
* const oauth2Config = new cloudamqp.Oauth2Configuration("oauth2_config", {
|
|
53
|
+
* instanceId: instance.id,
|
|
54
|
+
* resourceServerId: "test-resource-server",
|
|
55
|
+
* issuer: "https://test-issuer.example.com",
|
|
56
|
+
* preferredUsernameClaims: [
|
|
57
|
+
* "preferred_username",
|
|
58
|
+
* "username",
|
|
59
|
+
* ],
|
|
60
|
+
* additionalScopesKeys: ["admin"],
|
|
61
|
+
* scopePrefix: "cloudamqp",
|
|
62
|
+
* scopeAliases: {
|
|
63
|
+
* read: "read:all",
|
|
64
|
+
* write: "write:all",
|
|
65
|
+
* },
|
|
66
|
+
* verifyAud: true,
|
|
67
|
+
* oauthClientId: "test-client-id",
|
|
68
|
+
* oauthScopes: [
|
|
69
|
+
* "read",
|
|
70
|
+
* "write",
|
|
71
|
+
* "admin",
|
|
72
|
+
* ],
|
|
73
|
+
* audience: "https://test-audience.example.com",
|
|
74
|
+
* });
|
|
75
|
+
* ```
|
|
76
|
+
*
|
|
77
|
+
* </details>
|
|
78
|
+
*
|
|
79
|
+
* <details>
|
|
80
|
+
* <summary>
|
|
81
|
+
* <b>
|
|
82
|
+
* <i>Minimal OAuth2 configuration</i>
|
|
83
|
+
* </b>
|
|
84
|
+
* </summary>
|
|
85
|
+
*
|
|
86
|
+
* ```typescript
|
|
87
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
88
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
89
|
+
*
|
|
90
|
+
* const oauth2Config = new cloudamqp.Oauth2Configuration("oauth2_config", {
|
|
91
|
+
* instanceId: instance.id,
|
|
92
|
+
* resourceServerId: "test-resource-server",
|
|
93
|
+
* issuer: "https://test-issuer.example.com",
|
|
94
|
+
* });
|
|
95
|
+
* ```
|
|
96
|
+
*
|
|
97
|
+
* </details>
|
|
98
|
+
*
|
|
99
|
+
* ## Dependency
|
|
100
|
+
*
|
|
101
|
+
* This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
102
|
+
*
|
|
103
|
+
* ## Notes
|
|
104
|
+
*
|
|
105
|
+
* * Changes to `instanceId` will force recreation of the resource.
|
|
106
|
+
* * OAuth2 configuration changes are applied asynchronously and may take some time to complete. The
|
|
107
|
+
* resource will poll for job completion using the configured `sleep` and `timeout` values.
|
|
108
|
+
* * Only one OAuth2 configuration can exist per instance. Creating a new configuration will replace
|
|
109
|
+
* any existing configuration.
|
|
110
|
+
* * After a configuration has been applied, a restart of RabbitMQ is required for the changes to take effect.
|
|
111
|
+
*
|
|
112
|
+
* ## Import
|
|
113
|
+
*
|
|
114
|
+
* `cloudamqp_oauth2_configuration` can be imported using the CloudAMQP instance identifier.
|
|
115
|
+
*
|
|
116
|
+
* From Terraform v1.5.0, the `import` block can be used to import this resource:
|
|
117
|
+
*
|
|
118
|
+
* hcl
|
|
119
|
+
*
|
|
120
|
+
* import {
|
|
121
|
+
*
|
|
122
|
+
* to = cloudamqp_oauth2_configuration.oauth2_config
|
|
123
|
+
*
|
|
124
|
+
* id = cloudamqp_instance.instance.id
|
|
125
|
+
*
|
|
126
|
+
* }
|
|
127
|
+
*
|
|
128
|
+
* Or use Terraform CLI:
|
|
129
|
+
*
|
|
130
|
+
* ```sh
|
|
131
|
+
* $ pulumi import cloudamqp:index/oauth2Configuration:Oauth2Configuration oauth2_config <instance_id>`
|
|
132
|
+
* ```
|
|
133
|
+
*/
|
|
134
|
+
class Oauth2Configuration extends pulumi.CustomResource {
|
|
135
|
+
/**
|
|
136
|
+
* Get an existing Oauth2Configuration resource's state with the given name, ID, and optional extra
|
|
137
|
+
* properties used to qualify the lookup.
|
|
138
|
+
*
|
|
139
|
+
* @param name The _unique_ name of the resulting resource.
|
|
140
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
141
|
+
* @param state Any extra arguments used during the lookup.
|
|
142
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
143
|
+
*/
|
|
144
|
+
static get(name, id, state, opts) {
|
|
145
|
+
return new Oauth2Configuration(name, state, { ...opts, id: id });
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Returns true if the given object is an instance of Oauth2Configuration. This is designed to work even
|
|
149
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
150
|
+
*/
|
|
151
|
+
static isInstance(obj) {
|
|
152
|
+
if (obj === undefined || obj === null) {
|
|
153
|
+
return false;
|
|
154
|
+
}
|
|
155
|
+
return obj['__pulumiType'] === Oauth2Configuration.__pulumiType;
|
|
156
|
+
}
|
|
157
|
+
constructor(name, argsOrState, opts) {
|
|
158
|
+
let resourceInputs = {};
|
|
159
|
+
opts = opts || {};
|
|
160
|
+
if (opts.id) {
|
|
161
|
+
const state = argsOrState;
|
|
162
|
+
resourceInputs["additionalScopesKeys"] = state?.additionalScopesKeys;
|
|
163
|
+
resourceInputs["audience"] = state?.audience;
|
|
164
|
+
resourceInputs["instanceId"] = state?.instanceId;
|
|
165
|
+
resourceInputs["issuer"] = state?.issuer;
|
|
166
|
+
resourceInputs["oauthClientId"] = state?.oauthClientId;
|
|
167
|
+
resourceInputs["oauthScopes"] = state?.oauthScopes;
|
|
168
|
+
resourceInputs["preferredUsernameClaims"] = state?.preferredUsernameClaims;
|
|
169
|
+
resourceInputs["resourceServerId"] = state?.resourceServerId;
|
|
170
|
+
resourceInputs["scopeAliases"] = state?.scopeAliases;
|
|
171
|
+
resourceInputs["scopePrefix"] = state?.scopePrefix;
|
|
172
|
+
resourceInputs["sleep"] = state?.sleep;
|
|
173
|
+
resourceInputs["timeout"] = state?.timeout;
|
|
174
|
+
resourceInputs["verifyAud"] = state?.verifyAud;
|
|
175
|
+
}
|
|
176
|
+
else {
|
|
177
|
+
const args = argsOrState;
|
|
178
|
+
if (args?.instanceId === undefined && !opts.urn) {
|
|
179
|
+
throw new Error("Missing required property 'instanceId'");
|
|
180
|
+
}
|
|
181
|
+
if (args?.issuer === undefined && !opts.urn) {
|
|
182
|
+
throw new Error("Missing required property 'issuer'");
|
|
183
|
+
}
|
|
184
|
+
if (args?.resourceServerId === undefined && !opts.urn) {
|
|
185
|
+
throw new Error("Missing required property 'resourceServerId'");
|
|
186
|
+
}
|
|
187
|
+
resourceInputs["additionalScopesKeys"] = args?.additionalScopesKeys;
|
|
188
|
+
resourceInputs["audience"] = args?.audience;
|
|
189
|
+
resourceInputs["instanceId"] = args?.instanceId;
|
|
190
|
+
resourceInputs["issuer"] = args?.issuer;
|
|
191
|
+
resourceInputs["oauthClientId"] = args?.oauthClientId;
|
|
192
|
+
resourceInputs["oauthScopes"] = args?.oauthScopes;
|
|
193
|
+
resourceInputs["preferredUsernameClaims"] = args?.preferredUsernameClaims;
|
|
194
|
+
resourceInputs["resourceServerId"] = args?.resourceServerId;
|
|
195
|
+
resourceInputs["scopeAliases"] = args?.scopeAliases;
|
|
196
|
+
resourceInputs["scopePrefix"] = args?.scopePrefix;
|
|
197
|
+
resourceInputs["sleep"] = args?.sleep;
|
|
198
|
+
resourceInputs["timeout"] = args?.timeout;
|
|
199
|
+
resourceInputs["verifyAud"] = args?.verifyAud;
|
|
200
|
+
}
|
|
201
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
202
|
+
super(Oauth2Configuration.__pulumiType, name, resourceInputs, opts);
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
exports.Oauth2Configuration = Oauth2Configuration;
|
|
206
|
+
/** @internal */
|
|
207
|
+
Oauth2Configuration.__pulumiType = 'cloudamqp:index/oauth2Configuration:Oauth2Configuration';
|
|
208
|
+
//# sourceMappingURL=oauth2Configuration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"oauth2Configuration.js","sourceRoot":"","sources":["../oauth2Configuration.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/cloudamqp",
|
|
3
|
-
"version": "3.24.
|
|
3
|
+
"version": "3.24.2",
|
|
4
4
|
"description": "A Pulumi package for creating and managing CloudAMQP resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "cloudamqp",
|
|
26
|
-
"version": "3.24.
|
|
26
|
+
"version": "3.24.2"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -27,6 +27,114 @@ export interface InstanceCopySetting {
|
|
|
27
27
|
*/
|
|
28
28
|
subscriptionId: pulumi.Input<string>;
|
|
29
29
|
}
|
|
30
|
+
export interface IntegrationMetricPrometheusAzureMonitor {
|
|
31
|
+
/**
|
|
32
|
+
* Azure Application Insights Connection String for authentication.
|
|
33
|
+
*/
|
|
34
|
+
connectionString: pulumi.Input<string>;
|
|
35
|
+
}
|
|
36
|
+
export interface IntegrationMetricPrometheusCloudwatchV3 {
|
|
37
|
+
/**
|
|
38
|
+
* AWS IAM external ID for role assumption.
|
|
39
|
+
*/
|
|
40
|
+
iamExternalId: pulumi.Input<string>;
|
|
41
|
+
/**
|
|
42
|
+
* AWS IAM role ARN with PutMetricData permission for CloudWatch integration.
|
|
43
|
+
*/
|
|
44
|
+
iamRole: pulumi.Input<string>;
|
|
45
|
+
/**
|
|
46
|
+
* AWS region for CloudWatch metrics.
|
|
47
|
+
*/
|
|
48
|
+
region: pulumi.Input<string>;
|
|
49
|
+
/**
|
|
50
|
+
* Additional tags to attach to metrics. Format: `key=value,key2=value2`.
|
|
51
|
+
*/
|
|
52
|
+
tags?: pulumi.Input<string>;
|
|
53
|
+
}
|
|
54
|
+
export interface IntegrationMetricPrometheusDatadogV3 {
|
|
55
|
+
/**
|
|
56
|
+
* Datadog API key for authentication.
|
|
57
|
+
*/
|
|
58
|
+
apiKey: pulumi.Input<string>;
|
|
59
|
+
/**
|
|
60
|
+
* Enable metric name transformation to match Datadog's RabbitMQ dashboard format. Default: `false`. **Note:** This option is only available for RabbitMQ clusters, not LavinMQ clusters.
|
|
61
|
+
*/
|
|
62
|
+
rabbitmqDashboardMetricsFormat?: pulumi.Input<boolean>;
|
|
63
|
+
/**
|
|
64
|
+
* Datadog region code. Valid values: `us1`, `us3`, `us5`, `eu1`.
|
|
65
|
+
*/
|
|
66
|
+
region: pulumi.Input<string>;
|
|
67
|
+
/**
|
|
68
|
+
* Additional tags to attach to metrics. Format: `key=value,key2=value2`.
|
|
69
|
+
*/
|
|
70
|
+
tags?: pulumi.Input<string>;
|
|
71
|
+
}
|
|
72
|
+
export interface IntegrationMetricPrometheusDynatrace {
|
|
73
|
+
/**
|
|
74
|
+
* Dynatrace access token with 'Ingest metrics' permission.
|
|
75
|
+
*/
|
|
76
|
+
accessToken: pulumi.Input<string>;
|
|
77
|
+
/**
|
|
78
|
+
* Dynatrace environment ID.
|
|
79
|
+
*/
|
|
80
|
+
environmentId: pulumi.Input<string>;
|
|
81
|
+
/**
|
|
82
|
+
* Additional tags to attach to metrics. Format: `key=value,key2=value2`.
|
|
83
|
+
*/
|
|
84
|
+
tags?: pulumi.Input<string>;
|
|
85
|
+
}
|
|
86
|
+
export interface IntegrationMetricPrometheusNewrelicV3 {
|
|
87
|
+
/**
|
|
88
|
+
* New Relic API key for authentication.
|
|
89
|
+
*/
|
|
90
|
+
apiKey: pulumi.Input<string>;
|
|
91
|
+
/**
|
|
92
|
+
* Additional tags to attach to metrics. Format: `key=value,key2=value2`.
|
|
93
|
+
*/
|
|
94
|
+
tags?: pulumi.Input<string>;
|
|
95
|
+
}
|
|
96
|
+
export interface IntegrationMetricPrometheusSplunkV2 {
|
|
97
|
+
/**
|
|
98
|
+
* Splunk HEC endpoint URL. Example: `https://your-instance-id.splunkcloud.com:8088/services/collector`.
|
|
99
|
+
*/
|
|
100
|
+
endpoint: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* Additional tags to attach to metrics. Format: `key=value,key2=value2`.
|
|
103
|
+
*/
|
|
104
|
+
tags?: pulumi.Input<string>;
|
|
105
|
+
/**
|
|
106
|
+
* Splunk HEC (HTTP Event Collector) token for authentication.
|
|
107
|
+
*/
|
|
108
|
+
token: pulumi.Input<string>;
|
|
109
|
+
}
|
|
110
|
+
export interface IntegrationMetricPrometheusStackdriverV2 {
|
|
111
|
+
/**
|
|
112
|
+
* Google service account client email (extracted from credentials file).
|
|
113
|
+
*/
|
|
114
|
+
clientEmail?: pulumi.Input<string>;
|
|
115
|
+
/**
|
|
116
|
+
* Base64-encoded Google service account key JSON file with 'Monitoring Metric Writer' permission.
|
|
117
|
+
*/
|
|
118
|
+
credentialsFile: pulumi.Input<string>;
|
|
119
|
+
/**
|
|
120
|
+
* Google service account private key (extracted from credentials file).
|
|
121
|
+
*/
|
|
122
|
+
privateKey?: pulumi.Input<string>;
|
|
123
|
+
/**
|
|
124
|
+
* Google service account private key ID (extracted from credentials file).
|
|
125
|
+
*/
|
|
126
|
+
privateKeyId?: pulumi.Input<string>;
|
|
127
|
+
/**
|
|
128
|
+
* Google Cloud project ID (extracted from credentials file).
|
|
129
|
+
*/
|
|
130
|
+
projectId?: pulumi.Input<string>;
|
|
131
|
+
/**
|
|
132
|
+
* Additional tags to attach to metrics. Format: `key=value,key2=value2`.
|
|
133
|
+
*
|
|
134
|
+
* The following computed attributes are available:
|
|
135
|
+
*/
|
|
136
|
+
tags?: pulumi.Input<string>;
|
|
137
|
+
}
|
|
30
138
|
export interface NotificationResponder {
|
|
31
139
|
/**
|
|
32
140
|
* Identifier in UUID format
|
package/types/output.d.ts
CHANGED
|
@@ -226,6 +226,114 @@ export interface InstanceCopySetting {
|
|
|
226
226
|
*/
|
|
227
227
|
subscriptionId: string;
|
|
228
228
|
}
|
|
229
|
+
export interface IntegrationMetricPrometheusAzureMonitor {
|
|
230
|
+
/**
|
|
231
|
+
* Azure Application Insights Connection String for authentication.
|
|
232
|
+
*/
|
|
233
|
+
connectionString: string;
|
|
234
|
+
}
|
|
235
|
+
export interface IntegrationMetricPrometheusCloudwatchV3 {
|
|
236
|
+
/**
|
|
237
|
+
* AWS IAM external ID for role assumption.
|
|
238
|
+
*/
|
|
239
|
+
iamExternalId: string;
|
|
240
|
+
/**
|
|
241
|
+
* AWS IAM role ARN with PutMetricData permission for CloudWatch integration.
|
|
242
|
+
*/
|
|
243
|
+
iamRole: string;
|
|
244
|
+
/**
|
|
245
|
+
* AWS region for CloudWatch metrics.
|
|
246
|
+
*/
|
|
247
|
+
region: string;
|
|
248
|
+
/**
|
|
249
|
+
* Additional tags to attach to metrics. Format: `key=value,key2=value2`.
|
|
250
|
+
*/
|
|
251
|
+
tags?: string;
|
|
252
|
+
}
|
|
253
|
+
export interface IntegrationMetricPrometheusDatadogV3 {
|
|
254
|
+
/**
|
|
255
|
+
* Datadog API key for authentication.
|
|
256
|
+
*/
|
|
257
|
+
apiKey: string;
|
|
258
|
+
/**
|
|
259
|
+
* Enable metric name transformation to match Datadog's RabbitMQ dashboard format. Default: `false`. **Note:** This option is only available for RabbitMQ clusters, not LavinMQ clusters.
|
|
260
|
+
*/
|
|
261
|
+
rabbitmqDashboardMetricsFormat?: boolean;
|
|
262
|
+
/**
|
|
263
|
+
* Datadog region code. Valid values: `us1`, `us3`, `us5`, `eu1`.
|
|
264
|
+
*/
|
|
265
|
+
region: string;
|
|
266
|
+
/**
|
|
267
|
+
* Additional tags to attach to metrics. Format: `key=value,key2=value2`.
|
|
268
|
+
*/
|
|
269
|
+
tags?: string;
|
|
270
|
+
}
|
|
271
|
+
export interface IntegrationMetricPrometheusDynatrace {
|
|
272
|
+
/**
|
|
273
|
+
* Dynatrace access token with 'Ingest metrics' permission.
|
|
274
|
+
*/
|
|
275
|
+
accessToken: string;
|
|
276
|
+
/**
|
|
277
|
+
* Dynatrace environment ID.
|
|
278
|
+
*/
|
|
279
|
+
environmentId: string;
|
|
280
|
+
/**
|
|
281
|
+
* Additional tags to attach to metrics. Format: `key=value,key2=value2`.
|
|
282
|
+
*/
|
|
283
|
+
tags?: string;
|
|
284
|
+
}
|
|
285
|
+
export interface IntegrationMetricPrometheusNewrelicV3 {
|
|
286
|
+
/**
|
|
287
|
+
* New Relic API key for authentication.
|
|
288
|
+
*/
|
|
289
|
+
apiKey: string;
|
|
290
|
+
/**
|
|
291
|
+
* Additional tags to attach to metrics. Format: `key=value,key2=value2`.
|
|
292
|
+
*/
|
|
293
|
+
tags?: string;
|
|
294
|
+
}
|
|
295
|
+
export interface IntegrationMetricPrometheusSplunkV2 {
|
|
296
|
+
/**
|
|
297
|
+
* Splunk HEC endpoint URL. Example: `https://your-instance-id.splunkcloud.com:8088/services/collector`.
|
|
298
|
+
*/
|
|
299
|
+
endpoint: string;
|
|
300
|
+
/**
|
|
301
|
+
* Additional tags to attach to metrics. Format: `key=value,key2=value2`.
|
|
302
|
+
*/
|
|
303
|
+
tags?: string;
|
|
304
|
+
/**
|
|
305
|
+
* Splunk HEC (HTTP Event Collector) token for authentication.
|
|
306
|
+
*/
|
|
307
|
+
token: string;
|
|
308
|
+
}
|
|
309
|
+
export interface IntegrationMetricPrometheusStackdriverV2 {
|
|
310
|
+
/**
|
|
311
|
+
* Google service account client email (extracted from credentials file).
|
|
312
|
+
*/
|
|
313
|
+
clientEmail: string;
|
|
314
|
+
/**
|
|
315
|
+
* Base64-encoded Google service account key JSON file with 'Monitoring Metric Writer' permission.
|
|
316
|
+
*/
|
|
317
|
+
credentialsFile: string;
|
|
318
|
+
/**
|
|
319
|
+
* Google service account private key (extracted from credentials file).
|
|
320
|
+
*/
|
|
321
|
+
privateKey: string;
|
|
322
|
+
/**
|
|
323
|
+
* Google service account private key ID (extracted from credentials file).
|
|
324
|
+
*/
|
|
325
|
+
privateKeyId: string;
|
|
326
|
+
/**
|
|
327
|
+
* Google Cloud project ID (extracted from credentials file).
|
|
328
|
+
*/
|
|
329
|
+
projectId: string;
|
|
330
|
+
/**
|
|
331
|
+
* Additional tags to attach to metrics. Format: `key=value,key2=value2`.
|
|
332
|
+
*
|
|
333
|
+
* The following computed attributes are available:
|
|
334
|
+
*/
|
|
335
|
+
tags?: string;
|
|
336
|
+
}
|
|
229
337
|
export interface NotificationResponder {
|
|
230
338
|
/**
|
|
231
339
|
* Identifier in UUID format
|
package/vpc.d.ts
CHANGED
|
@@ -62,9 +62,9 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
62
62
|
* $ pulumi import cloudamqp:index/vpc:Vpc vpc <vpc_id>`
|
|
63
63
|
* ```
|
|
64
64
|
*
|
|
65
|
-
* [CloudAMQP API list vpcs]: https://docs.cloudamqp.com
|
|
65
|
+
* [CloudAMQP API list vpcs]: https://docs.cloudamqp.com/index.html#tag/vpcs/get/vpcs
|
|
66
66
|
*
|
|
67
|
-
* [CloudAMQP plans]: https://
|
|
67
|
+
* [CloudAMQP plans]: https://docs.cloudamqp.com/index.html#tag/plans/get/plans
|
|
68
68
|
*/
|
|
69
69
|
export declare class Vpc extends pulumi.CustomResource {
|
|
70
70
|
/**
|
package/vpc.js
CHANGED
|
@@ -68,9 +68,9 @@ const utilities = require("./utilities");
|
|
|
68
68
|
* $ pulumi import cloudamqp:index/vpc:Vpc vpc <vpc_id>`
|
|
69
69
|
* ```
|
|
70
70
|
*
|
|
71
|
-
* [CloudAMQP API list vpcs]: https://docs.cloudamqp.com
|
|
71
|
+
* [CloudAMQP API list vpcs]: https://docs.cloudamqp.com/index.html#tag/vpcs/get/vpcs
|
|
72
72
|
*
|
|
73
|
-
* [CloudAMQP plans]: https://
|
|
73
|
+
* [CloudAMQP plans]: https://docs.cloudamqp.com/index.html#tag/plans/get/plans
|
|
74
74
|
*/
|
|
75
75
|
class Vpc extends pulumi.CustomResource {
|
|
76
76
|
/**
|
package/webhook.d.ts
CHANGED
|
@@ -55,11 +55,11 @@ export declare class Webhook extends pulumi.CustomResource {
|
|
|
55
55
|
/**
|
|
56
56
|
* Configurable sleep time in seconds between retries for webhook
|
|
57
57
|
*/
|
|
58
|
-
readonly sleep: pulumi.Output<number
|
|
58
|
+
readonly sleep: pulumi.Output<number>;
|
|
59
59
|
/**
|
|
60
60
|
* Configurable timeout time in seconds for webhook
|
|
61
61
|
*/
|
|
62
|
-
readonly timeout: pulumi.Output<number
|
|
62
|
+
readonly timeout: pulumi.Output<number>;
|
|
63
63
|
/**
|
|
64
64
|
* The vhost the queue resides in.
|
|
65
65
|
*/
|