@volcengine/pulumi-volcenginecc 0.0.33 → 0.0.34
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/package.json +1 -1
- package/privatezone/getRecord.d.ts +5 -0
- package/privatezone/getRecord.js.map +1 -1
- package/privatezone/record.d.ts +4 -0
- package/privatezone/record.js +2 -0
- package/privatezone/record.js.map +1 -1
- package/rdsmysql/getParameterTemplate.d.ts +97 -0
- package/rdsmysql/getParameterTemplate.js +28 -0
- package/rdsmysql/getParameterTemplate.js.map +1 -0
- package/rdsmysql/getParameterTemplates.d.ts +22 -0
- package/rdsmysql/getParameterTemplates.js +24 -0
- package/rdsmysql/getParameterTemplates.js.map +1 -0
- package/rdsmysql/index.d.ts +9 -0
- package/rdsmysql/index.js +12 -1
- package/rdsmysql/index.js.map +1 -1
- package/rdsmysql/parameterTemplate.d.ts +186 -0
- package/rdsmysql/parameterTemplate.js +92 -0
- package/rdsmysql/parameterTemplate.js.map +1 -0
- package/redis/getInstance.d.ts +8 -0
- package/redis/getInstance.js.map +1 -1
- package/redis/instance.d.ts +47 -18
- package/redis/instance.js +27 -18
- package/redis/instance.js.map +1 -1
- package/tos/bucketCors.d.ts +69 -0
- package/tos/bucketCors.js +73 -0
- package/tos/bucketCors.js.map +1 -0
- package/tos/bucketNotification.d.ts +69 -0
- package/tos/bucketNotification.js +70 -0
- package/tos/bucketNotification.js.map +1 -0
- package/tos/bucketRealtimeLog.d.ts +78 -0
- package/tos/bucketRealtimeLog.js +73 -0
- package/tos/bucketRealtimeLog.js.map +1 -0
- package/tos/getBucketCors.d.ts +45 -0
- package/tos/getBucketCors.js +28 -0
- package/tos/getBucketCors.js.map +1 -0
- package/tos/getBucketNotification.d.ts +45 -0
- package/tos/getBucketNotification.js +28 -0
- package/tos/getBucketNotification.js.map +1 -0
- package/tos/getBucketNotifications.d.ts +22 -0
- package/tos/getBucketNotifications.js +24 -0
- package/tos/getBucketNotifications.js.map +1 -0
- package/tos/getBucketRealtimeLog.d.ts +45 -0
- package/tos/getBucketRealtimeLog.js +28 -0
- package/tos/getBucketRealtimeLog.js.map +1 -0
- package/tos/getBucketRealtimeLogs.d.ts +22 -0
- package/tos/getBucketRealtimeLogs.js +24 -0
- package/tos/getBucketRealtimeLogs.js.map +1 -0
- package/tos/index.d.ts +24 -0
- package/tos/index.js +31 -1
- package/tos/index.js.map +1 -1
- package/types/input.d.ts +182 -0
- package/types/output.d.ts +396 -0
|
@@ -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.BucketRealtimeLog = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* { .Description | trimspace }
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* { tffile (printf "examples/resources/%s/tos_bucket_realtime_log.tf" .Name)}
|
|
14
|
+
*
|
|
15
|
+
* { .SchemaMarkdown | trimspace }
|
|
16
|
+
* {- if .HasImport }
|
|
17
|
+
*
|
|
18
|
+
* ## Import
|
|
19
|
+
*
|
|
20
|
+
* { codefile "shell" .ImportFile }
|
|
21
|
+
*
|
|
22
|
+
* {- end }
|
|
23
|
+
*/
|
|
24
|
+
class BucketRealtimeLog extends pulumi.CustomResource {
|
|
25
|
+
/**
|
|
26
|
+
* Get an existing BucketRealtimeLog resource's state with the given name, ID, and optional extra
|
|
27
|
+
* properties used to qualify the lookup.
|
|
28
|
+
*
|
|
29
|
+
* @param name The _unique_ name of the resulting resource.
|
|
30
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
31
|
+
* @param state Any extra arguments used during the lookup.
|
|
32
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
33
|
+
*/
|
|
34
|
+
static get(name, id, state, opts) {
|
|
35
|
+
return new BucketRealtimeLog(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Returns true if the given object is an instance of BucketRealtimeLog. This is designed to work even
|
|
39
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
40
|
+
*/
|
|
41
|
+
static isInstance(obj) {
|
|
42
|
+
if (obj === undefined || obj === null) {
|
|
43
|
+
return false;
|
|
44
|
+
}
|
|
45
|
+
return obj['__pulumiType'] === BucketRealtimeLog.__pulumiType;
|
|
46
|
+
}
|
|
47
|
+
constructor(name, argsOrState, opts) {
|
|
48
|
+
let resourceInputs = {};
|
|
49
|
+
opts = opts || {};
|
|
50
|
+
if (opts.id) {
|
|
51
|
+
const state = argsOrState;
|
|
52
|
+
resourceInputs["bucketName"] = state ? state.bucketName : undefined;
|
|
53
|
+
resourceInputs["realTimeLog"] = state ? state.realTimeLog : undefined;
|
|
54
|
+
}
|
|
55
|
+
else {
|
|
56
|
+
const args = argsOrState;
|
|
57
|
+
if ((!args || args.bucketName === undefined) && !opts.urn) {
|
|
58
|
+
throw new Error("Missing required property 'bucketName'");
|
|
59
|
+
}
|
|
60
|
+
if ((!args || args.realTimeLog === undefined) && !opts.urn) {
|
|
61
|
+
throw new Error("Missing required property 'realTimeLog'");
|
|
62
|
+
}
|
|
63
|
+
resourceInputs["bucketName"] = args ? args.bucketName : undefined;
|
|
64
|
+
resourceInputs["realTimeLog"] = args ? args.realTimeLog : undefined;
|
|
65
|
+
}
|
|
66
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
67
|
+
super(BucketRealtimeLog.__pulumiType, name, resourceInputs, opts);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
exports.BucketRealtimeLog = BucketRealtimeLog;
|
|
71
|
+
/** @internal */
|
|
72
|
+
BucketRealtimeLog.__pulumiType = 'volcenginecc:tos/bucketRealtimeLog:BucketRealtimeLog';
|
|
73
|
+
//# sourceMappingURL=bucketRealtimeLog.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bucketRealtimeLog.js","sourceRoot":"","sources":["../../tos/bucketRealtimeLog.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACxE,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,iBAAiB,CAAC,YAAY,CAAC;IAClE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAA4D,EAAE,IAAmC;QACvH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAiD,CAAC;YAChE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACzE;aAAM;YACH,MAAM,IAAI,GAAG,WAAgD,CAAC;YAC9D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,iBAAiB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACtE,CAAC;;AAjEL,8CAkEC;AApDG,gBAAgB;AACO,8BAAY,GAAG,sDAAsD,CAAC"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data Source schema for Volcengine::TOS::BucketCors
|
|
5
|
+
*/
|
|
6
|
+
export declare function getBucketCors(args: GetBucketCorsArgs, opts?: pulumi.InvokeOptions): Promise<GetBucketCorsResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getBucketCors.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetBucketCorsArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Uniquely identifies the resource.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getBucketCors.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetBucketCorsResult {
|
|
20
|
+
/**
|
|
21
|
+
* Bucket name.
|
|
22
|
+
*/
|
|
23
|
+
readonly bucketName: string;
|
|
24
|
+
/**
|
|
25
|
+
* CORS rule information.
|
|
26
|
+
*/
|
|
27
|
+
readonly corsRules: outputs.tos.GetBucketCorsCorsRule[];
|
|
28
|
+
/**
|
|
29
|
+
* Uniquely identifies the resource.
|
|
30
|
+
*/
|
|
31
|
+
readonly id: string;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Data Source schema for Volcengine::TOS::BucketCors
|
|
35
|
+
*/
|
|
36
|
+
export declare function getBucketCorsOutput(args: GetBucketCorsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBucketCorsResult>;
|
|
37
|
+
/**
|
|
38
|
+
* A collection of arguments for invoking getBucketCors.
|
|
39
|
+
*/
|
|
40
|
+
export interface GetBucketCorsOutputArgs {
|
|
41
|
+
/**
|
|
42
|
+
* Uniquely identifies the resource.
|
|
43
|
+
*/
|
|
44
|
+
id: pulumi.Input<string>;
|
|
45
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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.getBucketCorsOutput = exports.getBucketCors = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data Source schema for Volcengine::TOS::BucketCors
|
|
10
|
+
*/
|
|
11
|
+
function getBucketCors(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:tos/getBucketCors:getBucketCors", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getBucketCors = getBucketCors;
|
|
18
|
+
/**
|
|
19
|
+
* Data Source schema for Volcengine::TOS::BucketCors
|
|
20
|
+
*/
|
|
21
|
+
function getBucketCorsOutput(args, opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invokeOutput("volcenginecc:tos/getBucketCors:getBucketCors", {
|
|
24
|
+
"id": args.id,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getBucketCorsOutput = getBucketCorsOutput;
|
|
28
|
+
//# sourceMappingURL=getBucketCors.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getBucketCors.js","sourceRoot":"","sources":["../../tos/getBucketCors.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,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,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sCAKC;AA6BD;;GAEG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAAiC;IAChG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8CAA8C,EAAE;QAC/E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kDAKC"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data Source schema for Volcengine::TOS::BucketNotification
|
|
5
|
+
*/
|
|
6
|
+
export declare function getBucketNotification(args: GetBucketNotificationArgs, opts?: pulumi.InvokeOptions): Promise<GetBucketNotificationResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getBucketNotification.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetBucketNotificationArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Uniquely identifies the resource.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getBucketNotification.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetBucketNotificationResult {
|
|
20
|
+
/**
|
|
21
|
+
* Bucket name.
|
|
22
|
+
*/
|
|
23
|
+
readonly bucketName: string;
|
|
24
|
+
/**
|
|
25
|
+
* Uniquely identifies the resource.
|
|
26
|
+
*/
|
|
27
|
+
readonly id: string;
|
|
28
|
+
/**
|
|
29
|
+
* Event notification rule information.
|
|
30
|
+
*/
|
|
31
|
+
readonly notificationRules: outputs.tos.GetBucketNotificationNotificationRule[];
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Data Source schema for Volcengine::TOS::BucketNotification
|
|
35
|
+
*/
|
|
36
|
+
export declare function getBucketNotificationOutput(args: GetBucketNotificationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBucketNotificationResult>;
|
|
37
|
+
/**
|
|
38
|
+
* A collection of arguments for invoking getBucketNotification.
|
|
39
|
+
*/
|
|
40
|
+
export interface GetBucketNotificationOutputArgs {
|
|
41
|
+
/**
|
|
42
|
+
* Uniquely identifies the resource.
|
|
43
|
+
*/
|
|
44
|
+
id: pulumi.Input<string>;
|
|
45
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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.getBucketNotificationOutput = exports.getBucketNotification = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data Source schema for Volcengine::TOS::BucketNotification
|
|
10
|
+
*/
|
|
11
|
+
function getBucketNotification(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:tos/getBucketNotification:getBucketNotification", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getBucketNotification = getBucketNotification;
|
|
18
|
+
/**
|
|
19
|
+
* Data Source schema for Volcengine::TOS::BucketNotification
|
|
20
|
+
*/
|
|
21
|
+
function getBucketNotificationOutput(args, opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invokeOutput("volcenginecc:tos/getBucketNotification:getBucketNotification", {
|
|
24
|
+
"id": args.id,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getBucketNotificationOutput = getBucketNotificationOutput;
|
|
28
|
+
//# sourceMappingURL=getBucketNotification.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getBucketNotification.js","sourceRoot":"","sources":["../../tos/getBucketNotification.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE;QACzF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sDAKC;AA6BD;;GAEG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAAiC;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8DAA8D,EAAE;QAC/F,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kEAKC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Plural Data Source schema for Volcengine::TOS::BucketNotification
|
|
4
|
+
*/
|
|
5
|
+
export declare function getBucketNotifications(opts?: pulumi.InvokeOptions): Promise<GetBucketNotificationsResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of values returned by getBucketNotifications.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetBucketNotificationsResult {
|
|
10
|
+
/**
|
|
11
|
+
* Uniquely identifies the data source.
|
|
12
|
+
*/
|
|
13
|
+
readonly id: string;
|
|
14
|
+
/**
|
|
15
|
+
* Set of Resource Identifiers.
|
|
16
|
+
*/
|
|
17
|
+
readonly ids: string[];
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Plural Data Source schema for Volcengine::TOS::BucketNotification
|
|
21
|
+
*/
|
|
22
|
+
export declare function getBucketNotificationsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBucketNotificationsResult>;
|
|
@@ -0,0 +1,24 @@
|
|
|
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.getBucketNotificationsOutput = exports.getBucketNotifications = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Plural Data Source schema for Volcengine::TOS::BucketNotification
|
|
10
|
+
*/
|
|
11
|
+
function getBucketNotifications(opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:tos/getBucketNotifications:getBucketNotifications", {}, opts);
|
|
14
|
+
}
|
|
15
|
+
exports.getBucketNotifications = getBucketNotifications;
|
|
16
|
+
/**
|
|
17
|
+
* Plural Data Source schema for Volcengine::TOS::BucketNotification
|
|
18
|
+
*/
|
|
19
|
+
function getBucketNotificationsOutput(opts) {
|
|
20
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
21
|
+
return pulumi.runtime.invokeOutput("volcenginecc:tos/getBucketNotifications:getBucketNotifications", {}, opts);
|
|
22
|
+
}
|
|
23
|
+
exports.getBucketNotificationsOutput = getBucketNotificationsOutput;
|
|
24
|
+
//# sourceMappingURL=getBucketNotifications.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getBucketNotifications.js","sourceRoot":"","sources":["../../tos/getBucketNotifications.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,sBAAsB,CAAC,IAA2B;IAC9D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gEAAgE,EAAE,EAC9F,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,wDAIC;AAeD;;GAEG;AACH,SAAgB,4BAA4B,CAAC,IAAiC;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gEAAgE,EAAE,EACpG,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,oEAIC"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data Source schema for Volcengine::TOS::BucketRealtimeLog
|
|
5
|
+
*/
|
|
6
|
+
export declare function getBucketRealtimeLog(args: GetBucketRealtimeLogArgs, opts?: pulumi.InvokeOptions): Promise<GetBucketRealtimeLogResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getBucketRealtimeLog.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetBucketRealtimeLogArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Uniquely identifies the resource.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getBucketRealtimeLog.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetBucketRealtimeLogResult {
|
|
20
|
+
/**
|
|
21
|
+
* Bucket name
|
|
22
|
+
*/
|
|
23
|
+
readonly bucketName: string;
|
|
24
|
+
/**
|
|
25
|
+
* Uniquely identifies the resource.
|
|
26
|
+
*/
|
|
27
|
+
readonly id: string;
|
|
28
|
+
/**
|
|
29
|
+
* Log analysis feature for the bucket
|
|
30
|
+
*/
|
|
31
|
+
readonly realTimeLog: outputs.tos.GetBucketRealtimeLogRealTimeLog;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Data Source schema for Volcengine::TOS::BucketRealtimeLog
|
|
35
|
+
*/
|
|
36
|
+
export declare function getBucketRealtimeLogOutput(args: GetBucketRealtimeLogOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBucketRealtimeLogResult>;
|
|
37
|
+
/**
|
|
38
|
+
* A collection of arguments for invoking getBucketRealtimeLog.
|
|
39
|
+
*/
|
|
40
|
+
export interface GetBucketRealtimeLogOutputArgs {
|
|
41
|
+
/**
|
|
42
|
+
* Uniquely identifies the resource.
|
|
43
|
+
*/
|
|
44
|
+
id: pulumi.Input<string>;
|
|
45
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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.getBucketRealtimeLogOutput = exports.getBucketRealtimeLog = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data Source schema for Volcengine::TOS::BucketRealtimeLog
|
|
10
|
+
*/
|
|
11
|
+
function getBucketRealtimeLog(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:tos/getBucketRealtimeLog:getBucketRealtimeLog", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getBucketRealtimeLog = getBucketRealtimeLog;
|
|
18
|
+
/**
|
|
19
|
+
* Data Source schema for Volcengine::TOS::BucketRealtimeLog
|
|
20
|
+
*/
|
|
21
|
+
function getBucketRealtimeLogOutput(args, opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invokeOutput("volcenginecc:tos/getBucketRealtimeLog:getBucketRealtimeLog", {
|
|
24
|
+
"id": args.id,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getBucketRealtimeLogOutput = getBucketRealtimeLogOutput;
|
|
28
|
+
//# sourceMappingURL=getBucketRealtimeLog.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getBucketRealtimeLog.js","sourceRoot":"","sources":["../../tos/getBucketRealtimeLog.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oDAKC;AA6BD;;GAEG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAAiC;IAC9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4DAA4D,EAAE;QAC7F,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gEAKC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Plural Data Source schema for Volcengine::TOS::BucketRealtimeLog
|
|
4
|
+
*/
|
|
5
|
+
export declare function getBucketRealtimeLogs(opts?: pulumi.InvokeOptions): Promise<GetBucketRealtimeLogsResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of values returned by getBucketRealtimeLogs.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetBucketRealtimeLogsResult {
|
|
10
|
+
/**
|
|
11
|
+
* Uniquely identifies the data source.
|
|
12
|
+
*/
|
|
13
|
+
readonly id: string;
|
|
14
|
+
/**
|
|
15
|
+
* Set of Resource Identifiers.
|
|
16
|
+
*/
|
|
17
|
+
readonly ids: string[];
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Plural Data Source schema for Volcengine::TOS::BucketRealtimeLog
|
|
21
|
+
*/
|
|
22
|
+
export declare function getBucketRealtimeLogsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBucketRealtimeLogsResult>;
|
|
@@ -0,0 +1,24 @@
|
|
|
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.getBucketRealtimeLogsOutput = exports.getBucketRealtimeLogs = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Plural Data Source schema for Volcengine::TOS::BucketRealtimeLog
|
|
10
|
+
*/
|
|
11
|
+
function getBucketRealtimeLogs(opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:tos/getBucketRealtimeLogs:getBucketRealtimeLogs", {}, opts);
|
|
14
|
+
}
|
|
15
|
+
exports.getBucketRealtimeLogs = getBucketRealtimeLogs;
|
|
16
|
+
/**
|
|
17
|
+
* Plural Data Source schema for Volcengine::TOS::BucketRealtimeLog
|
|
18
|
+
*/
|
|
19
|
+
function getBucketRealtimeLogsOutput(opts) {
|
|
20
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
21
|
+
return pulumi.runtime.invokeOutput("volcenginecc:tos/getBucketRealtimeLogs:getBucketRealtimeLogs", {}, opts);
|
|
22
|
+
}
|
|
23
|
+
exports.getBucketRealtimeLogsOutput = getBucketRealtimeLogsOutput;
|
|
24
|
+
//# sourceMappingURL=getBucketRealtimeLogs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getBucketRealtimeLogs.js","sourceRoot":"","sources":["../../tos/getBucketRealtimeLogs.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA2B;IAC7D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE,EAC5F,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,sDAIC;AAeD;;GAEG;AACH,SAAgB,2BAA2B,CAAC,IAAiC;IACzE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8DAA8D,EAAE,EAClG,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,kEAIC"}
|
package/tos/index.d.ts
CHANGED
|
@@ -1,15 +1,27 @@
|
|
|
1
1
|
export { BucketArgs, BucketState } from "./bucket";
|
|
2
2
|
export type Bucket = import("./bucket").Bucket;
|
|
3
3
|
export declare const Bucket: typeof import("./bucket").Bucket;
|
|
4
|
+
export { BucketCorsArgs, BucketCorsState } from "./bucketCors";
|
|
5
|
+
export type BucketCors = import("./bucketCors").BucketCors;
|
|
6
|
+
export declare const BucketCors: typeof import("./bucketCors").BucketCors;
|
|
4
7
|
export { BucketEncryptionArgs, BucketEncryptionState } from "./bucketEncryption";
|
|
5
8
|
export type BucketEncryption = import("./bucketEncryption").BucketEncryption;
|
|
6
9
|
export declare const BucketEncryption: typeof import("./bucketEncryption").BucketEncryption;
|
|
7
10
|
export { BucketInventoryArgs, BucketInventoryState } from "./bucketInventory";
|
|
8
11
|
export type BucketInventory = import("./bucketInventory").BucketInventory;
|
|
9
12
|
export declare const BucketInventory: typeof import("./bucketInventory").BucketInventory;
|
|
13
|
+
export { BucketNotificationArgs, BucketNotificationState } from "./bucketNotification";
|
|
14
|
+
export type BucketNotification = import("./bucketNotification").BucketNotification;
|
|
15
|
+
export declare const BucketNotification: typeof import("./bucketNotification").BucketNotification;
|
|
16
|
+
export { BucketRealtimeLogArgs, BucketRealtimeLogState } from "./bucketRealtimeLog";
|
|
17
|
+
export type BucketRealtimeLog = import("./bucketRealtimeLog").BucketRealtimeLog;
|
|
18
|
+
export declare const BucketRealtimeLog: typeof import("./bucketRealtimeLog").BucketRealtimeLog;
|
|
10
19
|
export { GetBucketArgs, GetBucketResult, GetBucketOutputArgs } from "./getBucket";
|
|
11
20
|
export declare const getBucket: typeof import("./getBucket").getBucket;
|
|
12
21
|
export declare const getBucketOutput: typeof import("./getBucket").getBucketOutput;
|
|
22
|
+
export { GetBucketCorsArgs, GetBucketCorsResult, GetBucketCorsOutputArgs } from "./getBucketCors";
|
|
23
|
+
export declare const getBucketCors: typeof import("./getBucketCors").getBucketCors;
|
|
24
|
+
export declare const getBucketCorsOutput: typeof import("./getBucketCors").getBucketCorsOutput;
|
|
13
25
|
export { GetBucketEncryptionArgs, GetBucketEncryptionResult, GetBucketEncryptionOutputArgs } from "./getBucketEncryption";
|
|
14
26
|
export declare const getBucketEncryption: typeof import("./getBucketEncryption").getBucketEncryption;
|
|
15
27
|
export declare const getBucketEncryptionOutput: typeof import("./getBucketEncryption").getBucketEncryptionOutput;
|
|
@@ -22,6 +34,18 @@ export declare const getBucketInventoriesOutput: typeof import("./getBucketInven
|
|
|
22
34
|
export { GetBucketInventoryArgs, GetBucketInventoryResult, GetBucketInventoryOutputArgs } from "./getBucketInventory";
|
|
23
35
|
export declare const getBucketInventory: typeof import("./getBucketInventory").getBucketInventory;
|
|
24
36
|
export declare const getBucketInventoryOutput: typeof import("./getBucketInventory").getBucketInventoryOutput;
|
|
37
|
+
export { GetBucketNotificationArgs, GetBucketNotificationResult, GetBucketNotificationOutputArgs } from "./getBucketNotification";
|
|
38
|
+
export declare const getBucketNotification: typeof import("./getBucketNotification").getBucketNotification;
|
|
39
|
+
export declare const getBucketNotificationOutput: typeof import("./getBucketNotification").getBucketNotificationOutput;
|
|
40
|
+
export { GetBucketNotificationsResult } from "./getBucketNotifications";
|
|
41
|
+
export declare const getBucketNotifications: typeof import("./getBucketNotifications").getBucketNotifications;
|
|
42
|
+
export declare const getBucketNotificationsOutput: typeof import("./getBucketNotifications").getBucketNotificationsOutput;
|
|
43
|
+
export { GetBucketRealtimeLogArgs, GetBucketRealtimeLogResult, GetBucketRealtimeLogOutputArgs } from "./getBucketRealtimeLog";
|
|
44
|
+
export declare const getBucketRealtimeLog: typeof import("./getBucketRealtimeLog").getBucketRealtimeLog;
|
|
45
|
+
export declare const getBucketRealtimeLogOutput: typeof import("./getBucketRealtimeLog").getBucketRealtimeLogOutput;
|
|
46
|
+
export { GetBucketRealtimeLogsResult } from "./getBucketRealtimeLogs";
|
|
47
|
+
export declare const getBucketRealtimeLogs: typeof import("./getBucketRealtimeLogs").getBucketRealtimeLogs;
|
|
48
|
+
export declare const getBucketRealtimeLogsOutput: typeof import("./getBucketRealtimeLogs").getBucketRealtimeLogsOutput;
|
|
25
49
|
export { GetBucketsResult } from "./getBuckets";
|
|
26
50
|
export declare const getBuckets: typeof import("./getBuckets").getBuckets;
|
|
27
51
|
export declare const getBucketsOutput: typeof import("./getBuckets").getBucketsOutput;
|
package/tos/index.js
CHANGED
|
@@ -2,18 +2,27 @@
|
|
|
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.getBucketsOutput = exports.getBuckets = exports.getBucketInventoryOutput = exports.getBucketInventory = exports.getBucketInventoriesOutput = exports.getBucketInventories = exports.getBucketEncryptionsOutput = exports.getBucketEncryptions = exports.getBucketEncryptionOutput = exports.getBucketEncryption = exports.getBucketOutput = exports.getBucket = exports.BucketInventory = exports.BucketEncryption = exports.Bucket = void 0;
|
|
5
|
+
exports.getBucketsOutput = exports.getBuckets = exports.getBucketRealtimeLogsOutput = exports.getBucketRealtimeLogs = exports.getBucketRealtimeLogOutput = exports.getBucketRealtimeLog = exports.getBucketNotificationsOutput = exports.getBucketNotifications = exports.getBucketNotificationOutput = exports.getBucketNotification = exports.getBucketInventoryOutput = exports.getBucketInventory = exports.getBucketInventoriesOutput = exports.getBucketInventories = exports.getBucketEncryptionsOutput = exports.getBucketEncryptions = exports.getBucketEncryptionOutput = exports.getBucketEncryption = exports.getBucketCorsOutput = exports.getBucketCors = exports.getBucketOutput = exports.getBucket = exports.BucketRealtimeLog = exports.BucketNotification = exports.BucketInventory = exports.BucketEncryption = exports.BucketCors = exports.Bucket = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.Bucket = null;
|
|
9
9
|
utilities.lazyLoad(exports, ["Bucket"], () => require("./bucket"));
|
|
10
|
+
exports.BucketCors = null;
|
|
11
|
+
utilities.lazyLoad(exports, ["BucketCors"], () => require("./bucketCors"));
|
|
10
12
|
exports.BucketEncryption = null;
|
|
11
13
|
utilities.lazyLoad(exports, ["BucketEncryption"], () => require("./bucketEncryption"));
|
|
12
14
|
exports.BucketInventory = null;
|
|
13
15
|
utilities.lazyLoad(exports, ["BucketInventory"], () => require("./bucketInventory"));
|
|
16
|
+
exports.BucketNotification = null;
|
|
17
|
+
utilities.lazyLoad(exports, ["BucketNotification"], () => require("./bucketNotification"));
|
|
18
|
+
exports.BucketRealtimeLog = null;
|
|
19
|
+
utilities.lazyLoad(exports, ["BucketRealtimeLog"], () => require("./bucketRealtimeLog"));
|
|
14
20
|
exports.getBucket = null;
|
|
15
21
|
exports.getBucketOutput = null;
|
|
16
22
|
utilities.lazyLoad(exports, ["getBucket", "getBucketOutput"], () => require("./getBucket"));
|
|
23
|
+
exports.getBucketCors = null;
|
|
24
|
+
exports.getBucketCorsOutput = null;
|
|
25
|
+
utilities.lazyLoad(exports, ["getBucketCors", "getBucketCorsOutput"], () => require("./getBucketCors"));
|
|
17
26
|
exports.getBucketEncryption = null;
|
|
18
27
|
exports.getBucketEncryptionOutput = null;
|
|
19
28
|
utilities.lazyLoad(exports, ["getBucketEncryption", "getBucketEncryptionOutput"], () => require("./getBucketEncryption"));
|
|
@@ -26,6 +35,18 @@ utilities.lazyLoad(exports, ["getBucketInventories", "getBucketInventoriesOutput
|
|
|
26
35
|
exports.getBucketInventory = null;
|
|
27
36
|
exports.getBucketInventoryOutput = null;
|
|
28
37
|
utilities.lazyLoad(exports, ["getBucketInventory", "getBucketInventoryOutput"], () => require("./getBucketInventory"));
|
|
38
|
+
exports.getBucketNotification = null;
|
|
39
|
+
exports.getBucketNotificationOutput = null;
|
|
40
|
+
utilities.lazyLoad(exports, ["getBucketNotification", "getBucketNotificationOutput"], () => require("./getBucketNotification"));
|
|
41
|
+
exports.getBucketNotifications = null;
|
|
42
|
+
exports.getBucketNotificationsOutput = null;
|
|
43
|
+
utilities.lazyLoad(exports, ["getBucketNotifications", "getBucketNotificationsOutput"], () => require("./getBucketNotifications"));
|
|
44
|
+
exports.getBucketRealtimeLog = null;
|
|
45
|
+
exports.getBucketRealtimeLogOutput = null;
|
|
46
|
+
utilities.lazyLoad(exports, ["getBucketRealtimeLog", "getBucketRealtimeLogOutput"], () => require("./getBucketRealtimeLog"));
|
|
47
|
+
exports.getBucketRealtimeLogs = null;
|
|
48
|
+
exports.getBucketRealtimeLogsOutput = null;
|
|
49
|
+
utilities.lazyLoad(exports, ["getBucketRealtimeLogs", "getBucketRealtimeLogsOutput"], () => require("./getBucketRealtimeLogs"));
|
|
29
50
|
exports.getBuckets = null;
|
|
30
51
|
exports.getBucketsOutput = null;
|
|
31
52
|
utilities.lazyLoad(exports, ["getBuckets", "getBucketsOutput"], () => require("./getBuckets"));
|
|
@@ -35,16 +56,25 @@ const _module = {
|
|
|
35
56
|
switch (type) {
|
|
36
57
|
case "volcenginecc:tos/bucket:Bucket":
|
|
37
58
|
return new exports.Bucket(name, undefined, { urn });
|
|
59
|
+
case "volcenginecc:tos/bucketCors:BucketCors":
|
|
60
|
+
return new exports.BucketCors(name, undefined, { urn });
|
|
38
61
|
case "volcenginecc:tos/bucketEncryption:BucketEncryption":
|
|
39
62
|
return new exports.BucketEncryption(name, undefined, { urn });
|
|
40
63
|
case "volcenginecc:tos/bucketInventory:BucketInventory":
|
|
41
64
|
return new exports.BucketInventory(name, undefined, { urn });
|
|
65
|
+
case "volcenginecc:tos/bucketNotification:BucketNotification":
|
|
66
|
+
return new exports.BucketNotification(name, undefined, { urn });
|
|
67
|
+
case "volcenginecc:tos/bucketRealtimeLog:BucketRealtimeLog":
|
|
68
|
+
return new exports.BucketRealtimeLog(name, undefined, { urn });
|
|
42
69
|
default:
|
|
43
70
|
throw new Error(`unknown resource type ${type}`);
|
|
44
71
|
}
|
|
45
72
|
},
|
|
46
73
|
};
|
|
47
74
|
pulumi.runtime.registerResourceModule("volcenginecc", "tos/bucket", _module);
|
|
75
|
+
pulumi.runtime.registerResourceModule("volcenginecc", "tos/bucketCors", _module);
|
|
48
76
|
pulumi.runtime.registerResourceModule("volcenginecc", "tos/bucketEncryption", _module);
|
|
49
77
|
pulumi.runtime.registerResourceModule("volcenginecc", "tos/bucketInventory", _module);
|
|
78
|
+
pulumi.runtime.registerResourceModule("volcenginecc", "tos/bucketNotification", _module);
|
|
79
|
+
pulumi.runtime.registerResourceModule("volcenginecc", "tos/bucketRealtimeLog", _module);
|
|
50
80
|
//# sourceMappingURL=index.js.map
|
package/tos/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../tos/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,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,gBAAgB,GAAyD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAI1E,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../tos/index.ts"],"names":[],"mappings":"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"}
|