pulumi-ns1 3.5.0a1723009616__py3-none-any.whl → 3.5.0a1723819895__py3-none-any.whl

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.
pulumi_ns1/_inputs.py CHANGED
@@ -239,7 +239,7 @@ class ApplicationDefaultConfigArgs:
239
239
  @pulumi.input_type
240
240
  class DatasetDatatypeArgs:
241
241
  def __init__(__self__, *,
242
- data: pulumi.Input[Mapping[str, Any]],
242
+ data: pulumi.Input[Mapping[str, pulumi.Input[str]]],
243
243
  scope: pulumi.Input[str],
244
244
  type: pulumi.Input[str]):
245
245
  pulumi.set(__self__, "data", data)
@@ -248,11 +248,11 @@ class DatasetDatatypeArgs:
248
248
 
249
249
  @property
250
250
  @pulumi.getter
251
- def data(self) -> pulumi.Input[Mapping[str, Any]]:
251
+ def data(self) -> pulumi.Input[Mapping[str, pulumi.Input[str]]]:
252
252
  return pulumi.get(self, "data")
253
253
 
254
254
  @data.setter
255
- def data(self, value: pulumi.Input[Mapping[str, Any]]):
255
+ def data(self, value: pulumi.Input[Mapping[str, pulumi.Input[str]]]):
256
256
  pulumi.set(self, "data", value)
257
257
 
258
258
  @property
@@ -470,10 +470,10 @@ class MonitoringJobRuleArgs:
470
470
  @pulumi.input_type
471
471
  class NotifyListNotificationArgs:
472
472
  def __init__(__self__, *,
473
- config: pulumi.Input[Mapping[str, Any]],
473
+ config: pulumi.Input[Mapping[str, pulumi.Input[str]]],
474
474
  type: pulumi.Input[str]):
475
475
  """
476
- :param pulumi.Input[Mapping[str, Any]] config: Configuration details for the given notifier type.
476
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: Configuration details for the given notifier type.
477
477
  :param pulumi.Input[str] type: The type of notifier. Available notifiers are indicated in /notifytypes endpoint.
478
478
  """
479
479
  pulumi.set(__self__, "config", config)
@@ -481,14 +481,14 @@ class NotifyListNotificationArgs:
481
481
 
482
482
  @property
483
483
  @pulumi.getter
484
- def config(self) -> pulumi.Input[Mapping[str, Any]]:
484
+ def config(self) -> pulumi.Input[Mapping[str, pulumi.Input[str]]]:
485
485
  """
486
486
  Configuration details for the given notifier type.
487
487
  """
488
488
  return pulumi.get(self, "config")
489
489
 
490
490
  @config.setter
491
- def config(self, value: pulumi.Input[Mapping[str, Any]]):
491
+ def config(self, value: pulumi.Input[Mapping[str, pulumi.Input[str]]]):
492
492
  pulumi.set(self, "config", value)
493
493
 
494
494
  @property
@@ -675,7 +675,7 @@ class PulsarJobWeightArgs:
675
675
  class RecordAnswerArgs:
676
676
  def __init__(__self__, *,
677
677
  answer: Optional[pulumi.Input[str]] = None,
678
- meta: Optional[pulumi.Input[Mapping[str, Any]]] = None,
678
+ meta: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
679
679
  region: Optional[pulumi.Input[str]] = None):
680
680
  """
681
681
  :param pulumi.Input[str] answer: Space delimited string of RDATA fields dependent on the record type.
@@ -748,11 +748,11 @@ class RecordAnswerArgs:
748
748
 
749
749
  @property
750
750
  @pulumi.getter
751
- def meta(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
751
+ def meta(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
752
752
  return pulumi.get(self, "meta")
753
753
 
754
754
  @meta.setter
755
- def meta(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
755
+ def meta(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
756
756
  pulumi.set(self, "meta", value)
757
757
 
758
758
  @property
@@ -778,11 +778,11 @@ class RecordAnswerArgs:
778
778
  class RecordFilterArgs:
779
779
  def __init__(__self__, *,
780
780
  filter: pulumi.Input[str],
781
- config: Optional[pulumi.Input[Mapping[str, Any]]] = None,
781
+ config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
782
782
  disabled: Optional[pulumi.Input[bool]] = None):
783
783
  """
784
784
  :param pulumi.Input[str] filter: The type of filter.
785
- :param pulumi.Input[Mapping[str, Any]] config: The filters' configuration. Simple key/value pairs
785
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The filters' configuration. Simple key/value pairs
786
786
  determined by the filter type.
787
787
  :param pulumi.Input[bool] disabled: Determines whether the filter is applied in the
788
788
  filter chain.
@@ -807,7 +807,7 @@ class RecordFilterArgs:
807
807
 
