@pulumi/harness 0.11.1 → 0.11.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/package.json +2 -2
- package/platform/centralNotificationChannel.d.ts +0 -54
- package/platform/centralNotificationChannel.js +0 -4
- package/platform/centralNotificationChannel.js.map +1 -1
- package/platform/defaultNotificationTemplateSet.d.ts +0 -60
- package/platform/defaultNotificationTemplateSet.js +0 -8
- package/platform/defaultNotificationTemplateSet.js.map +1 -1
- package/platform/delegatetoken.d.ts +0 -3
- package/platform/delegatetoken.js +0 -2
- package/platform/delegatetoken.js.map +1 -1
- package/platform/getCentralNotificationChannel.d.ts +6 -42
- package/platform/getCentralNotificationChannel.js +0 -4
- package/platform/getCentralNotificationChannel.js.map +1 -1
- package/platform/getDefaultNotificationTemplateSet.d.ts +6 -42
- package/platform/getDefaultNotificationTemplateSet.js +0 -4
- package/platform/getDefaultNotificationTemplateSet.js.map +1 -1
- package/platform/getDelegateList.d.ts +239 -0
- package/platform/getDelegateList.js +112 -0
- package/platform/getDelegateList.js.map +1 -0
- package/platform/index.d.ts +3 -0
- package/platform/index.js +9 -6
- package/platform/index.js.map +1 -1
- package/types/input.d.ts +3 -3
- package/types/output.d.ts +32 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/harness",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Harness resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "harness",
|
|
26
|
-
"version": "0.11.
|
|
26
|
+
"version": "0.11.2",
|
|
27
27
|
"server": "github://api.github.com/pulumi"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -36,26 +36,8 @@ export declare class CentralNotificationChannel extends pulumi.CustomResource {
|
|
|
36
36
|
readonly lastModified: pulumi.Output<number>;
|
|
37
37
|
readonly name: pulumi.Output<string>;
|
|
38
38
|
readonly notificationChannelType: pulumi.Output<string>;
|
|
39
|
-
/**
|
|
40
|
-
* Unique identifier of the organization. Use `orgId` instead.
|
|
41
|
-
*
|
|
42
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
43
|
-
*/
|
|
44
39
|
readonly org: pulumi.Output<string | undefined>;
|
|
45
|
-
/**
|
|
46
|
-
* Unique identifier of the organization.
|
|
47
|
-
*/
|
|
48
|
-
readonly orgId: pulumi.Output<string | undefined>;
|
|
49
|
-
/**
|
|
50
|
-
* Unique identifier of the project. Use `projectId` instead.
|
|
51
|
-
*
|
|
52
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'project_id' instead.
|
|
53
|
-
*/
|
|
54
40
|
readonly project: pulumi.Output<string | undefined>;
|
|
55
|
-
/**
|
|
56
|
-
* Unique identifier of the project.
|
|
57
|
-
*/
|
|
58
|
-
readonly projectId: pulumi.Output<string | undefined>;
|
|
59
41
|
readonly status: pulumi.Output<string | undefined>;
|
|
60
42
|
/**
|
|
61
43
|
* Create a CentralNotificationChannel resource with the given unique name, arguments, and options.
|
|
@@ -86,26 +68,8 @@ export interface CentralNotificationChannelState {
|
|
|
86
68
|
lastModified?: pulumi.Input<number>;
|
|
87
69
|
name?: pulumi.Input<string>;
|
|
88
70
|
notificationChannelType?: pulumi.Input<string>;
|
|
89
|
-
/**
|
|
90
|
-
* Unique identifier of the organization. Use `orgId` instead.
|
|
91
|
-
*
|
|
92
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
93
|
-
*/
|
|
94
71
|
org?: pulumi.Input<string>;
|
|
95
|
-
/**
|
|
96
|
-
* Unique identifier of the organization.
|
|
97
|
-
*/
|
|
98
|
-
orgId?: pulumi.Input<string>;
|
|
99
|
-
/**
|
|
100
|
-
* Unique identifier of the project. Use `projectId` instead.
|
|
101
|
-
*
|
|
102
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'project_id' instead.
|
|
103
|
-
*/
|
|
104
72
|
project?: pulumi.Input<string>;
|
|
105
|
-
/**
|
|
106
|
-
* Unique identifier of the project.
|
|
107
|
-
*/
|
|
108
|
-
projectId?: pulumi.Input<string>;
|
|
109
73
|
status?: pulumi.Input<string>;
|
|
110
74
|
}
|
|
111
75
|
/**
|
|
@@ -116,25 +80,7 @@ export interface CentralNotificationChannelArgs {
|
|
|
116
80
|
identifier: pulumi.Input<string>;
|
|
117
81
|
name?: pulumi.Input<string>;
|
|
118
82
|
notificationChannelType: pulumi.Input<string>;
|
|
119
|
-
/**
|
|
120
|
-
* Unique identifier of the organization. Use `orgId` instead.
|
|
121
|
-
*
|
|
122
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
123
|
-
*/
|
|
124
83
|
org?: pulumi.Input<string>;
|
|
125
|
-
/**
|
|
126
|
-
* Unique identifier of the organization.
|
|
127
|
-
*/
|
|
128
|
-
orgId?: pulumi.Input<string>;
|
|
129
|
-
/**
|
|
130
|
-
* Unique identifier of the project. Use `projectId` instead.
|
|
131
|
-
*
|
|
132
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'project_id' instead.
|
|
133
|
-
*/
|
|
134
84
|
project?: pulumi.Input<string>;
|
|
135
|
-
/**
|
|
136
|
-
* Unique identifier of the project.
|
|
137
|
-
*/
|
|
138
|
-
projectId?: pulumi.Input<string>;
|
|
139
85
|
status?: pulumi.Input<string>;
|
|
140
86
|
}
|
|
@@ -44,9 +44,7 @@ class CentralNotificationChannel extends pulumi.CustomResource {
|
|
|
44
44
|
resourceInputs["name"] = state?.name;
|
|
45
45
|
resourceInputs["notificationChannelType"] = state?.notificationChannelType;
|
|
46
46
|
resourceInputs["org"] = state?.org;
|
|
47
|
-
resourceInputs["orgId"] = state?.orgId;
|
|
48
47
|
resourceInputs["project"] = state?.project;
|
|
49
|
-
resourceInputs["projectId"] = state?.projectId;
|
|
50
48
|
resourceInputs["status"] = state?.status;
|
|
51
49
|
}
|
|
52
50
|
else {
|
|
@@ -65,9 +63,7 @@ class CentralNotificationChannel extends pulumi.CustomResource {
|
|
|
65
63
|
resourceInputs["name"] = args?.name;
|
|
66
64
|
resourceInputs["notificationChannelType"] = args?.notificationChannelType;
|
|
67
65
|
resourceInputs["org"] = args?.org;
|
|
68
|
-
resourceInputs["orgId"] = args?.orgId;
|
|
69
66
|
resourceInputs["project"] = args?.project;
|
|
70
|
-
resourceInputs["projectId"] = args?.projectId;
|
|
71
67
|
resourceInputs["status"] = args?.status;
|
|
72
68
|
resourceInputs["account"] = undefined /*out*/;
|
|
73
69
|
resourceInputs["created"] = undefined /*out*/;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"centralNotificationChannel.js","sourceRoot":"","sources":["../../platform/centralNotificationChannel.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,MAAa,0BAA2B,SAAQ,MAAM,CAAC,cAAc;IACjE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuC,EAAE,IAAmC;QACrI,OAAO,IAAI,0BAA0B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACjF,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,0BAA0B,CAAC,YAAY,CAAC;IAC3E,CAAC;
|
|
1
|
+
{"version":3,"file":"centralNotificationChannel.js","sourceRoot":"","sources":["../../platform/centralNotificationChannel.ts"],"names":[],"mappings":"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"}
|
|
@@ -52,26 +52,6 @@ export declare class DefaultNotificationTemplateSet extends pulumi.CustomResourc
|
|
|
52
52
|
* Type of the entity (e.g. PIPELINE, SERVICE, etc.)
|
|
53
53
|
*/
|
|
54
54
|
readonly notificationEntity: pulumi.Output<string>;
|
|
55
|
-
/**
|
|
56
|
-
* Unique identifier of the organization. Use `orgId` instead.
|
|
57
|
-
*
|
|
58
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
59
|
-
*/
|
|
60
|
-
readonly org: pulumi.Output<string | undefined>;
|
|
61
|
-
/**
|
|
62
|
-
* Unique identifier of the organization.
|
|
63
|
-
*/
|
|
64
|
-
readonly orgId: pulumi.Output<string | undefined>;
|
|
65
|
-
/**
|
|
66
|
-
* Unique identifier of the project. Use `projectId` instead.
|
|
67
|
-
*
|
|
68
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'project_id' instead.
|
|
69
|
-
*/
|
|
70
|
-
readonly project: pulumi.Output<string | undefined>;
|
|
71
|
-
/**
|
|
72
|
-
* Unique identifier of the project.
|
|
73
|
-
*/
|
|
74
|
-
readonly projectId: pulumi.Output<string | undefined>;
|
|
75
55
|
/**
|
|
76
56
|
* Key-value tags
|
|
77
57
|
*/
|
|
@@ -123,26 +103,6 @@ export interface DefaultNotificationTemplateSetState {
|
|
|
123
103
|
* Type of the entity (e.g. PIPELINE, SERVICE, etc.)
|
|
124
104
|
*/
|
|
125
105
|
notificationEntity?: pulumi.Input<string>;
|
|
126
|
-
/**
|
|
127
|
-
* Unique identifier of the organization. Use `orgId` instead.
|
|
128
|
-
*
|
|
129
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
130
|
-
*/
|
|
131
|
-
org?: pulumi.Input<string>;
|
|
132
|
-
/**
|
|
133
|
-
* Unique identifier of the organization.
|
|
134
|
-
*/
|
|
135
|
-
orgId?: pulumi.Input<string>;
|
|
136
|
-
/**
|
|
137
|
-
* Unique identifier of the project. Use `projectId` instead.
|
|
138
|
-
*
|
|
139
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'project_id' instead.
|
|
140
|
-
*/
|
|
141
|
-
project?: pulumi.Input<string>;
|
|
142
|
-
/**
|
|
143
|
-
* Unique identifier of the project.
|
|
144
|
-
*/
|
|
145
|
-
projectId?: pulumi.Input<string>;
|
|
146
106
|
/**
|
|
147
107
|
* Key-value tags
|
|
148
108
|
*/
|
|
@@ -178,26 +138,6 @@ export interface DefaultNotificationTemplateSetArgs {
|
|
|
178
138
|
* Type of the entity (e.g. PIPELINE, SERVICE, etc.)
|
|
179
139
|
*/
|
|
180
140
|
notificationEntity: pulumi.Input<string>;
|
|
181
|
-
/**
|
|
182
|
-
* Unique identifier of the organization. Use `orgId` instead.
|
|
183
|
-
*
|
|
184
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
185
|
-
*/
|
|
186
|
-
org?: pulumi.Input<string>;
|
|
187
|
-
/**
|
|
188
|
-
* Unique identifier of the organization.
|
|
189
|
-
*/
|
|
190
|
-
orgId?: pulumi.Input<string>;
|
|
191
|
-
/**
|
|
192
|
-
* Unique identifier of the project. Use `projectId` instead.
|
|
193
|
-
*
|
|
194
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'project_id' instead.
|
|
195
|
-
*/
|
|
196
|
-
project?: pulumi.Input<string>;
|
|
197
|
-
/**
|
|
198
|
-
* Unique identifier of the project.
|
|
199
|
-
*/
|
|
200
|
-
projectId?: pulumi.Input<string>;
|
|
201
141
|
/**
|
|
202
142
|
* Key-value tags
|
|
203
143
|
*/
|
|
@@ -44,10 +44,6 @@ class DefaultNotificationTemplateSet extends pulumi.CustomResource {
|
|
|
44
44
|
resourceInputs["name"] = state?.name;
|
|
45
45
|
resourceInputs["notificationChannelType"] = state?.notificationChannelType;
|
|
46
46
|
resourceInputs["notificationEntity"] = state?.notificationEntity;
|
|
47
|
-
resourceInputs["org"] = state?.org;
|
|
48
|
-
resourceInputs["orgId"] = state?.orgId;
|
|
49
|
-
resourceInputs["project"] = state?.project;
|
|
50
|
-
resourceInputs["projectId"] = state?.projectId;
|
|
51
47
|
resourceInputs["tags"] = state?.tags;
|
|
52
48
|
}
|
|
53
49
|
else {
|
|
@@ -70,10 +66,6 @@ class DefaultNotificationTemplateSet extends pulumi.CustomResource {
|
|
|
70
66
|
resourceInputs["name"] = args?.name;
|
|
71
67
|
resourceInputs["notificationChannelType"] = args?.notificationChannelType;
|
|
72
68
|
resourceInputs["notificationEntity"] = args?.notificationEntity;
|
|
73
|
-
resourceInputs["org"] = args?.org;
|
|
74
|
-
resourceInputs["orgId"] = args?.orgId;
|
|
75
|
-
resourceInputs["project"] = args?.project;
|
|
76
|
-
resourceInputs["projectId"] = args?.projectId;
|
|
77
69
|
resourceInputs["tags"] = args?.tags;
|
|
78
70
|
resourceInputs["created"] = undefined /*out*/;
|
|
79
71
|
resourceInputs["lastModified"] = undefined /*out*/;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"defaultNotificationTemplateSet.js","sourceRoot":"","sources":["../../platform/defaultNotificationTemplateSet.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,MAAa,8BAA+B,SAAQ,MAAM,CAAC,cAAc;IACrE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2C,EAAE,IAAmC;QACzI,OAAO,IAAI,8BAA8B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACrF,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,8BAA8B,CAAC,YAAY,CAAC;IAC/E,CAAC;
|
|
1
|
+
{"version":3,"file":"defaultNotificationTemplateSet.js","sourceRoot":"","sources":["../../platform/defaultNotificationTemplateSet.ts"],"names":[],"mappings":"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"}
|
|
@@ -77,7 +77,6 @@ export declare class Delegatetoken extends pulumi.CustomResource {
|
|
|
77
77
|
* Project Identifier for the Entity
|
|
78
78
|
*/
|
|
79
79
|
readonly projectId: pulumi.Output<string | undefined>;
|
|
80
|
-
readonly purgeOnDelete: pulumi.Output<boolean | undefined>;
|
|
81
80
|
/**
|
|
82
81
|
* Epoch time in milliseconds after which the token will be marked as revoked. There can be a delay of up to one hour from the epoch value provided and actual revoking of the token.
|
|
83
82
|
*/
|
|
@@ -129,7 +128,6 @@ export interface DelegatetokenState {
|
|
|
129
128
|
* Project Identifier for the Entity
|
|
130
129
|
*/
|
|
131
130
|
projectId?: pulumi.Input<string>;
|
|
132
|
-
purgeOnDelete?: pulumi.Input<boolean>;
|
|
133
131
|
/**
|
|
134
132
|
* Epoch time in milliseconds after which the token will be marked as revoked. There can be a delay of up to one hour from the epoch value provided and actual revoking of the token.
|
|
135
133
|
*/
|
|
@@ -173,7 +171,6 @@ export interface DelegatetokenArgs {
|
|
|
173
171
|
* Project Identifier for the Entity
|
|
174
172
|
*/
|
|
175
173
|
projectId?: pulumi.Input<string>;
|
|
176
|
-
purgeOnDelete?: pulumi.Input<boolean>;
|
|
177
174
|
/**
|
|
178
175
|
* Epoch time in milliseconds after which the token will be marked as revoked. There can be a delay of up to one hour from the epoch value provided and actual revoking of the token.
|
|
179
176
|
*/
|
|
@@ -75,7 +75,6 @@ class Delegatetoken extends pulumi.CustomResource {
|
|
|
75
75
|
resourceInputs["name"] = state?.name;
|
|
76
76
|
resourceInputs["orgId"] = state?.orgId;
|
|
77
77
|
resourceInputs["projectId"] = state?.projectId;
|
|
78
|
-
resourceInputs["purgeOnDelete"] = state?.purgeOnDelete;
|
|
79
78
|
resourceInputs["revokeAfter"] = state?.revokeAfter;
|
|
80
79
|
resourceInputs["tokenStatus"] = state?.tokenStatus;
|
|
81
80
|
resourceInputs["value"] = state?.value;
|
|
@@ -91,7 +90,6 @@ class Delegatetoken extends pulumi.CustomResource {
|
|
|
91
90
|
resourceInputs["name"] = args?.name;
|
|
92
91
|
resourceInputs["orgId"] = args?.orgId;
|
|
93
92
|
resourceInputs["projectId"] = args?.projectId;
|
|
94
|
-
resourceInputs["purgeOnDelete"] = args?.purgeOnDelete;
|
|
95
93
|
resourceInputs["revokeAfter"] = args?.revokeAfter;
|
|
96
94
|
resourceInputs["tokenStatus"] = args?.tokenStatus;
|
|
97
95
|
resourceInputs["value"] = args?.value;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delegatetoken.js","sourceRoot":"","sources":["../../platform/delegatetoken.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACpE,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,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;
|
|
1
|
+
{"version":3,"file":"delegatetoken.js","sourceRoot":"","sources":["../../platform/delegatetoken.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACpE,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,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;IA+CD,YAAY,IAAY,EAAE,WAAoD,EAAE,IAAmC;QAC/G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6C,CAAC;YAC5D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;SAC1C;aAAM;YACH,MAAM,IAAI,GAAG,WAA4C,CAAC;YAC1D,IAAI,IAAI,EAAE,SAAS,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC5C,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;SACzC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;;AAxGL,sCAyGC;AA3FG,gBAAgB;AACO,0BAAY,GAAG,8CAA8C,CAAC"}
|
|
@@ -38,25 +38,13 @@ export interface GetCentralNotificationChannelArgs {
|
|
|
38
38
|
*/
|
|
39
39
|
notificationChannelType?: string;
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
41
|
+
* Identifier of the organization the notification channel is scoped to.
|
|
44
42
|
*/
|
|
45
43
|
org?: string;
|
|
46
44
|
/**
|
|
47
|
-
*
|
|
48
|
-
*/
|
|
49
|
-
orgId?: string;
|
|
50
|
-
/**
|
|
51
|
-
* Unique identifier of the project. Use `projectId` instead.
|
|
52
|
-
*
|
|
53
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'project_id' instead.
|
|
45
|
+
* Identifier of the project the notification channel is scoped to.
|
|
54
46
|
*/
|
|
55
47
|
project?: string;
|
|
56
|
-
/**
|
|
57
|
-
* Unique identifier of the project.
|
|
58
|
-
*/
|
|
59
|
-
projectId?: string;
|
|
60
48
|
/**
|
|
61
49
|
* Status of the notification channel. Possible values are ENABLED or DISABLED.
|
|
62
50
|
*/
|
|
@@ -99,25 +87,13 @@ export interface GetCentralNotificationChannelResult {
|
|
|
99
87
|
*/
|
|
100
88
|
readonly notificationChannelType?: string;
|
|
101
89
|
/**
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
90
|
+
* Identifier of the organization the notification channel is scoped to.
|
|
105
91
|
*/
|
|
106
92
|
readonly org?: string;
|
|
107
93
|
/**
|
|
108
|
-
*
|
|
109
|
-
*/
|
|
110
|
-
readonly orgId?: string;
|
|
111
|
-
/**
|
|
112
|
-
* Unique identifier of the project. Use `projectId` instead.
|
|
113
|
-
*
|
|
114
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'project_id' instead.
|
|
94
|
+
* Identifier of the project the notification channel is scoped to.
|
|
115
95
|
*/
|
|
116
96
|
readonly project?: string;
|
|
117
|
-
/**
|
|
118
|
-
* Unique identifier of the project.
|
|
119
|
-
*/
|
|
120
|
-
readonly projectId?: string;
|
|
121
97
|
/**
|
|
122
98
|
* Status of the notification channel. Possible values are ENABLED or DISABLED.
|
|
123
99
|
*/
|
|
@@ -160,25 +136,13 @@ export interface GetCentralNotificationChannelOutputArgs {
|
|
|
160
136
|
*/
|
|
161
137
|
notificationChannelType?: pulumi.Input<string>;
|
|
162
138
|
/**
|
|
163
|
-
*
|
|
164
|
-
*
|
|
165
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
139
|
+
* Identifier of the organization the notification channel is scoped to.
|
|
166
140
|
*/
|
|
167
141
|
org?: pulumi.Input<string>;
|
|
168
142
|
/**
|
|
169
|
-
*
|
|
170
|
-
*/
|
|
171
|
-
orgId?: pulumi.Input<string>;
|
|
172
|
-
/**
|
|
173
|
-
* Unique identifier of the project. Use `projectId` instead.
|
|
174
|
-
*
|
|
175
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'project_id' instead.
|
|
143
|
+
* Identifier of the project the notification channel is scoped to.
|
|
176
144
|
*/
|
|
177
145
|
project?: pulumi.Input<string>;
|
|
178
|
-
/**
|
|
179
|
-
* Unique identifier of the project.
|
|
180
|
-
*/
|
|
181
|
-
projectId?: pulumi.Input<string>;
|
|
182
146
|
/**
|
|
183
147
|
* Status of the notification channel. Possible values are ENABLED or DISABLED.
|
|
184
148
|
*/
|
|
@@ -19,9 +19,7 @@ function getCentralNotificationChannel(args, opts) {
|
|
|
19
19
|
"name": args.name,
|
|
20
20
|
"notificationChannelType": args.notificationChannelType,
|
|
21
21
|
"org": args.org,
|
|
22
|
-
"orgId": args.orgId,
|
|
23
22
|
"project": args.project,
|
|
24
|
-
"projectId": args.projectId,
|
|
25
23
|
"status": args.status,
|
|
26
24
|
}, opts);
|
|
27
25
|
}
|
|
@@ -40,9 +38,7 @@ function getCentralNotificationChannelOutput(args, opts) {
|
|
|
40
38
|
"name": args.name,
|
|
41
39
|
"notificationChannelType": args.notificationChannelType,
|
|
42
40
|
"org": args.org,
|
|
43
|
-
"orgId": args.orgId,
|
|
44
41
|
"project": args.project,
|
|
45
|
-
"projectId": args.projectId,
|
|
46
42
|
"status": args.status,
|
|
47
43
|
}, opts);
|
|
48
44
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCentralNotificationChannel.js","sourceRoot":"","sources":["../../platform/getCentralNotificationChannel.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8EAA8E,EAAE;QACzG,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,
|
|
1
|
+
{"version":3,"file":"getCentralNotificationChannel.js","sourceRoot":"","sources":["../../platform/getCentralNotificationChannel.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8EAA8E,EAAE;QACzG,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAdD,sEAcC;AAiGD;;GAEG;AACH,SAAgB,mCAAmC,CAAC,IAA6C,EAAE,IAAiC;IAChI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8EAA8E,EAAE;QAC/G,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAdD,kFAcC"}
|
|
@@ -34,25 +34,13 @@ export interface GetDefaultNotificationTemplateSetArgs {
|
|
|
34
34
|
*/
|
|
35
35
|
notificationEntity: string;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
37
|
+
* Organization identifier
|
|
40
38
|
*/
|
|
41
39
|
org?: string;
|
|
42
40
|
/**
|
|
43
|
-
*
|
|
44
|
-
*/
|
|
45
|
-
orgId?: string;
|
|
46
|
-
/**
|
|
47
|
-
* Unique identifier of the project. Use `projectId` instead.
|
|
48
|
-
*
|
|
49
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'project_id' instead.
|
|
41
|
+
* Project identifier
|
|
50
42
|
*/
|
|
51
43
|
project?: string;
|
|
52
|
-
/**
|
|
53
|
-
* Unique identifier of the project.
|
|
54
|
-
*/
|
|
55
|
-
projectId?: string;
|
|
56
44
|
/**
|
|
57
45
|
* Key-value tags
|
|
58
46
|
*/
|
|
@@ -101,25 +89,13 @@ export interface GetDefaultNotificationTemplateSetResult {
|
|
|
101
89
|
*/
|
|
102
90
|
readonly notificationEntity: string;
|
|
103
91
|
/**
|
|
104
|
-
*
|
|
105
|
-
*
|
|
106
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
92
|
+
* Organization identifier
|
|
107
93
|
*/
|
|
108
94
|
readonly org?: string;
|
|
109
95
|
/**
|
|
110
|
-
*
|
|
111
|
-
*/
|
|
112
|
-
readonly orgId?: string;
|
|
113
|
-
/**
|
|
114
|
-
* Unique identifier of the project. Use `projectId` instead.
|
|
115
|
-
*
|
|
116
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'project_id' instead.
|
|
96
|
+
* Project identifier
|
|
117
97
|
*/
|
|
118
98
|
readonly project?: string;
|
|
119
|
-
/**
|
|
120
|
-
* Unique identifier of the project.
|
|
121
|
-
*/
|
|
122
|
-
readonly projectId?: string;
|
|
123
99
|
/**
|
|
124
100
|
* Key-value tags
|
|
125
101
|
*/
|
|
@@ -160,25 +136,13 @@ export interface GetDefaultNotificationTemplateSetOutputArgs {
|
|
|
160
136
|
*/
|
|
161
137
|
notificationEntity: pulumi.Input<string>;
|
|
162
138
|
/**
|
|
163
|
-
*
|
|
164
|
-
*
|
|
165
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
139
|
+
* Organization identifier
|
|
166
140
|
*/
|
|
167
141
|
org?: pulumi.Input<string>;
|
|
168
142
|
/**
|
|
169
|
-
*
|
|
170
|
-
*/
|
|
171
|
-
orgId?: pulumi.Input<string>;
|
|
172
|
-
/**
|
|
173
|
-
* Unique identifier of the project. Use `projectId` instead.
|
|
174
|
-
*
|
|
175
|
-
* @deprecated This field is deprecated and will be removed in a future release. Please use 'project_id' instead.
|
|
143
|
+
* Project identifier
|
|
176
144
|
*/
|
|
177
145
|
project?: pulumi.Input<string>;
|
|
178
|
-
/**
|
|
179
|
-
* Unique identifier of the project.
|
|
180
|
-
*/
|
|
181
|
-
projectId?: pulumi.Input<string>;
|
|
182
146
|
/**
|
|
183
147
|
* Key-value tags
|
|
184
148
|
*/
|
|
@@ -18,9 +18,7 @@ function getDefaultNotificationTemplateSet(args, opts) {
|
|
|
18
18
|
"notificationChannelType": args.notificationChannelType,
|
|
19
19
|
"notificationEntity": args.notificationEntity,
|
|
20
20
|
"org": args.org,
|
|
21
|
-
"orgId": args.orgId,
|
|
22
21
|
"project": args.project,
|
|
23
|
-
"projectId": args.projectId,
|
|
24
22
|
"tags": args.tags,
|
|
25
23
|
}, opts);
|
|
26
24
|
}
|
|
@@ -38,9 +36,7 @@ function getDefaultNotificationTemplateSetOutput(args, opts) {
|
|
|
38
36
|
"notificationChannelType": args.notificationChannelType,
|
|
39
37
|
"notificationEntity": args.notificationEntity,
|
|
40
38
|
"org": args.org,
|
|
41
|
-
"orgId": args.orgId,
|
|
42
39
|
"project": args.project,
|
|
43
|
-
"projectId": args.projectId,
|
|
44
40
|
"tags": args.tags,
|
|
45
41
|
}, opts);
|
|
46
42
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDefaultNotificationTemplateSet.js","sourceRoot":"","sources":["../../platform/getDefaultNotificationTemplateSet.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,iCAAiC,CAAC,IAA2C,EAAE,IAA2B;IACtH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sFAAsF,EAAE;QACjH,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,gCAAgC,EAAE,IAAI,CAAC,8BAA8B;QACrE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,
|
|
1
|
+
{"version":3,"file":"getDefaultNotificationTemplateSet.js","sourceRoot":"","sources":["../../platform/getDefaultNotificationTemplateSet.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,iCAAiC,CAAC,IAA2C,EAAE,IAA2B;IACtH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sFAAsF,EAAE;QACjH,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,gCAAgC,EAAE,IAAI,CAAC,8BAA8B;QACrE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,8EAaC;AAiGD;;GAEG;AACH,SAAgB,uCAAuC,CAAC,IAAiD,EAAE,IAAiC;IACxI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sFAAsF,EAAE;QACvH,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,gCAAgC,EAAE,IAAI,CAAC,8BAA8B;QACrE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,0FAaC"}
|