@pulumi/dnsimple 3.4.0 → 3.4.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/domain.d.ts +84 -0
- package/domain.js +75 -0
- package/domain.js.map +1 -1
- package/emailForward.d.ts +52 -0
- package/emailForward.js +19 -0
- package/emailForward.js.map +1 -1
- package/getCertificate.d.ts +90 -0
- package/getCertificate.js +54 -0
- package/getCertificate.js.map +1 -0
- package/getZone.d.ts +78 -0
- package/getZone.js +73 -0
- package/getZone.js.map +1 -0
- package/index.d.ts +6 -0
- package/index.js +7 -1
- package/index.js.map +1 -1
- package/letsEncryptCertificate.d.ts +75 -0
- package/letsEncryptCertificate.js +18 -0
- package/letsEncryptCertificate.js.map +1 -1
- package/package.json +2 -3
- package/package.json.bak +1 -2
- package/provider.js +1 -1
- package/provider.js.map +1 -1
- package/record.d.ts +6 -0
- package/record.js +8 -0
- package/record.js.map +1 -1
- package/utilities.d.ts +4 -0
- package/utilities.js +33 -1
- package/utilities.js.map +1 -1
- package/zoneRecord.d.ts +124 -0
- package/zoneRecord.js +58 -0
- package/zoneRecord.js.map +1 -1
- package/package.json.dev +0 -28
- package/scripts/install-pulumi-plugin.js +0 -21
package/domain.d.ts
CHANGED
|
@@ -1,4 +1,79 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides a DNSimple domain resource.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* <!--Start PulumiCodeChooser -->
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as dnsimple from "@pulumi/dnsimple";
|
|
11
|
+
*
|
|
12
|
+
* // Create a domain
|
|
13
|
+
* const foobar = new dnsimple.Domain("foobar", {name: _var.dnsimple.domain});
|
|
14
|
+
* ```
|
|
15
|
+
* <!--End PulumiCodeChooser -->
|
|
16
|
+
*
|
|
17
|
+
* ## Import
|
|
18
|
+
*
|
|
19
|
+
* DNSimple domains can be imported using their numeric record ID.
|
|
20
|
+
*
|
|
21
|
+
* ```sh
|
|
22
|
+
* $ pulumi import dnsimple:index/domain:Domain resource_name 5678
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* The record ID can be found within [DNSimple Domains API](https://developer.dnsimple.com/v2/domains/#listDomains). Check out [Authentication](https://developer.dnsimple.com/v2/#authentication) in API Overview for available options.
|
|
26
|
+
*
|
|
27
|
+
* $ curl -u 'EMAIL:PASSWORD' https://api.dnsimple.com/v2/1234/domains?name_like=example.com | jq
|
|
28
|
+
*
|
|
29
|
+
* {
|
|
30
|
+
*
|
|
31
|
+
* "data": [
|
|
32
|
+
*
|
|
33
|
+
* {
|
|
34
|
+
*
|
|
35
|
+
* "id": 5678,
|
|
36
|
+
*
|
|
37
|
+
* "account_id": 1234,
|
|
38
|
+
*
|
|
39
|
+
* "registrant_id": null,
|
|
40
|
+
*
|
|
41
|
+
* "name": "example.com",
|
|
42
|
+
*
|
|
43
|
+
* "unicode_name": "example.com",
|
|
44
|
+
*
|
|
45
|
+
* "state": "hosted",
|
|
46
|
+
*
|
|
47
|
+
* "auto_renew": false,
|
|
48
|
+
*
|
|
49
|
+
* "private_whois": false,
|
|
50
|
+
*
|
|
51
|
+
* "expires_on": null,
|
|
52
|
+
*
|
|
53
|
+
* "expires_at": null,
|
|
54
|
+
*
|
|
55
|
+
* "created_at": "2021-10-01T00:00:00Z",
|
|
56
|
+
*
|
|
57
|
+
* "updated_at": "2021-10-01T00:00:00Z"
|
|
58
|
+
*
|
|
59
|
+
* }
|
|
60
|
+
*
|
|
61
|
+
* ],
|
|
62
|
+
*
|
|
63
|
+
* "pagination": {
|
|
64
|
+
*
|
|
65
|
+
* "current_page": 1,
|
|
66
|
+
*
|
|
67
|
+
* "per_page": 30,
|
|
68
|
+
*
|
|
69
|
+
* "total_entries": 1,
|
|
70
|
+
*
|
|
71
|
+
* "total_pages": 1
|
|
72
|
+
*
|
|
73
|
+
* }
|
|
74
|
+
*
|
|
75
|
+
* }
|
|
76
|
+
*/
|
|
2
77
|
export declare class Domain extends pulumi.CustomResource {
|
|
3
78
|
/**
|
|
4
79
|
* Get an existing Domain resource's state with the given name, ID, and optional extra
|
|
@@ -17,6 +92,9 @@ export declare class Domain extends pulumi.CustomResource {
|
|
|
17
92
|
static isInstance(obj: any): obj is Domain;
|
|
18
93
|
readonly accountId: pulumi.Output<number>;
|
|
19
94
|
readonly autoRenew: pulumi.Output<boolean>;
|
|
95
|
+
/**
|
|
96
|
+
* The domain name to be created
|
|
97
|
+
*/
|
|
20
98
|
readonly name: pulumi.Output<string>;
|
|
21
99
|
readonly privateWhois: pulumi.Output<boolean>;
|
|
22
100
|
readonly registrantId: pulumi.Output<number>;
|
|
@@ -37,6 +115,9 @@ export declare class Domain extends pulumi.CustomResource {
|
|
|
37
115
|
export interface DomainState {
|
|
38
116
|
accountId?: pulumi.Input<number>;
|
|
39
117
|
autoRenew?: pulumi.Input<boolean>;
|
|
118
|
+
/**
|
|
119
|
+
* The domain name to be created
|
|
120
|
+
*/
|
|
40
121
|
name?: pulumi.Input<string>;
|
|
41
122
|
privateWhois?: pulumi.Input<boolean>;
|
|
42
123
|
registrantId?: pulumi.Input<number>;
|
|
@@ -47,5 +128,8 @@ export interface DomainState {
|
|
|
47
128
|
* The set of arguments for constructing a Domain resource.
|
|
48
129
|
*/
|
|
49
130
|
export interface DomainArgs {
|
|
131
|
+
/**
|
|
132
|
+
* The domain name to be created
|
|
133
|
+
*/
|
|
50
134
|
name: pulumi.Input<string>;
|
|
51
135
|
}
|
package/domain.js
CHANGED
|
@@ -5,6 +5,81 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.Domain = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a DNSimple domain resource.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* <!--Start PulumiCodeChooser -->
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as dnsimple from "@pulumi/dnsimple";
|
|
17
|
+
*
|
|
18
|
+
* // Create a domain
|
|
19
|
+
* const foobar = new dnsimple.Domain("foobar", {name: _var.dnsimple.domain});
|
|
20
|
+
* ```
|
|
21
|
+
* <!--End PulumiCodeChooser -->
|
|
22
|
+
*
|
|
23
|
+
* ## Import
|
|
24
|
+
*
|
|
25
|
+
* DNSimple domains can be imported using their numeric record ID.
|
|
26
|
+
*
|
|
27
|
+
* ```sh
|
|
28
|
+
* $ pulumi import dnsimple:index/domain:Domain resource_name 5678
|
|
29
|
+
* ```
|
|
30
|
+
*
|
|
31
|
+
* The record ID can be found within [DNSimple Domains API](https://developer.dnsimple.com/v2/domains/#listDomains). Check out [Authentication](https://developer.dnsimple.com/v2/#authentication) in API Overview for available options.
|
|
32
|
+
*
|
|
33
|
+
* $ curl -u 'EMAIL:PASSWORD' https://api.dnsimple.com/v2/1234/domains?name_like=example.com | jq
|
|
34
|
+
*
|
|
35
|
+
* {
|
|
36
|
+
*
|
|
37
|
+
* "data": [
|
|
38
|
+
*
|
|
39
|
+
* {
|
|
40
|
+
*
|
|
41
|
+
* "id": 5678,
|
|
42
|
+
*
|
|
43
|
+
* "account_id": 1234,
|
|
44
|
+
*
|
|
45
|
+
* "registrant_id": null,
|
|
46
|
+
*
|
|
47
|
+
* "name": "example.com",
|
|
48
|
+
*
|
|
49
|
+
* "unicode_name": "example.com",
|
|
50
|
+
*
|
|
51
|
+
* "state": "hosted",
|
|
52
|
+
*
|
|
53
|
+
* "auto_renew": false,
|
|
54
|
+
*
|
|
55
|
+
* "private_whois": false,
|
|
56
|
+
*
|
|
57
|
+
* "expires_on": null,
|
|
58
|
+
*
|
|
59
|
+
* "expires_at": null,
|
|
60
|
+
*
|
|
61
|
+
* "created_at": "2021-10-01T00:00:00Z",
|
|
62
|
+
*
|
|
63
|
+
* "updated_at": "2021-10-01T00:00:00Z"
|
|
64
|
+
*
|
|
65
|
+
* }
|
|
66
|
+
*
|
|
67
|
+
* ],
|
|
68
|
+
*
|
|
69
|
+
* "pagination": {
|
|
70
|
+
*
|
|
71
|
+
* "current_page": 1,
|
|
72
|
+
*
|
|
73
|
+
* "per_page": 30,
|
|
74
|
+
*
|
|
75
|
+
* "total_entries": 1,
|
|
76
|
+
*
|
|
77
|
+
* "total_pages": 1
|
|
78
|
+
*
|
|
79
|
+
* }
|
|
80
|
+
*
|
|
81
|
+
* }
|
|
82
|
+
*/
|
|
8
83
|
class Domain extends pulumi.CustomResource {
|
|
9
84
|
/**
|
|
10
85
|
* Get an existing Domain resource's state with the given name, ID, and optional extra
|
package/domain.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"domain.js","sourceRoot":"","sources":["../domain.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;
|
|
1
|
+
{"version":3,"file":"domain.js","sourceRoot":"","sources":["../domain.ts"],"names":[],"mappings":"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"}
|
package/emailForward.d.ts
CHANGED
|
@@ -1,4 +1,23 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides a DNSimple email forward resource.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* <!--Start PulumiCodeChooser -->
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as dnsimple from "@pulumi/dnsimple";
|
|
11
|
+
*
|
|
12
|
+
* // Add an email forwarding rule to the domain
|
|
13
|
+
* const foobar = new dnsimple.EmailForward("foobar", {
|
|
14
|
+
* aliasName: "sales",
|
|
15
|
+
* destinationEmail: "jane.doe@example.com",
|
|
16
|
+
* domain: _var.dnsimple_domain,
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
* <!--End PulumiCodeChooser -->
|
|
20
|
+
*/
|
|
2
21
|
export declare class EmailForward extends pulumi.CustomResource {
|
|
3
22
|
/**
|
|
4
23
|
* Get an existing EmailForward resource's state with the given name, ID, and optional extra
|
|
@@ -15,9 +34,21 @@ export declare class EmailForward extends pulumi.CustomResource {
|
|
|
15
34
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
16
35
|
*/
|
|
17
36
|
static isInstance(obj: any): obj is EmailForward;
|
|
37
|
+
/**
|
|
38
|
+
* The source email address on the domain
|
|
39
|
+
*/
|
|
18
40
|
readonly aliasEmail: pulumi.Output<string>;
|
|
41
|
+
/**
|
|
42
|
+
* The name part (the part before the @) of the source email address on the domain
|
|
43
|
+
*/
|
|
19
44
|
readonly aliasName: pulumi.Output<string>;
|
|
45
|
+
/**
|
|
46
|
+
* The destination email address on another domain
|
|
47
|
+
*/
|
|
20
48
|
readonly destinationEmail: pulumi.Output<string>;
|
|
49
|
+
/**
|
|
50
|
+
* The domain to add the email forwarding rule to
|
|
51
|
+
*/
|
|
21
52
|
readonly domain: pulumi.Output<string>;
|
|
22
53
|
/**
|
|
23
54
|
* Create a EmailForward resource with the given unique name, arguments, and options.
|
|
@@ -32,16 +63,37 @@ export declare class EmailForward extends pulumi.CustomResource {
|
|
|
32
63
|
* Input properties used for looking up and filtering EmailForward resources.
|
|
33
64
|
*/
|
|
34
65
|
export interface EmailForwardState {
|
|
66
|
+
/**
|
|
67
|
+
* The source email address on the domain
|
|
68
|
+
*/
|
|
35
69
|
aliasEmail?: pulumi.Input<string>;
|
|
70
|
+
/**
|
|
71
|
+
* The name part (the part before the @) of the source email address on the domain
|
|
72
|
+
*/
|
|
36
73
|
aliasName?: pulumi.Input<string>;
|
|
74
|
+
/**
|
|
75
|
+
* The destination email address on another domain
|
|
76
|
+
*/
|
|
37
77
|
destinationEmail?: pulumi.Input<string>;
|
|
78
|
+
/**
|
|
79
|
+
* The domain to add the email forwarding rule to
|
|
80
|
+
*/
|
|
38
81
|
domain?: pulumi.Input<string>;
|
|
39
82
|
}
|
|
40
83
|
/**
|
|
41
84
|
* The set of arguments for constructing a EmailForward resource.
|
|
42
85
|
*/
|
|
43
86
|
export interface EmailForwardArgs {
|
|
87
|
+
/**
|
|
88
|
+
* The name part (the part before the @) of the source email address on the domain
|
|
89
|
+
*/
|
|
44
90
|
aliasName: pulumi.Input<string>;
|
|
91
|
+
/**
|
|
92
|
+
* The destination email address on another domain
|
|
93
|
+
*/
|
|
45
94
|
destinationEmail: pulumi.Input<string>;
|
|
95
|
+
/**
|
|
96
|
+
* The domain to add the email forwarding rule to
|
|
97
|
+
*/
|
|
46
98
|
domain: pulumi.Input<string>;
|
|
47
99
|
}
|
package/emailForward.js
CHANGED
|
@@ -5,6 +5,25 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.EmailForward = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a DNSimple email forward resource.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* <!--Start PulumiCodeChooser -->
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as dnsimple from "@pulumi/dnsimple";
|
|
17
|
+
*
|
|
18
|
+
* // Add an email forwarding rule to the domain
|
|
19
|
+
* const foobar = new dnsimple.EmailForward("foobar", {
|
|
20
|
+
* aliasName: "sales",
|
|
21
|
+
* destinationEmail: "jane.doe@example.com",
|
|
22
|
+
* domain: _var.dnsimple_domain,
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
* <!--End PulumiCodeChooser -->
|
|
26
|
+
*/
|
|
8
27
|
class EmailForward extends pulumi.CustomResource {
|
|
9
28
|
/**
|
|
10
29
|
* Get an existing EmailForward resource's state with the given name, ID, and optional extra
|
package/emailForward.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"emailForward.js","sourceRoot":"","sources":["../emailForward.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;
|
|
1
|
+
{"version":3,"file":"emailForward.js","sourceRoot":"","sources":["../emailForward.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides a DNSimple certificate data source.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* <!--Start PulumiCodeChooser -->
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as dnsimple from "@pulumi/dnsimple";
|
|
11
|
+
*
|
|
12
|
+
* const foobar = dnsimple.getCertificate({
|
|
13
|
+
* certificateId: _var.dnsimple_certificate_id,
|
|
14
|
+
* domain: _var.dnsimple_domain,
|
|
15
|
+
* });
|
|
16
|
+
* ```
|
|
17
|
+
* <!--End PulumiCodeChooser -->
|
|
18
|
+
*/
|
|
19
|
+
export declare function getCertificate(args: GetCertificateArgs, opts?: pulumi.InvokeOptions): Promise<GetCertificateResult>;
|
|
20
|
+
/**
|
|
21
|
+
* A collection of arguments for invoking getCertificate.
|
|
22
|
+
*/
|
|
23
|
+
export interface GetCertificateArgs {
|
|
24
|
+
/**
|
|
25
|
+
* The ID of the SSL Certificate
|
|
26
|
+
*/
|
|
27
|
+
certificateId: string;
|
|
28
|
+
/**
|
|
29
|
+
* The domain of the SSL Certificate
|
|
30
|
+
*/
|
|
31
|
+
domain: string;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* A collection of values returned by getCertificate.
|
|
35
|
+
*/
|
|
36
|
+
export interface GetCertificateResult {
|
|
37
|
+
/**
|
|
38
|
+
* A list of certificates that make up the chain
|
|
39
|
+
*/
|
|
40
|
+
readonly certificateChains: string[];
|
|
41
|
+
readonly certificateId: string;
|
|
42
|
+
readonly domain: string;
|
|
43
|
+
/**
|
|
44
|
+
* The provider-assigned unique ID for this managed resource.
|
|
45
|
+
*/
|
|
46
|
+
readonly id: string;
|
|
47
|
+
/**
|
|
48
|
+
* The corresponding Private Key for the SSL Certificate
|
|
49
|
+
*/
|
|
50
|
+
readonly privateKey: string;
|
|
51
|
+
/**
|
|
52
|
+
* The Root Certificate of the issuing CA
|
|
53
|
+
*/
|
|
54
|
+
readonly rootCertificate: string;
|
|
55
|
+
/**
|
|
56
|
+
* The SSL Certificate
|
|
57
|
+
*/
|
|
58
|
+
readonly serverCertificate: string;
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* Provides a DNSimple certificate data source.
|
|
62
|
+
*
|
|
63
|
+
* ## Example Usage
|
|
64
|
+
*
|
|
65
|
+
* <!--Start PulumiCodeChooser -->
|
|
66
|
+
* ```typescript
|
|
67
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
68
|
+
* import * as dnsimple from "@pulumi/dnsimple";
|
|
69
|
+
*
|
|
70
|
+
* const foobar = dnsimple.getCertificate({
|
|
71
|
+
* certificateId: _var.dnsimple_certificate_id,
|
|
72
|
+
* domain: _var.dnsimple_domain,
|
|
73
|
+
* });
|
|
74
|
+
* ```
|
|
75
|
+
* <!--End PulumiCodeChooser -->
|
|
76
|
+
*/
|
|
77
|
+
export declare function getCertificateOutput(args: GetCertificateOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetCertificateResult>;
|
|
78
|
+
/**
|
|
79
|
+
* A collection of arguments for invoking getCertificate.
|
|
80
|
+
*/
|
|
81
|
+
export interface GetCertificateOutputArgs {
|
|
82
|
+
/**
|
|
83
|
+
* The ID of the SSL Certificate
|
|
84
|
+
*/
|
|
85
|
+
certificateId: pulumi.Input<string>;
|
|
86
|
+
/**
|
|
87
|
+
* The domain of the SSL Certificate
|
|
88
|
+
*/
|
|
89
|
+
domain: pulumi.Input<string>;
|
|
90
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
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.getCertificateOutput = exports.getCertificate = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a DNSimple certificate data source.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* <!--Start PulumiCodeChooser -->
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as dnsimple from "@pulumi/dnsimple";
|
|
17
|
+
*
|
|
18
|
+
* const foobar = dnsimple.getCertificate({
|
|
19
|
+
* certificateId: _var.dnsimple_certificate_id,
|
|
20
|
+
* domain: _var.dnsimple_domain,
|
|
21
|
+
* });
|
|
22
|
+
* ```
|
|
23
|
+
* <!--End PulumiCodeChooser -->
|
|
24
|
+
*/
|
|
25
|
+
function getCertificate(args, opts) {
|
|
26
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
27
|
+
return pulumi.runtime.invoke("dnsimple:index/getCertificate:getCertificate", {
|
|
28
|
+
"certificateId": args.certificateId,
|
|
29
|
+
"domain": args.domain,
|
|
30
|
+
}, opts);
|
|
31
|
+
}
|
|
32
|
+
exports.getCertificate = getCertificate;
|
|
33
|
+
/**
|
|
34
|
+
* Provides a DNSimple certificate data source.
|
|
35
|
+
*
|
|
36
|
+
* ## Example Usage
|
|
37
|
+
*
|
|
38
|
+
* <!--Start PulumiCodeChooser -->
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
41
|
+
* import * as dnsimple from "@pulumi/dnsimple";
|
|
42
|
+
*
|
|
43
|
+
* const foobar = dnsimple.getCertificate({
|
|
44
|
+
* certificateId: _var.dnsimple_certificate_id,
|
|
45
|
+
* domain: _var.dnsimple_domain,
|
|
46
|
+
* });
|
|
47
|
+
* ```
|
|
48
|
+
* <!--End PulumiCodeChooser -->
|
|
49
|
+
*/
|
|
50
|
+
function getCertificateOutput(args, opts) {
|
|
51
|
+
return pulumi.output(args).apply((a) => getCertificate(a, opts));
|
|
52
|
+
}
|
|
53
|
+
exports.getCertificateOutput = getCertificateOutput;
|
|
54
|
+
//# sourceMappingURL=getCertificate.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getCertificate.js","sourceRoot":"","sources":["../getCertificate.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC;AA2CD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
|
package/getZone.d.ts
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Get information about a DNSimple zone.
|
|
4
|
+
*
|
|
5
|
+
* Get zone:
|
|
6
|
+
*
|
|
7
|
+
* <!--Start PulumiCodeChooser -->
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as dnsimple from "@pulumi/dnsimple";
|
|
11
|
+
*
|
|
12
|
+
* const foobar = dnsimple.getZone({
|
|
13
|
+
* name: "dnsimple.com",
|
|
14
|
+
* });
|
|
15
|
+
* ```
|
|
16
|
+
* <!--End PulumiCodeChooser -->
|
|
17
|
+
*
|
|
18
|
+
* The following arguments are supported:
|
|
19
|
+
*
|
|
20
|
+
* * `name` - (Required) The name of the zone
|
|
21
|
+
*
|
|
22
|
+
* The following attributes are exported:
|
|
23
|
+
*
|
|
24
|
+
* * `id` - The zone ID
|
|
25
|
+
* * `accountId` - The account ID
|
|
26
|
+
* * `name` - The name of the zone
|
|
27
|
+
* * `reverse` - True for a reverse zone, false for a forward zone.
|
|
28
|
+
*/
|
|
29
|
+
export declare function getZone(args: GetZoneArgs, opts?: pulumi.InvokeOptions): Promise<GetZoneResult>;
|
|
30
|
+
/**
|
|
31
|
+
* A collection of arguments for invoking getZone.
|
|
32
|
+
*/
|
|
33
|
+
export interface GetZoneArgs {
|
|
34
|
+
name: string;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* A collection of values returned by getZone.
|
|
38
|
+
*/
|
|
39
|
+
export interface GetZoneResult {
|
|
40
|
+
readonly accountId: number;
|
|
41
|
+
readonly id: number;
|
|
42
|
+
readonly name: string;
|
|
43
|
+
readonly reverse: boolean;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Get information about a DNSimple zone.
|
|
47
|
+
*
|
|
48
|
+
* Get zone:
|
|
49
|
+
*
|
|
50
|
+
* <!--Start PulumiCodeChooser -->
|
|
51
|
+
* ```typescript
|
|
52
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
53
|
+
* import * as dnsimple from "@pulumi/dnsimple";
|
|
54
|
+
*
|
|
55
|
+
* const foobar = dnsimple.getZone({
|
|
56
|
+
* name: "dnsimple.com",
|
|
57
|
+
* });
|
|
58
|
+
* ```
|
|
59
|
+
* <!--End PulumiCodeChooser -->
|
|
60
|
+
*
|
|
61
|
+
* The following arguments are supported:
|
|
62
|
+
*
|
|
63
|
+
* * `name` - (Required) The name of the zone
|
|
64
|
+
*
|
|
65
|
+
* The following attributes are exported:
|
|
66
|
+
*
|
|
67
|
+
* * `id` - The zone ID
|
|
68
|
+
* * `accountId` - The account ID
|
|
69
|
+
* * `name` - The name of the zone
|
|
70
|
+
* * `reverse` - True for a reverse zone, false for a forward zone.
|
|
71
|
+
*/
|
|
72
|
+
export declare function getZoneOutput(args: GetZoneOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetZoneResult>;
|
|
73
|
+
/**
|
|
74
|
+
* A collection of arguments for invoking getZone.
|
|
75
|
+
*/
|
|
76
|
+
export interface GetZoneOutputArgs {
|
|
77
|
+
name: pulumi.Input<string>;
|
|
78
|
+
}
|
package/getZone.js
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
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.getZoneOutput = exports.getZone = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Get information about a DNSimple zone.
|
|
10
|
+
*
|
|
11
|
+
* Get zone:
|
|
12
|
+
*
|
|
13
|
+
* <!--Start PulumiCodeChooser -->
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as dnsimple from "@pulumi/dnsimple";
|
|
17
|
+
*
|
|
18
|
+
* const foobar = dnsimple.getZone({
|
|
19
|
+
* name: "dnsimple.com",
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
* <!--End PulumiCodeChooser -->
|
|
23
|
+
*
|
|
24
|
+
* The following arguments are supported:
|
|
25
|
+
*
|
|
26
|
+
* * `name` - (Required) The name of the zone
|
|
27
|
+
*
|
|
28
|
+
* The following attributes are exported:
|
|
29
|
+
*
|
|
30
|
+
* * `id` - The zone ID
|
|
31
|
+
* * `accountId` - The account ID
|
|
32
|
+
* * `name` - The name of the zone
|
|
33
|
+
* * `reverse` - True for a reverse zone, false for a forward zone.
|
|
34
|
+
*/
|
|
35
|
+
function getZone(args, opts) {
|
|
36
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
37
|
+
return pulumi.runtime.invoke("dnsimple:index/getZone:getZone", {
|
|
38
|
+
"name": args.name,
|
|
39
|
+
}, opts);
|
|
40
|
+
}
|
|
41
|
+
exports.getZone = getZone;
|
|
42
|
+
/**
|
|
43
|
+
* Get information about a DNSimple zone.
|
|
44
|
+
*
|
|
45
|
+
* Get zone:
|
|
46
|
+
*
|
|
47
|
+
* <!--Start PulumiCodeChooser -->
|
|
48
|
+
* ```typescript
|
|
49
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
50
|
+
* import * as dnsimple from "@pulumi/dnsimple";
|
|
51
|
+
*
|
|
52
|
+
* const foobar = dnsimple.getZone({
|
|
53
|
+
* name: "dnsimple.com",
|
|
54
|
+
* });
|
|
55
|
+
* ```
|
|
56
|
+
* <!--End PulumiCodeChooser -->
|
|
57
|
+
*
|
|
58
|
+
* The following arguments are supported:
|
|
59
|
+
*
|
|
60
|
+
* * `name` - (Required) The name of the zone
|
|
61
|
+
*
|
|
62
|
+
* The following attributes are exported:
|
|
63
|
+
*
|
|
64
|
+
* * `id` - The zone ID
|
|
65
|
+
* * `accountId` - The account ID
|
|
66
|
+
* * `name` - The name of the zone
|
|
67
|
+
* * `reverse` - True for a reverse zone, false for a forward zone.
|
|
68
|
+
*/
|
|
69
|
+
function getZoneOutput(args, opts) {
|
|
70
|
+
return pulumi.output(args).apply((a) => getZone(a, opts));
|
|
71
|
+
}
|
|
72
|
+
exports.getZoneOutput = getZoneOutput;
|
|
73
|
+
//# sourceMappingURL=getZone.js.map
|
package/getZone.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getZone.js","sourceRoot":"","sources":["../getZone.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAElE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0BAMC;AAkBD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClE,CAAC;AAFD,sCAEC"}
|
package/index.d.ts
CHANGED
|
@@ -4,6 +4,12 @@ export declare const Domain: typeof import("./domain").Domain;
|
|
|
4
4
|
export { EmailForwardArgs, EmailForwardState } from "./emailForward";
|
|
5
5
|
export type EmailForward = import("./emailForward").EmailForward;
|
|
6
6
|
export declare const EmailForward: typeof import("./emailForward").EmailForward;
|
|
7
|
+
export { GetCertificateArgs, GetCertificateResult, GetCertificateOutputArgs } from "./getCertificate";
|
|
8
|
+
export declare const getCertificate: typeof import("./getCertificate").getCertificate;
|
|
9
|
+
export declare const getCertificateOutput: typeof import("./getCertificate").getCertificateOutput;
|
|
10
|
+
export { GetZoneArgs, GetZoneResult, GetZoneOutputArgs } from "./getZone";
|
|
11
|
+
export declare const getZone: typeof import("./getZone").getZone;
|
|
12
|
+
export declare const getZoneOutput: typeof import("./getZone").getZoneOutput;
|
|
7
13
|
export { LetsEncryptCertificateArgs, LetsEncryptCertificateState } from "./letsEncryptCertificate";
|
|
8
14
|
export type LetsEncryptCertificate = import("./letsEncryptCertificate").LetsEncryptCertificate;
|
|
9
15
|
export declare const LetsEncryptCertificate: typeof import("./letsEncryptCertificate").LetsEncryptCertificate;
|
package/index.js
CHANGED
|
@@ -16,13 +16,19 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.config = exports.ZoneRecord = exports.Record = exports.Provider = exports.LetsEncryptCertificate = exports.EmailForward = exports.Domain = void 0;
|
|
19
|
+
exports.config = exports.ZoneRecord = exports.Record = exports.Provider = exports.LetsEncryptCertificate = exports.getZoneOutput = exports.getZone = exports.getCertificateOutput = exports.getCertificate = exports.EmailForward = exports.Domain = void 0;
|
|
20
20
|
const pulumi = require("@pulumi/pulumi");
|
|
21
21
|
const utilities = require("./utilities");
|
|
22
22
|
exports.Domain = null;
|
|
23
23
|
utilities.lazyLoad(exports, ["Domain"], () => require("./domain"));
|
|
24
24
|
exports.EmailForward = null;
|
|
25
25
|
utilities.lazyLoad(exports, ["EmailForward"], () => require("./emailForward"));
|
|
26
|
+
exports.getCertificate = null;
|
|
27
|
+
exports.getCertificateOutput = null;
|
|
28
|
+
utilities.lazyLoad(exports, ["getCertificate", "getCertificateOutput"], () => require("./getCertificate"));
|
|
29
|
+
exports.getZone = null;
|
|
30
|
+
exports.getZoneOutput = null;
|
|
31
|
+
utilities.lazyLoad(exports, ["getZone", "getZoneOutput"], () => require("./getZone"));
|
|
26
32
|
exports.LetsEncryptCertificate = null;
|
|
27
33
|
utilities.lazyLoad(exports, ["LetsEncryptCertificate"], () => require("./letsEncryptCertificate"));
|
|
28
34
|
exports.Provider = null;
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAK5B,QAAA,MAAM,GAAqC,IAAW,CAAC;AACpE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;AAItD,QAAA,YAAY,GAAiD,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|