pulumi-bunnynet 0.6.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/README.md +348 -0
- package/bin/_virtual/rolldown_runtime.mjs +37 -0
- package/bin/computeContainerApp.d.mts +128 -0
- package/bin/computeContainerApp.mjs +97 -0
- package/bin/computeContainerImageregistry.d.mts +86 -0
- package/bin/computeContainerImageregistry.mjs +82 -0
- package/bin/computeScript.d.mts +102 -0
- package/bin/computeScript.mjs +91 -0
- package/bin/computeScriptSecret.d.mts +86 -0
- package/bin/computeScriptSecret.mjs +81 -0
- package/bin/computeScriptVariable.d.mts +98 -0
- package/bin/computeScriptVariable.mjs +86 -0
- package/bin/config/index.d.mts +8 -0
- package/bin/config/index.mjs +9 -0
- package/bin/config/vars.d.mts +19 -0
- package/bin/config/vars.mjs +36 -0
- package/bin/dnsRecord.d.mts +289 -0
- package/bin/dnsRecord.mjs +183 -0
- package/bin/dnsZone.d.mts +146 -0
- package/bin/dnsZone.mjs +108 -0
- package/bin/getComputeContainerAppContainer.d.mts +29 -0
- package/bin/getComputeContainerAppContainer.mjs +31 -0
- package/bin/getComputeContainerAppContainerEndpoint.d.mts +39 -0
- package/bin/getComputeContainerAppContainerEndpoint.mjs +33 -0
- package/bin/getComputeContainerImageregistry.d.mts +29 -0
- package/bin/getComputeContainerImageregistry.mjs +31 -0
- package/bin/getDnsRecord.d.mts +51 -0
- package/bin/getDnsRecord.mjs +35 -0
- package/bin/getDnsZone.d.mts +33 -0
- package/bin/getDnsZone.mjs +25 -0
- package/bin/getRegion.d.mts +33 -0
- package/bin/getRegion.mjs +25 -0
- package/bin/getVideoLanguage.d.mts +33 -0
- package/bin/getVideoLanguage.mjs +25 -0
- package/bin/index.d.mts +80 -0
- package/bin/index.mjs +160 -0
- package/bin/package.json +61 -0
- package/bin/package.mjs +64 -0
- package/bin/provider.d.mts +66 -0
- package/bin/provider.mjs +60 -0
- package/bin/pullzone.d.mts +1079 -0
- package/bin/pullzone.mjs +580 -0
- package/bin/pullzoneEdgerule.d.mts +131 -0
- package/bin/pullzoneEdgerule.mjs +105 -0
- package/bin/pullzoneHostname.d.mts +142 -0
- package/bin/pullzoneHostname.mjs +106 -0
- package/bin/pullzoneOptimizerClass.d.mts +258 -0
- package/bin/pullzoneOptimizerClass.mjs +162 -0
- package/bin/storageFile.d.mts +137 -0
- package/bin/storageFile.mjs +110 -0
- package/bin/storageZone.d.mts +154 -0
- package/bin/storageZone.mjs +123 -0
- package/bin/streamCollection.d.mts +66 -0
- package/bin/streamCollection.mjs +66 -0
- package/bin/streamLibrary.d.mts +587 -0
- package/bin/streamLibrary.mjs +333 -0
- package/bin/streamVideo.d.mts +116 -0
- package/bin/streamVideo.mjs +91 -0
- package/bin/types/index.d.mts +9 -0
- package/bin/types/index.mjs +13 -0
- package/bin/types/input.d.mts +376 -0
- package/bin/types/input.mjs +5 -0
- package/bin/types/output.d.mts +381 -0
- package/bin/types/output.mjs +5 -0
- package/bin/utilities.mjs +61 -0
- package/package.json +61 -0
package/bin/dnsZone.mjs
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { __esm, __export } from "./_virtual/rolldown_runtime.mjs";
|
|
2
|
+
import { getPackage, init_utilities, resourceOptsDefaults } from "./utilities.mjs";
|
|
3
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
4
|
+
|
|
5
|
+
//#region dnsZone.ts
|
|
6
|
+
var dnsZone_exports = {};
|
|
7
|
+
__export(dnsZone_exports, { DnsZone: () => DnsZone });
|
|
8
|
+
var DnsZone;
|
|
9
|
+
var init_dnsZone = __esm({ "dnsZone.ts": (() => {
|
|
10
|
+
init_utilities();
|
|
11
|
+
DnsZone = class DnsZone extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing DnsZone resource's state with the given name, ID, and optional extra
|
|
14
|
+
* properties used to qualify the lookup.
|
|
15
|
+
*
|
|
16
|
+
* @param name The _unique_ name of the resulting resource.
|
|
17
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
18
|
+
* @param state Any extra arguments used during the lookup.
|
|
19
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
20
|
+
*/
|
|
21
|
+
static get(name, id, state, opts) {
|
|
22
|
+
return new DnsZone(name, state, {
|
|
23
|
+
...opts,
|
|
24
|
+
id
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
/** @internal */
|
|
28
|
+
static __pulumiType = "bunnynet:index/dnsZone:DnsZone";
|
|
29
|
+
/**
|
|
30
|
+
* Returns true if the given object is an instance of DnsZone. This is designed to work even
|
|
31
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
32
|
+
*/
|
|
33
|
+
static isInstance(obj) {
|
|
34
|
+
if (obj === void 0 || obj === null) return false;
|
|
35
|
+
return obj["__pulumiType"] === DnsZone.__pulumiType;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* The unique identifier for the DNS zone.
|
|
39
|
+
*/
|
|
40
|
+
dnsZoneId;
|
|
41
|
+
/**
|
|
42
|
+
* The domain name for the DNS zone.
|
|
43
|
+
*/
|
|
44
|
+
domain;
|
|
45
|
+
/**
|
|
46
|
+
* Indicates whether DNS logs are anonymized.
|
|
47
|
+
*/
|
|
48
|
+
logAnonymized;
|
|
49
|
+
/**
|
|
50
|
+
* Options: `Drop`, `OneDigit`
|
|
51
|
+
*/
|
|
52
|
+
logAnonymizedStyle;
|
|
53
|
+
/**
|
|
54
|
+
* Indicates whether permanent logging for DNS queries is enabled.
|
|
55
|
+
*/
|
|
56
|
+
logEnabled;
|
|
57
|
+
/**
|
|
58
|
+
* The primary nameserver for the DNS zone.
|
|
59
|
+
*/
|
|
60
|
+
nameserver1;
|
|
61
|
+
/**
|
|
62
|
+
* The secondary nameserver for the DNS zone.
|
|
63
|
+
*/
|
|
64
|
+
nameserver2;
|
|
65
|
+
/**
|
|
66
|
+
* Indicates whether custom nameservers are used.
|
|
67
|
+
*/
|
|
68
|
+
nameserverCustom;
|
|
69
|
+
/**
|
|
70
|
+
* The email address used in the Start of Authority (SOA) record for the DNS zone.
|
|
71
|
+
*/
|
|
72
|
+
soaEmail;
|
|
73
|
+
constructor(name, argsOrState, opts) {
|
|
74
|
+
let resourceInputs = {};
|
|
75
|
+
opts = opts || {};
|
|
76
|
+
if (opts.id) {
|
|
77
|
+
const state = argsOrState;
|
|
78
|
+
resourceInputs["dnsZoneId"] = state ? state.dnsZoneId : void 0;
|
|
79
|
+
resourceInputs["domain"] = state ? state.domain : void 0;
|
|
80
|
+
resourceInputs["logAnonymized"] = state ? state.logAnonymized : void 0;
|
|
81
|
+
resourceInputs["logAnonymizedStyle"] = state ? state.logAnonymizedStyle : void 0;
|
|
82
|
+
resourceInputs["logEnabled"] = state ? state.logEnabled : void 0;
|
|
83
|
+
resourceInputs["nameserver1"] = state ? state.nameserver1 : void 0;
|
|
84
|
+
resourceInputs["nameserver2"] = state ? state.nameserver2 : void 0;
|
|
85
|
+
resourceInputs["nameserverCustom"] = state ? state.nameserverCustom : void 0;
|
|
86
|
+
resourceInputs["soaEmail"] = state ? state.soaEmail : void 0;
|
|
87
|
+
} else {
|
|
88
|
+
const args = argsOrState;
|
|
89
|
+
if ((!args || args.domain === void 0) && !opts.urn) throw new Error("Missing required property 'domain'");
|
|
90
|
+
resourceInputs["domain"] = args ? args.domain : void 0;
|
|
91
|
+
resourceInputs["logAnonymized"] = args ? args.logAnonymized : void 0;
|
|
92
|
+
resourceInputs["logAnonymizedStyle"] = args ? args.logAnonymizedStyle : void 0;
|
|
93
|
+
resourceInputs["logEnabled"] = args ? args.logEnabled : void 0;
|
|
94
|
+
resourceInputs["nameserver1"] = args ? args.nameserver1 : void 0;
|
|
95
|
+
resourceInputs["nameserver2"] = args ? args.nameserver2 : void 0;
|
|
96
|
+
resourceInputs["nameserverCustom"] = args ? args.nameserverCustom : void 0;
|
|
97
|
+
resourceInputs["soaEmail"] = args ? args.soaEmail : void 0;
|
|
98
|
+
resourceInputs["dnsZoneId"] = void 0;
|
|
99
|
+
}
|
|
100
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts);
|
|
101
|
+
super(DnsZone.__pulumiType, name, resourceInputs, opts, false, getPackage());
|
|
102
|
+
}
|
|
103
|
+
};
|
|
104
|
+
}) });
|
|
105
|
+
|
|
106
|
+
//#endregion
|
|
107
|
+
init_dnsZone();
|
|
108
|
+
export { dnsZone_exports, init_dnsZone };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
|
|
3
|
+
//#region getComputeContainerAppContainer.d.ts
|
|
4
|
+
declare function getComputeContainerAppContainer(args: GetComputeContainerAppContainerArgs, opts?: pulumi.InvokeOptions): Promise<GetComputeContainerAppContainerResult>;
|
|
5
|
+
/**
|
|
6
|
+
* A collection of arguments for invoking getComputeContainerAppContainer.
|
|
7
|
+
*/
|
|
8
|
+
interface GetComputeContainerAppContainerArgs {
|
|
9
|
+
app: string;
|
|
10
|
+
name: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* A collection of values returned by getComputeContainerAppContainer.
|
|
14
|
+
*/
|
|
15
|
+
interface GetComputeContainerAppContainerResult {
|
|
16
|
+
readonly app: string;
|
|
17
|
+
readonly id: string;
|
|
18
|
+
readonly name: string;
|
|
19
|
+
}
|
|
20
|
+
declare function getComputeContainerAppContainerOutput(args: GetComputeContainerAppContainerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetComputeContainerAppContainerResult>;
|
|
21
|
+
/**
|
|
22
|
+
* A collection of arguments for invoking getComputeContainerAppContainer.
|
|
23
|
+
*/
|
|
24
|
+
interface GetComputeContainerAppContainerOutputArgs {
|
|
25
|
+
app: pulumi.Input<string>;
|
|
26
|
+
name: pulumi.Input<string>;
|
|
27
|
+
}
|
|
28
|
+
//#endregion
|
|
29
|
+
export { GetComputeContainerAppContainerArgs, GetComputeContainerAppContainerOutputArgs, GetComputeContainerAppContainerResult, getComputeContainerAppContainer, getComputeContainerAppContainerOutput };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { __esm, __export } from "./_virtual/rolldown_runtime.mjs";
|
|
2
|
+
import { getPackage, init_utilities, resourceOptsDefaults } from "./utilities.mjs";
|
|
3
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
4
|
+
|
|
5
|
+
//#region getComputeContainerAppContainer.ts
|
|
6
|
+
var getComputeContainerAppContainer_exports = {};
|
|
7
|
+
__export(getComputeContainerAppContainer_exports, {
|
|
8
|
+
getComputeContainerAppContainer: () => getComputeContainerAppContainer,
|
|
9
|
+
getComputeContainerAppContainerOutput: () => getComputeContainerAppContainerOutput
|
|
10
|
+
});
|
|
11
|
+
function getComputeContainerAppContainer(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("bunnynet:index/getComputeContainerAppContainer:getComputeContainerAppContainer", {
|
|
14
|
+
"app": args.app,
|
|
15
|
+
"name": args.name
|
|
16
|
+
}, opts, getPackage());
|
|
17
|
+
}
|
|
18
|
+
function getComputeContainerAppContainerOutput(args, opts) {
|
|
19
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
20
|
+
return pulumi.runtime.invokeOutput("bunnynet:index/getComputeContainerAppContainer:getComputeContainerAppContainer", {
|
|
21
|
+
"app": args.app,
|
|
22
|
+
"name": args.name
|
|
23
|
+
}, opts, getPackage());
|
|
24
|
+
}
|
|
25
|
+
var init_getComputeContainerAppContainer = __esm({ "getComputeContainerAppContainer.ts": (() => {
|
|
26
|
+
init_utilities();
|
|
27
|
+
}) });
|
|
28
|
+
|
|
29
|
+
//#endregion
|
|
30
|
+
init_getComputeContainerAppContainer();
|
|
31
|
+
export { getComputeContainerAppContainer_exports, init_getComputeContainerAppContainer };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { GetComputeContainerAppContainerEndpointCdn } from "./types/output.mjs";
|
|
2
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
3
|
+
|
|
4
|
+
//#region getComputeContainerAppContainerEndpoint.d.ts
|
|
5
|
+
declare function getComputeContainerAppContainerEndpoint(args: GetComputeContainerAppContainerEndpointArgs, opts?: pulumi.InvokeOptions): Promise<GetComputeContainerAppContainerEndpointResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of arguments for invoking getComputeContainerAppContainerEndpoint.
|
|
8
|
+
*/
|
|
9
|
+
interface GetComputeContainerAppContainerEndpointArgs {
|
|
10
|
+
app: string;
|
|
11
|
+
container: string;
|
|
12
|
+
name: string;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* A collection of values returned by getComputeContainerAppContainerEndpoint.
|
|
16
|
+
*/
|
|
17
|
+
interface GetComputeContainerAppContainerEndpointResult {
|
|
18
|
+
readonly app: string;
|
|
19
|
+
readonly cdn: GetComputeContainerAppContainerEndpointCdn;
|
|
20
|
+
readonly container: string;
|
|
21
|
+
/**
|
|
22
|
+
* The provider-assigned unique ID for this managed resource.
|
|
23
|
+
*/
|
|
24
|
+
readonly id: string;
|
|
25
|
+
readonly name: string;
|
|
26
|
+
readonly publicHost: string;
|
|
27
|
+
readonly type: string;
|
|
28
|
+
}
|
|
29
|
+
declare function getComputeContainerAppContainerEndpointOutput(args: GetComputeContainerAppContainerEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetComputeContainerAppContainerEndpointResult>;
|
|
30
|
+
/**
|
|
31
|
+
* A collection of arguments for invoking getComputeContainerAppContainerEndpoint.
|
|
32
|
+
*/
|
|
33
|
+
interface GetComputeContainerAppContainerEndpointOutputArgs {
|
|
34
|
+
app: pulumi.Input<string>;
|
|
35
|
+
container: pulumi.Input<string>;
|
|
36
|
+
name: pulumi.Input<string>;
|
|
37
|
+
}
|
|
38
|
+
//#endregion
|
|
39
|
+
export { GetComputeContainerAppContainerEndpointArgs, GetComputeContainerAppContainerEndpointOutputArgs, GetComputeContainerAppContainerEndpointResult, getComputeContainerAppContainerEndpoint, getComputeContainerAppContainerEndpointOutput };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { __esm, __export } from "./_virtual/rolldown_runtime.mjs";
|
|
2
|
+
import { getPackage, init_utilities, resourceOptsDefaults } from "./utilities.mjs";
|
|
3
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
4
|
+
|
|
5
|
+
//#region getComputeContainerAppContainerEndpoint.ts
|
|
6
|
+
var getComputeContainerAppContainerEndpoint_exports = {};
|
|
7
|
+
__export(getComputeContainerAppContainerEndpoint_exports, {
|
|
8
|
+
getComputeContainerAppContainerEndpoint: () => getComputeContainerAppContainerEndpoint,
|
|
9
|
+
getComputeContainerAppContainerEndpointOutput: () => getComputeContainerAppContainerEndpointOutput
|
|
10
|
+
});
|
|
11
|
+
function getComputeContainerAppContainerEndpoint(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("bunnynet:index/getComputeContainerAppContainerEndpoint:getComputeContainerAppContainerEndpoint", {
|
|
14
|
+
"app": args.app,
|
|
15
|
+
"container": args.container,
|
|
16
|
+
"name": args.name
|
|
17
|
+
}, opts, getPackage());
|
|
18
|
+
}
|
|
19
|
+
function getComputeContainerAppContainerEndpointOutput(args, opts) {
|
|
20
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
21
|
+
return pulumi.runtime.invokeOutput("bunnynet:index/getComputeContainerAppContainerEndpoint:getComputeContainerAppContainerEndpoint", {
|
|
22
|
+
"app": args.app,
|
|
23
|
+
"container": args.container,
|
|
24
|
+
"name": args.name
|
|
25
|
+
}, opts, getPackage());
|
|
26
|
+
}
|
|
27
|
+
var init_getComputeContainerAppContainerEndpoint = __esm({ "getComputeContainerAppContainerEndpoint.ts": (() => {
|
|
28
|
+
init_utilities();
|
|
29
|
+
}) });
|
|
30
|
+
|
|
31
|
+
//#endregion
|
|
32
|
+
init_getComputeContainerAppContainerEndpoint();
|
|
33
|
+
export { getComputeContainerAppContainerEndpoint_exports, init_getComputeContainerAppContainerEndpoint };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
|
|
3
|
+
//#region getComputeContainerImageregistry.d.ts
|
|
4
|
+
declare function getComputeContainerImageregistry(args: GetComputeContainerImageregistryArgs, opts?: pulumi.InvokeOptions): Promise<GetComputeContainerImageregistryResult>;
|
|
5
|
+
/**
|
|
6
|
+
* A collection of arguments for invoking getComputeContainerImageregistry.
|
|
7
|
+
*/
|
|
8
|
+
interface GetComputeContainerImageregistryArgs {
|
|
9
|
+
registry: string;
|
|
10
|
+
username: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* A collection of values returned by getComputeContainerImageregistry.
|
|
14
|
+
*/
|
|
15
|
+
interface GetComputeContainerImageregistryResult {
|
|
16
|
+
readonly id: number;
|
|
17
|
+
readonly registry: string;
|
|
18
|
+
readonly username: string;
|
|
19
|
+
}
|
|
20
|
+
declare function getComputeContainerImageregistryOutput(args: GetComputeContainerImageregistryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetComputeContainerImageregistryResult>;
|
|
21
|
+
/**
|
|
22
|
+
* A collection of arguments for invoking getComputeContainerImageregistry.
|
|
23
|
+
*/
|
|
24
|
+
interface GetComputeContainerImageregistryOutputArgs {
|
|
25
|
+
registry: pulumi.Input<string>;
|
|
26
|
+
username: pulumi.Input<string>;
|
|
27
|
+
}
|
|
28
|
+
//#endregion
|
|
29
|
+
export { GetComputeContainerImageregistryArgs, GetComputeContainerImageregistryOutputArgs, GetComputeContainerImageregistryResult, getComputeContainerImageregistry, getComputeContainerImageregistryOutput };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { __esm, __export } from "./_virtual/rolldown_runtime.mjs";
|
|
2
|
+
import { getPackage, init_utilities, resourceOptsDefaults } from "./utilities.mjs";
|
|
3
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
4
|
+
|
|
5
|
+
//#region getComputeContainerImageregistry.ts
|
|
6
|
+
var getComputeContainerImageregistry_exports = {};
|
|
7
|
+
__export(getComputeContainerImageregistry_exports, {
|
|
8
|
+
getComputeContainerImageregistry: () => getComputeContainerImageregistry,
|
|
9
|
+
getComputeContainerImageregistryOutput: () => getComputeContainerImageregistryOutput
|
|
10
|
+
});
|
|
11
|
+
function getComputeContainerImageregistry(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("bunnynet:index/getComputeContainerImageregistry:getComputeContainerImageregistry", {
|
|
14
|
+
"registry": args.registry,
|
|
15
|
+
"username": args.username
|
|
16
|
+
}, opts, getPackage());
|
|
17
|
+
}
|
|
18
|
+
function getComputeContainerImageregistryOutput(args, opts) {
|
|
19
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
20
|
+
return pulumi.runtime.invokeOutput("bunnynet:index/getComputeContainerImageregistry:getComputeContainerImageregistry", {
|
|
21
|
+
"registry": args.registry,
|
|
22
|
+
"username": args.username
|
|
23
|
+
}, opts, getPackage());
|
|
24
|
+
}
|
|
25
|
+
var init_getComputeContainerImageregistry = __esm({ "getComputeContainerImageregistry.ts": (() => {
|
|
26
|
+
init_utilities();
|
|
27
|
+
}) });
|
|
28
|
+
|
|
29
|
+
//#endregion
|
|
30
|
+
init_getComputeContainerImageregistry();
|
|
31
|
+
export { getComputeContainerImageregistry_exports, init_getComputeContainerImageregistry };
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
|
|
3
|
+
//#region getDnsRecord.d.ts
|
|
4
|
+
declare function getDnsRecord(args: GetDnsRecordArgs, opts?: pulumi.InvokeOptions): Promise<GetDnsRecordResult>;
|
|
5
|
+
/**
|
|
6
|
+
* A collection of arguments for invoking getDnsRecord.
|
|
7
|
+
*/
|
|
8
|
+
interface GetDnsRecordArgs {
|
|
9
|
+
id?: number;
|
|
10
|
+
name: string;
|
|
11
|
+
type: string;
|
|
12
|
+
zone: number;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* A collection of values returned by getDnsRecord.
|
|
16
|
+
*/
|
|
17
|
+
interface GetDnsRecordResult {
|
|
18
|
+
readonly accelerated: boolean;
|
|
19
|
+
readonly acceleratedPullzone: number;
|
|
20
|
+
readonly comment: string;
|
|
21
|
+
readonly enabled: boolean;
|
|
22
|
+
readonly flags: number;
|
|
23
|
+
readonly geolocationLat: number;
|
|
24
|
+
readonly geolocationLong: number;
|
|
25
|
+
readonly id: number;
|
|
26
|
+
readonly latencyZone: string;
|
|
27
|
+
readonly linkName: string;
|
|
28
|
+
readonly monitorType: string;
|
|
29
|
+
readonly name: string;
|
|
30
|
+
readonly port: number;
|
|
31
|
+
readonly priority: number;
|
|
32
|
+
readonly smartRoutingType: string;
|
|
33
|
+
readonly tag: string;
|
|
34
|
+
readonly ttl: number;
|
|
35
|
+
readonly type: string;
|
|
36
|
+
readonly value: string;
|
|
37
|
+
readonly weight: number;
|
|
38
|
+
readonly zone: number;
|
|
39
|
+
}
|
|
40
|
+
declare function getDnsRecordOutput(args: GetDnsRecordOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDnsRecordResult>;
|
|
41
|
+
/**
|
|
42
|
+
* A collection of arguments for invoking getDnsRecord.
|
|
43
|
+
*/
|
|
44
|
+
interface GetDnsRecordOutputArgs {
|
|
45
|
+
id?: pulumi.Input<number>;
|
|
46
|
+
name: pulumi.Input<string>;
|
|
47
|
+
type: pulumi.Input<string>;
|
|
48
|
+
zone: pulumi.Input<number>;
|
|
49
|
+
}
|
|
50
|
+
//#endregion
|
|
51
|
+
export { GetDnsRecordArgs, GetDnsRecordOutputArgs, GetDnsRecordResult, getDnsRecord, getDnsRecordOutput };
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { __esm, __export } from "./_virtual/rolldown_runtime.mjs";
|
|
2
|
+
import { getPackage, init_utilities, resourceOptsDefaults } from "./utilities.mjs";
|
|
3
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
4
|
+
|
|
5
|
+
//#region getDnsRecord.ts
|
|
6
|
+
var getDnsRecord_exports = {};
|
|
7
|
+
__export(getDnsRecord_exports, {
|
|
8
|
+
getDnsRecord: () => getDnsRecord,
|
|
9
|
+
getDnsRecordOutput: () => getDnsRecordOutput
|
|
10
|
+
});
|
|
11
|
+
function getDnsRecord(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("bunnynet:index/getDnsRecord:getDnsRecord", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
"name": args.name,
|
|
16
|
+
"type": args.type,
|
|
17
|
+
"zone": args.zone
|
|
18
|
+
}, opts, getPackage());
|
|
19
|
+
}
|
|
20
|
+
function getDnsRecordOutput(args, opts) {
|
|
21
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
22
|
+
return pulumi.runtime.invokeOutput("bunnynet:index/getDnsRecord:getDnsRecord", {
|
|
23
|
+
"id": args.id,
|
|
24
|
+
"name": args.name,
|
|
25
|
+
"type": args.type,
|
|
26
|
+
"zone": args.zone
|
|
27
|
+
}, opts, getPackage());
|
|
28
|
+
}
|
|
29
|
+
var init_getDnsRecord = __esm({ "getDnsRecord.ts": (() => {
|
|
30
|
+
init_utilities();
|
|
31
|
+
}) });
|
|
32
|
+
|
|
33
|
+
//#endregion
|
|
34
|
+
init_getDnsRecord();
|
|
35
|
+
export { getDnsRecord_exports, init_getDnsRecord };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
|
|
3
|
+
//#region getDnsZone.d.ts
|
|
4
|
+
declare function getDnsZone(args: GetDnsZoneArgs, opts?: pulumi.InvokeOptions): Promise<GetDnsZoneResult>;
|
|
5
|
+
/**
|
|
6
|
+
* A collection of arguments for invoking getDnsZone.
|
|
7
|
+
*/
|
|
8
|
+
interface GetDnsZoneArgs {
|
|
9
|
+
domain: string;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* A collection of values returned by getDnsZone.
|
|
13
|
+
*/
|
|
14
|
+
interface GetDnsZoneResult {
|
|
15
|
+
readonly domain: string;
|
|
16
|
+
readonly id: number;
|
|
17
|
+
readonly logAnonymized: boolean;
|
|
18
|
+
readonly logAnonymizedStyle: string;
|
|
19
|
+
readonly logEnabled: boolean;
|
|
20
|
+
readonly nameserver1: string;
|
|
21
|
+
readonly nameserver2: string;
|
|
22
|
+
readonly nameserverCustom: boolean;
|
|
23
|
+
readonly soaEmail: string;
|
|
24
|
+
}
|
|
25
|
+
declare function getDnsZoneOutput(args: GetDnsZoneOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDnsZoneResult>;
|
|
26
|
+
/**
|
|
27
|
+
* A collection of arguments for invoking getDnsZone.
|
|
28
|
+
*/
|
|
29
|
+
interface GetDnsZoneOutputArgs {
|
|
30
|
+
domain: pulumi.Input<string>;
|
|
31
|
+
}
|
|
32
|
+
//#endregion
|
|
33
|
+
export { GetDnsZoneArgs, GetDnsZoneOutputArgs, GetDnsZoneResult, getDnsZone, getDnsZoneOutput };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { __esm, __export } from "./_virtual/rolldown_runtime.mjs";
|
|
2
|
+
import { getPackage, init_utilities, resourceOptsDefaults } from "./utilities.mjs";
|
|
3
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
4
|
+
|
|
5
|
+
//#region getDnsZone.ts
|
|
6
|
+
var getDnsZone_exports = {};
|
|
7
|
+
__export(getDnsZone_exports, {
|
|
8
|
+
getDnsZone: () => getDnsZone,
|
|
9
|
+
getDnsZoneOutput: () => getDnsZoneOutput
|
|
10
|
+
});
|
|
11
|
+
function getDnsZone(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("bunnynet:index/getDnsZone:getDnsZone", { "domain": args.domain }, opts, getPackage());
|
|
14
|
+
}
|
|
15
|
+
function getDnsZoneOutput(args, opts) {
|
|
16
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
17
|
+
return pulumi.runtime.invokeOutput("bunnynet:index/getDnsZone:getDnsZone", { "domain": args.domain }, opts, getPackage());
|
|
18
|
+
}
|
|
19
|
+
var init_getDnsZone = __esm({ "getDnsZone.ts": (() => {
|
|
20
|
+
init_utilities();
|
|
21
|
+
}) });
|
|
22
|
+
|
|
23
|
+
//#endregion
|
|
24
|
+
init_getDnsZone();
|
|
25
|
+
export { getDnsZone_exports, init_getDnsZone };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
|
|
3
|
+
//#region getRegion.d.ts
|
|
4
|
+
declare function getRegion(args: GetRegionArgs, opts?: pulumi.InvokeOptions): Promise<GetRegionResult>;
|
|
5
|
+
/**
|
|
6
|
+
* A collection of arguments for invoking getRegion.
|
|
7
|
+
*/
|
|
8
|
+
interface GetRegionArgs {
|
|
9
|
+
regionCode: string;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* A collection of values returned by getRegion.
|
|
13
|
+
*/
|
|
14
|
+
interface GetRegionResult {
|
|
15
|
+
readonly allowLatencyRouting: boolean;
|
|
16
|
+
readonly continentCode: string;
|
|
17
|
+
readonly countryCode: string;
|
|
18
|
+
readonly id: number;
|
|
19
|
+
readonly latitude: number;
|
|
20
|
+
readonly longitude: number;
|
|
21
|
+
readonly name: string;
|
|
22
|
+
readonly pricePerGigabyte: number;
|
|
23
|
+
readonly regionCode: string;
|
|
24
|
+
}
|
|
25
|
+
declare function getRegionOutput(args: GetRegionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRegionResult>;
|
|
26
|
+
/**
|
|
27
|
+
* A collection of arguments for invoking getRegion.
|
|
28
|
+
*/
|
|
29
|
+
interface GetRegionOutputArgs {
|
|
30
|
+
regionCode: pulumi.Input<string>;
|
|
31
|
+
}
|
|
32
|
+
//#endregion
|
|
33
|
+
export { GetRegionArgs, GetRegionOutputArgs, GetRegionResult, getRegion, getRegionOutput };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { __esm, __export } from "./_virtual/rolldown_runtime.mjs";
|
|
2
|
+
import { getPackage, init_utilities, resourceOptsDefaults } from "./utilities.mjs";
|
|
3
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
4
|
+
|
|
5
|
+
//#region getRegion.ts
|
|
6
|
+
var getRegion_exports = {};
|
|
7
|
+
__export(getRegion_exports, {
|
|
8
|
+
getRegion: () => getRegion,
|
|
9
|
+
getRegionOutput: () => getRegionOutput
|
|
10
|
+
});
|
|
11
|
+
function getRegion(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("bunnynet:index/getRegion:getRegion", { "regionCode": args.regionCode }, opts, getPackage());
|
|
14
|
+
}
|
|
15
|
+
function getRegionOutput(args, opts) {
|
|
16
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
17
|
+
return pulumi.runtime.invokeOutput("bunnynet:index/getRegion:getRegion", { "regionCode": args.regionCode }, opts, getPackage());
|
|
18
|
+
}
|
|
19
|
+
var init_getRegion = __esm({ "getRegion.ts": (() => {
|
|
20
|
+
init_utilities();
|
|
21
|
+
}) });
|
|
22
|
+
|
|
23
|
+
//#endregion
|
|
24
|
+
init_getRegion();
|
|
25
|
+
export { getRegion_exports, init_getRegion };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
|
|
3
|
+
//#region getVideoLanguage.d.ts
|
|
4
|
+
declare function getVideoLanguage(args: GetVideoLanguageArgs, opts?: pulumi.InvokeOptions): Promise<GetVideoLanguageResult>;
|
|
5
|
+
/**
|
|
6
|
+
* A collection of arguments for invoking getVideoLanguage.
|
|
7
|
+
*/
|
|
8
|
+
interface GetVideoLanguageArgs {
|
|
9
|
+
code: string;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* A collection of values returned by getVideoLanguage.
|
|
13
|
+
*/
|
|
14
|
+
interface GetVideoLanguageResult {
|
|
15
|
+
readonly code: string;
|
|
16
|
+
/**
|
|
17
|
+
* The provider-assigned unique ID for this managed resource.
|
|
18
|
+
*/
|
|
19
|
+
readonly id: string;
|
|
20
|
+
readonly name: string;
|
|
21
|
+
readonly supportPlayerTranslation: boolean;
|
|
22
|
+
readonly supportTranscribing: boolean;
|
|
23
|
+
readonly transcribingAccuracy: number;
|
|
24
|
+
}
|
|
25
|
+
declare function getVideoLanguageOutput(args: GetVideoLanguageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVideoLanguageResult>;
|
|
26
|
+
/**
|
|
27
|
+
* A collection of arguments for invoking getVideoLanguage.
|
|
28
|
+
*/
|
|
29
|
+
interface GetVideoLanguageOutputArgs {
|
|
30
|
+
code: pulumi.Input<string>;
|
|
31
|
+
}
|
|
32
|
+
//#endregion
|
|
33
|
+
export { GetVideoLanguageArgs, GetVideoLanguageOutputArgs, GetVideoLanguageResult, getVideoLanguage, getVideoLanguageOutput };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { __esm, __export } from "./_virtual/rolldown_runtime.mjs";
|
|
2
|
+
import { getPackage, init_utilities, resourceOptsDefaults } from "./utilities.mjs";
|
|
3
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
4
|
+
|
|
5
|
+
//#region getVideoLanguage.ts
|
|
6
|
+
var getVideoLanguage_exports = {};
|
|
7
|
+
__export(getVideoLanguage_exports, {
|
|
8
|
+
getVideoLanguage: () => getVideoLanguage,
|
|
9
|
+
getVideoLanguageOutput: () => getVideoLanguageOutput
|
|
10
|
+
});
|
|
11
|
+
function getVideoLanguage(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("bunnynet:index/getVideoLanguage:getVideoLanguage", { "code": args.code }, opts, getPackage());
|
|
14
|
+
}
|
|
15
|
+
function getVideoLanguageOutput(args, opts) {
|
|
16
|
+
opts = pulumi.mergeOptions(resourceOptsDefaults(), opts || {});
|
|
17
|
+
return pulumi.runtime.invokeOutput("bunnynet:index/getVideoLanguage:getVideoLanguage", { "code": args.code }, opts, getPackage());
|
|
18
|
+
}
|
|
19
|
+
var init_getVideoLanguage = __esm({ "getVideoLanguage.ts": (() => {
|
|
20
|
+
init_utilities();
|
|
21
|
+
}) });
|
|
22
|
+
|
|
23
|
+
//#endregion
|
|
24
|
+
init_getVideoLanguage();
|
|
25
|
+
export { getVideoLanguage_exports, init_getVideoLanguage };
|
package/bin/index.d.mts
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { ComputeContainerApp, ComputeContainerAppArgs, ComputeContainerAppState } from "./computeContainerApp.mjs";
|
|
2
|
+
import { ComputeContainerImageregistry, ComputeContainerImageregistryArgs, ComputeContainerImageregistryState } from "./computeContainerImageregistry.mjs";
|
|
3
|
+
import { ComputeScript, ComputeScriptArgs, ComputeScriptState } from "./computeScript.mjs";
|
|
4
|
+
import { ComputeScriptSecret, ComputeScriptSecretArgs, ComputeScriptSecretState } from "./computeScriptSecret.mjs";
|
|
5
|
+
import { ComputeScriptVariable, ComputeScriptVariableArgs, ComputeScriptVariableState } from "./computeScriptVariable.mjs";
|
|
6
|
+
import { DnsRecord, DnsRecordArgs, DnsRecordState } from "./dnsRecord.mjs";
|
|
7
|
+
import { DnsZone, DnsZoneArgs, DnsZoneState } from "./dnsZone.mjs";
|
|
8
|
+
import { GetComputeContainerAppContainerArgs, GetComputeContainerAppContainerOutputArgs, GetComputeContainerAppContainerResult, getComputeContainerAppContainer, getComputeContainerAppContainerOutput } from "./getComputeContainerAppContainer.mjs";
|
|
9
|
+
import { GetComputeContainerAppContainerEndpointArgs, GetComputeContainerAppContainerEndpointOutputArgs, GetComputeContainerAppContainerEndpointResult, getComputeContainerAppContainerEndpoint, getComputeContainerAppContainerEndpointOutput } from "./getComputeContainerAppContainerEndpoint.mjs";
|
|
10
|
+
import { GetComputeContainerImageregistryArgs, GetComputeContainerImageregistryOutputArgs, GetComputeContainerImageregistryResult, getComputeContainerImageregistry, getComputeContainerImageregistryOutput } from "./getComputeContainerImageregistry.mjs";
|
|
11
|
+
import { GetDnsRecordArgs, GetDnsRecordOutputArgs, GetDnsRecordResult, getDnsRecord, getDnsRecordOutput } from "./getDnsRecord.mjs";
|
|
12
|
+
import { GetDnsZoneArgs, GetDnsZoneOutputArgs, GetDnsZoneResult, getDnsZone, getDnsZoneOutput } from "./getDnsZone.mjs";
|
|
13
|
+
import { GetRegionArgs, GetRegionOutputArgs, GetRegionResult, getRegion, getRegionOutput } from "./getRegion.mjs";
|
|
14
|
+
import { GetVideoLanguageArgs, GetVideoLanguageOutputArgs, GetVideoLanguageResult, getVideoLanguage, getVideoLanguageOutput } from "./getVideoLanguage.mjs";
|
|
15
|
+
import { Provider, ProviderArgs } from "./provider.mjs";
|
|
16
|
+
import { Pullzone, PullzoneArgs, PullzoneState } from "./pullzone.mjs";
|
|
17
|
+
import { PullzoneEdgerule, PullzoneEdgeruleArgs, PullzoneEdgeruleState } from "./pullzoneEdgerule.mjs";
|
|
18
|
+
import { PullzoneHostname, PullzoneHostnameArgs, PullzoneHostnameState } from "./pullzoneHostname.mjs";
|
|
19
|
+
import { PullzoneOptimizerClass, PullzoneOptimizerClassArgs, PullzoneOptimizerClassState } from "./pullzoneOptimizerClass.mjs";
|
|
20
|
+
import { StorageFile, StorageFileArgs, StorageFileState } from "./storageFile.mjs";
|
|
21
|
+
import { StorageZone, StorageZoneArgs, StorageZoneState } from "./storageZone.mjs";
|
|
22
|
+
import { StreamCollection, StreamCollectionArgs, StreamCollectionState } from "./streamCollection.mjs";
|
|
23
|
+
import { StreamLibrary, StreamLibraryArgs, StreamLibraryState } from "./streamLibrary.mjs";
|
|
24
|
+
import { StreamVideo, StreamVideoArgs, StreamVideoState } from "./streamVideo.mjs";
|
|
25
|
+
import { index_d_exports } from "./config/index.mjs";
|
|
26
|
+
import { index_d_exports as index_d_exports$1 } from "./types/index.mjs";
|
|
27
|
+
|
|
28
|
+
//#region index.d.ts
|
|
29
|
+
type ComputeContainerApp$1 = ComputeContainerApp;
|
|
30
|
+
declare const ComputeContainerApp$1: typeof ComputeContainerApp;
|
|
31
|
+
type ComputeContainerImageregistry$1 = ComputeContainerImageregistry;
|
|
32
|
+
declare const ComputeContainerImageregistry$1: typeof ComputeContainerImageregistry;
|
|
33
|
+
type ComputeScript$1 = ComputeScript;
|
|
34
|
+
declare const ComputeScript$1: typeof ComputeScript;
|
|
35
|
+
type ComputeScriptSecret$1 = ComputeScriptSecret;
|
|
36
|
+
declare const ComputeScriptSecret$1: typeof ComputeScriptSecret;
|
|
37
|
+
type ComputeScriptVariable$1 = ComputeScriptVariable;
|
|
38
|
+
declare const ComputeScriptVariable$1: typeof ComputeScriptVariable;
|
|
39
|
+
type DnsRecord$1 = DnsRecord;
|
|
40
|
+
declare const DnsRecord$1: typeof DnsRecord;
|
|
41
|
+
type DnsZone$1 = DnsZone;
|
|
42
|
+
declare const DnsZone$1: typeof DnsZone;
|
|
43
|
+
declare const getComputeContainerAppContainer$1: typeof getComputeContainerAppContainer;
|
|
44
|
+
declare const getComputeContainerAppContainerOutput$1: typeof getComputeContainerAppContainerOutput;
|
|
45
|
+
declare const getComputeContainerAppContainerEndpoint$1: typeof getComputeContainerAppContainerEndpoint;
|
|
46
|
+
declare const getComputeContainerAppContainerEndpointOutput$1: typeof getComputeContainerAppContainerEndpointOutput;
|
|
47
|
+
declare const getComputeContainerImageregistry$1: typeof getComputeContainerImageregistry;
|
|
48
|
+
declare const getComputeContainerImageregistryOutput$1: typeof getComputeContainerImageregistryOutput;
|
|
49
|
+
declare const getDnsRecord$1: typeof getDnsRecord;
|
|
50
|
+
declare const getDnsRecordOutput$1: typeof getDnsRecordOutput;
|
|
51
|
+
declare const getDnsZone$1: typeof getDnsZone;
|
|
52
|
+
declare const getDnsZoneOutput$1: typeof getDnsZoneOutput;
|
|
53
|
+
declare const getRegion$1: typeof getRegion;
|
|
54
|
+
declare const getRegionOutput$1: typeof getRegionOutput;
|
|
55
|
+
declare const getVideoLanguage$1: typeof getVideoLanguage;
|
|
56
|
+
declare const getVideoLanguageOutput$1: typeof getVideoLanguageOutput;
|
|
57
|
+
type Provider$1 = Provider;
|
|
58
|
+
declare const Provider$1: typeof Provider;
|
|
59
|
+
type Pullzone$1 = Pullzone;
|
|
60
|
+
declare const Pullzone$1: typeof Pullzone;
|
|
61
|
+
type PullzoneEdgerule$1 = PullzoneEdgerule;
|
|
62
|
+
declare const PullzoneEdgerule$1: typeof PullzoneEdgerule;
|
|
63
|
+
type PullzoneHostname$1 = PullzoneHostname;
|
|
64
|
+
declare const PullzoneHostname$1: typeof PullzoneHostname;
|
|
65
|
+
type PullzoneOptimizerClass$1 = PullzoneOptimizerClass;
|
|
66
|
+
declare const PullzoneOptimizerClass$1: typeof PullzoneOptimizerClass;
|
|
67
|
+
type StorageFile$1 = StorageFile;
|
|
68
|
+
declare const StorageFile$1: typeof StorageFile;
|
|
69
|
+
type StorageZone$1 = StorageZone;
|
|
70
|
+
declare const StorageZone$1: typeof StorageZone;
|
|
71
|
+
type StreamCollection$1 = StreamCollection;
|
|
72
|
+
declare const StreamCollection$1: typeof StreamCollection;
|
|
73
|
+
type StreamLibrary$1 = StreamLibrary;
|
|
74
|
+
declare const StreamLibrary$1: typeof StreamLibrary;
|
|
75
|
+
type StreamVideo$1 = StreamVideo;
|
|
76
|
+
declare const StreamVideo$1: typeof StreamVideo;
|
|
77
|
+
// Export sub-modules:
|
|
78
|
+
|
|
79
|
+
//#endregion
|
|
80
|
+
export { ComputeContainerApp$1 as ComputeContainerApp, ComputeContainerAppArgs, ComputeContainerAppState, ComputeContainerImageregistry$1 as ComputeContainerImageregistry, ComputeContainerImageregistryArgs, ComputeContainerImageregistryState, ComputeScript$1 as ComputeScript, ComputeScriptArgs, ComputeScriptSecret$1 as ComputeScriptSecret, ComputeScriptSecretArgs, ComputeScriptSecretState, ComputeScriptState, ComputeScriptVariable$1 as ComputeScriptVariable, ComputeScriptVariableArgs, ComputeScriptVariableState, DnsRecord$1 as DnsRecord, DnsRecordArgs, DnsRecordState, DnsZone$1 as DnsZone, DnsZoneArgs, DnsZoneState, GetComputeContainerAppContainerArgs, GetComputeContainerAppContainerEndpointArgs, GetComputeContainerAppContainerEndpointOutputArgs, GetComputeContainerAppContainerEndpointResult, GetComputeContainerAppContainerOutputArgs, GetComputeContainerAppContainerResult, GetComputeContainerImageregistryArgs, GetComputeContainerImageregistryOutputArgs, GetComputeContainerImageregistryResult, GetDnsRecordArgs, GetDnsRecordOutputArgs, GetDnsRecordResult, GetDnsZoneArgs, GetDnsZoneOutputArgs, GetDnsZoneResult, GetRegionArgs, GetRegionOutputArgs, GetRegionResult, GetVideoLanguageArgs, GetVideoLanguageOutputArgs, GetVideoLanguageResult, Provider$1 as Provider, ProviderArgs, Pullzone$1 as Pullzone, PullzoneArgs, PullzoneEdgerule$1 as PullzoneEdgerule, PullzoneEdgeruleArgs, PullzoneEdgeruleState, PullzoneHostname$1 as PullzoneHostname, PullzoneHostnameArgs, PullzoneHostnameState, PullzoneOptimizerClass$1 as PullzoneOptimizerClass, PullzoneOptimizerClassArgs, PullzoneOptimizerClassState, PullzoneState, StorageFile$1 as StorageFile, StorageFileArgs, StorageFileState, StorageZone$1 as StorageZone, StorageZoneArgs, StorageZoneState, StreamCollection$1 as StreamCollection, StreamCollectionArgs, StreamCollectionState, StreamLibrary$1 as StreamLibrary, StreamLibraryArgs, StreamLibraryState, StreamVideo$1 as StreamVideo, StreamVideoArgs, StreamVideoState, index_d_exports as config, getComputeContainerAppContainer$1 as getComputeContainerAppContainer, getComputeContainerAppContainerEndpoint$1 as getComputeContainerAppContainerEndpoint, getComputeContainerAppContainerEndpointOutput$1 as getComputeContainerAppContainerEndpointOutput, getComputeContainerAppContainerOutput$1 as getComputeContainerAppContainerOutput, getComputeContainerImageregistry$1 as getComputeContainerImageregistry, getComputeContainerImageregistryOutput$1 as getComputeContainerImageregistryOutput, getDnsRecord$1 as getDnsRecord, getDnsRecordOutput$1 as getDnsRecordOutput, getDnsZone$1 as getDnsZone, getDnsZoneOutput$1 as getDnsZoneOutput, getRegion$1 as getRegion, getRegionOutput$1 as getRegionOutput, getVideoLanguage$1 as getVideoLanguage, getVideoLanguageOutput$1 as getVideoLanguageOutput, index_d_exports$1 as types };
|