@pulumi/dnsimple 4.4.0-alpha.1750225791 → 4.4.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/getZone.d.ts +0 -52
- package/getZone.js +0 -52
- package/getZone.js.map +1 -1
- package/package.json +2 -2
package/getZone.d.ts
CHANGED
|
@@ -1,30 +1,4 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
/**
|
|
3
|
-
* Get information about a DNSimple zone.
|
|
4
|
-
*
|
|
5
|
-
* !> Data source is getting deprecated in favor of `dnsimple\_zone` resource.
|
|
6
|
-
*
|
|
7
|
-
* Get zone:
|
|
8
|
-
*
|
|
9
|
-
* ```typescript
|
|
10
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
-
* import * as dnsimple from "@pulumi/dnsimple";
|
|
12
|
-
*
|
|
13
|
-
* const foobar = dnsimple.getZone({
|
|
14
|
-
* name: "dnsimple.com",
|
|
15
|
-
* });
|
|
16
|
-
* ```
|
|
17
|
-
*
|
|
18
|
-
* The following arguments are supported:
|
|
19
|
-
*
|
|
20
|
-
* * `name` - (Required) The name of the zone
|
|
21
|
-
*
|
|
22
|
-
* The following additional attributes are exported:
|
|
23
|
-
*
|
|
24
|
-
* * `id` - The zone ID
|
|
25
|
-
* * `accountId` - The account ID
|
|
26
|
-
* * `reverse` - True for a reverse zone, false for a forward zone.
|
|
27
|
-
*/
|
|
28
2
|
export declare function getZone(args: GetZoneArgs, opts?: pulumi.InvokeOptions): Promise<GetZoneResult>;
|
|
29
3
|
/**
|
|
30
4
|
* A collection of arguments for invoking getZone.
|
|
@@ -41,32 +15,6 @@ export interface GetZoneResult {
|
|
|
41
15
|
readonly name: string;
|
|
42
16
|
readonly reverse: boolean;
|
|
43
17
|
}
|
|
44
|
-
/**
|
|
45
|
-
* Get information about a DNSimple zone.
|
|
46
|
-
*
|
|
47
|
-
* !> Data source is getting deprecated in favor of `dnsimple\_zone` resource.
|
|
48
|
-
*
|
|
49
|
-
* Get zone:
|
|
50
|
-
*
|
|
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
|
-
*
|
|
60
|
-
* The following arguments are supported:
|
|
61
|
-
*
|
|
62
|
-
* * `name` - (Required) The name of the zone
|
|
63
|
-
*
|
|
64
|
-
* The following additional attributes are exported:
|
|
65
|
-
*
|
|
66
|
-
* * `id` - The zone ID
|
|
67
|
-
* * `accountId` - The account ID
|
|
68
|
-
* * `reverse` - True for a reverse zone, false for a forward zone.
|
|
69
|
-
*/
|
|
70
18
|
export declare function getZoneOutput(args: GetZoneOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetZoneResult>;
|
|
71
19
|
/**
|
|
72
20
|
* A collection of arguments for invoking getZone.
|
package/getZone.js
CHANGED
|
@@ -5,32 +5,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.getZoneOutput = exports.getZone = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
-
/**
|
|
9
|
-
* Get information about a DNSimple zone.
|
|
10
|
-
*
|
|
11
|
-
* !> Data source is getting deprecated in favor of `dnsimple\_zone` resource.
|
|
12
|
-
*
|
|
13
|
-
* Get zone:
|
|
14
|
-
*
|
|
15
|
-
* ```typescript
|
|
16
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
-
* import * as dnsimple from "@pulumi/dnsimple";
|
|
18
|
-
*
|
|
19
|
-
* const foobar = dnsimple.getZone({
|
|
20
|
-
* name: "dnsimple.com",
|
|
21
|
-
* });
|
|
22
|
-
* ```
|
|
23
|
-
*
|
|
24
|
-
* The following arguments are supported:
|
|
25
|
-
*
|
|
26
|
-
* * `name` - (Required) The name of the zone
|
|
27
|
-
*
|
|
28
|
-
* The following additional attributes are exported:
|
|
29
|
-
*
|
|
30
|
-
* * `id` - The zone ID
|
|
31
|
-
* * `accountId` - The account ID
|
|
32
|
-
* * `reverse` - True for a reverse zone, false for a forward zone.
|
|
33
|
-
*/
|
|
34
8
|
function getZone(args, opts) {
|
|
35
9
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
36
10
|
return pulumi.runtime.invoke("dnsimple:index/getZone:getZone", {
|
|
@@ -38,32 +12,6 @@ function getZone(args, opts) {
|
|
|
38
12
|
}, opts);
|
|
39
13
|
}
|
|
40
14
|
exports.getZone = getZone;
|
|
41
|
-
/**
|
|
42
|
-
* Get information about a DNSimple zone.
|
|
43
|
-
*
|
|
44
|
-
* !> Data source is getting deprecated in favor of `dnsimple\_zone` resource.
|
|
45
|
-
*
|
|
46
|
-
* Get zone:
|
|
47
|
-
*
|
|
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
|
-
*
|
|
57
|
-
* The following arguments are supported:
|
|
58
|
-
*
|
|
59
|
-
* * `name` - (Required) The name of the zone
|
|
60
|
-
*
|
|
61
|
-
* The following additional attributes are exported:
|
|
62
|
-
*
|
|
63
|
-
* * `id` - The zone ID
|
|
64
|
-
* * `accountId` - The account ID
|
|
65
|
-
* * `reverse` - True for a reverse zone, false for a forward zone.
|
|
66
|
-
*/
|
|
67
15
|
function getZoneOutput(args, opts) {
|
|
68
16
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
69
17
|
return pulumi.runtime.invokeOutput("dnsimple:index/getZone:getZone", {
|
package/getZone.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getZone.js","sourceRoot":"","sources":["../getZone.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getZone.js","sourceRoot":"","sources":["../getZone.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,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;AALD,0BAKC;AAkBD,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAAiC;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gCAAgC,EAAE;QACjE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sCAKC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/dnsimple",
|
|
3
|
-
"version": "4.4.0
|
|
3
|
+
"version": "4.4.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing dnsimple cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "dnsimple",
|
|
26
|
-
"version": "4.4.0
|
|
26
|
+
"version": "4.4.0"
|
|
27
27
|
}
|
|
28
28
|
}
|