@volcengine/pulumi-volcenginecc 0.0.39 → 0.0.40
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 +7 -1
- package/cloudmonitor/contactGroup.d.ts +106 -0
- package/cloudmonitor/contactGroup.js +73 -0
- package/cloudmonitor/contactGroup.js.map +1 -0
- package/cloudmonitor/getContactGroup.d.ts +65 -0
- package/cloudmonitor/getContactGroup.js +28 -0
- package/cloudmonitor/getContactGroup.js.map +1 -0
- package/cloudmonitor/getContactGroups.d.ts +22 -0
- package/cloudmonitor/getContactGroups.js +24 -0
- package/cloudmonitor/getContactGroups.js.map +1 -0
- package/cloudmonitor/index.d.ts +9 -0
- package/cloudmonitor/index.js +12 -1
- package/cloudmonitor/index.js.map +1 -1
- package/id/getService.d.ts +109 -0
- package/id/getService.js +28 -0
- package/id/getService.js.map +1 -0
- package/id/getServices.d.ts +22 -0
- package/id/getServices.js +24 -0
- package/id/getServices.js.map +1 -0
- package/id/index.d.ts +9 -0
- package/id/index.js +28 -0
- package/id/index.js.map +1 -0
- package/id/service.d.ts +209 -0
- package/id/service.js +101 -0
- package/id/service.js.map +1 -0
- package/index.d.ts +2 -1
- package/index.js +4 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types/input.d.ts +157 -0
- package/types/output.d.ts +333 -0
package/README.md
CHANGED
|
@@ -77,4 +77,10 @@ Required:
|
|
|
77
77
|
Optional:
|
|
78
78
|
|
|
79
79
|
- `cloudcontrolapi` (String) Use this to override the default Cloud Control API service endpoint URL
|
|
80
|
-
- `sts` (String) Use this to override the default STS service endpoint URL
|
|
80
|
+
- `sts` (String) Use this to override the default STS service endpoint URL
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
## Security and privacy
|
|
84
|
+
|
|
85
|
+
This project takes security seriously.
|
|
86
|
+
For vulnerability reporting and supported versions, see [SECURITY.md](SECURITY.md)
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* 符合条件的联系组的详细信息。
|
|
6
|
+
*
|
|
7
|
+
* ## Import
|
|
8
|
+
*
|
|
9
|
+
* ```sh
|
|
10
|
+
* $ pulumi import volcenginecc:cloudmonitor/contactGroup:ContactGroup example "contact_group_id"
|
|
11
|
+
* ```
|
|
12
|
+
*/
|
|
13
|
+
export declare class ContactGroup extends pulumi.CustomResource {
|
|
14
|
+
/**
|
|
15
|
+
* Get an existing ContactGroup resource's state with the given name, ID, and optional extra
|
|
16
|
+
* properties used to qualify the lookup.
|
|
17
|
+
*
|
|
18
|
+
* @param name The _unique_ name of the resulting resource.
|
|
19
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
20
|
+
* @param state Any extra arguments used during the lookup.
|
|
21
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
22
|
+
*/
|
|
23
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ContactGroupState, opts?: pulumi.CustomResourceOptions): ContactGroup;
|
|
24
|
+
/**
|
|
25
|
+
* Returns true if the given object is an instance of ContactGroup. This is designed to work even
|
|
26
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
27
|
+
*/
|
|
28
|
+
static isInstance(obj: any): obj is ContactGroup;
|
|
29
|
+
/**
|
|
30
|
+
* 创建本联系组的账号ID。
|
|
31
|
+
*/
|
|
32
|
+
readonly accountId: pulumi.Output<string>;
|
|
33
|
+
/**
|
|
34
|
+
* 联系组的ID。
|
|
35
|
+
*/
|
|
36
|
+
readonly contactGroupId: pulumi.Output<string>;
|
|
37
|
+
readonly contacts: pulumi.Output<outputs.cloudmonitor.ContactGroupContact[]>;
|
|
38
|
+
/**
|
|
39
|
+
* 联系组的创建时间。
|
|
40
|
+
*/
|
|
41
|
+
readonly createdAt: pulumi.Output<string>;
|
|
42
|
+
/**
|
|
43
|
+
* 联系组的描述。若不填,默认为空字符串。长度限制在 1~255 字符之间。允许包含中文、英文、下划线等特殊字符。
|
|
44
|
+
*/
|
|
45
|
+
readonly description: pulumi.Output<string>;
|
|
46
|
+
/**
|
|
47
|
+
* 联系组名称。不能以数字、中划线开头。只能包含中文、字母、数字、下划线_和中划线-。长度限制在 1~128 字符之间。
|
|
48
|
+
*/
|
|
49
|
+
readonly name: pulumi.Output<string>;
|
|
50
|
+
/**
|
|
51
|
+
* 联系组的更新时间。
|
|
52
|
+
*/
|
|
53
|
+
readonly updatedAt: pulumi.Output<string>;
|
|
54
|
+
/**
|
|
55
|
+
* Create a ContactGroup resource with the given unique name, arguments, and options.
|
|
56
|
+
*
|
|
57
|
+
* @param name The _unique_ name of the resource.
|
|
58
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
59
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
60
|
+
*/
|
|
61
|
+
constructor(name: string, args: ContactGroupArgs, opts?: pulumi.CustomResourceOptions);
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Input properties used for looking up and filtering ContactGroup resources.
|
|
65
|
+
*/
|
|
66
|
+
export interface ContactGroupState {
|
|
67
|
+
/**
|
|
68
|
+
* 创建本联系组的账号ID。
|
|
69
|
+
*/
|
|
70
|
+
accountId?: pulumi.Input<string>;
|
|
71
|
+
/**
|
|
72
|
+
* 联系组的ID。
|
|
73
|
+
*/
|
|
74
|
+
contactGroupId?: pulumi.Input<string>;
|
|
75
|
+
contacts?: pulumi.Input<pulumi.Input<inputs.cloudmonitor.ContactGroupContact>[]>;
|
|
76
|
+
/**
|
|
77
|
+
* 联系组的创建时间。
|
|
78
|
+
*/
|
|
79
|
+
createdAt?: pulumi.Input<string>;
|
|
80
|
+
/**
|
|
81
|
+
* 联系组的描述。若不填,默认为空字符串。长度限制在 1~255 字符之间。允许包含中文、英文、下划线等特殊字符。
|
|
82
|
+
*/
|
|
83
|
+
description?: pulumi.Input<string>;
|
|
84
|
+
/**
|
|
85
|
+
* 联系组名称。不能以数字、中划线开头。只能包含中文、字母、数字、下划线_和中划线-。长度限制在 1~128 字符之间。
|
|
86
|
+
*/
|
|
87
|
+
name?: pulumi.Input<string>;
|
|
88
|
+
/**
|
|
89
|
+
* 联系组的更新时间。
|
|
90
|
+
*/
|
|
91
|
+
updatedAt?: pulumi.Input<string>;
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* The set of arguments for constructing a ContactGroup resource.
|
|
95
|
+
*/
|
|
96
|
+
export interface ContactGroupArgs {
|
|
97
|
+
contacts?: pulumi.Input<pulumi.Input<inputs.cloudmonitor.ContactGroupContact>[]>;
|
|
98
|
+
/**
|
|
99
|
+
* 联系组的描述。若不填,默认为空字符串。长度限制在 1~255 字符之间。允许包含中文、英文、下划线等特殊字符。
|
|
100
|
+
*/
|
|
101
|
+
description?: pulumi.Input<string>;
|
|
102
|
+
/**
|
|
103
|
+
* 联系组名称。不能以数字、中划线开头。只能包含中文、字母、数字、下划线_和中划线-。长度限制在 1~128 字符之间。
|
|
104
|
+
*/
|
|
105
|
+
name: pulumi.Input<string>;
|
|
106
|
+
}
|
|
@@ -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.ContactGroup = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* 符合条件的联系组的详细信息。
|
|
10
|
+
*
|
|
11
|
+
* ## Import
|
|
12
|
+
*
|
|
13
|
+
* ```sh
|
|
14
|
+
* $ pulumi import volcenginecc:cloudmonitor/contactGroup:ContactGroup example "contact_group_id"
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
class ContactGroup extends pulumi.CustomResource {
|
|
18
|
+
/**
|
|
19
|
+
* Get an existing ContactGroup resource's state with the given name, ID, and optional extra
|
|
20
|
+
* properties used to qualify the lookup.
|
|
21
|
+
*
|
|
22
|
+
* @param name The _unique_ name of the resulting resource.
|
|
23
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
24
|
+
* @param state Any extra arguments used during the lookup.
|
|
25
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
26
|
+
*/
|
|
27
|
+
static get(name, id, state, opts) {
|
|
28
|
+
return new ContactGroup(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Returns true if the given object is an instance of ContactGroup. This is designed to work even
|
|
32
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
33
|
+
*/
|
|
34
|
+
static isInstance(obj) {
|
|
35
|
+
if (obj === undefined || obj === null) {
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
return obj['__pulumiType'] === ContactGroup.__pulumiType;
|
|
39
|
+
}
|
|
40
|
+
constructor(name, argsOrState, opts) {
|
|
41
|
+
let resourceInputs = {};
|
|
42
|
+
opts = opts || {};
|
|
43
|
+
if (opts.id) {
|
|
44
|
+
const state = argsOrState;
|
|
45
|
+
resourceInputs["accountId"] = state ? state.accountId : undefined;
|
|
46
|
+
resourceInputs["contactGroupId"] = state ? state.contactGroupId : undefined;
|
|
47
|
+
resourceInputs["contacts"] = state ? state.contacts : undefined;
|
|
48
|
+
resourceInputs["createdAt"] = state ? state.createdAt : undefined;
|
|
49
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
50
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
51
|
+
resourceInputs["updatedAt"] = state ? state.updatedAt : undefined;
|
|
52
|
+
}
|
|
53
|
+
else {
|
|
54
|
+
const args = argsOrState;
|
|
55
|
+
if ((!args || args.name === undefined) && !opts.urn) {
|
|
56
|
+
throw new Error("Missing required property 'name'");
|
|
57
|
+
}
|
|
58
|
+
resourceInputs["contacts"] = args ? args.contacts : undefined;
|
|
59
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
60
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
61
|
+
resourceInputs["accountId"] = undefined /*out*/;
|
|
62
|
+
resourceInputs["contactGroupId"] = undefined /*out*/;
|
|
63
|
+
resourceInputs["createdAt"] = undefined /*out*/;
|
|
64
|
+
resourceInputs["updatedAt"] = undefined /*out*/;
|
|
65
|
+
}
|
|
66
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
67
|
+
super(ContactGroup.__pulumiType, name, resourceInputs, opts);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
exports.ContactGroup = ContactGroup;
|
|
71
|
+
/** @internal */
|
|
72
|
+
ContactGroup.__pulumiType = 'volcenginecc:cloudmonitor/contactGroup:ContactGroup';
|
|
73
|
+
//# sourceMappingURL=contactGroup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contactGroup.js","sourceRoot":"","sources":["../../cloudmonitor/contactGroup.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data Source schema for Volcengine::CloudMonitor::ContactGroup
|
|
5
|
+
*/
|
|
6
|
+
export declare function getContactGroup(args: GetContactGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetContactGroupResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getContactGroup.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetContactGroupArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Uniquely identifies the resource.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getContactGroup.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetContactGroupResult {
|
|
20
|
+
/**
|
|
21
|
+
* 创建本联系组的账号ID。
|
|
22
|
+
*/
|
|
23
|
+
readonly accountId: string;
|
|
24
|
+
/**
|
|
25
|
+
* 联系组的ID。
|
|
26
|
+
*/
|
|
27
|
+
readonly contactGroupId: string;
|
|
28
|
+
/**
|
|
29
|
+
* 联系组中的联系信息。
|
|
30
|
+
*/
|
|
31
|
+
readonly contacts: outputs.cloudmonitor.GetContactGroupContact[];
|
|
32
|
+
/**
|
|
33
|
+
* 联系组的创建时间。
|
|
34
|
+
*/
|
|
35
|
+
readonly createdAt: string;
|
|
36
|
+
/**
|
|
37
|
+
* 联系组的描述。若不填,默认为空字符串。长度限制在 1~255 字符之间。允许包含中文、英文、下划线等特殊字符。
|
|
38
|
+
*/
|
|
39
|
+
readonly description: string;
|
|
40
|
+
/**
|
|
41
|
+
* Uniquely identifies the resource.
|
|
42
|
+
*/
|
|
43
|
+
readonly id: string;
|
|
44
|
+
/**
|
|
45
|
+
* 联系组名称。不能以数字、中划线开头。只能包含中文、字母、数字、下划线_和中划线-。长度限制在 1~128 字符之间。
|
|
46
|
+
*/
|
|
47
|
+
readonly name: string;
|
|
48
|
+
/**
|
|
49
|
+
* 联系组的更新时间。
|
|
50
|
+
*/
|
|
51
|
+
readonly updatedAt: string;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Data Source schema for Volcengine::CloudMonitor::ContactGroup
|
|
55
|
+
*/
|
|
56
|
+
export declare function getContactGroupOutput(args: GetContactGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetContactGroupResult>;
|
|
57
|
+
/**
|
|
58
|
+
* A collection of arguments for invoking getContactGroup.
|
|
59
|
+
*/
|
|
60
|
+
export interface GetContactGroupOutputArgs {
|
|
61
|
+
/**
|
|
62
|
+
* Uniquely identifies the resource.
|
|
63
|
+
*/
|
|
64
|
+
id: pulumi.Input<string>;
|
|
65
|
+
}
|
|
@@ -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.getContactGroupOutput = exports.getContactGroup = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data Source schema for Volcengine::CloudMonitor::ContactGroup
|
|
10
|
+
*/
|
|
11
|
+
function getContactGroup(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:cloudmonitor/getContactGroup:getContactGroup", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getContactGroup = getContactGroup;
|
|
18
|
+
/**
|
|
19
|
+
* Data Source schema for Volcengine::CloudMonitor::ContactGroup
|
|
20
|
+
*/
|
|
21
|
+
function getContactGroupOutput(args, opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invokeOutput("volcenginecc:cloudmonitor/getContactGroup:getContactGroup", {
|
|
24
|
+
"id": args.id,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getContactGroupOutput = getContactGroupOutput;
|
|
28
|
+
//# sourceMappingURL=getContactGroup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getContactGroup.js","sourceRoot":"","sources":["../../cloudmonitor/getContactGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0CAKC;AAiDD;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAAiC;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2DAA2D,EAAE;QAC5F,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sDAKC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Plural Data Source schema for Volcengine::CloudMonitor::ContactGroup
|
|
4
|
+
*/
|
|
5
|
+
export declare function getContactGroups(opts?: pulumi.InvokeOptions): Promise<GetContactGroupsResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of values returned by getContactGroups.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetContactGroupsResult {
|
|
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::CloudMonitor::ContactGroup
|
|
21
|
+
*/
|
|
22
|
+
export declare function getContactGroupsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetContactGroupsResult>;
|
|
@@ -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.getContactGroupsOutput = exports.getContactGroups = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Plural Data Source schema for Volcengine::CloudMonitor::ContactGroup
|
|
10
|
+
*/
|
|
11
|
+
function getContactGroups(opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:cloudmonitor/getContactGroups:getContactGroups", {}, opts);
|
|
14
|
+
}
|
|
15
|
+
exports.getContactGroups = getContactGroups;
|
|
16
|
+
/**
|
|
17
|
+
* Plural Data Source schema for Volcengine::CloudMonitor::ContactGroup
|
|
18
|
+
*/
|
|
19
|
+
function getContactGroupsOutput(opts) {
|
|
20
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
21
|
+
return pulumi.runtime.invokeOutput("volcenginecc:cloudmonitor/getContactGroups:getContactGroups", {}, opts);
|
|
22
|
+
}
|
|
23
|
+
exports.getContactGroupsOutput = getContactGroupsOutput;
|
|
24
|
+
//# sourceMappingURL=getContactGroups.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getContactGroups.js","sourceRoot":"","sources":["../../cloudmonitor/getContactGroups.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,gBAAgB,CAAC,IAA2B;IACxD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6DAA6D,EAAE,EAC3F,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,4CAIC;AAeD;;GAEG;AACH,SAAgB,sBAAsB,CAAC,IAAiC;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,6DAA6D,EAAE,EACjG,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,wDAIC"}
|
package/cloudmonitor/index.d.ts
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
export { ContactGroupArgs, ContactGroupState } from "./contactGroup";
|
|
2
|
+
export type ContactGroup = import("./contactGroup").ContactGroup;
|
|
3
|
+
export declare const ContactGroup: typeof import("./contactGroup").ContactGroup;
|
|
4
|
+
export { GetContactGroupArgs, GetContactGroupResult, GetContactGroupOutputArgs } from "./getContactGroup";
|
|
5
|
+
export declare const getContactGroup: typeof import("./getContactGroup").getContactGroup;
|
|
6
|
+
export declare const getContactGroupOutput: typeof import("./getContactGroup").getContactGroupOutput;
|
|
7
|
+
export { GetContactGroupsResult } from "./getContactGroups";
|
|
8
|
+
export declare const getContactGroups: typeof import("./getContactGroups").getContactGroups;
|
|
9
|
+
export declare const getContactGroupsOutput: typeof import("./getContactGroups").getContactGroupsOutput;
|
|
1
10
|
export { GetRuleArgs, GetRuleResult, GetRuleOutputArgs } from "./getRule";
|
|
2
11
|
export declare const getRule: typeof import("./getRule").getRule;
|
|
3
12
|
export declare const getRuleOutput: typeof import("./getRule").getRuleOutput;
|
package/cloudmonitor/index.js
CHANGED
|
@@ -2,9 +2,17 @@
|
|
|
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.Rule = exports.getRulesOutput = exports.getRules = exports.getRuleOutput = exports.getRule = void 0;
|
|
5
|
+
exports.Rule = exports.getRulesOutput = exports.getRules = exports.getRuleOutput = exports.getRule = exports.getContactGroupsOutput = exports.getContactGroups = exports.getContactGroupOutput = exports.getContactGroup = exports.ContactGroup = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
|
+
exports.ContactGroup = null;
|
|
9
|
+
utilities.lazyLoad(exports, ["ContactGroup"], () => require("./contactGroup"));
|
|
10
|
+
exports.getContactGroup = null;
|
|
11
|
+
exports.getContactGroupOutput = null;
|
|
12
|
+
utilities.lazyLoad(exports, ["getContactGroup", "getContactGroupOutput"], () => require("./getContactGroup"));
|
|
13
|
+
exports.getContactGroups = null;
|
|
14
|
+
exports.getContactGroupsOutput = null;
|
|
15
|
+
utilities.lazyLoad(exports, ["getContactGroups", "getContactGroupsOutput"], () => require("./getContactGroups"));
|
|
8
16
|
exports.getRule = null;
|
|
9
17
|
exports.getRuleOutput = null;
|
|
10
18
|
utilities.lazyLoad(exports, ["getRule", "getRuleOutput"], () => require("./getRule"));
|
|
@@ -17,6 +25,8 @@ const _module = {
|
|
|
17
25
|
version: utilities.getVersion(),
|
|
18
26
|
construct: (name, type, urn) => {
|
|
19
27
|
switch (type) {
|
|
28
|
+
case "volcenginecc:cloudmonitor/contactGroup:ContactGroup":
|
|
29
|
+
return new exports.ContactGroup(name, undefined, { urn });
|
|
20
30
|
case "volcenginecc:cloudmonitor/rule:Rule":
|
|
21
31
|
return new exports.Rule(name, undefined, { urn });
|
|
22
32
|
default:
|
|
@@ -24,5 +34,6 @@ const _module = {
|
|
|
24
34
|
}
|
|
25
35
|
},
|
|
26
36
|
};
|
|
37
|
+
pulumi.runtime.registerResourceModule("volcenginecc", "cloudmonitor/contactGroup", _module);
|
|
27
38
|
pulumi.runtime.registerResourceModule("volcenginecc", "cloudmonitor/rule", _module);
|
|
28
39
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../cloudmonitor/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../cloudmonitor/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,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;AAGlE,QAAA,eAAe,GAAuD,IAAW,CAAC;AAClF,QAAA,qBAAqB,GAA6D,IAAW,CAAC;AAC3G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,EAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAGhG,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AACrF,QAAA,sBAAsB,GAA+D,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,EAAC,wBAAwB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAGnG,QAAA,OAAO,GAAuC,IAAW,CAAC;AAC1D,QAAA,aAAa,GAA6C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,EAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAGxE,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC7D,QAAA,cAAc,GAA+C,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,EAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI3E,QAAA,IAAI,GAAiC,IAAW,CAAC;AAC9D,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;AAG/D,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,qDAAqD;gBACtD,OAAO,IAAI,oBAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,qCAAqC;gBACtC,OAAO,IAAI,YAAI,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,cAAc,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AAC3F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,cAAc,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data Source schema for Volcengine::ID::Service
|
|
5
|
+
*/
|
|
6
|
+
export declare function getService(args: GetServiceArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getService.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetServiceArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Uniquely identifies the resource.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getService.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetServiceResult {
|
|
20
|
+
/**
|
|
21
|
+
* Backend service configuration
|
|
22
|
+
*/
|
|
23
|
+
readonly backend: outputs.id.GetServiceBackend;
|
|
24
|
+
/**
|
|
25
|
+
* Backend service type, for example custom, viking, agentkit-mcp
|
|
26
|
+
*/
|
|
27
|
+
readonly backendType: string;
|
|
28
|
+
/**
|
|
29
|
+
* Creation time, Unix timestamp in milliseconds
|
|
30
|
+
*/
|
|
31
|
+
readonly createdAt: number;
|
|
32
|
+
/**
|
|
33
|
+
* Service description, up to 256 characters
|
|
34
|
+
*/
|
|
35
|
+
readonly description: string;
|
|
36
|
+
/**
|
|
37
|
+
* Private domain name
|
|
38
|
+
*/
|
|
39
|
+
readonly hijackDomainPrivate: string;
|
|
40
|
+
/**
|
|
41
|
+
* Public domain name
|
|
42
|
+
*/
|
|
43
|
+
readonly hijackDomainPublic: string;
|
|
44
|
+
/**
|
|
45
|
+
* Uniquely identifies the resource.
|
|
46
|
+
*/
|
|
47
|
+
readonly id: string;
|
|
48
|
+
/**
|
|
49
|
+
* Permission space ID, for example ps_123456
|
|
50
|
+
*/
|
|
51
|
+
readonly permissionSpaceId: string;
|
|
52
|
+
/**
|
|
53
|
+
* Permission space name
|
|
54
|
+
*/
|
|
55
|
+
readonly permissionSpaceName: string;
|
|
56
|
+
/**
|
|
57
|
+
* Project name. Optional at creation, default value is "default"
|
|
58
|
+
*/
|
|
59
|
+
readonly projectName: string;
|
|
60
|
+
/**
|
|
61
|
+
* Number of routes
|
|
62
|
+
*/
|
|
63
|
+
readonly routeCount: number;
|
|
64
|
+
/**
|
|
65
|
+
* List of routes created simultaneously. This field is only written at creation, not returned by read interface
|
|
66
|
+
*/
|
|
67
|
+
readonly routes: outputs.id.GetServiceRoute[];
|
|
68
|
+
/**
|
|
69
|
+
* Service ID. Generated after system creation, for example svc-1234567890
|
|
70
|
+
*/
|
|
71
|
+
readonly serviceId: string;
|
|
72
|
+
/**
|
|
73
|
+
* Service name, 1–64 characters, unique within the account
|
|
74
|
+
*/
|
|
75
|
+
readonly serviceName: string;
|
|
76
|
+
/**
|
|
77
|
+
* Service status. inactive: not enabled. active: enabled (configuration synced to APIGateway). draft: draft status (changes not synced to APIGateway)
|
|
78
|
+
*/
|
|
79
|
+
readonly status: string;
|
|
80
|
+
/**
|
|
81
|
+
* Service tag list
|
|
82
|
+
*/
|
|
83
|
+
readonly tags: outputs.id.GetServiceTag[];
|
|
84
|
+
/**
|
|
85
|
+
* Template ID associated with built-in service
|
|
86
|
+
*/
|
|
87
|
+
readonly templateId: string;
|
|
88
|
+
/**
|
|
89
|
+
* Resource TRN
|
|
90
|
+
*/
|
|
91
|
+
readonly trn: string;
|
|
92
|
+
/**
|
|
93
|
+
* Update time, Unix timestamp in milliseconds
|
|
94
|
+
*/
|
|
95
|
+
readonly updatedAt: number;
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Data Source schema for Volcengine::ID::Service
|
|
99
|
+
*/
|
|
100
|
+
export declare function getServiceOutput(args: GetServiceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceResult>;
|
|
101
|
+
/**
|
|
102
|
+
* A collection of arguments for invoking getService.
|
|
103
|
+
*/
|
|
104
|
+
export interface GetServiceOutputArgs {
|
|
105
|
+
/**
|
|
106
|
+
* Uniquely identifies the resource.
|
|
107
|
+
*/
|
|
108
|
+
id: pulumi.Input<string>;
|
|
109
|
+
}
|
package/id/getService.js
ADDED
|
@@ -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.getServiceOutput = exports.getService = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data Source schema for Volcengine::ID::Service
|
|
10
|
+
*/
|
|
11
|
+
function getService(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:id/getService:getService", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getService = getService;
|
|
18
|
+
/**
|
|
19
|
+
* Data Source schema for Volcengine::ID::Service
|
|
20
|
+
*/
|
|
21
|
+
function getServiceOutput(args, opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invokeOutput("volcenginecc:id/getService:getService", {
|
|
24
|
+
"id": args.id,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getServiceOutput = getServiceOutput;
|
|
28
|
+
//# sourceMappingURL=getService.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getService.js","sourceRoot":"","sources":["../../id/getService.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uCAAuC,EAAE;QAClE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gCAKC;AA6FD;;GAEG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAAiC;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uCAAuC,EAAE;QACxE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4CAKC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Plural Data Source schema for Volcengine::ID::Service
|
|
4
|
+
*/
|
|
5
|
+
export declare function getServices(opts?: pulumi.InvokeOptions): Promise<GetServicesResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of values returned by getServices.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetServicesResult {
|
|
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::ID::Service
|
|
21
|
+
*/
|
|
22
|
+
export declare function getServicesOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServicesResult>;
|
|
@@ -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.getServicesOutput = exports.getServices = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Plural Data Source schema for Volcengine::ID::Service
|
|
10
|
+
*/
|
|
11
|
+
function getServices(opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:id/getServices:getServices", {}, opts);
|
|
14
|
+
}
|
|
15
|
+
exports.getServices = getServices;
|
|
16
|
+
/**
|
|
17
|
+
* Plural Data Source schema for Volcengine::ID::Service
|
|
18
|
+
*/
|
|
19
|
+
function getServicesOutput(opts) {
|
|
20
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
21
|
+
return pulumi.runtime.invokeOutput("volcenginecc:id/getServices:getServices", {}, opts);
|
|
22
|
+
}
|
|
23
|
+
exports.getServicesOutput = getServicesOutput;
|
|
24
|
+
//# sourceMappingURL=getServices.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getServices.js","sourceRoot":"","sources":["../../id/getServices.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,WAAW,CAAC,IAA2B;IACnD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yCAAyC,EAAE,EACvE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,kCAIC;AAeD;;GAEG;AACH,SAAgB,iBAAiB,CAAC,IAAiC;IAC/D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,yCAAyC,EAAE,EAC7E,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,8CAIC"}
|
package/id/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { GetServiceArgs, GetServiceResult, GetServiceOutputArgs } from "./getService";
|
|
2
|
+
export declare const getService: typeof import("./getService").getService;
|
|
3
|
+
export declare const getServiceOutput: typeof import("./getService").getServiceOutput;
|
|
4
|
+
export { GetServicesResult } from "./getServices";
|
|
5
|
+
export declare const getServices: typeof import("./getServices").getServices;
|
|
6
|
+
export declare const getServicesOutput: typeof import("./getServices").getServicesOutput;
|
|
7
|
+
export { ServiceArgs, ServiceState } from "./service";
|
|
8
|
+
export type Service = import("./service").Service;
|
|
9
|
+
export declare const Service: typeof import("./service").Service;
|
package/id/index.js
ADDED
|
@@ -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.Service = exports.getServicesOutput = exports.getServices = exports.getServiceOutput = exports.getService = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
exports.getService = null;
|
|
9
|
+
exports.getServiceOutput = null;
|
|
10
|
+
utilities.lazyLoad(exports, ["getService", "getServiceOutput"], () => require("./getService"));
|
|
11
|
+
exports.getServices = null;
|
|
12
|
+
exports.getServicesOutput = null;
|
|
13
|
+
utilities.lazyLoad(exports, ["getServices", "getServicesOutput"], () => require("./getServices"));
|
|
14
|
+
exports.Service = null;
|
|
15
|
+
utilities.lazyLoad(exports, ["Service"], () => require("./service"));
|
|
16
|
+
const _module = {
|
|
17
|
+
version: utilities.getVersion(),
|
|
18
|
+
construct: (name, type, urn) => {
|
|
19
|
+
switch (type) {
|
|
20
|
+
case "volcenginecc:id/service:Service":
|
|
21
|
+
return new exports.Service(name, undefined, { urn });
|
|
22
|
+
default:
|
|
23
|
+
throw new Error(`unknown resource type ${type}`);
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
};
|
|
27
|
+
pulumi.runtime.registerResourceModule("volcenginecc", "id/service", _module);
|
|
28
|
+
//# sourceMappingURL=index.js.map
|
package/id/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../id/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAI7B,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAGjF,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAIpF,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAGrE,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,iCAAiC;gBAClC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,cAAc,EAAE,YAAY,EAAE,OAAO,CAAC,CAAA"}
|