@pulumi/ns1 3.2.0-alpha.1710157241 → 3.2.0
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/dataset.d.ts +58 -0
- package/dataset.js +70 -0
- package/dataset.js.map +1 -0
- package/getMonitoringRegions.d.ts +67 -0
- package/getMonitoringRegions.js +48 -0
- package/getMonitoringRegions.js.map +1 -0
- package/index.d.ts +6 -0
- package/index.js +9 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types/input.d.ts +53 -0
- package/types/output.d.ts +39 -0
package/dataset.d.ts
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
export declare class Dataset extends pulumi.CustomResource {
|
|
5
|
+
/**
|
|
6
|
+
* Get an existing Dataset resource's state with the given name, ID, and optional extra
|
|
7
|
+
* properties used to qualify the lookup.
|
|
8
|
+
*
|
|
9
|
+
* @param name The _unique_ name of the resulting resource.
|
|
10
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
11
|
+
* @param state Any extra arguments used during the lookup.
|
|
12
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
13
|
+
*/
|
|
14
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DatasetState, opts?: pulumi.CustomResourceOptions): Dataset;
|
|
15
|
+
/**
|
|
16
|
+
* Returns true if the given object is an instance of Dataset. This is designed to work even
|
|
17
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
18
|
+
*/
|
|
19
|
+
static isInstance(obj: any): obj is Dataset;
|
|
20
|
+
readonly datatype: pulumi.Output<outputs.DatasetDatatype>;
|
|
21
|
+
readonly exportType: pulumi.Output<string>;
|
|
22
|
+
readonly name: pulumi.Output<string>;
|
|
23
|
+
readonly recipientEmails: pulumi.Output<string[] | undefined>;
|
|
24
|
+
readonly repeat: pulumi.Output<outputs.DatasetRepeat | undefined>;
|
|
25
|
+
readonly reports: pulumi.Output<outputs.DatasetReport[]>;
|
|
26
|
+
readonly timeframe: pulumi.Output<outputs.DatasetTimeframe>;
|
|
27
|
+
/**
|
|
28
|
+
* Create a Dataset resource with the given unique name, arguments, and options.
|
|
29
|
+
*
|
|
30
|
+
* @param name The _unique_ name of the resource.
|
|
31
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
32
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
33
|
+
*/
|
|
34
|
+
constructor(name: string, args: DatasetArgs, opts?: pulumi.CustomResourceOptions);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Input properties used for looking up and filtering Dataset resources.
|
|
38
|
+
*/
|
|
39
|
+
export interface DatasetState {
|
|
40
|
+
datatype?: pulumi.Input<inputs.DatasetDatatype>;
|
|
41
|
+
exportType?: pulumi.Input<string>;
|
|
42
|
+
name?: pulumi.Input<string>;
|
|
43
|
+
recipientEmails?: pulumi.Input<pulumi.Input<string>[]>;
|
|
44
|
+
repeat?: pulumi.Input<inputs.DatasetRepeat>;
|
|
45
|
+
reports?: pulumi.Input<pulumi.Input<inputs.DatasetReport>[]>;
|
|
46
|
+
timeframe?: pulumi.Input<inputs.DatasetTimeframe>;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* The set of arguments for constructing a Dataset resource.
|
|
50
|
+
*/
|
|
51
|
+
export interface DatasetArgs {
|
|
52
|
+
datatype: pulumi.Input<inputs.DatasetDatatype>;
|
|
53
|
+
exportType: pulumi.Input<string>;
|
|
54
|
+
name?: pulumi.Input<string>;
|
|
55
|
+
recipientEmails?: pulumi.Input<pulumi.Input<string>[]>;
|
|
56
|
+
repeat?: pulumi.Input<inputs.DatasetRepeat>;
|
|
57
|
+
timeframe: pulumi.Input<inputs.DatasetTimeframe>;
|
|
58
|
+
}
|
package/dataset.js
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.Dataset = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
class Dataset extends pulumi.CustomResource {
|
|
9
|
+
/**
|
|
10
|
+
* Get an existing Dataset resource's state with the given name, ID, and optional extra
|
|
11
|
+
* properties used to qualify the lookup.
|
|
12
|
+
*
|
|
13
|
+
* @param name The _unique_ name of the resulting resource.
|
|
14
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
15
|
+
* @param state Any extra arguments used during the lookup.
|
|
16
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
17
|
+
*/
|
|
18
|
+
static get(name, id, state, opts) {
|
|
19
|
+
return new Dataset(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Returns true if the given object is an instance of Dataset. This is designed to work even
|
|
23
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
24
|
+
*/
|
|
25
|
+
static isInstance(obj) {
|
|
26
|
+
if (obj === undefined || obj === null) {
|
|
27
|
+
return false;
|
|
28
|
+
}
|
|
29
|
+
return obj['__pulumiType'] === Dataset.__pulumiType;
|
|
30
|
+
}
|
|
31
|
+
constructor(name, argsOrState, opts) {
|
|
32
|
+
let resourceInputs = {};
|
|
33
|
+
opts = opts || {};
|
|
34
|
+
if (opts.id) {
|
|
35
|
+
const state = argsOrState;
|
|
36
|
+
resourceInputs["datatype"] = state ? state.datatype : undefined;
|
|
37
|
+
resourceInputs["exportType"] = state ? state.exportType : undefined;
|
|
38
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
39
|
+
resourceInputs["recipientEmails"] = state ? state.recipientEmails : undefined;
|
|
40
|
+
resourceInputs["repeat"] = state ? state.repeat : undefined;
|
|
41
|
+
resourceInputs["reports"] = state ? state.reports : undefined;
|
|
42
|
+
resourceInputs["timeframe"] = state ? state.timeframe : undefined;
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
const args = argsOrState;
|
|
46
|
+
if ((!args || args.datatype === undefined) && !opts.urn) {
|
|
47
|
+
throw new Error("Missing required property 'datatype'");
|
|
48
|
+
}
|
|
49
|
+
if ((!args || args.exportType === undefined) && !opts.urn) {
|
|
50
|
+
throw new Error("Missing required property 'exportType'");
|
|
51
|
+
}
|
|
52
|
+
if ((!args || args.timeframe === undefined) && !opts.urn) {
|
|
53
|
+
throw new Error("Missing required property 'timeframe'");
|
|
54
|
+
}
|
|
55
|
+
resourceInputs["datatype"] = args ? args.datatype : undefined;
|
|
56
|
+
resourceInputs["exportType"] = args ? args.exportType : undefined;
|
|
57
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
58
|
+
resourceInputs["recipientEmails"] = args ? args.recipientEmails : undefined;
|
|
59
|
+
resourceInputs["repeat"] = args ? args.repeat : undefined;
|
|
60
|
+
resourceInputs["timeframe"] = args ? args.timeframe : undefined;
|
|
61
|
+
resourceInputs["reports"] = undefined /*out*/;
|
|
62
|
+
}
|
|
63
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
64
|
+
super(Dataset.__pulumiType, name, resourceInputs, opts);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
exports.Dataset = Dataset;
|
|
68
|
+
/** @internal */
|
|
69
|
+
Dataset.__pulumiType = 'ns1:index/dataset:Dataset';
|
|
70
|
+
//# sourceMappingURL=dataset.js.map
|
package/dataset.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dataset.js","sourceRoot":"","sources":["../dataset.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Provides details of all available monitoring regions.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* <!--Start PulumiCodeChooser -->
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as ns1 from "@pulumi/ns1";
|
|
13
|
+
*
|
|
14
|
+
* const example = ns1.getMonitoringRegions({});
|
|
15
|
+
* ```
|
|
16
|
+
* <!--End PulumiCodeChooser -->
|
|
17
|
+
*/
|
|
18
|
+
export declare function getMonitoringRegions(args?: GetMonitoringRegionsArgs, opts?: pulumi.InvokeOptions): Promise<GetMonitoringRegionsResult>;
|
|
19
|
+
/**
|
|
20
|
+
* A collection of arguments for invoking getMonitoringRegions.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetMonitoringRegionsArgs {
|
|
23
|
+
/**
|
|
24
|
+
* A set of the available monitoring regions. Regions is
|
|
25
|
+
* documented below.
|
|
26
|
+
*/
|
|
27
|
+
regions?: inputs.GetMonitoringRegionsRegion[];
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* A collection of values returned by getMonitoringRegions.
|
|
31
|
+
*/
|
|
32
|
+
export interface GetMonitoringRegionsResult {
|
|
33
|
+
/**
|
|
34
|
+
* The provider-assigned unique ID for this managed resource.
|
|
35
|
+
*/
|
|
36
|
+
readonly id: string;
|
|
37
|
+
/**
|
|
38
|
+
* A set of the available monitoring regions. Regions is
|
|
39
|
+
* documented below.
|
|
40
|
+
*/
|
|
41
|
+
readonly regions?: outputs.GetMonitoringRegionsRegion[];
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Provides details of all available monitoring regions.
|
|
45
|
+
*
|
|
46
|
+
* ## Example Usage
|
|
47
|
+
*
|
|
48
|
+
* <!--Start PulumiCodeChooser -->
|
|
49
|
+
* ```typescript
|
|
50
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
51
|
+
* import * as ns1 from "@pulumi/ns1";
|
|
52
|
+
*
|
|
53
|
+
* const example = ns1.getMonitoringRegions({});
|
|
54
|
+
* ```
|
|
55
|
+
* <!--End PulumiCodeChooser -->
|
|
56
|
+
*/
|
|
57
|
+
export declare function getMonitoringRegionsOutput(args?: GetMonitoringRegionsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetMonitoringRegionsResult>;
|
|
58
|
+
/**
|
|
59
|
+
* A collection of arguments for invoking getMonitoringRegions.
|
|
60
|
+
*/
|
|
61
|
+
export interface GetMonitoringRegionsOutputArgs {
|
|
62
|
+
/**
|
|
63
|
+
* A set of the available monitoring regions. Regions is
|
|
64
|
+
* documented below.
|
|
65
|
+
*/
|
|
66
|
+
regions?: pulumi.Input<pulumi.Input<inputs.GetMonitoringRegionsRegionArgs>[]>;
|
|
67
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.getMonitoringRegionsOutput = exports.getMonitoringRegions = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides details of all available monitoring regions.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* <!--Start PulumiCodeChooser -->
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as ns1 from "@pulumi/ns1";
|
|
17
|
+
*
|
|
18
|
+
* const example = ns1.getMonitoringRegions({});
|
|
19
|
+
* ```
|
|
20
|
+
* <!--End PulumiCodeChooser -->
|
|
21
|
+
*/
|
|
22
|
+
function getMonitoringRegions(args, opts) {
|
|
23
|
+
args = args || {};
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
|
+
return pulumi.runtime.invoke("ns1:index/getMonitoringRegions:getMonitoringRegions", {
|
|
26
|
+
"regions": args.regions,
|
|
27
|
+
}, opts);
|
|
28
|
+
}
|
|
29
|
+
exports.getMonitoringRegions = getMonitoringRegions;
|
|
30
|
+
/**
|
|
31
|
+
* Provides details of all available monitoring regions.
|
|
32
|
+
*
|
|
33
|
+
* ## Example Usage
|
|
34
|
+
*
|
|
35
|
+
* <!--Start PulumiCodeChooser -->
|
|
36
|
+
* ```typescript
|
|
37
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
38
|
+
* import * as ns1 from "@pulumi/ns1";
|
|
39
|
+
*
|
|
40
|
+
* const example = ns1.getMonitoringRegions({});
|
|
41
|
+
* ```
|
|
42
|
+
* <!--End PulumiCodeChooser -->
|
|
43
|
+
*/
|
|
44
|
+
function getMonitoringRegionsOutput(args, opts) {
|
|
45
|
+
return pulumi.output(args).apply((a) => getMonitoringRegions(a, opts));
|
|
46
|
+
}
|
|
47
|
+
exports.getMonitoringRegionsOutput = getMonitoringRegionsOutput;
|
|
48
|
+
//# sourceMappingURL=getMonitoringRegions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getMonitoringRegions.js","sourceRoot":"","sources":["../getMonitoringRegions.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qDAAqD,EAAE;QAChF,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oDAOC;AA2BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,0BAA0B,CAAC,IAAqC,EAAE,IAA2B;IACzG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,oBAAoB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC/E,CAAC;AAFD,gEAEC"}
|
package/index.d.ts
CHANGED
|
@@ -13,12 +13,18 @@ export declare const DataFeed: typeof import("./dataFeed").DataFeed;
|
|
|
13
13
|
export { DataSourceArgs, DataSourceState } from "./dataSource";
|
|
14
14
|
export type DataSource = import("./dataSource").DataSource;
|
|
15
15
|
export declare const DataSource: typeof import("./dataSource").DataSource;
|
|
16
|
+
export { DatasetArgs, DatasetState } from "./dataset";
|
|
17
|
+
export type Dataset = import("./dataset").Dataset;
|
|
18
|
+
export declare const Dataset: typeof import("./dataset").Dataset;
|
|
16
19
|
export { DnsviewArgs, DnsviewState } from "./dnsview";
|
|
17
20
|
export type Dnsview = import("./dnsview").Dnsview;
|
|
18
21
|
export declare const Dnsview: typeof import("./dnsview").Dnsview;
|
|
19
22
|
export { GetDNSSecArgs, GetDNSSecResult, GetDNSSecOutputArgs } from "./getDNSSec";
|
|
20
23
|
export declare const getDNSSec: typeof import("./getDNSSec").getDNSSec;
|
|
21
24
|
export declare const getDNSSecOutput: typeof import("./getDNSSec").getDNSSecOutput;
|
|
25
|
+
export { GetMonitoringRegionsArgs, GetMonitoringRegionsResult, GetMonitoringRegionsOutputArgs } from "./getMonitoringRegions";
|
|
26
|
+
export declare const getMonitoringRegions: typeof import("./getMonitoringRegions").getMonitoringRegions;
|
|
27
|
+
export declare const getMonitoringRegionsOutput: typeof import("./getMonitoringRegions").getMonitoringRegionsOutput;
|
|
22
28
|
export { GetNetworksResult } from "./getNetworks";
|
|
23
29
|
export declare const getNetworks: typeof import("./getNetworks").getNetworks;
|
|
24
30
|
export declare const getNetworksOutput: typeof import("./getNetworks").getNetworksOutput;
|
package/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.types = exports.config = exports.Zone = exports.User = exports.Tsigkey = exports.Team = exports.Subnet = exports.Record = exports.PulsarJob = exports.Provider = exports.NotifyList = exports.MonitoringJob = exports.getZoneOutput = exports.getZone = exports.getRecordOutput = exports.getRecord = exports.getNetworksOutput = exports.getNetworks = exports.getDNSSecOutput = exports.getDNSSec = exports.Dnsview = exports.DataSource = exports.DataFeed = exports.Application = exports.APIKey = exports.AccountWhitelist = void 0;
|
|
5
|
+
exports.types = exports.config = exports.Zone = exports.User = exports.Tsigkey = exports.Team = exports.Subnet = exports.Record = exports.PulsarJob = exports.Provider = exports.NotifyList = exports.MonitoringJob = exports.getZoneOutput = exports.getZone = exports.getRecordOutput = exports.getRecord = exports.getNetworksOutput = exports.getNetworks = exports.getMonitoringRegionsOutput = exports.getMonitoringRegions = exports.getDNSSecOutput = exports.getDNSSec = exports.Dnsview = exports.Dataset = exports.DataSource = exports.DataFeed = exports.Application = exports.APIKey = exports.AccountWhitelist = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
exports.AccountWhitelist = null;
|
|
@@ -15,11 +15,16 @@ exports.DataFeed = null;
|
|
|
15
15
|
utilities.lazyLoad(exports, ["DataFeed"], () => require("./dataFeed"));
|
|
16
16
|
exports.DataSource = null;
|
|
17
17
|
utilities.lazyLoad(exports, ["DataSource"], () => require("./dataSource"));
|
|
18
|
+
exports.Dataset = null;
|
|
19
|
+
utilities.lazyLoad(exports, ["Dataset"], () => require("./dataset"));
|
|
18
20
|
exports.Dnsview = null;
|
|
19
21
|
utilities.lazyLoad(exports, ["Dnsview"], () => require("./dnsview"));
|
|
20
22
|
exports.getDNSSec = null;
|
|
21
23
|
exports.getDNSSecOutput = null;
|
|
22
24
|
utilities.lazyLoad(exports, ["getDNSSec", "getDNSSecOutput"], () => require("./getDNSSec"));
|
|
25
|
+
exports.getMonitoringRegions = null;
|
|
26
|
+
exports.getMonitoringRegionsOutput = null;
|
|
27
|
+
utilities.lazyLoad(exports, ["getMonitoringRegions", "getMonitoringRegionsOutput"], () => require("./getMonitoringRegions"));
|
|
23
28
|
exports.getNetworks = null;
|
|
24
29
|
exports.getNetworksOutput = null;
|
|
25
30
|
utilities.lazyLoad(exports, ["getNetworks", "getNetworksOutput"], () => require("./getNetworks"));
|
|
@@ -68,6 +73,8 @@ const _module = {
|
|
|
68
73
|
return new exports.DataFeed(name, undefined, { urn });
|
|
69
74
|
case "ns1:index/dataSource:DataSource":
|
|
70
75
|
return new exports.DataSource(name, undefined, { urn });
|
|
76
|
+
case "ns1:index/dataset:Dataset":
|
|
77
|
+
return new exports.Dataset(name, undefined, { urn });
|
|
71
78
|
case "ns1:index/dnsview:Dnsview":
|
|
72
79
|
return new exports.Dnsview(name, undefined, { urn });
|
|
73
80
|
case "ns1:index/monitoringJob:MonitoringJob":
|
|
@@ -98,6 +105,7 @@ pulumi.runtime.registerResourceModule("ns1", "index/accountWhitelist", _module);
|
|
|
98
105
|
pulumi.runtime.registerResourceModule("ns1", "index/application", _module);
|
|
99
106
|
pulumi.runtime.registerResourceModule("ns1", "index/dataFeed", _module);
|
|
100
107
|
pulumi.runtime.registerResourceModule("ns1", "index/dataSource", _module);
|
|
108
|
+
pulumi.runtime.registerResourceModule("ns1", "index/dataset", _module);
|
|
101
109
|
pulumi.runtime.registerResourceModule("ns1", "index/dnsview", _module);
|
|
102
110
|
pulumi.runtime.registerResourceModule("ns1", "index/monitoringJob", _module);
|
|
103
111
|
pulumi.runtime.registerResourceModule("ns1", "index/notifyList", _module);
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -38,6 +38,59 @@ export interface ApplicationDefaultConfig {
|
|
|
38
38
|
*/
|
|
39
39
|
useXhr?: pulumi.Input<boolean>;
|
|
40
40
|
}
|
|
41
|
+
export interface DatasetDatatype {
|
|
42
|
+
data: pulumi.Input<{
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
}>;
|
|
45
|
+
scope: pulumi.Input<string>;
|
|
46
|
+
type: pulumi.Input<string>;
|
|
47
|
+
}
|
|
48
|
+
export interface DatasetRepeat {
|
|
49
|
+
endAfterN: pulumi.Input<number>;
|
|
50
|
+
repeatsEvery: pulumi.Input<string>;
|
|
51
|
+
start: pulumi.Input<number>;
|
|
52
|
+
}
|
|
53
|
+
export interface DatasetReport {
|
|
54
|
+
createdAt?: pulumi.Input<number>;
|
|
55
|
+
end?: pulumi.Input<number>;
|
|
56
|
+
id?: pulumi.Input<string>;
|
|
57
|
+
start?: pulumi.Input<number>;
|
|
58
|
+
status?: pulumi.Input<string>;
|
|
59
|
+
}
|
|
60
|
+
export interface DatasetTimeframe {
|
|
61
|
+
aggregation: pulumi.Input<string>;
|
|
62
|
+
cycles?: pulumi.Input<number>;
|
|
63
|
+
from?: pulumi.Input<number>;
|
|
64
|
+
to?: pulumi.Input<number>;
|
|
65
|
+
}
|
|
66
|
+
export interface GetMonitoringRegionsRegion {
|
|
67
|
+
/**
|
|
68
|
+
* 3-letter city code identifying the location of the monitor.
|
|
69
|
+
*/
|
|
70
|
+
code?: string;
|
|
71
|
+
/**
|
|
72
|
+
* City name identifying the location of the monitor.
|
|
73
|
+
*/
|
|
74
|
+
name?: string;
|
|
75
|
+
/**
|
|
76
|
+
* A list of IPv4 and IPv6 subnets the monitor sources requests from.
|
|
77
|
+
*/
|
|
78
|
+
subnets?: string[];
|
|
79
|
+
}
|
|
80
|
+
export interface GetMonitoringRegionsRegionArgs {
|
|
81
|
+
/**
|
|
82
|
+
* 3-letter city code identifying the location of the monitor.
|
|
83
|
+
*/
|
|
84
|
+
code?: pulumi.Input<string>;
|
|
85
|
+
/**
|
|
86
|
+
* City name identifying the location of the monitor.
|
|
87
|
+
*/
|
|
88
|
+
name?: pulumi.Input<string>;
|
|
89
|
+
/**
|
|
90
|
+
* A list of IPv4 and IPv6 subnets the monitor sources requests from.
|
|
91
|
+
*/
|
|
92
|
+
subnets?: pulumi.Input<pulumi.Input<string>[]>;
|
|
93
|
+
}
|
|
41
94
|
export interface MonitoringJobRule {
|
|
42
95
|
comparison: pulumi.Input<string>;
|
|
43
96
|
key: pulumi.Input<string>;
|
package/types/output.d.ts
CHANGED
|
@@ -38,6 +38,31 @@ export interface ApplicationDefaultConfig {
|
|
|
38
38
|
*/
|
|
39
39
|
useXhr?: boolean;
|
|
40
40
|
}
|
|
41
|
+
export interface DatasetDatatype {
|
|
42
|
+
data: {
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
};
|
|
45
|
+
scope: string;
|
|
46
|
+
type: string;
|
|
47
|
+
}
|
|
48
|
+
export interface DatasetRepeat {
|
|
49
|
+
endAfterN: number;
|
|
50
|
+
repeatsEvery: string;
|
|
51
|
+
start: number;
|
|
52
|
+
}
|
|
53
|
+
export interface DatasetReport {
|
|
54
|
+
createdAt: number;
|
|
55
|
+
end: number;
|
|
56
|
+
id: string;
|
|
57
|
+
start: number;
|
|
58
|
+
status: string;
|
|
59
|
+
}
|
|
60
|
+
export interface DatasetTimeframe {
|
|
61
|
+
aggregation: string;
|
|
62
|
+
cycles?: number;
|
|
63
|
+
from?: number;
|
|
64
|
+
to?: number;
|
|
65
|
+
}
|
|
41
66
|
export interface GetDNSSecDelegation {
|
|
42
67
|
/**
|
|
43
68
|
* (Computed) List of Keys. Key is documented below.
|
|
@@ -116,6 +141,20 @@ export interface GetDNSSecKeyDnskey {
|
|
|
116
141
|
*/
|
|
117
142
|
publicKey: string;
|
|
118
143
|
}
|
|
144
|
+
export interface GetMonitoringRegionsRegion {
|
|
145
|
+
/**
|
|
146
|
+
* 3-letter city code identifying the location of the monitor.
|
|
147
|
+
*/
|
|
148
|
+
code?: string;
|
|
149
|
+
/**
|
|
150
|
+
* City name identifying the location of the monitor.
|
|
151
|
+
*/
|
|
152
|
+
name?: string;
|
|
153
|
+
/**
|
|
154
|
+
* A list of IPv4 and IPv6 subnets the monitor sources requests from.
|
|
155
|
+
*/
|
|
156
|
+
subnets?: string[];
|
|
157
|
+
}
|
|
119
158
|
export interface GetNetworksNetwork {
|
|
120
159
|
/**
|
|
121
160
|
* Label associated with the network.
|