@pulumi/ns1 2.2.1 → 2.4.0-alpha.1637768721
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 +1 -1
- package/apikey.d.ts +65 -65
- package/apikey.js +1 -0
- package/apikey.js.map +1 -1
- package/application.d.ts +10 -10
- package/application.js +1 -0
- package/application.js.map +1 -1
- package/config/index.js +11 -4
- package/config/index.js.map +1 -1
- package/config/vars.d.ts +5 -5
- package/config/vars.js +31 -9
- package/config/vars.js.map +1 -1
- package/dataFeed.d.ts +6 -6
- package/dataFeed.js +1 -0
- package/dataFeed.js.map +1 -1
- package/dataSource.d.ts +6 -6
- package/dataSource.js +1 -0
- package/dataSource.js.map +1 -1
- package/getDNSSec.d.ts +12 -2
- package/getDNSSec.js +6 -1
- package/getDNSSec.js.map +1 -1
- package/getRecord.d.ts +22 -4
- package/getRecord.js +6 -1
- package/getRecord.js.map +1 -1
- package/getZone.d.ts +18 -3
- package/getZone.js +6 -1
- package/getZone.js.map +1 -1
- package/index.js +26 -18
- package/index.js.map +1 -1
- package/monitoringJob.d.ts +32 -32
- package/monitoringJob.js +1 -0
- package/monitoringJob.js.map +1 -1
- package/notifyList.d.ts +4 -4
- package/notifyList.js +1 -0
- package/notifyList.js.map +1 -1
- package/package.json +4 -3
- package/package.json.bak +3 -2
- package/package.json.dev +4 -3
- package/provider.d.ts +10 -5
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/pulsarJob.d.ts +19 -19
- package/pulsarJob.js +1 -0
- package/pulsarJob.js.map +1 -1
- package/record.d.ts +22 -22
- package/record.js +1 -0
- package/record.js.map +1 -1
- package/team.d.ts +60 -60
- package/team.js +1 -0
- package/team.js.map +1 -1
- package/types/index.js +1 -0
- package/types/index.js.map +1 -1
- package/user.d.ts +70 -70
- package/user.js +1 -0
- package/user.js.map +1 -1
- package/utilities.js +1 -0
- package/utilities.js.map +1 -1
- package/zone.d.ts +28 -28
- package/zone.js +1 -0
- package/zone.js.map +1 -1
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/ns1",
|
|
3
|
-
"version": "v2.
|
|
3
|
+
"version": "v2.4.0-alpha.1637768721+2b9dea7a",
|
|
4
4
|
"description": "A Pulumi package for creating and managing ns1 cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -17,9 +17,10 @@
|
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@types/mime": "^2.0.0",
|
|
20
|
-
"@types/node": "^10.0.0"
|
|
20
|
+
"@types/node": "^10.0.0",
|
|
21
|
+
"typescript": "^4.3.5"
|
|
21
22
|
},
|
|
22
23
|
"pulumi": {
|
|
23
24
|
"resource": true
|
|
24
25
|
}
|
|
25
|
-
}
|
|
26
|
+
}
|
package/provider.d.ts
CHANGED
|
@@ -11,6 +11,11 @@ export declare class Provider extends pulumi.ProviderResource {
|
|
|
11
11
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
12
12
|
*/
|
|
13
13
|
static isInstance(obj: any): obj is Provider;
|
|
14
|
+
/**
|
|
15
|
+
* The ns1 API key, this is required
|
|
16
|
+
*/
|
|
17
|
+
readonly apikey: pulumi.Output<string | undefined>;
|
|
18
|
+
readonly endpoint: pulumi.Output<string | undefined>;
|
|
14
19
|
/**
|
|
15
20
|
* Create a Provider resource with the given unique name, arguments, and options.
|
|
16
21
|
*
|
|
@@ -27,9 +32,9 @@ export interface ProviderArgs {
|
|
|
27
32
|
/**
|
|
28
33
|
* The ns1 API key, this is required
|
|
29
34
|
*/
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
+
apikey?: pulumi.Input<string>;
|
|
36
|
+
enableDdi?: pulumi.Input<boolean>;
|
|
37
|
+
endpoint?: pulumi.Input<string>;
|
|
38
|
+
ignoreSsl?: pulumi.Input<boolean>;
|
|
39
|
+
rateLimitParallelism?: pulumi.Input<number>;
|
|
35
40
|
}
|
package/provider.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
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.Provider = void 0;
|
|
5
6
|
const pulumi = require("@pulumi/pulumi");
|
|
6
7
|
const utilities = require("./utilities");
|
|
7
8
|
/**
|
package/provider.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IAqBjD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAmB,EAAE,IAA6B;QACxE,IAAI,MAAM,GAAkB,EAAE,CAAC;QAC/B,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB;YACI,MAAM,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAClD,MAAM,CAAC,WAAW,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YAC7F,MAAM,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,WAAW,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;YAC7F,MAAM,CAAC,sBAAsB,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SACtH;QACD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YACf,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE,EAAC,CAAC,CAAC;SACxE;QACD,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,CAAC;IACrD,CAAC;IAtCD;;;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,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;;AAbL,4BA2CC;AA1CG,gBAAgB;AACO,qBAAY,GAAG,KAAK,CAAC"}
|
package/pulsarJob.d.ts
CHANGED
|
@@ -40,28 +40,28 @@ export declare class PulsarJob extends pulumi.CustomResource {
|
|
|
40
40
|
* Input properties used for looking up and filtering PulsarJob resources.
|
|
41
41
|
*/
|
|
42
42
|
export interface PulsarJobState {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
43
|
+
active?: pulumi.Input<boolean>;
|
|
44
|
+
appId?: pulumi.Input<string>;
|
|
45
|
+
blendMetricWeights?: pulumi.Input<inputs.PulsarJobBlendMetricWeights>;
|
|
46
|
+
community?: pulumi.Input<boolean>;
|
|
47
|
+
config?: pulumi.Input<inputs.PulsarJobConfig>;
|
|
48
|
+
customer?: pulumi.Input<number>;
|
|
49
|
+
jobId?: pulumi.Input<string>;
|
|
50
|
+
name?: pulumi.Input<string>;
|
|
51
|
+
shared?: pulumi.Input<boolean>;
|
|
52
|
+
typeId?: pulumi.Input<string>;
|
|
53
|
+
weights?: pulumi.Input<pulumi.Input<inputs.PulsarJobWeight>[]>;
|
|
54
54
|
}
|
|
55
55
|
/**
|
|
56
56
|
* The set of arguments for constructing a PulsarJob resource.
|
|
57
57
|
*/
|
|
58
58
|
export interface PulsarJobArgs {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
59
|
+
active?: pulumi.Input<boolean>;
|
|
60
|
+
appId: pulumi.Input<string>;
|
|
61
|
+
blendMetricWeights?: pulumi.Input<inputs.PulsarJobBlendMetricWeights>;
|
|
62
|
+
config?: pulumi.Input<inputs.PulsarJobConfig>;
|
|
63
|
+
name?: pulumi.Input<string>;
|
|
64
|
+
shared?: pulumi.Input<boolean>;
|
|
65
|
+
typeId: pulumi.Input<string>;
|
|
66
|
+
weights?: pulumi.Input<pulumi.Input<inputs.PulsarJobWeight>[]>;
|
|
67
67
|
}
|
package/pulsarJob.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
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.PulsarJob = void 0;
|
|
5
6
|
const pulumi = require("@pulumi/pulumi");
|
|
6
7
|
const utilities = require("./utilities");
|
|
7
8
|
class PulsarJob extends pulumi.CustomResource {
|
package/pulsarJob.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pulsarJob.js","sourceRoot":"","sources":["../pulsarJob.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"pulsarJob.js","sourceRoot":"","sources":["../pulsarJob.ts"],"names":[],"mappings":"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"}
|
package/record.d.ts
CHANGED
|
@@ -106,23 +106,23 @@ export interface RecordState {
|
|
|
106
106
|
* One or more NS1 answers for the records' specified type.
|
|
107
107
|
* Answers are documented below.
|
|
108
108
|
*/
|
|
109
|
-
|
|
109
|
+
answers?: pulumi.Input<pulumi.Input<inputs.RecordAnswer>[]>;
|
|
110
110
|
/**
|
|
111
111
|
* The records' domain. Cannot have leading or trailing
|
|
112
112
|
* dots - see the example above and `FQDN formatting` below.
|
|
113
113
|
*/
|
|
114
|
-
|
|
114
|
+
domain?: pulumi.Input<string>;
|
|
115
115
|
/**
|
|
116
116
|
* One or more NS1 filters for the record(order matters).
|
|
117
117
|
* Filters are documented below.
|
|
118
118
|
*/
|
|
119
|
-
|
|
119
|
+
filters?: pulumi.Input<pulumi.Input<inputs.RecordFilter>[]>;
|
|
120
120
|
/**
|
|
121
121
|
* The target record to link to. This means this record is a
|
|
122
122
|
* 'linked' record, and it inherits all properties from its target.
|
|
123
123
|
*/
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
link?: pulumi.Input<string>;
|
|
125
|
+
meta?: pulumi.Input<{
|
|
126
126
|
[key: string]: any;
|
|
127
127
|
}>;
|
|
128
128
|
/**
|
|
@@ -131,31 +131,31 @@ export interface RecordState {
|
|
|
131
131
|
* but remain `regions` here for legacy reasons. Regions are
|
|
132
132
|
* documented below. Please note the ordering requirement!
|
|
133
133
|
*/
|
|
134
|
-
|
|
134
|
+
regions?: pulumi.Input<pulumi.Input<inputs.RecordRegion>[]>;
|
|
135
135
|
/**
|
|
136
136
|
* @deprecated short_answers will be deprecated in a future release. It is suggested to migrate to a regular "answers" block.
|
|
137
137
|
*/
|
|
138
|
-
|
|
138
|
+
shortAnswers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
139
139
|
/**
|
|
140
140
|
* The records' time to live (in seconds).
|
|
141
141
|
*/
|
|
142
|
-
|
|
142
|
+
ttl?: pulumi.Input<number>;
|
|
143
143
|
/**
|
|
144
144
|
* The records' RR type.
|
|
145
145
|
*/
|
|
146
|
-
|
|
146
|
+
type?: pulumi.Input<string>;
|
|
147
147
|
/**
|
|
148
148
|
* Whether to use EDNS client subnet data when
|
|
149
149
|
* available(in filter chain).
|
|
150
150
|
* * ` meta` - (Optional) meta is supported at the `record` level. Meta
|
|
151
151
|
* is documented below.
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
useClientSubnet?: pulumi.Input<boolean>;
|
|
154
154
|
/**
|
|
155
155
|
* The zone the record belongs to. Cannot have leading or
|
|
156
156
|
* trailing dots (".") - see the example above and `FQDN formatting` below.
|
|
157
157
|
*/
|
|
158
|
-
|
|
158
|
+
zone?: pulumi.Input<string>;
|
|
159
159
|
}
|
|
160
160
|
/**
|
|
161
161
|
* The set of arguments for constructing a Record resource.
|
|
@@ -165,23 +165,23 @@ export interface RecordArgs {
|
|
|
165
165
|
* One or more NS1 answers for the records' specified type.
|
|
166
166
|
* Answers are documented below.
|
|
167
167
|
*/
|
|
168
|
-
|
|
168
|
+
answers?: pulumi.Input<pulumi.Input<inputs.RecordAnswer>[]>;
|
|
169
169
|
/**
|
|
170
170
|
* The records' domain. Cannot have leading or trailing
|
|
171
171
|
* dots - see the example above and `FQDN formatting` below.
|
|
172
172
|
*/
|
|
173
|
-
|
|
173
|
+
domain: pulumi.Input<string>;
|
|
174
174
|
/**
|
|
175
175
|
* One or more NS1 filters for the record(order matters).
|
|
176
176
|
* Filters are documented below.
|
|
177
177
|
*/
|
|
178
|
-
|
|
178
|
+
filters?: pulumi.Input<pulumi.Input<inputs.RecordFilter>[]>;
|
|
179
179
|
/**
|
|
180
180
|
* The target record to link to. This means this record is a
|
|
181
181
|
* 'linked' record, and it inherits all properties from its target.
|
|
182
182
|
*/
|
|
183
|
-
|
|
184
|
-
|
|
183
|
+
link?: pulumi.Input<string>;
|
|
184
|
+
meta?: pulumi.Input<{
|
|
185
185
|
[key: string]: any;
|
|
186
186
|
}>;
|
|
187
187
|
/**
|
|
@@ -190,29 +190,29 @@ export interface RecordArgs {
|
|
|
190
190
|
* but remain `regions` here for legacy reasons. Regions are
|
|
191
191
|
* documented below. Please note the ordering requirement!
|
|
192
192
|
*/
|
|
193
|
-
|
|
193
|
+
regions?: pulumi.Input<pulumi.Input<inputs.RecordRegion>[]>;
|
|
194
194
|
/**
|
|
195
195
|
* @deprecated short_answers will be deprecated in a future release. It is suggested to migrate to a regular "answers" block.
|
|
196
196
|
*/
|
|
197
|
-
|
|
197
|
+
shortAnswers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
198
198
|
/**
|
|
199
199
|
* The records' time to live (in seconds).
|
|
200
200
|
*/
|
|
201
|
-
|
|
201
|
+
ttl?: pulumi.Input<number>;
|
|
202
202
|
/**
|
|
203
203
|
* The records' RR type.
|
|
204
204
|
*/
|
|
205
|
-
|
|
205
|
+
type: pulumi.Input<string>;
|
|
206
206
|
/**
|
|
207
207
|
* Whether to use EDNS client subnet data when
|
|
208
208
|
* available(in filter chain).
|
|
209
209
|
* * ` meta` - (Optional) meta is supported at the `record` level. Meta
|
|
210
210
|
* is documented below.
|
|
211
211
|
*/
|
|
212
|
-
|
|
212
|
+
useClientSubnet?: pulumi.Input<boolean>;
|
|
213
213
|
/**
|
|
214
214
|
* The zone the record belongs to. Cannot have leading or
|
|
215
215
|
* trailing dots (".") - see the example above and `FQDN formatting` below.
|
|
216
216
|
*/
|
|
217
|
-
|
|
217
|
+
zone: pulumi.Input<string>;
|
|
218
218
|
}
|
package/record.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
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.Record = void 0;
|
|
5
6
|
const pulumi = require("@pulumi/pulumi");
|
|
6
7
|
const utilities = require("./utilities");
|
|
7
8
|
/**
|
package/record.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"record.js","sourceRoot":"","sources":["../record.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"record.js","sourceRoot":"","sources":["../record.ts"],"names":[],"mappings":"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"}
|
package/team.d.ts
CHANGED
|
@@ -205,124 +205,124 @@ export interface TeamState {
|
|
|
205
205
|
/**
|
|
206
206
|
* Whether the team can modify account settings.
|
|
207
207
|
*/
|
|
208
|
-
|
|
208
|
+
accountManageAccountSettings?: pulumi.Input<boolean>;
|
|
209
209
|
/**
|
|
210
210
|
* Whether the team can modify account apikeys.
|
|
211
211
|
*/
|
|
212
|
-
|
|
212
|
+
accountManageApikeys?: pulumi.Input<boolean>;
|
|
213
213
|
/**
|
|
214
214
|
* Whether the team can manage ip whitelist.
|
|
215
215
|
*/
|
|
216
|
-
|
|
216
|
+
accountManageIpWhitelist?: pulumi.Input<boolean>;
|
|
217
217
|
/**
|
|
218
218
|
* Whether the team can modify account payment methods.
|
|
219
219
|
*/
|
|
220
|
-
|
|
220
|
+
accountManagePaymentMethods?: pulumi.Input<boolean>;
|
|
221
221
|
/**
|
|
222
222
|
* Whether the team can modify the account plan.
|
|
223
223
|
*
|
|
224
224
|
* @deprecated obsolete, should no longer be used
|
|
225
225
|
*/
|
|
226
|
-
|
|
226
|
+
accountManagePlan?: pulumi.Input<boolean>;
|
|
227
227
|
/**
|
|
228
228
|
* Whether the team can modify other teams in the account.
|
|
229
229
|
*/
|
|
230
|
-
|
|
230
|
+
accountManageTeams?: pulumi.Input<boolean>;
|
|
231
231
|
/**
|
|
232
232
|
* Whether the team can modify account users.
|
|
233
233
|
*/
|
|
234
|
-
|
|
234
|
+
accountManageUsers?: pulumi.Input<boolean>;
|
|
235
235
|
/**
|
|
236
236
|
* Whether the team can view activity logs.
|
|
237
237
|
*/
|
|
238
|
-
|
|
238
|
+
accountViewActivityLog?: pulumi.Input<boolean>;
|
|
239
239
|
/**
|
|
240
240
|
* Whether the team can view invoices.
|
|
241
241
|
*/
|
|
242
|
-
|
|
242
|
+
accountViewInvoices?: pulumi.Input<boolean>;
|
|
243
243
|
/**
|
|
244
244
|
* Whether the team can modify data feeds.
|
|
245
245
|
*/
|
|
246
|
-
|
|
246
|
+
dataManageDatafeeds?: pulumi.Input<boolean>;
|
|
247
247
|
/**
|
|
248
248
|
* Whether the team can modify data sources.
|
|
249
249
|
*/
|
|
250
|
-
|
|
250
|
+
dataManageDatasources?: pulumi.Input<boolean>;
|
|
251
251
|
/**
|
|
252
252
|
* Whether the team can publish to data feeds.
|
|
253
253
|
*/
|
|
254
|
-
|
|
254
|
+
dataPushToDatafeeds?: pulumi.Input<boolean>;
|
|
255
255
|
/**
|
|
256
256
|
* Whether the team can manage DHCP.
|
|
257
257
|
* Only relevant for the DDI product.
|
|
258
258
|
*/
|
|
259
|
-
|
|
259
|
+
dhcpManageDhcp?: pulumi.Input<boolean>;
|
|
260
260
|
/**
|
|
261
261
|
* Whether the team can view DHCP.
|
|
262
262
|
* Only relevant for the DDI product.
|
|
263
263
|
*/
|
|
264
|
-
|
|
264
|
+
dhcpViewDhcp?: pulumi.Input<boolean>;
|
|
265
265
|
/**
|
|
266
266
|
* Whether the team can modify the accounts zones.
|
|
267
267
|
*/
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
268
|
+
dnsManageZones?: pulumi.Input<boolean>;
|
|
269
|
+
dnsRecordsAllows?: pulumi.Input<pulumi.Input<inputs.TeamDnsRecordsAllow>[]>;
|
|
270
|
+
dnsRecordsDenies?: pulumi.Input<pulumi.Input<inputs.TeamDnsRecordsDeny>[]>;
|
|
271
271
|
/**
|
|
272
272
|
* Whether the team can view the accounts zones.
|
|
273
273
|
*/
|
|
274
|
-
|
|
274
|
+
dnsViewZones?: pulumi.Input<boolean>;
|
|
275
275
|
/**
|
|
276
276
|
* If true, enable the `dnsZonesAllow` list, otherwise enable the `dnsZonesDeny` list.
|
|
277
277
|
*/
|
|
278
|
-
|
|
278
|
+
dnsZonesAllowByDefault?: pulumi.Input<boolean>;
|
|
279
279
|
/**
|
|
280
280
|
* List of zones that the team may access.
|
|
281
281
|
*/
|
|
282
|
-
|
|
282
|
+
dnsZonesAllows?: pulumi.Input<pulumi.Input<string>[]>;
|
|
283
283
|
/**
|
|
284
284
|
* List of zones that the team may not access.
|
|
285
285
|
*/
|
|
286
|
-
|
|
286
|
+
dnsZonesDenies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
287
287
|
/**
|
|
288
288
|
* Array of IP addresses objects to chich to grant the team access. Each object includes a **name** (string), and **values** (array of strings) associated to each "allow" list.
|
|
289
289
|
*/
|
|
290
|
-
|
|
290
|
+
ipWhitelists?: pulumi.Input<pulumi.Input<inputs.TeamIpWhitelist>[]>;
|
|
291
291
|
/**
|
|
292
292
|
* Whether the team can manage IPAM.
|
|
293
293
|
* Only relevant for the DDI product.
|
|
294
294
|
*/
|
|
295
|
-
|
|
295
|
+
ipamManageIpam?: pulumi.Input<boolean>;
|
|
296
296
|
/**
|
|
297
297
|
* Whether the team can view IPAM.
|
|
298
298
|
* Only relevant for the DDI product.
|
|
299
299
|
*/
|
|
300
|
-
|
|
300
|
+
ipamViewIpam?: pulumi.Input<boolean>;
|
|
301
301
|
/**
|
|
302
302
|
* Whether the team can modify monitoring jobs.
|
|
303
303
|
*/
|
|
304
|
-
|
|
304
|
+
monitoringManageJobs?: pulumi.Input<boolean>;
|
|
305
305
|
/**
|
|
306
306
|
* Whether the team can modify notification lists.
|
|
307
307
|
*/
|
|
308
|
-
|
|
308
|
+
monitoringManageLists?: pulumi.Input<boolean>;
|
|
309
309
|
/**
|
|
310
310
|
* Whether the team can view monitoring jobs.
|
|
311
311
|
*/
|
|
312
|
-
|
|
312
|
+
monitoringViewJobs?: pulumi.Input<boolean>;
|
|
313
313
|
/**
|
|
314
314
|
* The free form name of the team.
|
|
315
315
|
*/
|
|
316
|
-
|
|
316
|
+
name?: pulumi.Input<string>;
|
|
317
317
|
/**
|
|
318
318
|
* Whether the team can manage global active directory.
|
|
319
319
|
* Only relevant for the DDI product.
|
|
320
320
|
*/
|
|
321
|
-
|
|
321
|
+
securityManageActiveDirectory?: pulumi.Input<boolean>;
|
|
322
322
|
/**
|
|
323
323
|
* Whether the team can manage global two factor authentication.
|
|
324
324
|
*/
|
|
325
|
-
|
|
325
|
+
securityManageGlobal2fa?: pulumi.Input<boolean>;
|
|
326
326
|
}
|
|
327
327
|
/**
|
|
328
328
|
* The set of arguments for constructing a Team resource.
|
|
@@ -331,122 +331,122 @@ export interface TeamArgs {
|
|
|
331
331
|
/**
|
|
332
332
|
* Whether the team can modify account settings.
|
|
333
333
|
*/
|
|
334
|
-
|
|
334
|
+
accountManageAccountSettings?: pulumi.Input<boolean>;
|
|
335
335
|
/**
|
|
336
336
|
* Whether the team can modify account apikeys.
|
|
337
337
|
*/
|
|
338
|
-
|
|
338
|
+
accountManageApikeys?: pulumi.Input<boolean>;
|
|
339
339
|
/**
|
|
340
340
|
* Whether the team can manage ip whitelist.
|
|
341
341
|
*/
|
|
342
|
-
|
|
342
|
+
accountManageIpWhitelist?: pulumi.Input<boolean>;
|
|
343
343
|
/**
|
|
344
344
|
* Whether the team can modify account payment methods.
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
accountManagePaymentMethods?: pulumi.Input<boolean>;
|
|
347
347
|
/**
|
|
348
348
|
* Whether the team can modify the account plan.
|
|
349
349
|
*
|
|
350
350
|
* @deprecated obsolete, should no longer be used
|
|
351
351
|
*/
|
|
352
|
-
|
|
352
|
+
accountManagePlan?: pulumi.Input<boolean>;
|
|
353
353
|
/**
|
|
354
354
|
* Whether the team can modify other teams in the account.
|
|
355
355
|
*/
|
|
356
|
-
|
|
356
|
+
accountManageTeams?: pulumi.Input<boolean>;
|
|
357
357
|
/**
|
|
358
358
|
* Whether the team can modify account users.
|
|
359
359
|
*/
|
|
360
|
-
|
|
360
|
+
accountManageUsers?: pulumi.Input<boolean>;
|
|
361
361
|
/**
|
|
362
362
|
* Whether the team can view activity logs.
|
|
363
363
|
*/
|
|
364
|
-
|
|
364
|
+
accountViewActivityLog?: pulumi.Input<boolean>;
|
|
365
365
|
/**
|
|
366
366
|
* Whether the team can view invoices.
|
|
367
367
|
*/
|
|
368
|
-
|
|
368
|
+
accountViewInvoices?: pulumi.Input<boolean>;
|
|
369
369
|
/**
|
|
370
370
|
* Whether the team can modify data feeds.
|
|
371
371
|
*/
|
|
372
|
-
|
|
372
|
+
dataManageDatafeeds?: pulumi.Input<boolean>;
|
|
373
373
|
/**
|
|
374
374
|
* Whether the team can modify data sources.
|
|
375
375
|
*/
|
|
376
|
-
|
|
376
|
+
dataManageDatasources?: pulumi.Input<boolean>;
|
|
377
377
|
/**
|
|
378
378
|
* Whether the team can publish to data feeds.
|
|
379
379
|
*/
|
|
380
|
-
|
|
380
|
+
dataPushToDatafeeds?: pulumi.Input<boolean>;
|
|
381
381
|
/**
|
|
382
382
|
* Whether the team can manage DHCP.
|
|
383
383
|
* Only relevant for the DDI product.
|
|
384
384
|
*/
|
|
385
|
-
|
|
385
|
+
dhcpManageDhcp?: pulumi.Input<boolean>;
|
|
386
386
|
/**
|
|
387
387
|
* Whether the team can view DHCP.
|
|
388
388
|
* Only relevant for the DDI product.
|
|
389
389
|
*/
|
|
390
|
-
|
|
390
|
+
dhcpViewDhcp?: pulumi.Input<boolean>;
|
|
391
391
|
/**
|
|
392
392
|
* Whether the team can modify the accounts zones.
|
|
393
393
|
*/
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
394
|
+
dnsManageZones?: pulumi.Input<boolean>;
|
|
395
|
+
dnsRecordsAllows?: pulumi.Input<pulumi.Input<inputs.TeamDnsRecordsAllow>[]>;
|
|
396
|
+
dnsRecordsDenies?: pulumi.Input<pulumi.Input<inputs.TeamDnsRecordsDeny>[]>;
|
|
397
397
|
/**
|
|
398
398
|
* Whether the team can view the accounts zones.
|
|
399
399
|
*/
|
|
400
|
-
|
|
400
|
+
dnsViewZones?: pulumi.Input<boolean>;
|
|
401
401
|
/**
|
|
402
402
|
* If true, enable the `dnsZonesAllow` list, otherwise enable the `dnsZonesDeny` list.
|
|
403
403
|
*/
|
|
404
|
-
|
|
404
|
+
dnsZonesAllowByDefault?: pulumi.Input<boolean>;
|
|
405
405
|
/**
|
|
406
406
|
* List of zones that the team may access.
|
|
407
407
|
*/
|
|
408
|
-
|
|
408
|
+
dnsZonesAllows?: pulumi.Input<pulumi.Input<string>[]>;
|
|
409
409
|
/**
|
|
410
410
|
* List of zones that the team may not access.
|
|
411
411
|
*/
|
|
412
|
-
|
|
412
|
+
dnsZonesDenies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
413
413
|
/**
|
|
414
414
|
* Array of IP addresses objects to chich to grant the team access. Each object includes a **name** (string), and **values** (array of strings) associated to each "allow" list.
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
ipWhitelists?: pulumi.Input<pulumi.Input<inputs.TeamIpWhitelist>[]>;
|
|
417
417
|
/**
|
|
418
418
|
* Whether the team can manage IPAM.
|
|
419
419
|
* Only relevant for the DDI product.
|
|
420
420
|
*/
|
|
421
|
-
|
|
421
|
+
ipamManageIpam?: pulumi.Input<boolean>;
|
|
422
422
|
/**
|
|
423
423
|
* Whether the team can view IPAM.
|
|
424
424
|
* Only relevant for the DDI product.
|
|
425
425
|
*/
|
|
426
|
-
|
|
426
|
+
ipamViewIpam?: pulumi.Input<boolean>;
|
|
427
427
|
/**
|
|
428
428
|
* Whether the team can modify monitoring jobs.
|
|
429
429
|
*/
|
|
430
|
-
|
|
430
|
+
monitoringManageJobs?: pulumi.Input<boolean>;
|
|
431
431
|
/**
|
|
432
432
|
* Whether the team can modify notification lists.
|
|
433
433
|
*/
|
|
434
|
-
|
|
434
|
+
monitoringManageLists?: pulumi.Input<boolean>;
|
|
435
435
|
/**
|
|
436
436
|
* Whether the team can view monitoring jobs.
|
|
437
437
|
*/
|
|
438
|
-
|
|
438
|
+
monitoringViewJobs?: pulumi.Input<boolean>;
|
|
439
439
|
/**
|
|
440
440
|
* The free form name of the team.
|
|
441
441
|
*/
|
|
442
|
-
|
|
442
|
+
name?: pulumi.Input<string>;
|
|
443
443
|
/**
|
|
444
444
|
* Whether the team can manage global active directory.
|
|
445
445
|
* Only relevant for the DDI product.
|
|
446
446
|
*/
|
|
447
|
-
|
|
447
|
+
securityManageActiveDirectory?: pulumi.Input<boolean>;
|
|
448
448
|
/**
|
|
449
449
|
* Whether the team can manage global two factor authentication.
|
|
450
450
|
*/
|
|
451
|
-
|
|
451
|
+
securityManageGlobal2fa?: pulumi.Input<boolean>;
|
|
452
452
|
}
|
package/team.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
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.Team = void 0;
|
|
5
6
|
const pulumi = require("@pulumi/pulumi");
|
|
6
7
|
const utilities = require("./utilities");
|
|
7
8
|
/**
|