@pulumi/harness 0.11.0 → 0.11.1-alpha.1770177844
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 +54 -0
- package/platform/centralNotificationChannel.js +4 -0
- package/platform/centralNotificationChannel.js.map +1 -1
- package/platform/defaultNotificationTemplateSet.d.ts +60 -0
- package/platform/defaultNotificationTemplateSet.js +8 -0
- package/platform/defaultNotificationTemplateSet.js.map +1 -1
- package/platform/delegatetoken.d.ts +3 -0
- package/platform/delegatetoken.js +2 -0
- package/platform/delegatetoken.js.map +1 -1
- package/platform/environment.d.ts +3 -3
- package/platform/environment.js +0 -3
- package/platform/environment.js.map +1 -1
- package/platform/getCentralNotificationChannel.d.ts +42 -6
- package/platform/getCentralNotificationChannel.js +4 -0
- package/platform/getCentralNotificationChannel.js.map +1 -1
- package/platform/getDefaultNotificationTemplateSet.d.ts +42 -6
- package/platform/getDefaultNotificationTemplateSet.js +4 -0
- package/platform/getDefaultNotificationTemplateSet.js.map +1 -1
- package/platform/getInfrastructure.d.ts +2 -2
- package/platform/index.d.ts +3 -0
- package/platform/index.js +7 -2
- package/platform/index.js.map +1 -1
- package/platform/infrastructure.d.ts +9 -9
- package/platform/infrastructure.js +0 -3
- package/platform/infrastructure.js.map +1 -1
- package/platform/ipAllowlist.d.ts +156 -0
- package/platform/ipAllowlist.js +91 -0
- package/platform/ipAllowlist.js.map +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/harness",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1-alpha.1770177844",
|
|
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.1-alpha.1770177844",
|
|
27
27
|
"server": "github://api.github.com/pulumi"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -36,8 +36,26 @@ 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
|
+
*/
|
|
39
44
|
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
|
+
*/
|
|
40
54
|
readonly project: pulumi.Output<string | undefined>;
|
|
55
|
+
/**
|
|
56
|
+
* Unique identifier of the project.
|
|
57
|
+
*/
|
|
58
|
+
readonly projectId: pulumi.Output<string | undefined>;
|
|
41
59
|
readonly status: pulumi.Output<string | undefined>;
|
|
42
60
|
/**
|
|
43
61
|
* Create a CentralNotificationChannel resource with the given unique name, arguments, and options.
|
|
@@ -68,8 +86,26 @@ export interface CentralNotificationChannelState {
|
|
|
68
86
|
lastModified?: pulumi.Input<number>;
|
|
69
87
|
name?: pulumi.Input<string>;
|
|
70
88
|
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
|
+
*/
|
|
71
94
|
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
|
+
*/
|
|
72
104
|
project?: pulumi.Input<string>;
|
|
105
|
+
/**
|
|
106
|
+
* Unique identifier of the project.
|
|
107
|
+
*/
|
|
108
|
+
projectId?: pulumi.Input<string>;
|
|
73
109
|
status?: pulumi.Input<string>;
|
|
74
110
|
}
|
|
75
111
|
/**
|
|
@@ -80,7 +116,25 @@ export interface CentralNotificationChannelArgs {
|
|
|
80
116
|
identifier: pulumi.Input<string>;
|
|
81
117
|
name?: pulumi.Input<string>;
|
|
82
118
|
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
|
+
*/
|
|
83
124
|
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
|
+
*/
|
|
84
134
|
project?: pulumi.Input<string>;
|
|
135
|
+
/**
|
|
136
|
+
* Unique identifier of the project.
|
|
137
|
+
*/
|
|
138
|
+
projectId?: pulumi.Input<string>;
|
|
85
139
|
status?: pulumi.Input<string>;
|
|
86
140
|
}
|
|
@@ -44,7 +44,9 @@ 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;
|
|
47
48
|
resourceInputs["project"] = state?.project;
|
|
49
|
+
resourceInputs["projectId"] = state?.projectId;
|
|
48
50
|
resourceInputs["status"] = state?.status;
|
|
49
51
|
}
|
|
50
52
|
else {
|
|
@@ -63,7 +65,9 @@ class CentralNotificationChannel extends pulumi.CustomResource {
|
|
|
63
65
|
resourceInputs["name"] = args?.name;
|
|
64
66
|
resourceInputs["notificationChannelType"] = args?.notificationChannelType;
|
|
65
67
|
resourceInputs["org"] = args?.org;
|
|
68
|
+
resourceInputs["orgId"] = args?.orgId;
|
|
66
69
|
resourceInputs["project"] = args?.project;
|
|
70
|
+
resourceInputs["projectId"] = args?.projectId;
|
|
67
71
|
resourceInputs["status"] = args?.status;
|
|
68
72
|
resourceInputs["account"] = undefined /*out*/;
|
|
69
73
|
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,6 +52,26 @@ 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>;
|
|
55
75
|
/**
|
|
56
76
|
* Key-value tags
|
|
57
77
|
*/
|
|
@@ -103,6 +123,26 @@ export interface DefaultNotificationTemplateSetState {
|
|
|
103
123
|
* Type of the entity (e.g. PIPELINE, SERVICE, etc.)
|
|
104
124
|
*/
|
|
105
125
|
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>;
|
|
106
146
|
/**
|
|
107
147
|
* Key-value tags
|
|
108
148
|
*/
|
|
@@ -138,6 +178,26 @@ export interface DefaultNotificationTemplateSetArgs {
|
|
|
138
178
|
* Type of the entity (e.g. PIPELINE, SERVICE, etc.)
|
|
139
179
|
*/
|
|
140
180
|
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>;
|
|
141
201
|
/**
|
|
142
202
|
* Key-value tags
|
|
143
203
|
*/
|
|
@@ -44,6 +44,10 @@ 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;
|
|
47
51
|
resourceInputs["tags"] = state?.tags;
|
|
48
52
|
}
|
|
49
53
|
else {
|
|
@@ -66,6 +70,10 @@ class DefaultNotificationTemplateSet extends pulumi.CustomResource {
|
|
|
66
70
|
resourceInputs["name"] = args?.name;
|
|
67
71
|
resourceInputs["notificationChannelType"] = args?.notificationChannelType;
|
|
68
72
|
resourceInputs["notificationEntity"] = args?.notificationEntity;
|
|
73
|
+
resourceInputs["org"] = args?.org;
|
|
74
|
+
resourceInputs["orgId"] = args?.orgId;
|
|
75
|
+
resourceInputs["project"] = args?.project;
|
|
76
|
+
resourceInputs["projectId"] = args?.projectId;
|
|
69
77
|
resourceInputs["tags"] = args?.tags;
|
|
70
78
|
resourceInputs["created"] = undefined /*out*/;
|
|
71
79
|
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,6 +77,7 @@ 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>;
|
|
80
81
|
/**
|
|
81
82
|
* 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.
|
|
82
83
|
*/
|
|
@@ -128,6 +129,7 @@ export interface DelegatetokenState {
|
|
|
128
129
|
* Project Identifier for the Entity
|
|
129
130
|
*/
|
|
130
131
|
projectId?: pulumi.Input<string>;
|
|
132
|
+
purgeOnDelete?: pulumi.Input<boolean>;
|
|
131
133
|
/**
|
|
132
134
|
* 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.
|
|
133
135
|
*/
|
|
@@ -171,6 +173,7 @@ export interface DelegatetokenArgs {
|
|
|
171
173
|
* Project Identifier for the Entity
|
|
172
174
|
*/
|
|
173
175
|
projectId?: pulumi.Input<string>;
|
|
176
|
+
purgeOnDelete?: pulumi.Input<boolean>;
|
|
174
177
|
/**
|
|
175
178
|
* 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.
|
|
176
179
|
*/
|
|
@@ -75,6 +75,7 @@ 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;
|
|
78
79
|
resourceInputs["revokeAfter"] = state?.revokeAfter;
|
|
79
80
|
resourceInputs["tokenStatus"] = state?.tokenStatus;
|
|
80
81
|
resourceInputs["value"] = state?.value;
|
|
@@ -90,6 +91,7 @@ class Delegatetoken extends pulumi.CustomResource {
|
|
|
90
91
|
resourceInputs["name"] = args?.name;
|
|
91
92
|
resourceInputs["orgId"] = args?.orgId;
|
|
92
93
|
resourceInputs["projectId"] = args?.projectId;
|
|
94
|
+
resourceInputs["purgeOnDelete"] = args?.purgeOnDelete;
|
|
93
95
|
resourceInputs["revokeAfter"] = args?.revokeAfter;
|
|
94
96
|
resourceInputs["tokenStatus"] = args?.tokenStatus;
|
|
95
97
|
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":"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"}
|
|
@@ -134,7 +134,7 @@ export declare class Environment extends pulumi.CustomResource {
|
|
|
134
134
|
/**
|
|
135
135
|
* Description of the resource.
|
|
136
136
|
*/
|
|
137
|
-
readonly description: pulumi.Output<string
|
|
137
|
+
readonly description: pulumi.Output<string>;
|
|
138
138
|
/**
|
|
139
139
|
* Enable this flag for force deletion of environments
|
|
140
140
|
*/
|
|
@@ -146,7 +146,7 @@ export declare class Environment extends pulumi.CustomResource {
|
|
|
146
146
|
/**
|
|
147
147
|
* Unique identifier of the resource.
|
|
148
148
|
*/
|
|
149
|
-
readonly identifier: pulumi.Output<string>;
|
|
149
|
+
readonly identifier: pulumi.Output<string | undefined>;
|
|
150
150
|
/**
|
|
151
151
|
* Name of the resource.
|
|
152
152
|
*/
|
|
@@ -252,7 +252,7 @@ export interface EnvironmentArgs {
|
|
|
252
252
|
/**
|
|
253
253
|
* Unique identifier of the resource.
|
|
254
254
|
*/
|
|
255
|
-
identifier
|
|
255
|
+
identifier?: pulumi.Input<string>;
|
|
256
256
|
/**
|
|
257
257
|
* Name of the resource.
|
|
258
258
|
*/
|
package/platform/environment.js
CHANGED
|
@@ -157,9 +157,6 @@ class Environment extends pulumi.CustomResource {
|
|
|
157
157
|
}
|
|
158
158
|
else {
|
|
159
159
|
const args = argsOrState;
|
|
160
|
-
if (args?.identifier === undefined && !opts.urn) {
|
|
161
|
-
throw new Error("Missing required property 'identifier'");
|
|
162
|
-
}
|
|
163
160
|
if (args?.type === undefined && !opts.urn) {
|
|
164
161
|
throw new Error("Missing required property 'type'");
|
|
165
162
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environment.js","sourceRoot":"","sources":["../../platform/environment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6GG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IAuDD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,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,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"environment.js","sourceRoot":"","sources":["../../platform/environment.ts"],"names":[],"mappings":"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"}
|
|
@@ -38,13 +38,25 @@ export interface GetCentralNotificationChannelArgs {
|
|
|
38
38
|
*/
|
|
39
39
|
notificationChannelType?: string;
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
* Unique identifier of the organization. Use `orgId` instead.
|
|
42
|
+
*
|
|
43
|
+
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
42
44
|
*/
|
|
43
45
|
org?: string;
|
|
44
46
|
/**
|
|
45
|
-
*
|
|
47
|
+
* Unique identifier of the organization.
|
|
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.
|
|
46
54
|
*/
|
|
47
55
|
project?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Unique identifier of the project.
|
|
58
|
+
*/
|
|
59
|
+
projectId?: string;
|
|
48
60
|
/**
|
|
49
61
|
* Status of the notification channel. Possible values are ENABLED or DISABLED.
|
|
50
62
|
*/
|
|
@@ -87,13 +99,25 @@ export interface GetCentralNotificationChannelResult {
|
|
|
87
99
|
*/
|
|
88
100
|
readonly notificationChannelType?: string;
|
|
89
101
|
/**
|
|
90
|
-
*
|
|
102
|
+
* Unique identifier of the organization. Use `orgId` instead.
|
|
103
|
+
*
|
|
104
|
+
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
91
105
|
*/
|
|
92
106
|
readonly org?: string;
|
|
93
107
|
/**
|
|
94
|
-
*
|
|
108
|
+
* Unique identifier of the organization.
|
|
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.
|
|
95
115
|
*/
|
|
96
116
|
readonly project?: string;
|
|
117
|
+
/**
|
|
118
|
+
* Unique identifier of the project.
|
|
119
|
+
*/
|
|
120
|
+
readonly projectId?: string;
|
|
97
121
|
/**
|
|
98
122
|
* Status of the notification channel. Possible values are ENABLED or DISABLED.
|
|
99
123
|
*/
|
|
@@ -136,13 +160,25 @@ export interface GetCentralNotificationChannelOutputArgs {
|
|
|
136
160
|
*/
|
|
137
161
|
notificationChannelType?: pulumi.Input<string>;
|
|
138
162
|
/**
|
|
139
|
-
*
|
|
163
|
+
* Unique identifier of the organization. Use `orgId` instead.
|
|
164
|
+
*
|
|
165
|
+
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
140
166
|
*/
|
|
141
167
|
org?: pulumi.Input<string>;
|
|
142
168
|
/**
|
|
143
|
-
*
|
|
169
|
+
* Unique identifier of the organization.
|
|
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.
|
|
144
176
|
*/
|
|
145
177
|
project?: pulumi.Input<string>;
|
|
178
|
+
/**
|
|
179
|
+
* Unique identifier of the project.
|
|
180
|
+
*/
|
|
181
|
+
projectId?: pulumi.Input<string>;
|
|
146
182
|
/**
|
|
147
183
|
* Status of the notification channel. Possible values are ENABLED or DISABLED.
|
|
148
184
|
*/
|
|
@@ -19,7 +19,9 @@ function getCentralNotificationChannel(args, opts) {
|
|
|
19
19
|
"name": args.name,
|
|
20
20
|
"notificationChannelType": args.notificationChannelType,
|
|
21
21
|
"org": args.org,
|
|
22
|
+
"orgId": args.orgId,
|
|
22
23
|
"project": args.project,
|
|
24
|
+
"projectId": args.projectId,
|
|
23
25
|
"status": args.status,
|
|
24
26
|
}, opts);
|
|
25
27
|
}
|
|
@@ -38,7 +40,9 @@ function getCentralNotificationChannelOutput(args, opts) {
|
|
|
38
40
|
"name": args.name,
|
|
39
41
|
"notificationChannelType": args.notificationChannelType,
|
|
40
42
|
"org": args.org,
|
|
43
|
+
"orgId": args.orgId,
|
|
41
44
|
"project": args.project,
|
|
45
|
+
"projectId": args.projectId,
|
|
42
46
|
"status": args.status,
|
|
43
47
|
}, opts);
|
|
44
48
|
}
|
|
@@ -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,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;
|
|
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,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,sEAgBC;AAyHD;;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,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,kFAgBC"}
|
|
@@ -34,13 +34,25 @@ export interface GetDefaultNotificationTemplateSetArgs {
|
|
|
34
34
|
*/
|
|
35
35
|
notificationEntity: string;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Unique identifier of the organization. Use `orgId` instead.
|
|
38
|
+
*
|
|
39
|
+
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
38
40
|
*/
|
|
39
41
|
org?: string;
|
|
40
42
|
/**
|
|
41
|
-
*
|
|
43
|
+
* Unique identifier of the organization.
|
|
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.
|
|
42
50
|
*/
|
|
43
51
|
project?: string;
|
|
52
|
+
/**
|
|
53
|
+
* Unique identifier of the project.
|
|
54
|
+
*/
|
|
55
|
+
projectId?: string;
|
|
44
56
|
/**
|
|
45
57
|
* Key-value tags
|
|
46
58
|
*/
|
|
@@ -89,13 +101,25 @@ export interface GetDefaultNotificationTemplateSetResult {
|
|
|
89
101
|
*/
|
|
90
102
|
readonly notificationEntity: string;
|
|
91
103
|
/**
|
|
92
|
-
*
|
|
104
|
+
* Unique identifier of the organization. Use `orgId` instead.
|
|
105
|
+
*
|
|
106
|
+
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
93
107
|
*/
|
|
94
108
|
readonly org?: string;
|
|
95
109
|
/**
|
|
96
|
-
*
|
|
110
|
+
* Unique identifier of the organization.
|
|
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.
|
|
97
117
|
*/
|
|
98
118
|
readonly project?: string;
|
|
119
|
+
/**
|
|
120
|
+
* Unique identifier of the project.
|
|
121
|
+
*/
|
|
122
|
+
readonly projectId?: string;
|
|
99
123
|
/**
|
|
100
124
|
* Key-value tags
|
|
101
125
|
*/
|
|
@@ -136,13 +160,25 @@ export interface GetDefaultNotificationTemplateSetOutputArgs {
|
|
|
136
160
|
*/
|
|
137
161
|
notificationEntity: pulumi.Input<string>;
|
|
138
162
|
/**
|
|
139
|
-
*
|
|
163
|
+
* Unique identifier of the organization. Use `orgId` instead.
|
|
164
|
+
*
|
|
165
|
+
* @deprecated This field is deprecated and will be removed in a future release. Please use 'org_id' instead.
|
|
140
166
|
*/
|
|
141
167
|
org?: pulumi.Input<string>;
|
|
142
168
|
/**
|
|
143
|
-
*
|
|
169
|
+
* Unique identifier of the organization.
|
|
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.
|
|
144
176
|
*/
|
|
145
177
|
project?: pulumi.Input<string>;
|
|
178
|
+
/**
|
|
179
|
+
* Unique identifier of the project.
|
|
180
|
+
*/
|
|
181
|
+
projectId?: pulumi.Input<string>;
|
|
146
182
|
/**
|
|
147
183
|
* Key-value tags
|
|
148
184
|
*/
|
|
@@ -18,7 +18,9 @@ function getDefaultNotificationTemplateSet(args, opts) {
|
|
|
18
18
|
"notificationChannelType": args.notificationChannelType,
|
|
19
19
|
"notificationEntity": args.notificationEntity,
|
|
20
20
|
"org": args.org,
|
|
21
|
+
"orgId": args.orgId,
|
|
21
22
|
"project": args.project,
|
|
23
|
+
"projectId": args.projectId,
|
|
22
24
|
"tags": args.tags,
|
|
23
25
|
}, opts);
|
|
24
26
|
}
|
|
@@ -36,7 +38,9 @@ function getDefaultNotificationTemplateSetOutput(args, opts) {
|
|
|
36
38
|
"notificationChannelType": args.notificationChannelType,
|
|
37
39
|
"notificationEntity": args.notificationEntity,
|
|
38
40
|
"org": args.org,
|
|
41
|
+
"orgId": args.orgId,
|
|
39
42
|
"project": args.project,
|
|
43
|
+
"projectId": args.projectId,
|
|
40
44
|
"tags": args.tags,
|
|
41
45
|
}, opts);
|
|
42
46
|
}
|
|
@@ -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,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;
|
|
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,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,8EAeC;AAyHD;;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,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,0FAeC"}
|
|
@@ -54,7 +54,7 @@ export interface GetInfrastructureArgs {
|
|
|
54
54
|
*/
|
|
55
55
|
export interface GetInfrastructureResult {
|
|
56
56
|
/**
|
|
57
|
-
* Infrastructure deployment type. Valid values are Kubernetes, NativeHelm, Ssh, WinRm, ServerlessAwsLambda, AzureWebApp, Custom, ECS.
|
|
57
|
+
* Infrastructure deployment type. Valid values are Kubernetes, NativeHelm, Ssh, WinRm, ServerlessAwsLambda, AzureWebApp, Custom, ECS, GoogleManagedInstanceGroup.
|
|
58
58
|
*/
|
|
59
59
|
readonly deploymentType: string;
|
|
60
60
|
/**
|
|
@@ -94,7 +94,7 @@ export interface GetInfrastructureResult {
|
|
|
94
94
|
*/
|
|
95
95
|
readonly tags: string[];
|
|
96
96
|
/**
|
|
97
|
-
* Type of Infrastructure. Valid values are KubernetesDirect, KubernetesGcp, ServerlessAwsLambda, Pdc, KubernetesAzure, SshWinRmAzure, SshWinRmAws, AzureWebApp, ECS, GitOps, CustomDeployment, TAS, KubernetesRancher, AWS_SAM.
|
|
97
|
+
* Type of Infrastructure. Valid values are KubernetesDirect, KubernetesGcp, ServerlessAwsLambda, Pdc, KubernetesAzure, SshWinRmAzure, SshWinRmAws, AzureWebApp, ECS, GitOps, CustomDeployment, TAS, KubernetesRancher, AWS_SAM, GoogleManagedInstanceGroup.
|
|
98
98
|
*/
|
|
99
99
|
readonly type: string;
|
|
100
100
|
/**
|
package/platform/index.d.ts
CHANGED
|
@@ -589,6 +589,9 @@ export declare const Infrastructure: typeof import("./infrastructure").Infrastru
|
|
|
589
589
|
export { InputSetArgs, InputSetState } from "./inputSet";
|
|
590
590
|
export type InputSet = import("./inputSet").InputSet;
|
|
591
591
|
export declare const InputSet: typeof import("./inputSet").InputSet;
|
|
592
|
+
export { IpAllowlistArgs, IpAllowlistState } from "./ipAllowlist";
|
|
593
|
+
export type IpAllowlist = import("./ipAllowlist").IpAllowlist;
|
|
594
|
+
export declare const IpAllowlist: typeof import("./ipAllowlist").IpAllowlist;
|
|
592
595
|
export { JenkinsConnectorArgs, JenkinsConnectorState } from "./jenkinsConnector";
|
|
593
596
|
export type JenkinsConnector = import("./jenkinsConnector").JenkinsConnector;
|
|
594
597
|
export declare const JenkinsConnector: typeof import("./jenkinsConnector").JenkinsConnector;
|