808
808
  @property
809
809
  @pulumi.getter
810
- def config(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
810
+ def config(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
811
811
  """
812
812
  The filters' configuration. Simple key/value pairs
813
813
  determined by the filter type.
@@ -815,7 +815,7 @@ class RecordFilterArgs:
815
815
  return pulumi.get(self, "config")
816
816
 
817
817
  @config.setter
818
- def config(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
818
+ def config(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
819
819
  pulumi.set(self, "config", value)
820
820
 
821
821
  @property
@@ -836,7 +836,7 @@ class RecordFilterArgs:
836
836
  class RecordRegionArgs:
837
837
  def __init__(__self__, *,
838
838
  name: pulumi.Input[str],
839
- meta: Optional[pulumi.Input[Mapping[str, Any]]] = None):
839
+ meta: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
840
840
  """
841
841
  :param pulumi.Input[str] name: Name of the region (or Answer Group).
842
842
  """
@@ -858,11 +858,11 @@ class RecordRegionArgs:
858
858
 
859
859
  @property
860
860
  @pulumi.getter
861
- def meta(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
861
+ def meta(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
862
862
  return pulumi.get(self, "meta")
863
863
 
864
864
  @meta.setter
865
- def meta(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
865
+ def meta(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
866
866
  pulumi.set(self, "meta", value)
867
867
 
868
868
 
pulumi_ns1/api_key.py CHANGED
@@ -1067,8 +1067,8 @@ class APIKey(pulumi.CustomResource):
1067
1067
  data_manage_datasources: Optional[pulumi.Input[bool]] = None,
1068
1068
  data_push_to_datafeeds: Optional[pulumi.Input[bool]] = None,
1069
1069
  dns_manage_zones: Optional[pulumi.Input[bool]] = None,
1070
- dns_records_allows: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['APIKeyDnsRecordsAllowArgs']]]]] = None,
1071
- dns_records_denies: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['APIKeyDnsRecordsDenyArgs']]]]] = None,
1070
+ dns_records_allows: Optional[pulumi.Input[Sequence[pulumi.Input[Union['APIKeyDnsRecordsAllowArgs', 'APIKeyDnsRecordsAllowArgsDict']]]]] = None,
1071
+ dns_records_denies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['APIKeyDnsRecordsDenyArgs', 'APIKeyDnsRecordsDenyArgsDict']]]]] = None,
1072
1072
  dns_view_zones: Optional[pulumi.Input[bool]] = None,
1073
1073
  dns_zones_allow_by_default: Optional[pulumi.Input[bool]] = None,
1074
1074
  dns_zones_allows: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -1151,8 +1151,8 @@ class APIKey(pulumi.CustomResource):
1151
1151
  :param pulumi.Input[bool] data_manage_datasources: Whether the apikey can modify data sources.
1152
1152
  :param pulumi.Input[bool] data_push_to_datafeeds: Whether the apikey can publish to data feeds.
1153
1153
  :param pulumi.Input[bool] dns_manage_zones: Whether the apikey can modify the accounts zones.
1154
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['APIKeyDnsRecordsAllowArgs']]]] dns_records_allows: List of records that the apikey may access.
1155
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['APIKeyDnsRecordsDenyArgs']]]] dns_records_denies: List of records that the apikey may not access.
1154
+ :param pulumi.Input[Sequence[pulumi.Input[Union['APIKeyDnsRecordsAllowArgs', 'APIKeyDnsRecordsAllowArgsDict']]]] dns_records_allows: List of records that the apikey may access.
1155
+ :param pulumi.Input[Sequence[pulumi.Input[Union['APIKeyDnsRecordsDenyArgs', 'APIKeyDnsRecordsDenyArgsDict']]]] dns_records_denies: List of records that the apikey may not access.
1156
1156
  :param pulumi.Input[bool] dns_view_zones: Whether the apikey can view the accounts zones.
1157
1157
  :param pulumi.Input[bool] dns_zones_allow_by_default: If true, enable the `dns_zones_allow` list, otherwise enable the `dns_zones_deny` list.
1158
1158
  :param pulumi.Input[Sequence[pulumi.Input[str]]] dns_zones_allows: List of zones that the apikey may access.
@@ -1255,8 +1255,8 @@ class APIKey(pulumi.CustomResource):
1255
1255
  data_manage_datasources: Optional[pulumi.Input[bool]] = None,
1256
1256
  data_push_to_datafeeds: Optional[pulumi.Input[bool]] = None,
1257
1257
  dns_manage_zones: Optional[pulumi.Input[bool]] = None,
1258
- dns_records_allows: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['APIKeyDnsRecordsAllowArgs']]]]] = None,
1259
- dns_records_denies: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['APIKeyDnsRecordsDenyArgs']]]]] = None,
1258
+ dns_records_allows: Optional[pulumi.Input[Sequence[pulumi.Input[Union['APIKeyDnsRecordsAllowArgs', 'APIKeyDnsRecordsAllowArgsDict']]]]] = None,
1259
+ dns_records_denies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['APIKeyDnsRecordsDenyArgs', 'APIKeyDnsRecordsDenyArgsDict']]]]] = None,
1260
1260
  dns_view_zones: Optional[pulumi.Input[bool]] = None,
1261
1261
  dns_zones_allow_by_default: Optional[pulumi.Input[bool]] = None,
1262
1262
  dns_zones_allows: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -1339,8 +1339,8 @@ class APIKey(pulumi.CustomResource):
1339
1339
  data_manage_datasources: Optional[pulumi.Input[bool]] = None,
1340
1340
  data_push_to_datafeeds: Optional[pulumi.Input[bool]] = None,
1341
1341
  dns_manage_zones: Optional[pulumi.Input[bool]] = None,
1342
- dns_records_allows: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['APIKeyDnsRecordsAllowArgs']]]]] = None,
1343
- dns_records_denies: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['APIKeyDnsRecordsDenyArgs']]]]] = None,
1342
+ dns_records_allows: Optional[pulumi.Input[Sequence[pulumi.Input[Union['APIKeyDnsRecordsAllowArgs', 'APIKeyDnsRecordsAllowArgsDict']]]]] = None,
1343
+ dns_records_denies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['APIKeyDnsRecordsDenyArgs', 'APIKeyDnsRecordsDenyArgsDict']]]]] = None,
1344
1344
  dns_view_zones: Optional[pulumi.Input[bool]] = None,
1345
1345
  dns_zones_allow_by_default: Optional[pulumi.Input[bool]] = None,
1346
1346
  dns_zones_allows: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -1378,8 +1378,8 @@ class APIKey(pulumi.CustomResource):
1378
1378
  :param pulumi.Input[bool] data_manage_datasources: Whether the apikey can modify data sources.
1379
1379
  :param pulumi.Input[bool] data_push_to_datafeeds: Whether the apikey can publish to data feeds.
1380
1380
  :param pulumi.Input[bool] dns_manage_zones: Whether the apikey can modify the accounts zones.
1381
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['APIKeyDnsRecordsAllowArgs']]]] dns_records_allows: List of records that the apikey may access.
1382
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['APIKeyDnsRecordsDenyArgs']]]] dns_records_denies: List of records that the apikey may not access.
1381
+ :param pulumi.Input[Sequence[pulumi.Input[Union['APIKeyDnsRecordsAllowArgs', 'APIKeyDnsRecordsAllowArgsDict']]]] dns_records_allows: List of records that the apikey may access.
1382
+ :param pulumi.Input[Sequence[pulumi.Input[Union['APIKeyDnsRecordsDenyArgs', 'APIKeyDnsRecordsDenyArgsDict']]]] dns_records_denies: List of records that the apikey may not access.
1383
1383
  :param pulumi.Input[bool] dns_view_zones: Whether the apikey can view the accounts zones.
1384
1384
  :param pulumi.Input[bool] dns_zones_allow_by_default: If true, enable the `dns_zones_allow` list, otherwise enable the `dns_zones_deny` list.
1385
1385
  :param pulumi.Input[Sequence[pulumi.Input[str]]] dns_zones_allows: List of zones that the apikey may access.
pulumi_ns1/application.py CHANGED
@@ -208,7 +208,7 @@ class Application(pulumi.CustomResource):
208
208
  opts: Optional[pulumi.ResourceOptions] = None,
209
209
  active: Optional[pulumi.Input[bool]] = None,
210
210
  browser_wait_millis: Optional[pulumi.Input[int]] = None,
211
- default_config: Optional[pulumi.Input[pulumi.InputType['ApplicationDefaultConfigArgs']]] = None,
211
+ default_config: Optional[pulumi.Input[Union['ApplicationDefaultConfigArgs', 'ApplicationDefaultConfigArgsDict']]] = None,
212
212
  jobs_per_transaction: Optional[pulumi.Input[int]] = None,
213
213
  name: Optional[pulumi.Input[str]] = None,
214
214
  __props__=None):
@@ -233,7 +233,7 @@ class Application(pulumi.CustomResource):
233
233
  steering.
234
234
  :param pulumi.Input[int] browser_wait_millis: The amount of time (in milliseconds) the browser should wait before running
235
235
  measurements.
236
- :param pulumi.Input[pulumi.InputType['ApplicationDefaultConfigArgs']] default_config: Default job configuration. If a field is present here and not on a specific job
236
+ :param pulumi.Input[Union['ApplicationDefaultConfigArgs', 'ApplicationDefaultConfigArgsDict']] default_config: Default job configuration. If a field is present here and not on a specific job
237
237
  associated with this application, the default value specified here is used..
238
238
  :param pulumi.Input[int] jobs_per_transaction: Number of jobs to measure per user impression.
239
239
  :param pulumi.Input[str] name: Descriptive name for this Pulsar app.
@@ -276,7 +276,7 @@ class Application(pulumi.CustomResource):
276
276
  opts: Optional[pulumi.ResourceOptions] = None,
277
277
  active: Optional[pulumi.Input[bool]] = None,
278
278
  browser_wait_millis: Optional[pulumi.Input[int]] = None,
279
- default_config: Optional[pulumi.Input[pulumi.InputType['ApplicationDefaultConfigArgs']]] = None,
279
+ default_config: Optional[pulumi.Input[Union['ApplicationDefaultConfigArgs', 'ApplicationDefaultConfigArgsDict']]] = None,
280
280
  jobs_per_transaction: Optional[pulumi.Input[int]] = None,
281
281
  name: Optional[pulumi.Input[str]] = None,
282
282
  __props__=None):
@@ -305,7 +305,7 @@ class Application(pulumi.CustomResource):
305
305
  opts: Optional[pulumi.ResourceOptions] = None,
306
306
  active: Optional[pulumi.Input[bool]] = None,
307
307
  browser_wait_millis: Optional[pulumi.Input[int]] = None,
308
- default_config: Optional[pulumi.Input[pulumi.InputType['ApplicationDefaultConfigArgs']]] = None,
308
+ default_config: Optional[pulumi.Input[Union['ApplicationDefaultConfigArgs', 'ApplicationDefaultConfigArgsDict']]] = None,
309
309
  jobs_per_transaction: Optional[pulumi.Input[int]] = None,
310
310
  name: Optional[pulumi.Input[str]] = None) -> 'Application':
311
311
  """
@@ -319,7 +319,7 @@ class Application(pulumi.CustomResource):
319
319
  steering.
320
320
  :param pulumi.Input[int] browser_wait_millis: The amount of time (in milliseconds) the browser should wait before running
321
321
  measurements.
322
- :param pulumi.Input[pulumi.InputType['ApplicationDefaultConfigArgs']] default_config: Default job configuration. If a field is present here and not on a specific job
322
+ :param pulumi.Input[Union['ApplicationDefaultConfigArgs', 'ApplicationDefaultConfigArgsDict']] default_config: Default job configuration. If a field is present here and not on a specific job
323
323
  associated with this application, the default value specified here is used..
324
324
  :param pulumi.Input[int] jobs_per_transaction: Number of jobs to measure per user impression.
325
325
  :param pulumi.Input[str] name: Descriptive name for this Pulsar app.
pulumi_ns1/data_feed.py CHANGED
@@ -15,12 +15,12 @@ __all__ = ['DataFeedArgs', 'DataFeed']
15
15
  class DataFeedArgs:
16
16
  def __init__(__self__, *,
17
17
  source_id: pulumi.Input[str],
18
- config: Optional[pulumi.Input[Mapping[str, Any]]] = None,
18
+ config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
19
19
  name: Optional[pulumi.Input[str]] = None):
20
20
  """
21
21
  The set of arguments for constructing a DataFeed resource.
22
22
  :param pulumi.Input[str] source_id: The data source id that this feed is connected to.
23
- :param pulumi.Input[Mapping[str, Any]] config: The feeds configuration matching the specification in
23
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The feeds configuration matching the specification in
24
24
  `feed_config` from /data/sourcetypes. `jobid` is required in the `config` for datafeeds connected to NS1 monitoring.
25
25
  :param pulumi.Input[str] name: The free form name of the data feed.
26
26
  """
@@ -44,7 +44,7 @@ class DataFeedArgs:
44
44
 
45
45
  @property
46
46
  @pulumi.getter
47
- def config(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
47
+ def config(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
48
48
  """
49
49
  The feeds configuration matching the specification in
50
50
  `feed_config` from /data/sourcetypes. `jobid` is required in the `config` for datafeeds connected to NS1 monitoring.
@@ -52,7 +52,7 @@ class DataFeedArgs:
52
52
  return pulumi.get(self, "config")
53
53
 
54
54
  @config.setter
55
- def config(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
55
+ def config(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
56
56
  pulumi.set(self, "config", value)
57
57
 
58
58
  @property
@@ -71,12 +71,12 @@ class DataFeedArgs:
71
71
  @pulumi.input_type
72
72
  class _DataFeedState:
73
73
  def __init__(__self__, *,
74
- config: Optional[pulumi.Input[Mapping[str, Any]]] = None,
74
+ config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
75
75
  name: Optional[pulumi.Input[str]] = None,
76
76
  source_id: Optional[pulumi.Input[str]] = None):
77
77
  """
78
78
  Input properties used for looking up and filtering DataFeed resources.
79
- :param pulumi.Input[Mapping[str, Any]] config: The feeds configuration matching the specification in
79
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The feeds configuration matching the specification in
80
80
  `feed_config` from /data/sourcetypes. `jobid` is required in the `config` for datafeeds connected to NS1 monitoring.
81
81
  :param pulumi.Input[str] name: The free form name of the data feed.
82
82
  :param pulumi.Input[str] source_id: The data source id that this feed is connected to.
@@ -90,7 +90,7 @@ class _DataFeedState:
90
90
 
91
91
  @property
92
92
  @pulumi.getter
93
- def config(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
93
+ def config(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
94
94
  """
95
95
  The feeds configuration matching the specification in
96
96
  `feed_config` from /data/sourcetypes. `jobid` is required in the `config` for datafeeds connected to NS1 monitoring.
@@ -98,7 +98,7 @@ class _DataFeedState:
98
98
  return pulumi.get(self, "config")
99
99
 
100
100
  @config.setter
101
- def config(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
101
+ def config(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
102
102
  pulumi.set(self, "config", value)
103
103
 
104
104
  @property
@@ -131,7 +131,7 @@ class DataFeed(pulumi.CustomResource):
131
131
  def __init__(__self__,
132
132
  resource_name: str,
133
133
  opts: Optional[pulumi.ResourceOptions] = None,
134
- config: Optional[pulumi.Input[Mapping[str, Any]]] = None,
134
+ config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
135
135
  name: Optional[pulumi.Input[str]] = None,
136
136
  source_id: Optional[pulumi.Input[str]] = None,
137
137
  __props__=None):
@@ -182,7 +182,7 @@ class DataFeed(pulumi.CustomResource):
182
182
 
183
183
  :param str resource_name: The name of the resource.
184
184
  :param pulumi.ResourceOptions opts: Options for the resource.
185
- :param pulumi.Input[Mapping[str, Any]] config: The feeds configuration matching the specification in
185
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The feeds configuration matching the specification in
186
186
  `feed_config` from /data/sourcetypes. `jobid` is required in the `config` for datafeeds connected to NS1 monitoring.
187
187
  :param pulumi.Input[str] name: The free form name of the data feed.
188
188
  :param pulumi.Input[str] source_id: The data source id that this feed is connected to.
@@ -253,7 +253,7 @@ class DataFeed(pulumi.CustomResource):
253
253
  def _internal_init(__self__,
254
254
  resource_name: str,
255
255
  opts: Optional[pulumi.ResourceOptions] = None,
256
- config: Optional[pulumi.Input[Mapping[str, Any]]] = None,
256
+ config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
257
257
  name: Optional[pulumi.Input[str]] = None,
258
258
  source_id: Optional[pulumi.Input[str]] = None,
259
259
  __props__=None):
@@ -280,7 +280,7 @@ class DataFeed(pulumi.CustomResource):
280
280
  def get(resource_name: str,
281
281
  id: pulumi.Input[str],
282
282
  opts: Optional[pulumi.ResourceOptions] = None,
283
- config: Optional[pulumi.Input[Mapping[str, Any]]] = None,
283
+ config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
284
284
  name: Optional[pulumi.Input[str]] = None,
285
285
  source_id: Optional[pulumi.Input[str]] = None) -> 'DataFeed':
286
286
  """
@@ -290,7 +290,7 @@ class DataFeed(pulumi.CustomResource):
290
290
  :param str resource_name: The unique name of the resulting resource.
291
291
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
292
292
  :param pulumi.ResourceOptions opts: Options for the resource.
293
- :param pulumi.Input[Mapping[str, Any]] config: The feeds configuration matching the specification in
293
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The feeds configuration matching the specification in
294
294
  `feed_config` from /data/sourcetypes. `jobid` is required in the `config` for datafeeds connected to NS1 monitoring.
295
295
  :param pulumi.Input[str] name: The free form name of the data feed.
296
296
  :param pulumi.Input[str] source_id: The data source id that this feed is connected to.
@@ -306,7 +306,7 @@ class DataFeed(pulumi.CustomResource):
306
306
 
307
307
  @property
308
308
  @pulumi.getter
309
- def config(self) -> pulumi.Output[Optional[Mapping[str, Any]]]:
309
+ def config(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
310
310
  """
311
311
  The feeds configuration matching the specification in
312
312
  `feed_config` from /data/sourcetypes. `jobid` is required in the `config` for datafeeds connected to NS1 monitoring.
pulumi_ns1/data_source.py CHANGED
@@ -15,12 +15,12 @@ __all__ = ['DataSourceArgs', 'DataSource']
15
15
  class DataSourceArgs:
16
16
  def __init__(__self__, *,
17
17
  sourcetype: pulumi.Input[str],
18
- config: Optional[pulumi.Input[Mapping[str, Any]]] = None,
18
+ config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
19
19
  name: Optional[pulumi.Input[str]] = None):
20
20
  """
21
21
  The set of arguments for constructing a DataSource resource.
22
22
  :param pulumi.Input[str] sourcetype: The data sources type, listed in API endpoint https://api.nsone.net/v1/data/sourcetypes.
23
- :param pulumi.Input[Mapping[str, Any]] config: The data source configuration, determined by its type,
23
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The data source configuration, determined by its type,
24
24
  matching the specification in `config` from /data/sourcetypes.
25
25
  :param pulumi.Input[str] name: The free form name of the data source.
26
26
  """
@@ -44,7 +44,7 @@ class DataSourceArgs:
44
44
 
45
45
  @property
46
46
  @pulumi.getter
47
- def config(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
47
+ def config(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
48
48
  """
49
49
  The data source configuration, determined by its type,
50
50
  matching the specification in `config` from /data/sourcetypes.
@@ -52,7 +52,7 @@ class DataSourceArgs:
52
52
  return pulumi.get(self, "config")
53
53
 
54
54
  @config.setter
55
- def config(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
55
+ def config(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
56
56
  pulumi.set(self, "config", value)
57
57
 
58
58
  @property
@@ -71,12 +71,12 @@ class DataSourceArgs:
71
71
  @pulumi.input_type
72
72
  class _DataSourceState:
73
73
  def __init__(__self__, *,
74
- config: Optional[pulumi.Input[Mapping[str, Any]]] = None,
74
+ config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
75
75
  name: Optional[pulumi.Input[str]] = None,
76
76
  sourcetype: Optional[pulumi.Input[str]] = None):
77
77
  """
78
78
  Input properties used for looking up and filtering DataSource resources.
79
- :param pulumi.Input[Mapping[str, Any]] config: The data source configuration, determined by its type,
79
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The data source configuration, determined by its type,
80
80
  matching the specification in `config` from /data/sourcetypes.
81
81
  :param pulumi.Input[str] name: The free form name of the data source.
82
82
  :param pulumi.Input[str] sourcetype: The data sources type, listed in API endpoint https://api.nsone.net/v1/data/sourcetypes.
@@ -90,7 +90,7 @@ class _DataSourceState:
90
90
 
91
91
  @property
92
92
  @pulumi.getter
93
- def config(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
93
+ def config(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
94
94
  """
95
95
  The data source configuration, determined by its type,
96
96
  matching the specification in `config` from /data/sourcetypes.
@@ -98,7 +98,7 @@ class _DataSourceState:
98
98
  return pulumi.get(self, "config")
99
99
 
100
100
  @config.setter
101
- def config(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
101
+ def config(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
102
102
  pulumi.set(self, "config", value)
103
103
 
104
104
  @property
@@ -131,7 +131,7 @@ class DataSource(pulumi.CustomResource):
131
131
  def __init__(__self__,
132
132
  resource_name: str,
133
133
  opts: Optional[pulumi.ResourceOptions] = None,
134
- config: Optional[pulumi.Input[Mapping[str, Any]]] = None,
134
+ config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
135
135
  name: Optional[pulumi.Input[str]] = None,
136
136
  sourcetype: Optional[pulumi.Input[str]] = None,
137
137
  __props__=None):
@@ -161,7 +161,7 @@ class DataSource(pulumi.CustomResource):
161
161
 
162
162
  :param str resource_name: The name of the resource.
163
163
  :param pulumi.ResourceOptions opts: Options for the resource.
164
- :param pulumi.Input[Mapping[str, Any]] config: The data source configuration, determined by its type,
164
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The data source configuration, determined by its type,
165
165
  matching the specification in `config` from /data/sourcetypes.
166
166
  :param pulumi.Input[str] name: The free form name of the data source.
167
167
  :param pulumi.Input[str] sourcetype: The data sources type, listed in API endpoint https://api.nsone.net/v1/data/sourcetypes.
@@ -211,7 +211,7 @@ class DataSource(pulumi.CustomResource):
211
211
  def _internal_init(__self__,
212
212
  resource_name: str,
213
213
  opts: Optional[pulumi.ResourceOptions] = None,
214
- config: Optional[pulumi.Input[Mapping[str, Any]]] = None,
214
+ config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
215
215
  name: Optional[pulumi.Input[str]] = None,
216
216
  sourcetype: Optional[pulumi.Input[str]] = None,
217
217
  __props__=None):
@@ -238,7 +238,7 @@ class DataSource(pulumi.CustomResource):
238
238
  def get(resource_name: str,
239
239
  id: pulumi.Input[str],
240
240
  opts: Optional[pulumi.ResourceOptions] = None,
241
- config: Optional[pulumi.Input[Mapping[str, Any]]] = None,
241
+ config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
242
242
  name: Optional[pulumi.Input[str]] = None,
243
243
  sourcetype: Optional[pulumi.Input[str]] = None) -> 'DataSource':
244
244
  """
@@ -248,7 +248,7 @@ class DataSource(pulumi.CustomResource):
248
248
  :param str resource_name: The unique name of the resulting resource.
249
249
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
250
250
  :param pulumi.ResourceOptions opts: Options for the resource.
251
- :param pulumi.Input[Mapping[str, Any]] config: The data source configuration, determined by its type,
251
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] config: The data source configuration, determined by its type,
252
252
  matching the specification in `config` from /data/sourcetypes.
253
253
  :param pulumi.Input[str] name: The free form name of the data source.
254
254
  :param pulumi.Input[str] sourcetype: The data sources type, listed in API endpoint https://api.nsone.net/v1/data/sourcetypes.
@@ -264,7 +264,7 @@ class DataSource(pulumi.CustomResource):
264
264
 
265
265
  @property
266
266
  @pulumi.getter
267
- def config(self) -> pulumi.Output[Optional[Mapping[str, Any]]]:
267
+ def config(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
268
268
  """
269
269
  The data source configuration, determined by its type,
270
270
  matching the specification in `config` from /data/sourcetypes.
pulumi_ns1/dataset.py CHANGED
@@ -187,12 +187,12 @@ class Dataset(pulumi.CustomResource):
187
187
  def __init__(__self__,
188
188
  resource_name: str,
189
189
  opts: Optional[pulumi.ResourceOptions] = None,
190
- datatype: Optional[pulumi.Input[pulumi.InputType['DatasetDatatypeArgs']]] = None,
190
+ datatype: Optional[pulumi.Input[Union['DatasetDatatypeArgs', 'DatasetDatatypeArgsDict']]] = None,
191
191
  export_type: Optional[pulumi.Input[str]] = None,
192
192
  name: Optional[pulumi.Input[str]] = None,
193
193
  recipient_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
194
- repeat: Optional[pulumi.Input[pulumi.InputType['DatasetRepeatArgs']]] = None,
195
- timeframe: Optional[pulumi.Input[pulumi.InputType['DatasetTimeframeArgs']]] = None,
194
+ repeat: Optional[pulumi.Input[Union['DatasetRepeatArgs', 'DatasetRepeatArgsDict']]] = None,
195
+ timeframe: Optional[pulumi.Input[Union['DatasetTimeframeArgs', 'DatasetTimeframeArgsDict']]] = None,
196
196
  __props__=None):
197
197
  """
198
198
  Create a Dataset resource with the given unique name, props, and options.
@@ -222,12 +222,12 @@ class Dataset(pulumi.CustomResource):
222
222
  def _internal_init(__self__,
223
223
  resource_name: str,
224
224
  opts: Optional[pulumi.ResourceOptions] = None,
225
- datatype: Optional[pulumi.Input[pulumi.InputType['DatasetDatatypeArgs']]] = None,
225
+ datatype: Optional[pulumi.Input[Union['DatasetDatatypeArgs', 'DatasetDatatypeArgsDict']]] = None,
226
226
  export_type: Optional[pulumi.Input[str]] = None,
227
227
  name: Optional[pulumi.Input[str]] = None,
228
228
  recipient_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
229
- repeat: Optional[pulumi.Input[pulumi.InputType['DatasetRepeatArgs']]] = None,
230
- timeframe: Optional[pulumi.Input[pulumi.InputType['DatasetTimeframeArgs']]] = None,
229
+ repeat: Optional[pulumi.Input[Union['DatasetRepeatArgs', 'DatasetRepeatArgsDict']]] = None,
230
+ timeframe: Optional[pulumi.Input[Union['DatasetTimeframeArgs', 'DatasetTimeframeArgsDict']]] = None,
231
231
  __props__=None):
232
232
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
233
233
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -260,13 +260,13 @@ class Dataset(pulumi.CustomResource):
260
260
  def get(resource_name: str,
261
261
  id: pulumi.Input[str],
262
262
  opts: Optional[pulumi.ResourceOptions] = None,
263
- datatype: Optional[pulumi.Input[pulumi.InputType['DatasetDatatypeArgs']]] = None,
263
+ datatype: Optional[pulumi.Input[Union['DatasetDatatypeArgs', 'DatasetDatatypeArgsDict']]] = None,
264
264
  export_type: Optional[pulumi.Input[str]] = None,
265
265
  name: Optional[pulumi.Input[str]] = None,
266
266
  recipient_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
267
- repeat: Optional[pulumi.Input[pulumi.InputType['DatasetRepeatArgs']]] = None,
268
- reports: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DatasetReportArgs']]]]] = None,
269
- timeframe: Optional[pulumi.Input[pulumi.InputType['DatasetTimeframeArgs']]] = None) -> 'Dataset':
267
+ repeat: Optional[pulumi.Input[Union['DatasetRepeatArgs', 'DatasetRepeatArgsDict']]] = None,
268
+ reports: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DatasetReportArgs', 'DatasetReportArgsDict']]]]] = None,
269
+ timeframe: Optional[pulumi.Input[Union['DatasetTimeframeArgs', 'DatasetTimeframeArgsDict']]] = None) -> 'Dataset':
270
270
  """
271
271
  Get an existing Dataset resource's state with the given name, id, and optional extra
272
272
  properties used to qualify the lookup.
@@ -59,7 +59,7 @@ class AwaitableGetMonitoringRegionsResult(GetMonitoringRegionsResult):
59
59
  regions=self.regions)
60
60
 
61
61
 
62
- def get_monitoring_regions(regions: Optional[Sequence[pulumi.InputType['GetMonitoringRegionsRegionArgs']]] = None,
62
+ def get_monitoring_regions(regions: Optional[Sequence[Union['GetMonitoringRegionsRegionArgs', 'GetMonitoringRegionsRegionArgsDict']]] = None,
63
63
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMonitoringRegionsResult:
64
64
  """
65
65
  Provides details of all available monitoring regions.
@@ -75,7 +75,7 @@ def get_monitoring_regions(regions: Optional[Sequence[pulumi.InputType['GetMonit
75
75
  ```
76
76
 
77
77
 
78
- :param Sequence[pulumi.InputType['GetMonitoringRegionsRegionArgs']] regions: A set of the available monitoring regions. Regions is
78
+ :param Sequence[Union['GetMonitoringRegionsRegionArgs', 'GetMonitoringRegionsRegionArgsDict']] regions: A set of the available monitoring regions. Regions is
79
79
  documented below.
80
80
  """
81
81
  __args__ = dict()
@@ -89,7 +89,7 @@ def get_monitoring_regions(regions: Optional[Sequence[pulumi.InputType['GetMonit
89
89
 
90
90
 
91
91
  @_utilities.lift_output_func(get_monitoring_regions)
92
- def get_monitoring_regions_output(regions: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetMonitoringRegionsRegionArgs']]]]] = None,
92
+ def get_monitoring_regions_output(regions: Optional[pulumi.Input[Optional[Sequence[Union['GetMonitoringRegionsRegionArgs', 'GetMonitoringRegionsRegionArgsDict']]]]] = None,
93
93
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetMonitoringRegionsResult]:
94
94
  """
95
95
  Provides details of all available monitoring regions.
@@ -105,7 +105,7 @@ def get_monitoring_regions_output(regions: Optional[pulumi.Input[Optional[Sequen
105
105
  ```
106
106
 
107
107
 
108
- :param Sequence[pulumi.InputType['GetMonitoringRegionsRegionArgs']] regions: A set of the available monitoring regions. Regions is
108
+ :param Sequence[Union['GetMonitoringRegionsRegionArgs', 'GetMonitoringRegionsRegionArgsDict']] regions: A set of the available monitoring regions. Regions is
109
109
  documented below.
110
110
  """
111
111
  ...
pulumi_ns1/get_record.py CHANGED
@@ -105,7 +105,7 @@ class GetRecordResult:
105
105
 
106
106
  @property
107
107
  @pulumi.getter
108
- def meta(self) -> Mapping[str, Any]:
108
+ def meta(self) -> Mapping[str, str]:
109
109
  """
110
110
  Map of metadata
111
111
  """
@@ -131,7 +131,7 @@ class GetRecordResult:
131
131
 
132
132
  @property
133
133
  @pulumi.getter
134
- def tags(self) -> Mapping[str, Any]:
134
+ def tags(self) -> Mapping[str, str]:
135
135
  return pulumi.get(self, "tags")
136
136
 
137
137
  @property
pulumi_ns1/get_zone.py CHANGED
@@ -197,7 +197,7 @@ class GetZoneResult:
197
197
 
198
198
  @property
199
199
  @pulumi.getter
200
- def tags(self) -> Mapping[str, Any]:
200
+ def tags(self) -> Mapping[str, str]:
201
201
  return pulumi.get(self, "tags")
202
202
 
203
203
  @property