pulumi-aws-native 1.39.0a1762385303__py3-none-any.whl → 1.39.0a1762580459__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_aws_native/__init__.py +2 -0
- pulumi_aws_native/backup/get_logically_air_gapped_backup_vault.py +12 -1
- pulumi_aws_native/backup/logically_air_gapped_backup_vault.py +21 -0
- pulumi_aws_native/cassandra/_enums.py +3 -0
- pulumi_aws_native/cleanrooms/_enums.py +98 -0
- pulumi_aws_native/cleanrooms/_inputs.py +138 -12
- pulumi_aws_native/cleanrooms/collaboration.py +30 -1
- pulumi_aws_native/cleanrooms/get_privacy_budget_template.py +1 -0
- pulumi_aws_native/cleanrooms/outputs.py +106 -9
- pulumi_aws_native/cloudfront/_inputs.py +7 -0
- pulumi_aws_native/cloudfront/get_vpc_origin.py +3 -0
- pulumi_aws_native/cloudfront/outputs.py +4 -0
- pulumi_aws_native/cloudfront/vpc_origin.py +3 -0
- pulumi_aws_native/connect/_enums.py +9 -0
- pulumi_aws_native/connect/_inputs.py +168 -0
- pulumi_aws_native/connect/get_security_profile.py +13 -1
- pulumi_aws_native/connect/outputs.py +172 -0
- pulumi_aws_native/connect/security_profile.py +22 -0
- pulumi_aws_native/datazone/_enums.py +10 -0
- pulumi_aws_native/datazone/_inputs.py +99 -4
- pulumi_aws_native/datazone/connection.py +37 -8
- pulumi_aws_native/datazone/outputs.py +101 -6
- pulumi_aws_native/dynamodb/_inputs.py +6 -5
- pulumi_aws_native/dynamodb/outputs.py +4 -3
- pulumi_aws_native/ecr/_inputs.py +2 -2
- pulumi_aws_native/ecr/get_repository_creation_template.py +1 -1
- pulumi_aws_native/ecr/outputs.py +2 -2
- pulumi_aws_native/ecr/repository_creation_template.py +4 -4
- pulumi_aws_native/ecs/_inputs.py +6 -6
- pulumi_aws_native/ecs/outputs.py +4 -4
- pulumi_aws_native/ecs/task_definition.py +8 -8
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +23 -3
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +16 -2
- pulumi_aws_native/gamelift/_enums.py +1 -0
- pulumi_aws_native/kinesis/get_stream.py +15 -1
- pulumi_aws_native/kinesis/stream.py +29 -0
- pulumi_aws_native/kms/_enums.py +1 -0
- pulumi_aws_native/lambda_/permission.py +4 -4
- pulumi_aws_native/location/_inputs.py +86 -0
- pulumi_aws_native/location/outputs.py +88 -0
- pulumi_aws_native/opensearchserverless/collection.py +11 -1
- pulumi_aws_native/opensearchserverless/get_collection.py +11 -12
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/quicksight/_enums.py +62 -0
- pulumi_aws_native/quicksight/_inputs.py +2571 -260
- pulumi_aws_native/quicksight/data_set.py +42 -24
- pulumi_aws_native/quicksight/get_data_set.py +23 -10
- pulumi_aws_native/quicksight/outputs.py +2247 -94
- pulumi_aws_native/servicecatalog/__init__.py +2 -0
- pulumi_aws_native/servicecatalog/_enums.py +28 -0
- pulumi_aws_native/servicecatalog/_inputs.py +364 -0
- pulumi_aws_native/servicecatalog/cloud_formation_product.py +519 -0
- pulumi_aws_native/servicecatalog/get_cloud_formation_product.py +276 -0
- pulumi_aws_native/servicecatalog/outputs.py +311 -0
- pulumi_aws_native/ses/__init__.py +2 -0
- pulumi_aws_native/ses/_inputs.py +54 -0
- pulumi_aws_native/ses/get_multi_region_endpoint.py +78 -0
- pulumi_aws_native/ses/multi_region_endpoint.py +190 -0
- pulumi_aws_native/ses/outputs.py +49 -0
- pulumi_aws_native/wafv2/_inputs.py +7 -0
- pulumi_aws_native/wafv2/outputs.py +4 -0
- {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/RECORD +65 -61
- {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/top_level.txt +0 -0
|
@@ -2272,24 +2272,56 @@ __all__ = [
|
|
|
2272
2272
|
'DashboardWordCloudVisualArgsDict',
|
|
2273
2273
|
'DashboardYAxisOptionsArgs',
|
|
2274
2274
|
'DashboardYAxisOptionsArgsDict',
|
|
2275
|
+
'DataSetAggregateOperationArgs',
|
|
2276
|
+
'DataSetAggregateOperationArgsDict',
|
|
2277
|
+
'DataSetAggregationArgs',
|
|
2278
|
+
'DataSetAggregationArgsDict',
|
|
2279
|
+
'DataSetAppendOperationArgs',
|
|
2280
|
+
'DataSetAppendOperationArgsDict',
|
|
2281
|
+
'DataSetAppendedColumnArgs',
|
|
2282
|
+
'DataSetAppendedColumnArgsDict',
|
|
2275
2283
|
'DataSetCalculatedColumnArgs',
|
|
2276
2284
|
'DataSetCalculatedColumnArgsDict',
|
|
2277
2285
|
'DataSetCastColumnTypeOperationArgs',
|
|
2278
2286
|
'DataSetCastColumnTypeOperationArgsDict',
|
|
2287
|
+
'DataSetCastColumnTypesOperationArgs',
|
|
2288
|
+
'DataSetCastColumnTypesOperationArgsDict',
|
|
2279
2289
|
'DataSetColumnDescriptionArgs',
|
|
2280
2290
|
'DataSetColumnDescriptionArgsDict',
|
|
2281
2291
|
'DataSetColumnGroupArgs',
|
|
2282
2292
|
'DataSetColumnGroupArgsDict',
|
|
2293
|
+
'DataSetColumnIdMappingArgs',
|
|
2294
|
+
'DataSetColumnIdMappingArgsDict',
|
|
2283
2295
|
'DataSetColumnLevelPermissionRuleArgs',
|
|
2284
2296
|
'DataSetColumnLevelPermissionRuleArgsDict',
|
|
2285
2297
|
'DataSetColumnTagArgs',
|
|
2286
2298
|
'DataSetColumnTagArgsDict',
|
|
2299
|
+
'DataSetColumnToUnpivotArgs',
|
|
2300
|
+
'DataSetColumnToUnpivotArgsDict',
|
|
2287
2301
|
'DataSetCreateColumnsOperationArgs',
|
|
2288
2302
|
'DataSetCreateColumnsOperationArgsDict',
|
|
2289
2303
|
'DataSetCustomSqlArgs',
|
|
2290
2304
|
'DataSetCustomSqlArgsDict',
|
|
2305
|
+
'DataSetDataPrepAggregationFunctionArgs',
|
|
2306
|
+
'DataSetDataPrepAggregationFunctionArgsDict',
|
|
2307
|
+
'DataSetDataPrepConfigurationArgs',
|
|
2308
|
+
'DataSetDataPrepConfigurationArgsDict',
|
|
2309
|
+
'DataSetDataPrepListAggregationFunctionArgs',
|
|
2310
|
+
'DataSetDataPrepListAggregationFunctionArgsDict',
|
|
2311
|
+
'DataSetDataPrepPercentileAggregationFunctionArgs',
|
|
2312
|
+
'DataSetDataPrepPercentileAggregationFunctionArgsDict',
|
|
2313
|
+
'DataSetDataPrepSimpleAggregationFunctionArgs',
|
|
2314
|
+
'DataSetDataPrepSimpleAggregationFunctionArgsDict',
|
|
2291
2315
|
'DataSetDatasetParameterArgs',
|
|
2292
2316
|
'DataSetDatasetParameterArgsDict',
|
|
2317
|
+
'DataSetDateComparisonFilterConditionArgs',
|
|
2318
|
+
'DataSetDateComparisonFilterConditionArgsDict',
|
|
2319
|
+
'DataSetDateFilterConditionArgs',
|
|
2320
|
+
'DataSetDateFilterConditionArgsDict',
|
|
2321
|
+
'DataSetDateFilterValueArgs',
|
|
2322
|
+
'DataSetDateFilterValueArgsDict',
|
|
2323
|
+
'DataSetDateRangeFilterConditionArgs',
|
|
2324
|
+
'DataSetDateRangeFilterConditionArgsDict',
|
|
2293
2325
|
'DataSetDateTimeDatasetParameterDefaultValuesArgs',
|
|
2294
2326
|
'DataSetDateTimeDatasetParameterDefaultValuesArgsDict',
|
|
2295
2327
|
'DataSetDateTimeDatasetParameterArgs',
|
|
@@ -2298,12 +2330,22 @@ __all__ = [
|
|
|
2298
2330
|
'DataSetDecimalDatasetParameterDefaultValuesArgsDict',
|
|
2299
2331
|
'DataSetDecimalDatasetParameterArgs',
|
|
2300
2332
|
'DataSetDecimalDatasetParameterArgsDict',
|
|
2333
|
+
'DataSetDestinationTableSourceArgs',
|
|
2334
|
+
'DataSetDestinationTableSourceArgsDict',
|
|
2335
|
+
'DataSetDestinationTableArgs',
|
|
2336
|
+
'DataSetDestinationTableArgsDict',
|
|
2301
2337
|
'DataSetFieldFolderArgs',
|
|
2302
2338
|
'DataSetFieldFolderArgsDict',
|
|
2303
2339
|
'DataSetFilterOperationArgs',
|
|
2304
2340
|
'DataSetFilterOperationArgsDict',
|
|
2341
|
+
'DataSetFiltersOperationArgs',
|
|
2342
|
+
'DataSetFiltersOperationArgsDict',
|
|
2305
2343
|
'DataSetGeoSpatialColumnGroupArgs',
|
|
2306
2344
|
'DataSetGeoSpatialColumnGroupArgsDict',
|
|
2345
|
+
'DataSetImportTableOperationSourceArgs',
|
|
2346
|
+
'DataSetImportTableOperationSourceArgsDict',
|
|
2347
|
+
'DataSetImportTableOperationArgs',
|
|
2348
|
+
'DataSetImportTableOperationArgsDict',
|
|
2307
2349
|
'DataSetIncrementalRefreshArgs',
|
|
2308
2350
|
'DataSetIncrementalRefreshArgsDict',
|
|
2309
2351
|
'DataSetIngestionWaitPolicyArgs',
|
|
@@ -2318,6 +2360,10 @@ __all__ = [
|
|
|
2318
2360
|
'DataSetJoinInstructionArgsDict',
|
|
2319
2361
|
'DataSetJoinKeyPropertiesArgs',
|
|
2320
2362
|
'DataSetJoinKeyPropertiesArgsDict',
|
|
2363
|
+
'DataSetJoinOperandPropertiesArgs',
|
|
2364
|
+
'DataSetJoinOperandPropertiesArgsDict',
|
|
2365
|
+
'DataSetJoinOperationArgs',
|
|
2366
|
+
'DataSetJoinOperationArgsDict',
|
|
2321
2367
|
'DataSetLogicalTableSourceArgs',
|
|
2322
2368
|
'DataSetLogicalTableSourceArgsDict',
|
|
2323
2369
|
'DataSetLogicalTableArgs',
|
|
@@ -2326,12 +2372,30 @@ __all__ = [
|
|
|
2326
2372
|
'DataSetLookbackWindowArgsDict',
|
|
2327
2373
|
'DataSetNewDefaultValuesArgs',
|
|
2328
2374
|
'DataSetNewDefaultValuesArgsDict',
|
|
2375
|
+
'DataSetNumericComparisonFilterConditionArgs',
|
|
2376
|
+
'DataSetNumericComparisonFilterConditionArgsDict',
|
|
2377
|
+
'DataSetNumericFilterConditionArgs',
|
|
2378
|
+
'DataSetNumericFilterConditionArgsDict',
|
|
2379
|
+
'DataSetNumericFilterValueArgs',
|
|
2380
|
+
'DataSetNumericFilterValueArgsDict',
|
|
2381
|
+
'DataSetNumericRangeFilterConditionArgs',
|
|
2382
|
+
'DataSetNumericRangeFilterConditionArgsDict',
|
|
2383
|
+
'DataSetOutputColumnNameOverrideArgs',
|
|
2384
|
+
'DataSetOutputColumnNameOverrideArgsDict',
|
|
2329
2385
|
'DataSetOverrideDatasetParameterOperationArgs',
|
|
2330
2386
|
'DataSetOverrideDatasetParameterOperationArgsDict',
|
|
2387
|
+
'DataSetParentDataSetArgs',
|
|
2388
|
+
'DataSetParentDataSetArgsDict',
|
|
2331
2389
|
'DataSetPerformanceConfigurationArgs',
|
|
2332
2390
|
'DataSetPerformanceConfigurationArgsDict',
|
|
2333
2391
|
'DataSetPhysicalTableArgs',
|
|
2334
2392
|
'DataSetPhysicalTableArgsDict',
|
|
2393
|
+
'DataSetPivotConfigurationArgs',
|
|
2394
|
+
'DataSetPivotConfigurationArgsDict',
|
|
2395
|
+
'DataSetPivotOperationArgs',
|
|
2396
|
+
'DataSetPivotOperationArgsDict',
|
|
2397
|
+
'DataSetPivotedLabelArgs',
|
|
2398
|
+
'DataSetPivotedLabelArgsDict',
|
|
2335
2399
|
'DataSetProjectOperationArgs',
|
|
2336
2400
|
'DataSetProjectOperationArgsDict',
|
|
2337
2401
|
'DataSetRefreshConfigurationArgs',
|
|
@@ -2346,8 +2410,12 @@ __all__ = [
|
|
|
2346
2410
|
'DataSetRelationalTableArgsDict',
|
|
2347
2411
|
'DataSetRenameColumnOperationArgs',
|
|
2348
2412
|
'DataSetRenameColumnOperationArgsDict',
|
|
2413
|
+
'DataSetRenameColumnsOperationArgs',
|
|
2414
|
+
'DataSetRenameColumnsOperationArgsDict',
|
|
2349
2415
|
'DataSetResourcePermissionArgs',
|
|
2350
2416
|
'DataSetResourcePermissionArgsDict',
|
|
2417
|
+
'DataSetRowLevelPermissionConfigurationArgs',
|
|
2418
|
+
'DataSetRowLevelPermissionConfigurationArgsDict',
|
|
2351
2419
|
'DataSetRowLevelPermissionDataSetArgs',
|
|
2352
2420
|
'DataSetRowLevelPermissionDataSetArgsDict',
|
|
2353
2421
|
'DataSetRowLevelPermissionTagConfigurationArgs',
|
|
@@ -2356,22 +2424,50 @@ __all__ = [
|
|
|
2356
2424
|
'DataSetRowLevelPermissionTagRuleArgsDict',
|
|
2357
2425
|
'DataSetS3SourceArgs',
|
|
2358
2426
|
'DataSetS3SourceArgsDict',
|
|
2427
|
+
'DataSetSaaSTableArgs',
|
|
2428
|
+
'DataSetSaaSTableArgsDict',
|
|
2429
|
+
'DataSetSemanticModelConfigurationArgs',
|
|
2430
|
+
'DataSetSemanticModelConfigurationArgsDict',
|
|
2431
|
+
'DataSetSemanticTableArgs',
|
|
2432
|
+
'DataSetSemanticTableArgsDict',
|
|
2433
|
+
'DataSetSourceTableArgs',
|
|
2434
|
+
'DataSetSourceTableArgsDict',
|
|
2435
|
+
'DataSetStringComparisonFilterConditionArgs',
|
|
2436
|
+
'DataSetStringComparisonFilterConditionArgsDict',
|
|
2359
2437
|
'DataSetStringDatasetParameterDefaultValuesArgs',
|
|
2360
2438
|
'DataSetStringDatasetParameterDefaultValuesArgsDict',
|
|
2361
2439
|
'DataSetStringDatasetParameterArgs',
|
|
2362
2440
|
'DataSetStringDatasetParameterArgsDict',
|
|
2441
|
+
'DataSetStringFilterConditionArgs',
|
|
2442
|
+
'DataSetStringFilterConditionArgsDict',
|
|
2443
|
+
'DataSetStringFilterValueArgs',
|
|
2444
|
+
'DataSetStringFilterValueArgsDict',
|
|
2445
|
+
'DataSetStringListFilterConditionArgs',
|
|
2446
|
+
'DataSetStringListFilterConditionArgsDict',
|
|
2447
|
+
'DataSetStringListFilterValueArgs',
|
|
2448
|
+
'DataSetStringListFilterValueArgsDict',
|
|
2449
|
+
'DataSetTablePathElementArgs',
|
|
2450
|
+
'DataSetTablePathElementArgsDict',
|
|
2363
2451
|
'DataSetTagColumnOperationArgs',
|
|
2364
2452
|
'DataSetTagColumnOperationArgsDict',
|
|
2453
|
+
'DataSetTransformOperationSourceArgs',
|
|
2454
|
+
'DataSetTransformOperationSourceArgsDict',
|
|
2365
2455
|
'DataSetTransformOperationArgs',
|
|
2366
2456
|
'DataSetTransformOperationArgsDict',
|
|
2457
|
+
'DataSetTransformStepArgs',
|
|
2458
|
+
'DataSetTransformStepArgsDict',
|
|
2367
2459
|
'DataSetUniqueKeyArgs',
|
|
2368
2460
|
'DataSetUniqueKeyArgsDict',
|
|
2461
|
+
'DataSetUnpivotOperationArgs',
|
|
2462
|
+
'DataSetUnpivotOperationArgsDict',
|
|
2369
2463
|
'DataSetUntagColumnOperationArgs',
|
|
2370
2464
|
'DataSetUntagColumnOperationArgsDict',
|
|
2371
2465
|
'DataSetUploadSettingsArgs',
|
|
2372
2466
|
'DataSetUploadSettingsArgsDict',
|
|
2373
2467
|
'DataSetUsageConfigurationArgs',
|
|
2374
2468
|
'DataSetUsageConfigurationArgsDict',
|
|
2469
|
+
'DataSetValueColumnConfigurationArgs',
|
|
2470
|
+
'DataSetValueColumnConfigurationArgsDict',
|
|
2375
2471
|
'DataSourceAmazonElasticsearchParametersArgs',
|
|
2376
2472
|
'DataSourceAmazonElasticsearchParametersArgsDict',
|
|
2377
2473
|
'DataSourceAmazonOpenSearchParametersArgs',
|
|
@@ -92686,6 +92782,205 @@ class DashboardYAxisOptionsArgs:
|
|
|
92686
92782
|
pulumi.set(self, "y_axis", value)
|
|
92687
92783
|
|
|
92688
92784
|
|
|
92785
|
+
if not MYPY:
|
|
92786
|
+
class DataSetAggregateOperationArgsDict(TypedDict):
|
|
92787
|
+
aggregations: pulumi.Input[Sequence[pulumi.Input['DataSetAggregationArgsDict']]]
|
|
92788
|
+
alias: pulumi.Input[_builtins.str]
|
|
92789
|
+
source: pulumi.Input['DataSetTransformOperationSourceArgsDict']
|
|
92790
|
+
group_by_column_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
92791
|
+
elif False:
|
|
92792
|
+
DataSetAggregateOperationArgsDict: TypeAlias = Mapping[str, Any]
|
|
92793
|
+
|
|
92794
|
+
@pulumi.input_type
|
|
92795
|
+
class DataSetAggregateOperationArgs:
|
|
92796
|
+
def __init__(__self__, *,
|
|
92797
|
+
aggregations: pulumi.Input[Sequence[pulumi.Input['DataSetAggregationArgs']]],
|
|
92798
|
+
alias: pulumi.Input[_builtins.str],
|
|
92799
|
+
source: pulumi.Input['DataSetTransformOperationSourceArgs'],
|
|
92800
|
+
group_by_column_names: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
92801
|
+
pulumi.set(__self__, "aggregations", aggregations)
|
|
92802
|
+
pulumi.set(__self__, "alias", alias)
|
|
92803
|
+
pulumi.set(__self__, "source", source)
|
|
92804
|
+
if group_by_column_names is not None:
|
|
92805
|
+
pulumi.set(__self__, "group_by_column_names", group_by_column_names)
|
|
92806
|
+
|
|
92807
|
+
@_builtins.property
|
|
92808
|
+
@pulumi.getter
|
|
92809
|
+
def aggregations(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetAggregationArgs']]]:
|
|
92810
|
+
return pulumi.get(self, "aggregations")
|
|
92811
|
+
|
|
92812
|
+
@aggregations.setter
|
|
92813
|
+
def aggregations(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetAggregationArgs']]]):
|
|
92814
|
+
pulumi.set(self, "aggregations", value)
|
|
92815
|
+
|
|
92816
|
+
@_builtins.property
|
|
92817
|
+
@pulumi.getter
|
|
92818
|
+
def alias(self) -> pulumi.Input[_builtins.str]:
|
|
92819
|
+
return pulumi.get(self, "alias")
|
|
92820
|
+
|
|
92821
|
+
@alias.setter
|
|
92822
|
+
def alias(self, value: pulumi.Input[_builtins.str]):
|
|
92823
|
+
pulumi.set(self, "alias", value)
|
|
92824
|
+
|
|
92825
|
+
@_builtins.property
|
|
92826
|
+
@pulumi.getter
|
|
92827
|
+
def source(self) -> pulumi.Input['DataSetTransformOperationSourceArgs']:
|
|
92828
|
+
return pulumi.get(self, "source")
|
|
92829
|
+
|
|
92830
|
+
@source.setter
|
|
92831
|
+
def source(self, value: pulumi.Input['DataSetTransformOperationSourceArgs']):
|
|
92832
|
+
pulumi.set(self, "source", value)
|
|
92833
|
+
|
|
92834
|
+
@_builtins.property
|
|
92835
|
+
@pulumi.getter(name="groupByColumnNames")
|
|
92836
|
+
def group_by_column_names(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
92837
|
+
return pulumi.get(self, "group_by_column_names")
|
|
92838
|
+
|
|
92839
|
+
@group_by_column_names.setter
|
|
92840
|
+
def group_by_column_names(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
92841
|
+
pulumi.set(self, "group_by_column_names", value)
|
|
92842
|
+
|
|
92843
|
+
|
|
92844
|
+
if not MYPY:
|
|
92845
|
+
class DataSetAggregationArgsDict(TypedDict):
|
|
92846
|
+
aggregation_function: pulumi.Input['DataSetDataPrepAggregationFunctionArgsDict']
|
|
92847
|
+
new_column_id: pulumi.Input[_builtins.str]
|
|
92848
|
+
new_column_name: pulumi.Input[_builtins.str]
|
|
92849
|
+
elif False:
|
|
92850
|
+
DataSetAggregationArgsDict: TypeAlias = Mapping[str, Any]
|
|
92851
|
+
|
|
92852
|
+
@pulumi.input_type
|
|
92853
|
+
class DataSetAggregationArgs:
|
|
92854
|
+
def __init__(__self__, *,
|
|
92855
|
+
aggregation_function: pulumi.Input['DataSetDataPrepAggregationFunctionArgs'],
|
|
92856
|
+
new_column_id: pulumi.Input[_builtins.str],
|
|
92857
|
+
new_column_name: pulumi.Input[_builtins.str]):
|
|
92858
|
+
pulumi.set(__self__, "aggregation_function", aggregation_function)
|
|
92859
|
+
pulumi.set(__self__, "new_column_id", new_column_id)
|
|
92860
|
+
pulumi.set(__self__, "new_column_name", new_column_name)
|
|
92861
|
+
|
|
92862
|
+
@_builtins.property
|
|
92863
|
+
@pulumi.getter(name="aggregationFunction")
|
|
92864
|
+
def aggregation_function(self) -> pulumi.Input['DataSetDataPrepAggregationFunctionArgs']:
|
|
92865
|
+
return pulumi.get(self, "aggregation_function")
|
|
92866
|
+
|
|
92867
|
+
@aggregation_function.setter
|
|
92868
|
+
def aggregation_function(self, value: pulumi.Input['DataSetDataPrepAggregationFunctionArgs']):
|
|
92869
|
+
pulumi.set(self, "aggregation_function", value)
|
|
92870
|
+
|
|
92871
|
+
@_builtins.property
|
|
92872
|
+
@pulumi.getter(name="newColumnId")
|
|
92873
|
+
def new_column_id(self) -> pulumi.Input[_builtins.str]:
|
|
92874
|
+
return pulumi.get(self, "new_column_id")
|
|
92875
|
+
|
|
92876
|
+
@new_column_id.setter
|
|
92877
|
+
def new_column_id(self, value: pulumi.Input[_builtins.str]):
|
|
92878
|
+
pulumi.set(self, "new_column_id", value)
|
|
92879
|
+
|
|
92880
|
+
@_builtins.property
|
|
92881
|
+
@pulumi.getter(name="newColumnName")
|
|
92882
|
+
def new_column_name(self) -> pulumi.Input[_builtins.str]:
|
|
92883
|
+
return pulumi.get(self, "new_column_name")
|
|
92884
|
+
|
|
92885
|
+
@new_column_name.setter
|
|
92886
|
+
def new_column_name(self, value: pulumi.Input[_builtins.str]):
|
|
92887
|
+
pulumi.set(self, "new_column_name", value)
|
|
92888
|
+
|
|
92889
|
+
|
|
92890
|
+
if not MYPY:
|
|
92891
|
+
class DataSetAppendOperationArgsDict(TypedDict):
|
|
92892
|
+
alias: pulumi.Input[_builtins.str]
|
|
92893
|
+
appended_columns: pulumi.Input[Sequence[pulumi.Input['DataSetAppendedColumnArgsDict']]]
|
|
92894
|
+
first_source: NotRequired[pulumi.Input['DataSetTransformOperationSourceArgsDict']]
|
|
92895
|
+
second_source: NotRequired[pulumi.Input['DataSetTransformOperationSourceArgsDict']]
|
|
92896
|
+
elif False:
|
|
92897
|
+
DataSetAppendOperationArgsDict: TypeAlias = Mapping[str, Any]
|
|
92898
|
+
|
|
92899
|
+
@pulumi.input_type
|
|
92900
|
+
class DataSetAppendOperationArgs:
|
|
92901
|
+
def __init__(__self__, *,
|
|
92902
|
+
alias: pulumi.Input[_builtins.str],
|
|
92903
|
+
appended_columns: pulumi.Input[Sequence[pulumi.Input['DataSetAppendedColumnArgs']]],
|
|
92904
|
+
first_source: Optional[pulumi.Input['DataSetTransformOperationSourceArgs']] = None,
|
|
92905
|
+
second_source: Optional[pulumi.Input['DataSetTransformOperationSourceArgs']] = None):
|
|
92906
|
+
pulumi.set(__self__, "alias", alias)
|
|
92907
|
+
pulumi.set(__self__, "appended_columns", appended_columns)
|
|
92908
|
+
if first_source is not None:
|
|
92909
|
+
pulumi.set(__self__, "first_source", first_source)
|
|
92910
|
+
if second_source is not None:
|
|
92911
|
+
pulumi.set(__self__, "second_source", second_source)
|
|
92912
|
+
|
|
92913
|
+
@_builtins.property
|
|
92914
|
+
@pulumi.getter
|
|
92915
|
+
def alias(self) -> pulumi.Input[_builtins.str]:
|
|
92916
|
+
return pulumi.get(self, "alias")
|
|
92917
|
+
|
|
92918
|
+
@alias.setter
|
|
92919
|
+
def alias(self, value: pulumi.Input[_builtins.str]):
|
|
92920
|
+
pulumi.set(self, "alias", value)
|
|
92921
|
+
|
|
92922
|
+
@_builtins.property
|
|
92923
|
+
@pulumi.getter(name="appendedColumns")
|
|
92924
|
+
def appended_columns(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetAppendedColumnArgs']]]:
|
|
92925
|
+
return pulumi.get(self, "appended_columns")
|
|
92926
|
+
|
|
92927
|
+
@appended_columns.setter
|
|
92928
|
+
def appended_columns(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetAppendedColumnArgs']]]):
|
|
92929
|
+
pulumi.set(self, "appended_columns", value)
|
|
92930
|
+
|
|
92931
|
+
@_builtins.property
|
|
92932
|
+
@pulumi.getter(name="firstSource")
|
|
92933
|
+
def first_source(self) -> Optional[pulumi.Input['DataSetTransformOperationSourceArgs']]:
|
|
92934
|
+
return pulumi.get(self, "first_source")
|
|
92935
|
+
|
|
92936
|
+
@first_source.setter
|
|
92937
|
+
def first_source(self, value: Optional[pulumi.Input['DataSetTransformOperationSourceArgs']]):
|
|
92938
|
+
pulumi.set(self, "first_source", value)
|
|
92939
|
+
|
|
92940
|
+
@_builtins.property
|
|
92941
|
+
@pulumi.getter(name="secondSource")
|
|
92942
|
+
def second_source(self) -> Optional[pulumi.Input['DataSetTransformOperationSourceArgs']]:
|
|
92943
|
+
return pulumi.get(self, "second_source")
|
|
92944
|
+
|
|
92945
|
+
@second_source.setter
|
|
92946
|
+
def second_source(self, value: Optional[pulumi.Input['DataSetTransformOperationSourceArgs']]):
|
|
92947
|
+
pulumi.set(self, "second_source", value)
|
|
92948
|
+
|
|
92949
|
+
|
|
92950
|
+
if not MYPY:
|
|
92951
|
+
class DataSetAppendedColumnArgsDict(TypedDict):
|
|
92952
|
+
column_name: pulumi.Input[_builtins.str]
|
|
92953
|
+
new_column_id: pulumi.Input[_builtins.str]
|
|
92954
|
+
elif False:
|
|
92955
|
+
DataSetAppendedColumnArgsDict: TypeAlias = Mapping[str, Any]
|
|
92956
|
+
|
|
92957
|
+
@pulumi.input_type
|
|
92958
|
+
class DataSetAppendedColumnArgs:
|
|
92959
|
+
def __init__(__self__, *,
|
|
92960
|
+
column_name: pulumi.Input[_builtins.str],
|
|
92961
|
+
new_column_id: pulumi.Input[_builtins.str]):
|
|
92962
|
+
pulumi.set(__self__, "column_name", column_name)
|
|
92963
|
+
pulumi.set(__self__, "new_column_id", new_column_id)
|
|
92964
|
+
|
|
92965
|
+
@_builtins.property
|
|
92966
|
+
@pulumi.getter(name="columnName")
|
|
92967
|
+
def column_name(self) -> pulumi.Input[_builtins.str]:
|
|
92968
|
+
return pulumi.get(self, "column_name")
|
|
92969
|
+
|
|
92970
|
+
@column_name.setter
|
|
92971
|
+
def column_name(self, value: pulumi.Input[_builtins.str]):
|
|
92972
|
+
pulumi.set(self, "column_name", value)
|
|
92973
|
+
|
|
92974
|
+
@_builtins.property
|
|
92975
|
+
@pulumi.getter(name="newColumnId")
|
|
92976
|
+
def new_column_id(self) -> pulumi.Input[_builtins.str]:
|
|
92977
|
+
return pulumi.get(self, "new_column_id")
|
|
92978
|
+
|
|
92979
|
+
@new_column_id.setter
|
|
92980
|
+
def new_column_id(self, value: pulumi.Input[_builtins.str]):
|
|
92981
|
+
pulumi.set(self, "new_column_id", value)
|
|
92982
|
+
|
|
92983
|
+
|
|
92689
92984
|
if not MYPY:
|
|
92690
92985
|
class DataSetCalculatedColumnArgsDict(TypedDict):
|
|
92691
92986
|
"""
|
|
@@ -92770,13 +93065,13 @@ if not MYPY:
|
|
|
92770
93065
|
"""
|
|
92771
93066
|
<p>A transform operation that casts a column to a different type.</p>
|
|
92772
93067
|
"""
|
|
92773
|
-
|
|
93068
|
+
column_name: pulumi.Input[_builtins.str]
|
|
92774
93069
|
"""
|
|
92775
|
-
|
|
93070
|
+
<p>Column name.</p>
|
|
92776
93071
|
"""
|
|
92777
|
-
|
|
93072
|
+
new_column_type: pulumi.Input['DataSetColumnDataType']
|
|
92778
93073
|
"""
|
|
92779
|
-
|
|
93074
|
+
New column data type.
|
|
92780
93075
|
"""
|
|
92781
93076
|
format: NotRequired[pulumi.Input[_builtins.str]]
|
|
92782
93077
|
"""
|
|
@@ -92793,26 +93088,37 @@ elif False:
|
|
|
92793
93088
|
@pulumi.input_type
|
|
92794
93089
|
class DataSetCastColumnTypeOperationArgs:
|
|
92795
93090
|
def __init__(__self__, *,
|
|
93091
|
+
column_name: pulumi.Input[_builtins.str],
|
|
92796
93092
|
new_column_type: pulumi.Input['DataSetColumnDataType'],
|
|
92797
|
-
column_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
92798
93093
|
format: Optional[pulumi.Input[_builtins.str]] = None,
|
|
92799
93094
|
sub_type: Optional[pulumi.Input['DataSetColumnDataSubType']] = None):
|
|
92800
93095
|
"""
|
|
92801
93096
|
<p>A transform operation that casts a column to a different type.</p>
|
|
92802
|
-
:param pulumi.Input['DataSetColumnDataType'] new_column_type: New column data type.
|
|
92803
93097
|
:param pulumi.Input[_builtins.str] column_name: <p>Column name.</p>
|
|
93098
|
+
:param pulumi.Input['DataSetColumnDataType'] new_column_type: New column data type.
|
|
92804
93099
|
:param pulumi.Input[_builtins.str] format: <p>When casting a column from string to datetime type, you can supply a string in a
|
|
92805
93100
|
format supported by Amazon QuickSight to denote the source data format.</p>
|
|
92806
93101
|
:param pulumi.Input['DataSetColumnDataSubType'] sub_type: The sub data type of the new column. Sub types are only available for decimal columns that are part of a SPICE dataset.
|
|
92807
93102
|
"""
|
|
93103
|
+
pulumi.set(__self__, "column_name", column_name)
|
|
92808
93104
|
pulumi.set(__self__, "new_column_type", new_column_type)
|
|
92809
|
-
if column_name is not None:
|
|
92810
|
-
pulumi.set(__self__, "column_name", column_name)
|
|
92811
93105
|
if format is not None:
|
|
92812
93106
|
pulumi.set(__self__, "format", format)
|
|
92813
93107
|
if sub_type is not None:
|
|
92814
93108
|
pulumi.set(__self__, "sub_type", sub_type)
|
|
92815
93109
|
|
|
93110
|
+
@_builtins.property
|
|
93111
|
+
@pulumi.getter(name="columnName")
|
|
93112
|
+
def column_name(self) -> pulumi.Input[_builtins.str]:
|
|
93113
|
+
"""
|
|
93114
|
+
<p>Column name.</p>
|
|
93115
|
+
"""
|
|
93116
|
+
return pulumi.get(self, "column_name")
|
|
93117
|
+
|
|
93118
|
+
@column_name.setter
|
|
93119
|
+
def column_name(self, value: pulumi.Input[_builtins.str]):
|
|
93120
|
+
pulumi.set(self, "column_name", value)
|
|
93121
|
+
|
|
92816
93122
|
@_builtins.property
|
|
92817
93123
|
@pulumi.getter(name="newColumnType")
|
|
92818
93124
|
def new_column_type(self) -> pulumi.Input['DataSetColumnDataType']:
|
|
@@ -92825,18 +93131,6 @@ class DataSetCastColumnTypeOperationArgs:
|
|
|
92825
93131
|
def new_column_type(self, value: pulumi.Input['DataSetColumnDataType']):
|
|
92826
93132
|
pulumi.set(self, "new_column_type", value)
|
|
92827
93133
|
|
|
92828
|
-
@_builtins.property
|
|
92829
|
-
@pulumi.getter(name="columnName")
|
|
92830
|
-
def column_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
92831
|
-
"""
|
|
92832
|
-
<p>Column name.</p>
|
|
92833
|
-
"""
|
|
92834
|
-
return pulumi.get(self, "column_name")
|
|
92835
|
-
|
|
92836
|
-
@column_name.setter
|
|
92837
|
-
def column_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
92838
|
-
pulumi.set(self, "column_name", value)
|
|
92839
|
-
|
|
92840
93134
|
@_builtins.property
|
|
92841
93135
|
@pulumi.getter
|
|
92842
93136
|
def format(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -92863,6 +93157,52 @@ class DataSetCastColumnTypeOperationArgs:
|
|
|
92863
93157
|
pulumi.set(self, "sub_type", value)
|
|
92864
93158
|
|
|
92865
93159
|
|
|
93160
|
+
if not MYPY:
|
|
93161
|
+
class DataSetCastColumnTypesOperationArgsDict(TypedDict):
|
|
93162
|
+
alias: pulumi.Input[_builtins.str]
|
|
93163
|
+
cast_column_type_operations: pulumi.Input[Sequence[pulumi.Input['DataSetCastColumnTypeOperationArgsDict']]]
|
|
93164
|
+
source: pulumi.Input['DataSetTransformOperationSourceArgsDict']
|
|
93165
|
+
elif False:
|
|
93166
|
+
DataSetCastColumnTypesOperationArgsDict: TypeAlias = Mapping[str, Any]
|
|
93167
|
+
|
|
93168
|
+
@pulumi.input_type
|
|
93169
|
+
class DataSetCastColumnTypesOperationArgs:
|
|
93170
|
+
def __init__(__self__, *,
|
|
93171
|
+
alias: pulumi.Input[_builtins.str],
|
|
93172
|
+
cast_column_type_operations: pulumi.Input[Sequence[pulumi.Input['DataSetCastColumnTypeOperationArgs']]],
|
|
93173
|
+
source: pulumi.Input['DataSetTransformOperationSourceArgs']):
|
|
93174
|
+
pulumi.set(__self__, "alias", alias)
|
|
93175
|
+
pulumi.set(__self__, "cast_column_type_operations", cast_column_type_operations)
|
|
93176
|
+
pulumi.set(__self__, "source", source)
|
|
93177
|
+
|
|
93178
|
+
@_builtins.property
|
|
93179
|
+
@pulumi.getter
|
|
93180
|
+
def alias(self) -> pulumi.Input[_builtins.str]:
|
|
93181
|
+
return pulumi.get(self, "alias")
|
|
93182
|
+
|
|
93183
|
+
@alias.setter
|
|
93184
|
+
def alias(self, value: pulumi.Input[_builtins.str]):
|
|
93185
|
+
pulumi.set(self, "alias", value)
|
|
93186
|
+
|
|
93187
|
+
@_builtins.property
|
|
93188
|
+
@pulumi.getter(name="castColumnTypeOperations")
|
|
93189
|
+
def cast_column_type_operations(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetCastColumnTypeOperationArgs']]]:
|
|
93190
|
+
return pulumi.get(self, "cast_column_type_operations")
|
|
93191
|
+
|
|
93192
|
+
@cast_column_type_operations.setter
|
|
93193
|
+
def cast_column_type_operations(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetCastColumnTypeOperationArgs']]]):
|
|
93194
|
+
pulumi.set(self, "cast_column_type_operations", value)
|
|
93195
|
+
|
|
93196
|
+
@_builtins.property
|
|
93197
|
+
@pulumi.getter
|
|
93198
|
+
def source(self) -> pulumi.Input['DataSetTransformOperationSourceArgs']:
|
|
93199
|
+
return pulumi.get(self, "source")
|
|
93200
|
+
|
|
93201
|
+
@source.setter
|
|
93202
|
+
def source(self, value: pulumi.Input['DataSetTransformOperationSourceArgs']):
|
|
93203
|
+
pulumi.set(self, "source", value)
|
|
93204
|
+
|
|
93205
|
+
|
|
92866
93206
|
if not MYPY:
|
|
92867
93207
|
class DataSetColumnDescriptionArgsDict(TypedDict):
|
|
92868
93208
|
"""
|
|
@@ -92939,6 +93279,40 @@ class DataSetColumnGroupArgs:
|
|
|
92939
93279
|
pulumi.set(self, "geo_spatial_column_group", value)
|
|
92940
93280
|
|
|
92941
93281
|
|
|
93282
|
+
if not MYPY:
|
|
93283
|
+
class DataSetColumnIdMappingArgsDict(TypedDict):
|
|
93284
|
+
source_column_id: pulumi.Input[_builtins.str]
|
|
93285
|
+
target_column_id: pulumi.Input[_builtins.str]
|
|
93286
|
+
elif False:
|
|
93287
|
+
DataSetColumnIdMappingArgsDict: TypeAlias = Mapping[str, Any]
|
|
93288
|
+
|
|
93289
|
+
@pulumi.input_type
|
|
93290
|
+
class DataSetColumnIdMappingArgs:
|
|
93291
|
+
def __init__(__self__, *,
|
|
93292
|
+
source_column_id: pulumi.Input[_builtins.str],
|
|
93293
|
+
target_column_id: pulumi.Input[_builtins.str]):
|
|
93294
|
+
pulumi.set(__self__, "source_column_id", source_column_id)
|
|
93295
|
+
pulumi.set(__self__, "target_column_id", target_column_id)
|
|
93296
|
+
|
|
93297
|
+
@_builtins.property
|
|
93298
|
+
@pulumi.getter(name="sourceColumnId")
|
|
93299
|
+
def source_column_id(self) -> pulumi.Input[_builtins.str]:
|
|
93300
|
+
return pulumi.get(self, "source_column_id")
|
|
93301
|
+
|
|
93302
|
+
@source_column_id.setter
|
|
93303
|
+
def source_column_id(self, value: pulumi.Input[_builtins.str]):
|
|
93304
|
+
pulumi.set(self, "source_column_id", value)
|
|
93305
|
+
|
|
93306
|
+
@_builtins.property
|
|
93307
|
+
@pulumi.getter(name="targetColumnId")
|
|
93308
|
+
def target_column_id(self) -> pulumi.Input[_builtins.str]:
|
|
93309
|
+
return pulumi.get(self, "target_column_id")
|
|
93310
|
+
|
|
93311
|
+
@target_column_id.setter
|
|
93312
|
+
def target_column_id(self, value: pulumi.Input[_builtins.str]):
|
|
93313
|
+
pulumi.set(self, "target_column_id", value)
|
|
93314
|
+
|
|
93315
|
+
|
|
92942
93316
|
if not MYPY:
|
|
92943
93317
|
class DataSetColumnLevelPermissionRuleArgsDict(TypedDict):
|
|
92944
93318
|
"""
|
|
@@ -93073,49 +93447,114 @@ class DataSetColumnTagArgs:
|
|
|
93073
93447
|
pulumi.set(self, "column_geographic_role", value)
|
|
93074
93448
|
|
|
93075
93449
|
|
|
93450
|
+
if not MYPY:
|
|
93451
|
+
class DataSetColumnToUnpivotArgsDict(TypedDict):
|
|
93452
|
+
column_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
93453
|
+
new_value: NotRequired[pulumi.Input[_builtins.str]]
|
|
93454
|
+
elif False:
|
|
93455
|
+
DataSetColumnToUnpivotArgsDict: TypeAlias = Mapping[str, Any]
|
|
93456
|
+
|
|
93457
|
+
@pulumi.input_type
|
|
93458
|
+
class DataSetColumnToUnpivotArgs:
|
|
93459
|
+
def __init__(__self__, *,
|
|
93460
|
+
column_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
93461
|
+
new_value: Optional[pulumi.Input[_builtins.str]] = None):
|
|
93462
|
+
if column_name is not None:
|
|
93463
|
+
pulumi.set(__self__, "column_name", column_name)
|
|
93464
|
+
if new_value is not None:
|
|
93465
|
+
pulumi.set(__self__, "new_value", new_value)
|
|
93466
|
+
|
|
93467
|
+
@_builtins.property
|
|
93468
|
+
@pulumi.getter(name="columnName")
|
|
93469
|
+
def column_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
93470
|
+
return pulumi.get(self, "column_name")
|
|
93471
|
+
|
|
93472
|
+
@column_name.setter
|
|
93473
|
+
def column_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
93474
|
+
pulumi.set(self, "column_name", value)
|
|
93475
|
+
|
|
93476
|
+
@_builtins.property
|
|
93477
|
+
@pulumi.getter(name="newValue")
|
|
93478
|
+
def new_value(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
93479
|
+
return pulumi.get(self, "new_value")
|
|
93480
|
+
|
|
93481
|
+
@new_value.setter
|
|
93482
|
+
def new_value(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
93483
|
+
pulumi.set(self, "new_value", value)
|
|
93484
|
+
|
|
93485
|
+
|
|
93076
93486
|
if not MYPY:
|
|
93077
93487
|
class DataSetCreateColumnsOperationArgsDict(TypedDict):
|
|
93078
93488
|
"""
|
|
93079
93489
|
<p>A transform operation that creates calculated columns. Columns created in one such
|
|
93080
93490
|
operation form a lexical closure.</p>
|
|
93081
93491
|
"""
|
|
93082
|
-
columns:
|
|
93492
|
+
columns: pulumi.Input[Sequence[pulumi.Input['DataSetCalculatedColumnArgsDict']]]
|
|
93083
93493
|
"""
|
|
93084
93494
|
<p>Calculated columns to create.</p>
|
|
93085
93495
|
"""
|
|
93496
|
+
alias: NotRequired[pulumi.Input[_builtins.str]]
|
|
93497
|
+
source: NotRequired[pulumi.Input['DataSetTransformOperationSourceArgsDict']]
|
|
93086
93498
|
elif False:
|
|
93087
93499
|
DataSetCreateColumnsOperationArgsDict: TypeAlias = Mapping[str, Any]
|
|
93088
93500
|
|
|
93089
93501
|
@pulumi.input_type
|
|
93090
93502
|
class DataSetCreateColumnsOperationArgs:
|
|
93091
93503
|
def __init__(__self__, *,
|
|
93092
|
-
columns:
|
|
93504
|
+
columns: pulumi.Input[Sequence[pulumi.Input['DataSetCalculatedColumnArgs']]],
|
|
93505
|
+
alias: Optional[pulumi.Input[_builtins.str]] = None,
|
|
93506
|
+
source: Optional[pulumi.Input['DataSetTransformOperationSourceArgs']] = None):
|
|
93093
93507
|
"""
|
|
93094
93508
|
<p>A transform operation that creates calculated columns. Columns created in one such
|
|
93095
93509
|
operation form a lexical closure.</p>
|
|
93096
93510
|
:param pulumi.Input[Sequence[pulumi.Input['DataSetCalculatedColumnArgs']]] columns: <p>Calculated columns to create.</p>
|
|
93097
93511
|
"""
|
|
93098
|
-
|
|
93099
|
-
|
|
93512
|
+
pulumi.set(__self__, "columns", columns)
|
|
93513
|
+
if alias is not None:
|
|
93514
|
+
pulumi.set(__self__, "alias", alias)
|
|
93515
|
+
if source is not None:
|
|
93516
|
+
pulumi.set(__self__, "source", source)
|
|
93100
93517
|
|
|
93101
93518
|
@_builtins.property
|
|
93102
93519
|
@pulumi.getter
|
|
93103
|
-
def columns(self) ->
|
|
93520
|
+
def columns(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetCalculatedColumnArgs']]]:
|
|
93104
93521
|
"""
|
|
93105
93522
|
<p>Calculated columns to create.</p>
|
|
93106
93523
|
"""
|
|
93107
93524
|
return pulumi.get(self, "columns")
|
|
93108
93525
|
|
|
93109
93526
|
@columns.setter
|
|
93110
|
-
def columns(self, value:
|
|
93527
|
+
def columns(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetCalculatedColumnArgs']]]):
|
|
93111
93528
|
pulumi.set(self, "columns", value)
|
|
93112
93529
|
|
|
93530
|
+
@_builtins.property
|
|
93531
|
+
@pulumi.getter
|
|
93532
|
+
def alias(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
93533
|
+
return pulumi.get(self, "alias")
|
|
93534
|
+
|
|
93535
|
+
@alias.setter
|
|
93536
|
+
def alias(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
93537
|
+
pulumi.set(self, "alias", value)
|
|
93538
|
+
|
|
93539
|
+
@_builtins.property
|
|
93540
|
+
@pulumi.getter
|
|
93541
|
+
def source(self) -> Optional[pulumi.Input['DataSetTransformOperationSourceArgs']]:
|
|
93542
|
+
return pulumi.get(self, "source")
|
|
93543
|
+
|
|
93544
|
+
@source.setter
|
|
93545
|
+
def source(self, value: Optional[pulumi.Input['DataSetTransformOperationSourceArgs']]):
|
|
93546
|
+
pulumi.set(self, "source", value)
|
|
93547
|
+
|
|
93113
93548
|
|
|
93114
93549
|
if not MYPY:
|
|
93115
93550
|
class DataSetCustomSqlArgsDict(TypedDict):
|
|
93116
93551
|
"""
|
|
93117
93552
|
<p>A physical table type built from the results of the custom SQL query.</p>
|
|
93118
93553
|
"""
|
|
93554
|
+
columns: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgsDict']]]
|
|
93555
|
+
"""
|
|
93556
|
+
<p>The column schema from the SQL query result set.</p>
|
|
93557
|
+
"""
|
|
93119
93558
|
data_source_arn: pulumi.Input[_builtins.str]
|
|
93120
93559
|
"""
|
|
93121
93560
|
<p>The Amazon Resource Name (ARN) of the data source.</p>
|
|
@@ -93128,32 +93567,39 @@ if not MYPY:
|
|
|
93128
93567
|
"""
|
|
93129
93568
|
<p>The SQL query.</p>
|
|
93130
93569
|
"""
|
|
93131
|
-
columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgsDict']]]]
|
|
93132
|
-
"""
|
|
93133
|
-
<p>The column schema from the SQL query result set.</p>
|
|
93134
|
-
"""
|
|
93135
93570
|
elif False:
|
|
93136
93571
|
DataSetCustomSqlArgsDict: TypeAlias = Mapping[str, Any]
|
|
93137
93572
|
|
|
93138
93573
|
@pulumi.input_type
|
|
93139
93574
|
class DataSetCustomSqlArgs:
|
|
93140
93575
|
def __init__(__self__, *,
|
|
93576
|
+
columns: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]],
|
|
93141
93577
|
data_source_arn: pulumi.Input[_builtins.str],
|
|
93142
93578
|
name: pulumi.Input[_builtins.str],
|
|
93143
|
-
sql_query: pulumi.Input[_builtins.str]
|
|
93144
|
-
columns: Optional[pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]] = None):
|
|
93579
|
+
sql_query: pulumi.Input[_builtins.str]):
|
|
93145
93580
|
"""
|
|
93146
93581
|
<p>A physical table type built from the results of the custom SQL query.</p>
|
|
93582
|
+
:param pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]] columns: <p>The column schema from the SQL query result set.</p>
|
|
93147
93583
|
:param pulumi.Input[_builtins.str] data_source_arn: <p>The Amazon Resource Name (ARN) of the data source.</p>
|
|
93148
93584
|
:param pulumi.Input[_builtins.str] name: <p>A display name for the SQL query result.</p>
|
|
93149
93585
|
:param pulumi.Input[_builtins.str] sql_query: <p>The SQL query.</p>
|
|
93150
|
-
:param pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]] columns: <p>The column schema from the SQL query result set.</p>
|
|
93151
93586
|
"""
|
|
93587
|
+
pulumi.set(__self__, "columns", columns)
|
|
93152
93588
|
pulumi.set(__self__, "data_source_arn", data_source_arn)
|
|
93153
93589
|
pulumi.set(__self__, "name", name)
|
|
93154
93590
|
pulumi.set(__self__, "sql_query", sql_query)
|
|
93155
|
-
|
|
93156
|
-
|
|
93591
|
+
|
|
93592
|
+
@_builtins.property
|
|
93593
|
+
@pulumi.getter
|
|
93594
|
+
def columns(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]:
|
|
93595
|
+
"""
|
|
93596
|
+
<p>The column schema from the SQL query result set.</p>
|
|
93597
|
+
"""
|
|
93598
|
+
return pulumi.get(self, "columns")
|
|
93599
|
+
|
|
93600
|
+
@columns.setter
|
|
93601
|
+
def columns(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]):
|
|
93602
|
+
pulumi.set(self, "columns", value)
|
|
93157
93603
|
|
|
93158
93604
|
@_builtins.property
|
|
93159
93605
|
@pulumi.getter(name="dataSourceArn")
|
|
@@ -93191,17 +93637,217 @@ class DataSetCustomSqlArgs:
|
|
|
93191
93637
|
def sql_query(self, value: pulumi.Input[_builtins.str]):
|
|
93192
93638
|
pulumi.set(self, "sql_query", value)
|
|
93193
93639
|
|
|
93640
|
+
|
|
93641
|
+
if not MYPY:
|
|
93642
|
+
class DataSetDataPrepAggregationFunctionArgsDict(TypedDict):
|
|
93643
|
+
list_aggregation: NotRequired[pulumi.Input['DataSetDataPrepListAggregationFunctionArgsDict']]
|
|
93644
|
+
percentile_aggregation: NotRequired[pulumi.Input['DataSetDataPrepPercentileAggregationFunctionArgsDict']]
|
|
93645
|
+
simple_aggregation: NotRequired[pulumi.Input['DataSetDataPrepSimpleAggregationFunctionArgsDict']]
|
|
93646
|
+
elif False:
|
|
93647
|
+
DataSetDataPrepAggregationFunctionArgsDict: TypeAlias = Mapping[str, Any]
|
|
93648
|
+
|
|
93649
|
+
@pulumi.input_type
|
|
93650
|
+
class DataSetDataPrepAggregationFunctionArgs:
|
|
93651
|
+
def __init__(__self__, *,
|
|
93652
|
+
list_aggregation: Optional[pulumi.Input['DataSetDataPrepListAggregationFunctionArgs']] = None,
|
|
93653
|
+
percentile_aggregation: Optional[pulumi.Input['DataSetDataPrepPercentileAggregationFunctionArgs']] = None,
|
|
93654
|
+
simple_aggregation: Optional[pulumi.Input['DataSetDataPrepSimpleAggregationFunctionArgs']] = None):
|
|
93655
|
+
if list_aggregation is not None:
|
|
93656
|
+
pulumi.set(__self__, "list_aggregation", list_aggregation)
|
|
93657
|
+
if percentile_aggregation is not None:
|
|
93658
|
+
pulumi.set(__self__, "percentile_aggregation", percentile_aggregation)
|
|
93659
|
+
if simple_aggregation is not None:
|
|
93660
|
+
pulumi.set(__self__, "simple_aggregation", simple_aggregation)
|
|
93661
|
+
|
|
93662
|
+
@_builtins.property
|
|
93663
|
+
@pulumi.getter(name="listAggregation")
|
|
93664
|
+
def list_aggregation(self) -> Optional[pulumi.Input['DataSetDataPrepListAggregationFunctionArgs']]:
|
|
93665
|
+
return pulumi.get(self, "list_aggregation")
|
|
93666
|
+
|
|
93667
|
+
@list_aggregation.setter
|
|
93668
|
+
def list_aggregation(self, value: Optional[pulumi.Input['DataSetDataPrepListAggregationFunctionArgs']]):
|
|
93669
|
+
pulumi.set(self, "list_aggregation", value)
|
|
93670
|
+
|
|
93671
|
+
@_builtins.property
|
|
93672
|
+
@pulumi.getter(name="percentileAggregation")
|
|
93673
|
+
def percentile_aggregation(self) -> Optional[pulumi.Input['DataSetDataPrepPercentileAggregationFunctionArgs']]:
|
|
93674
|
+
return pulumi.get(self, "percentile_aggregation")
|
|
93675
|
+
|
|
93676
|
+
@percentile_aggregation.setter
|
|
93677
|
+
def percentile_aggregation(self, value: Optional[pulumi.Input['DataSetDataPrepPercentileAggregationFunctionArgs']]):
|
|
93678
|
+
pulumi.set(self, "percentile_aggregation", value)
|
|
93679
|
+
|
|
93680
|
+
@_builtins.property
|
|
93681
|
+
@pulumi.getter(name="simpleAggregation")
|
|
93682
|
+
def simple_aggregation(self) -> Optional[pulumi.Input['DataSetDataPrepSimpleAggregationFunctionArgs']]:
|
|
93683
|
+
return pulumi.get(self, "simple_aggregation")
|
|
93684
|
+
|
|
93685
|
+
@simple_aggregation.setter
|
|
93686
|
+
def simple_aggregation(self, value: Optional[pulumi.Input['DataSetDataPrepSimpleAggregationFunctionArgs']]):
|
|
93687
|
+
pulumi.set(self, "simple_aggregation", value)
|
|
93688
|
+
|
|
93689
|
+
|
|
93690
|
+
if not MYPY:
|
|
93691
|
+
class DataSetDataPrepConfigurationArgsDict(TypedDict):
|
|
93692
|
+
destination_table_map: pulumi.Input[Mapping[str, pulumi.Input['DataSetDestinationTableArgsDict']]]
|
|
93693
|
+
source_table_map: pulumi.Input[Mapping[str, pulumi.Input['DataSetSourceTableArgsDict']]]
|
|
93694
|
+
transform_step_map: pulumi.Input[Mapping[str, pulumi.Input['DataSetTransformStepArgsDict']]]
|
|
93695
|
+
elif False:
|
|
93696
|
+
DataSetDataPrepConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
93697
|
+
|
|
93698
|
+
@pulumi.input_type
|
|
93699
|
+
class DataSetDataPrepConfigurationArgs:
|
|
93700
|
+
def __init__(__self__, *,
|
|
93701
|
+
destination_table_map: pulumi.Input[Mapping[str, pulumi.Input['DataSetDestinationTableArgs']]],
|
|
93702
|
+
source_table_map: pulumi.Input[Mapping[str, pulumi.Input['DataSetSourceTableArgs']]],
|
|
93703
|
+
transform_step_map: pulumi.Input[Mapping[str, pulumi.Input['DataSetTransformStepArgs']]]):
|
|
93704
|
+
pulumi.set(__self__, "destination_table_map", destination_table_map)
|
|
93705
|
+
pulumi.set(__self__, "source_table_map", source_table_map)
|
|
93706
|
+
pulumi.set(__self__, "transform_step_map", transform_step_map)
|
|
93707
|
+
|
|
93708
|
+
@_builtins.property
|
|
93709
|
+
@pulumi.getter(name="destinationTableMap")
|
|
93710
|
+
def destination_table_map(self) -> pulumi.Input[Mapping[str, pulumi.Input['DataSetDestinationTableArgs']]]:
|
|
93711
|
+
return pulumi.get(self, "destination_table_map")
|
|
93712
|
+
|
|
93713
|
+
@destination_table_map.setter
|
|
93714
|
+
def destination_table_map(self, value: pulumi.Input[Mapping[str, pulumi.Input['DataSetDestinationTableArgs']]]):
|
|
93715
|
+
pulumi.set(self, "destination_table_map", value)
|
|
93716
|
+
|
|
93717
|
+
@_builtins.property
|
|
93718
|
+
@pulumi.getter(name="sourceTableMap")
|
|
93719
|
+
def source_table_map(self) -> pulumi.Input[Mapping[str, pulumi.Input['DataSetSourceTableArgs']]]:
|
|
93720
|
+
return pulumi.get(self, "source_table_map")
|
|
93721
|
+
|
|
93722
|
+
@source_table_map.setter
|
|
93723
|
+
def source_table_map(self, value: pulumi.Input[Mapping[str, pulumi.Input['DataSetSourceTableArgs']]]):
|
|
93724
|
+
pulumi.set(self, "source_table_map", value)
|
|
93725
|
+
|
|
93726
|
+
@_builtins.property
|
|
93727
|
+
@pulumi.getter(name="transformStepMap")
|
|
93728
|
+
def transform_step_map(self) -> pulumi.Input[Mapping[str, pulumi.Input['DataSetTransformStepArgs']]]:
|
|
93729
|
+
return pulumi.get(self, "transform_step_map")
|
|
93730
|
+
|
|
93731
|
+
@transform_step_map.setter
|
|
93732
|
+
def transform_step_map(self, value: pulumi.Input[Mapping[str, pulumi.Input['DataSetTransformStepArgs']]]):
|
|
93733
|
+
pulumi.set(self, "transform_step_map", value)
|
|
93734
|
+
|
|
93735
|
+
|
|
93736
|
+
if not MYPY:
|
|
93737
|
+
class DataSetDataPrepListAggregationFunctionArgsDict(TypedDict):
|
|
93738
|
+
distinct: pulumi.Input[_builtins.bool]
|
|
93739
|
+
separator: pulumi.Input[_builtins.str]
|
|
93740
|
+
input_column_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
93741
|
+
elif False:
|
|
93742
|
+
DataSetDataPrepListAggregationFunctionArgsDict: TypeAlias = Mapping[str, Any]
|
|
93743
|
+
|
|
93744
|
+
@pulumi.input_type
|
|
93745
|
+
class DataSetDataPrepListAggregationFunctionArgs:
|
|
93746
|
+
def __init__(__self__, *,
|
|
93747
|
+
distinct: pulumi.Input[_builtins.bool],
|
|
93748
|
+
separator: pulumi.Input[_builtins.str],
|
|
93749
|
+
input_column_name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
93750
|
+
pulumi.set(__self__, "distinct", distinct)
|
|
93751
|
+
pulumi.set(__self__, "separator", separator)
|
|
93752
|
+
if input_column_name is not None:
|
|
93753
|
+
pulumi.set(__self__, "input_column_name", input_column_name)
|
|
93754
|
+
|
|
93194
93755
|
@_builtins.property
|
|
93195
93756
|
@pulumi.getter
|
|
93196
|
-
def
|
|
93197
|
-
""
|
|
93198
|
-
<p>The column schema from the SQL query result set.</p>
|
|
93199
|
-
"""
|
|
93200
|
-
return pulumi.get(self, "columns")
|
|
93757
|
+
def distinct(self) -> pulumi.Input[_builtins.bool]:
|
|
93758
|
+
return pulumi.get(self, "distinct")
|
|
93201
93759
|
|
|
93202
|
-
@
|
|
93203
|
-
def
|
|
93204
|
-
pulumi.set(self, "
|
|
93760
|
+
@distinct.setter
|
|
93761
|
+
def distinct(self, value: pulumi.Input[_builtins.bool]):
|
|
93762
|
+
pulumi.set(self, "distinct", value)
|
|
93763
|
+
|
|
93764
|
+
@_builtins.property
|
|
93765
|
+
@pulumi.getter
|
|
93766
|
+
def separator(self) -> pulumi.Input[_builtins.str]:
|
|
93767
|
+
return pulumi.get(self, "separator")
|
|
93768
|
+
|
|
93769
|
+
@separator.setter
|
|
93770
|
+
def separator(self, value: pulumi.Input[_builtins.str]):
|
|
93771
|
+
pulumi.set(self, "separator", value)
|
|
93772
|
+
|
|
93773
|
+
@_builtins.property
|
|
93774
|
+
@pulumi.getter(name="inputColumnName")
|
|
93775
|
+
def input_column_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
93776
|
+
return pulumi.get(self, "input_column_name")
|
|
93777
|
+
|
|
93778
|
+
@input_column_name.setter
|
|
93779
|
+
def input_column_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
93780
|
+
pulumi.set(self, "input_column_name", value)
|
|
93781
|
+
|
|
93782
|
+
|
|
93783
|
+
if not MYPY:
|
|
93784
|
+
class DataSetDataPrepPercentileAggregationFunctionArgsDict(TypedDict):
|
|
93785
|
+
percentile_value: pulumi.Input[_builtins.float]
|
|
93786
|
+
input_column_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
93787
|
+
elif False:
|
|
93788
|
+
DataSetDataPrepPercentileAggregationFunctionArgsDict: TypeAlias = Mapping[str, Any]
|
|
93789
|
+
|
|
93790
|
+
@pulumi.input_type
|
|
93791
|
+
class DataSetDataPrepPercentileAggregationFunctionArgs:
|
|
93792
|
+
def __init__(__self__, *,
|
|
93793
|
+
percentile_value: pulumi.Input[_builtins.float],
|
|
93794
|
+
input_column_name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
93795
|
+
pulumi.set(__self__, "percentile_value", percentile_value)
|
|
93796
|
+
if input_column_name is not None:
|
|
93797
|
+
pulumi.set(__self__, "input_column_name", input_column_name)
|
|
93798
|
+
|
|
93799
|
+
@_builtins.property
|
|
93800
|
+
@pulumi.getter(name="percentileValue")
|
|
93801
|
+
def percentile_value(self) -> pulumi.Input[_builtins.float]:
|
|
93802
|
+
return pulumi.get(self, "percentile_value")
|
|
93803
|
+
|
|
93804
|
+
@percentile_value.setter
|
|
93805
|
+
def percentile_value(self, value: pulumi.Input[_builtins.float]):
|
|
93806
|
+
pulumi.set(self, "percentile_value", value)
|
|
93807
|
+
|
|
93808
|
+
@_builtins.property
|
|
93809
|
+
@pulumi.getter(name="inputColumnName")
|
|
93810
|
+
def input_column_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
93811
|
+
return pulumi.get(self, "input_column_name")
|
|
93812
|
+
|
|
93813
|
+
@input_column_name.setter
|
|
93814
|
+
def input_column_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
93815
|
+
pulumi.set(self, "input_column_name", value)
|
|
93816
|
+
|
|
93817
|
+
|
|
93818
|
+
if not MYPY:
|
|
93819
|
+
class DataSetDataPrepSimpleAggregationFunctionArgsDict(TypedDict):
|
|
93820
|
+
function_type: pulumi.Input['DataSetDataPrepSimpleAggregationFunctionType']
|
|
93821
|
+
input_column_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
93822
|
+
elif False:
|
|
93823
|
+
DataSetDataPrepSimpleAggregationFunctionArgsDict: TypeAlias = Mapping[str, Any]
|
|
93824
|
+
|
|
93825
|
+
@pulumi.input_type
|
|
93826
|
+
class DataSetDataPrepSimpleAggregationFunctionArgs:
|
|
93827
|
+
def __init__(__self__, *,
|
|
93828
|
+
function_type: pulumi.Input['DataSetDataPrepSimpleAggregationFunctionType'],
|
|
93829
|
+
input_column_name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
93830
|
+
pulumi.set(__self__, "function_type", function_type)
|
|
93831
|
+
if input_column_name is not None:
|
|
93832
|
+
pulumi.set(__self__, "input_column_name", input_column_name)
|
|
93833
|
+
|
|
93834
|
+
@_builtins.property
|
|
93835
|
+
@pulumi.getter(name="functionType")
|
|
93836
|
+
def function_type(self) -> pulumi.Input['DataSetDataPrepSimpleAggregationFunctionType']:
|
|
93837
|
+
return pulumi.get(self, "function_type")
|
|
93838
|
+
|
|
93839
|
+
@function_type.setter
|
|
93840
|
+
def function_type(self, value: pulumi.Input['DataSetDataPrepSimpleAggregationFunctionType']):
|
|
93841
|
+
pulumi.set(self, "function_type", value)
|
|
93842
|
+
|
|
93843
|
+
@_builtins.property
|
|
93844
|
+
@pulumi.getter(name="inputColumnName")
|
|
93845
|
+
def input_column_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
93846
|
+
return pulumi.get(self, "input_column_name")
|
|
93847
|
+
|
|
93848
|
+
@input_column_name.setter
|
|
93849
|
+
def input_column_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
93850
|
+
pulumi.set(self, "input_column_name", value)
|
|
93205
93851
|
|
|
93206
93852
|
|
|
93207
93853
|
if not MYPY:
|
|
@@ -93300,6 +93946,175 @@ class DataSetDatasetParameterArgs:
|
|
|
93300
93946
|
pulumi.set(self, "string_dataset_parameter", value)
|
|
93301
93947
|
|
|
93302
93948
|
|
|
93949
|
+
if not MYPY:
|
|
93950
|
+
class DataSetDateComparisonFilterConditionArgsDict(TypedDict):
|
|
93951
|
+
operator: pulumi.Input['DataSetDateComparisonFilterOperator']
|
|
93952
|
+
value: NotRequired[pulumi.Input['DataSetDateFilterValueArgsDict']]
|
|
93953
|
+
elif False:
|
|
93954
|
+
DataSetDateComparisonFilterConditionArgsDict: TypeAlias = Mapping[str, Any]
|
|
93955
|
+
|
|
93956
|
+
@pulumi.input_type
|
|
93957
|
+
class DataSetDateComparisonFilterConditionArgs:
|
|
93958
|
+
def __init__(__self__, *,
|
|
93959
|
+
operator: pulumi.Input['DataSetDateComparisonFilterOperator'],
|
|
93960
|
+
value: Optional[pulumi.Input['DataSetDateFilterValueArgs']] = None):
|
|
93961
|
+
pulumi.set(__self__, "operator", operator)
|
|
93962
|
+
if value is not None:
|
|
93963
|
+
pulumi.set(__self__, "value", value)
|
|
93964
|
+
|
|
93965
|
+
@_builtins.property
|
|
93966
|
+
@pulumi.getter
|
|
93967
|
+
def operator(self) -> pulumi.Input['DataSetDateComparisonFilterOperator']:
|
|
93968
|
+
return pulumi.get(self, "operator")
|
|
93969
|
+
|
|
93970
|
+
@operator.setter
|
|
93971
|
+
def operator(self, value: pulumi.Input['DataSetDateComparisonFilterOperator']):
|
|
93972
|
+
pulumi.set(self, "operator", value)
|
|
93973
|
+
|
|
93974
|
+
@_builtins.property
|
|
93975
|
+
@pulumi.getter
|
|
93976
|
+
def value(self) -> Optional[pulumi.Input['DataSetDateFilterValueArgs']]:
|
|
93977
|
+
return pulumi.get(self, "value")
|
|
93978
|
+
|
|
93979
|
+
@value.setter
|
|
93980
|
+
def value(self, value: Optional[pulumi.Input['DataSetDateFilterValueArgs']]):
|
|
93981
|
+
pulumi.set(self, "value", value)
|
|
93982
|
+
|
|
93983
|
+
|
|
93984
|
+
if not MYPY:
|
|
93985
|
+
class DataSetDateFilterConditionArgsDict(TypedDict):
|
|
93986
|
+
column_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
93987
|
+
comparison_filter_condition: NotRequired[pulumi.Input['DataSetDateComparisonFilterConditionArgsDict']]
|
|
93988
|
+
range_filter_condition: NotRequired[pulumi.Input['DataSetDateRangeFilterConditionArgsDict']]
|
|
93989
|
+
elif False:
|
|
93990
|
+
DataSetDateFilterConditionArgsDict: TypeAlias = Mapping[str, Any]
|
|
93991
|
+
|
|
93992
|
+
@pulumi.input_type
|
|
93993
|
+
class DataSetDateFilterConditionArgs:
|
|
93994
|
+
def __init__(__self__, *,
|
|
93995
|
+
column_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
93996
|
+
comparison_filter_condition: Optional[pulumi.Input['DataSetDateComparisonFilterConditionArgs']] = None,
|
|
93997
|
+
range_filter_condition: Optional[pulumi.Input['DataSetDateRangeFilterConditionArgs']] = None):
|
|
93998
|
+
if column_name is not None:
|
|
93999
|
+
pulumi.set(__self__, "column_name", column_name)
|
|
94000
|
+
if comparison_filter_condition is not None:
|
|
94001
|
+
pulumi.set(__self__, "comparison_filter_condition", comparison_filter_condition)
|
|
94002
|
+
if range_filter_condition is not None:
|
|
94003
|
+
pulumi.set(__self__, "range_filter_condition", range_filter_condition)
|
|
94004
|
+
|
|
94005
|
+
@_builtins.property
|
|
94006
|
+
@pulumi.getter(name="columnName")
|
|
94007
|
+
def column_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
94008
|
+
return pulumi.get(self, "column_name")
|
|
94009
|
+
|
|
94010
|
+
@column_name.setter
|
|
94011
|
+
def column_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
94012
|
+
pulumi.set(self, "column_name", value)
|
|
94013
|
+
|
|
94014
|
+
@_builtins.property
|
|
94015
|
+
@pulumi.getter(name="comparisonFilterCondition")
|
|
94016
|
+
def comparison_filter_condition(self) -> Optional[pulumi.Input['DataSetDateComparisonFilterConditionArgs']]:
|
|
94017
|
+
return pulumi.get(self, "comparison_filter_condition")
|
|
94018
|
+
|
|
94019
|
+
@comparison_filter_condition.setter
|
|
94020
|
+
def comparison_filter_condition(self, value: Optional[pulumi.Input['DataSetDateComparisonFilterConditionArgs']]):
|
|
94021
|
+
pulumi.set(self, "comparison_filter_condition", value)
|
|
94022
|
+
|
|
94023
|
+
@_builtins.property
|
|
94024
|
+
@pulumi.getter(name="rangeFilterCondition")
|
|
94025
|
+
def range_filter_condition(self) -> Optional[pulumi.Input['DataSetDateRangeFilterConditionArgs']]:
|
|
94026
|
+
return pulumi.get(self, "range_filter_condition")
|
|
94027
|
+
|
|
94028
|
+
@range_filter_condition.setter
|
|
94029
|
+
def range_filter_condition(self, value: Optional[pulumi.Input['DataSetDateRangeFilterConditionArgs']]):
|
|
94030
|
+
pulumi.set(self, "range_filter_condition", value)
|
|
94031
|
+
|
|
94032
|
+
|
|
94033
|
+
if not MYPY:
|
|
94034
|
+
class DataSetDateFilterValueArgsDict(TypedDict):
|
|
94035
|
+
static_value: NotRequired[pulumi.Input[_builtins.str]]
|
|
94036
|
+
elif False:
|
|
94037
|
+
DataSetDateFilterValueArgsDict: TypeAlias = Mapping[str, Any]
|
|
94038
|
+
|
|
94039
|
+
@pulumi.input_type
|
|
94040
|
+
class DataSetDateFilterValueArgs:
|
|
94041
|
+
def __init__(__self__, *,
|
|
94042
|
+
static_value: Optional[pulumi.Input[_builtins.str]] = None):
|
|
94043
|
+
if static_value is not None:
|
|
94044
|
+
pulumi.set(__self__, "static_value", static_value)
|
|
94045
|
+
|
|
94046
|
+
@_builtins.property
|
|
94047
|
+
@pulumi.getter(name="staticValue")
|
|
94048
|
+
def static_value(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
94049
|
+
return pulumi.get(self, "static_value")
|
|
94050
|
+
|
|
94051
|
+
@static_value.setter
|
|
94052
|
+
def static_value(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
94053
|
+
pulumi.set(self, "static_value", value)
|
|
94054
|
+
|
|
94055
|
+
|
|
94056
|
+
if not MYPY:
|
|
94057
|
+
class DataSetDateRangeFilterConditionArgsDict(TypedDict):
|
|
94058
|
+
include_maximum: NotRequired[pulumi.Input[_builtins.bool]]
|
|
94059
|
+
include_minimum: NotRequired[pulumi.Input[_builtins.bool]]
|
|
94060
|
+
range_maximum: NotRequired[pulumi.Input['DataSetDateFilterValueArgsDict']]
|
|
94061
|
+
range_minimum: NotRequired[pulumi.Input['DataSetDateFilterValueArgsDict']]
|
|
94062
|
+
elif False:
|
|
94063
|
+
DataSetDateRangeFilterConditionArgsDict: TypeAlias = Mapping[str, Any]
|
|
94064
|
+
|
|
94065
|
+
@pulumi.input_type
|
|
94066
|
+
class DataSetDateRangeFilterConditionArgs:
|
|
94067
|
+
def __init__(__self__, *,
|
|
94068
|
+
include_maximum: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
94069
|
+
include_minimum: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
94070
|
+
range_maximum: Optional[pulumi.Input['DataSetDateFilterValueArgs']] = None,
|
|
94071
|
+
range_minimum: Optional[pulumi.Input['DataSetDateFilterValueArgs']] = None):
|
|
94072
|
+
if include_maximum is not None:
|
|
94073
|
+
pulumi.set(__self__, "include_maximum", include_maximum)
|
|
94074
|
+
if include_minimum is not None:
|
|
94075
|
+
pulumi.set(__self__, "include_minimum", include_minimum)
|
|
94076
|
+
if range_maximum is not None:
|
|
94077
|
+
pulumi.set(__self__, "range_maximum", range_maximum)
|
|
94078
|
+
if range_minimum is not None:
|
|
94079
|
+
pulumi.set(__self__, "range_minimum", range_minimum)
|
|
94080
|
+
|
|
94081
|
+
@_builtins.property
|
|
94082
|
+
@pulumi.getter(name="includeMaximum")
|
|
94083
|
+
def include_maximum(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
94084
|
+
return pulumi.get(self, "include_maximum")
|
|
94085
|
+
|
|
94086
|
+
@include_maximum.setter
|
|
94087
|
+
def include_maximum(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
94088
|
+
pulumi.set(self, "include_maximum", value)
|
|
94089
|
+
|
|
94090
|
+
@_builtins.property
|
|
94091
|
+
@pulumi.getter(name="includeMinimum")
|
|
94092
|
+
def include_minimum(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
94093
|
+
return pulumi.get(self, "include_minimum")
|
|
94094
|
+
|
|
94095
|
+
@include_minimum.setter
|
|
94096
|
+
def include_minimum(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
94097
|
+
pulumi.set(self, "include_minimum", value)
|
|
94098
|
+
|
|
94099
|
+
@_builtins.property
|
|
94100
|
+
@pulumi.getter(name="rangeMaximum")
|
|
94101
|
+
def range_maximum(self) -> Optional[pulumi.Input['DataSetDateFilterValueArgs']]:
|
|
94102
|
+
return pulumi.get(self, "range_maximum")
|
|
94103
|
+
|
|
94104
|
+
@range_maximum.setter
|
|
94105
|
+
def range_maximum(self, value: Optional[pulumi.Input['DataSetDateFilterValueArgs']]):
|
|
94106
|
+
pulumi.set(self, "range_maximum", value)
|
|
94107
|
+
|
|
94108
|
+
@_builtins.property
|
|
94109
|
+
@pulumi.getter(name="rangeMinimum")
|
|
94110
|
+
def range_minimum(self) -> Optional[pulumi.Input['DataSetDateFilterValueArgs']]:
|
|
94111
|
+
return pulumi.get(self, "range_minimum")
|
|
94112
|
+
|
|
94113
|
+
@range_minimum.setter
|
|
94114
|
+
def range_minimum(self, value: Optional[pulumi.Input['DataSetDateFilterValueArgs']]):
|
|
94115
|
+
pulumi.set(self, "range_minimum", value)
|
|
94116
|
+
|
|
94117
|
+
|
|
93303
94118
|
if not MYPY:
|
|
93304
94119
|
class DataSetDateTimeDatasetParameterDefaultValuesArgsDict(TypedDict):
|
|
93305
94120
|
"""
|
|
@@ -93426,156 +94241,212 @@ class DataSetDateTimeDatasetParameterArgs:
|
|
|
93426
94241
|
|
|
93427
94242
|
@_builtins.property
|
|
93428
94243
|
@pulumi.getter(name="defaultValues")
|
|
93429
|
-
def default_values(self) -> Optional[pulumi.Input['DataSetDateTimeDatasetParameterDefaultValuesArgs']]:
|
|
94244
|
+
def default_values(self) -> Optional[pulumi.Input['DataSetDateTimeDatasetParameterDefaultValuesArgs']]:
|
|
94245
|
+
"""
|
|
94246
|
+
A list of default values for a given date time parameter. This structure only accepts static values.
|
|
94247
|
+
"""
|
|
94248
|
+
return pulumi.get(self, "default_values")
|
|
94249
|
+
|
|
94250
|
+
@default_values.setter
|
|
94251
|
+
def default_values(self, value: Optional[pulumi.Input['DataSetDateTimeDatasetParameterDefaultValuesArgs']]):
|
|
94252
|
+
pulumi.set(self, "default_values", value)
|
|
94253
|
+
|
|
94254
|
+
@_builtins.property
|
|
94255
|
+
@pulumi.getter(name="timeGranularity")
|
|
94256
|
+
def time_granularity(self) -> Optional[pulumi.Input['DataSetTimeGranularity']]:
|
|
94257
|
+
"""
|
|
94258
|
+
The time granularity of the date time parameter.
|
|
94259
|
+
"""
|
|
94260
|
+
return pulumi.get(self, "time_granularity")
|
|
94261
|
+
|
|
94262
|
+
@time_granularity.setter
|
|
94263
|
+
def time_granularity(self, value: Optional[pulumi.Input['DataSetTimeGranularity']]):
|
|
94264
|
+
pulumi.set(self, "time_granularity", value)
|
|
94265
|
+
|
|
94266
|
+
|
|
94267
|
+
if not MYPY:
|
|
94268
|
+
class DataSetDecimalDatasetParameterDefaultValuesArgsDict(TypedDict):
|
|
94269
|
+
"""
|
|
94270
|
+
<p>The default values of a decimal parameter.</p>
|
|
94271
|
+
"""
|
|
94272
|
+
static_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.float]]]]
|
|
94273
|
+
"""
|
|
94274
|
+
<p>A list of static default values for a given decimal parameter.</p>
|
|
94275
|
+
"""
|
|
94276
|
+
elif False:
|
|
94277
|
+
DataSetDecimalDatasetParameterDefaultValuesArgsDict: TypeAlias = Mapping[str, Any]
|
|
94278
|
+
|
|
94279
|
+
@pulumi.input_type
|
|
94280
|
+
class DataSetDecimalDatasetParameterDefaultValuesArgs:
|
|
94281
|
+
def __init__(__self__, *,
|
|
94282
|
+
static_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.float]]]] = None):
|
|
94283
|
+
"""
|
|
94284
|
+
<p>The default values of a decimal parameter.</p>
|
|
94285
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.float]]] static_values: <p>A list of static default values for a given decimal parameter.</p>
|
|
94286
|
+
"""
|
|
94287
|
+
if static_values is not None:
|
|
94288
|
+
pulumi.set(__self__, "static_values", static_values)
|
|
94289
|
+
|
|
94290
|
+
@_builtins.property
|
|
94291
|
+
@pulumi.getter(name="staticValues")
|
|
94292
|
+
def static_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.float]]]]:
|
|
94293
|
+
"""
|
|
94294
|
+
<p>A list of static default values for a given decimal parameter.</p>
|
|
94295
|
+
"""
|
|
94296
|
+
return pulumi.get(self, "static_values")
|
|
94297
|
+
|
|
94298
|
+
@static_values.setter
|
|
94299
|
+
def static_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.float]]]]):
|
|
94300
|
+
pulumi.set(self, "static_values", value)
|
|
94301
|
+
|
|
94302
|
+
|
|
94303
|
+
if not MYPY:
|
|
94304
|
+
class DataSetDecimalDatasetParameterArgsDict(TypedDict):
|
|
94305
|
+
"""
|
|
94306
|
+
<p>A decimal parameter for a dataset.</p>
|
|
94307
|
+
"""
|
|
94308
|
+
id: pulumi.Input[_builtins.str]
|
|
94309
|
+
"""
|
|
94310
|
+
<p>An identifier for the decimal parameter created in the dataset.</p>
|
|
94311
|
+
"""
|
|
94312
|
+
name: pulumi.Input[_builtins.str]
|
|
94313
|
+
"""
|
|
94314
|
+
<p>The name of the decimal parameter that is created in the dataset.</p>
|
|
94315
|
+
"""
|
|
94316
|
+
value_type: pulumi.Input['DataSetDatasetParameterValueType']
|
|
94317
|
+
"""
|
|
94318
|
+
The value type of the dataset parameter. Valid values are `single value` or `multi value` .
|
|
94319
|
+
"""
|
|
94320
|
+
default_values: NotRequired[pulumi.Input['DataSetDecimalDatasetParameterDefaultValuesArgsDict']]
|
|
94321
|
+
"""
|
|
94322
|
+
A list of default values for a given decimal parameter. This structure only accepts static values.
|
|
94323
|
+
"""
|
|
94324
|
+
elif False:
|
|
94325
|
+
DataSetDecimalDatasetParameterArgsDict: TypeAlias = Mapping[str, Any]
|
|
94326
|
+
|
|
94327
|
+
@pulumi.input_type
|
|
94328
|
+
class DataSetDecimalDatasetParameterArgs:
|
|
94329
|
+
def __init__(__self__, *,
|
|
94330
|
+
id: pulumi.Input[_builtins.str],
|
|
94331
|
+
name: pulumi.Input[_builtins.str],
|
|
94332
|
+
value_type: pulumi.Input['DataSetDatasetParameterValueType'],
|
|
94333
|
+
default_values: Optional[pulumi.Input['DataSetDecimalDatasetParameterDefaultValuesArgs']] = None):
|
|
94334
|
+
"""
|
|
94335
|
+
<p>A decimal parameter for a dataset.</p>
|
|
94336
|
+
:param pulumi.Input[_builtins.str] id: <p>An identifier for the decimal parameter created in the dataset.</p>
|
|
94337
|
+
:param pulumi.Input[_builtins.str] name: <p>The name of the decimal parameter that is created in the dataset.</p>
|
|
94338
|
+
:param pulumi.Input['DataSetDatasetParameterValueType'] value_type: The value type of the dataset parameter. Valid values are `single value` or `multi value` .
|
|
94339
|
+
:param pulumi.Input['DataSetDecimalDatasetParameterDefaultValuesArgs'] default_values: A list of default values for a given decimal parameter. This structure only accepts static values.
|
|
94340
|
+
"""
|
|
94341
|
+
pulumi.set(__self__, "id", id)
|
|
94342
|
+
pulumi.set(__self__, "name", name)
|
|
94343
|
+
pulumi.set(__self__, "value_type", value_type)
|
|
94344
|
+
if default_values is not None:
|
|
94345
|
+
pulumi.set(__self__, "default_values", default_values)
|
|
94346
|
+
|
|
94347
|
+
@_builtins.property
|
|
94348
|
+
@pulumi.getter
|
|
94349
|
+
def id(self) -> pulumi.Input[_builtins.str]:
|
|
94350
|
+
"""
|
|
94351
|
+
<p>An identifier for the decimal parameter created in the dataset.</p>
|
|
94352
|
+
"""
|
|
94353
|
+
return pulumi.get(self, "id")
|
|
94354
|
+
|
|
94355
|
+
@id.setter
|
|
94356
|
+
def id(self, value: pulumi.Input[_builtins.str]):
|
|
94357
|
+
pulumi.set(self, "id", value)
|
|
94358
|
+
|
|
94359
|
+
@_builtins.property
|
|
94360
|
+
@pulumi.getter
|
|
94361
|
+
def name(self) -> pulumi.Input[_builtins.str]:
|
|
94362
|
+
"""
|
|
94363
|
+
<p>The name of the decimal parameter that is created in the dataset.</p>
|
|
94364
|
+
"""
|
|
94365
|
+
return pulumi.get(self, "name")
|
|
94366
|
+
|
|
94367
|
+
@name.setter
|
|
94368
|
+
def name(self, value: pulumi.Input[_builtins.str]):
|
|
94369
|
+
pulumi.set(self, "name", value)
|
|
94370
|
+
|
|
94371
|
+
@_builtins.property
|
|
94372
|
+
@pulumi.getter(name="valueType")
|
|
94373
|
+
def value_type(self) -> pulumi.Input['DataSetDatasetParameterValueType']:
|
|
94374
|
+
"""
|
|
94375
|
+
The value type of the dataset parameter. Valid values are `single value` or `multi value` .
|
|
94376
|
+
"""
|
|
94377
|
+
return pulumi.get(self, "value_type")
|
|
94378
|
+
|
|
94379
|
+
@value_type.setter
|
|
94380
|
+
def value_type(self, value: pulumi.Input['DataSetDatasetParameterValueType']):
|
|
94381
|
+
pulumi.set(self, "value_type", value)
|
|
94382
|
+
|
|
94383
|
+
@_builtins.property
|
|
94384
|
+
@pulumi.getter(name="defaultValues")
|
|
94385
|
+
def default_values(self) -> Optional[pulumi.Input['DataSetDecimalDatasetParameterDefaultValuesArgs']]:
|
|
93430
94386
|
"""
|
|
93431
|
-
A list of default values for a given
|
|
94387
|
+
A list of default values for a given decimal parameter. This structure only accepts static values.
|
|
93432
94388
|
"""
|
|
93433
94389
|
return pulumi.get(self, "default_values")
|
|
93434
94390
|
|
|
93435
94391
|
@default_values.setter
|
|
93436
|
-
def default_values(self, value: Optional[pulumi.Input['
|
|
94392
|
+
def default_values(self, value: Optional[pulumi.Input['DataSetDecimalDatasetParameterDefaultValuesArgs']]):
|
|
93437
94393
|
pulumi.set(self, "default_values", value)
|
|
93438
94394
|
|
|
93439
|
-
@_builtins.property
|
|
93440
|
-
@pulumi.getter(name="timeGranularity")
|
|
93441
|
-
def time_granularity(self) -> Optional[pulumi.Input['DataSetTimeGranularity']]:
|
|
93442
|
-
"""
|
|
93443
|
-
The time granularity of the date time parameter.
|
|
93444
|
-
"""
|
|
93445
|
-
return pulumi.get(self, "time_granularity")
|
|
93446
|
-
|
|
93447
|
-
@time_granularity.setter
|
|
93448
|
-
def time_granularity(self, value: Optional[pulumi.Input['DataSetTimeGranularity']]):
|
|
93449
|
-
pulumi.set(self, "time_granularity", value)
|
|
93450
|
-
|
|
93451
94395
|
|
|
93452
94396
|
if not MYPY:
|
|
93453
|
-
class
|
|
93454
|
-
|
|
93455
|
-
<p>The default values of a decimal parameter.</p>
|
|
93456
|
-
"""
|
|
93457
|
-
static_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.float]]]]
|
|
93458
|
-
"""
|
|
93459
|
-
<p>A list of static default values for a given decimal parameter.</p>
|
|
93460
|
-
"""
|
|
94397
|
+
class DataSetDestinationTableSourceArgsDict(TypedDict):
|
|
94398
|
+
transform_operation_id: pulumi.Input[_builtins.str]
|
|
93461
94399
|
elif False:
|
|
93462
|
-
|
|
94400
|
+
DataSetDestinationTableSourceArgsDict: TypeAlias = Mapping[str, Any]
|
|
93463
94401
|
|
|
93464
94402
|
@pulumi.input_type
|
|
93465
|
-
class
|
|
94403
|
+
class DataSetDestinationTableSourceArgs:
|
|
93466
94404
|
def __init__(__self__, *,
|
|
93467
|
-
|
|
93468
|
-
""
|
|
93469
|
-
<p>The default values of a decimal parameter.</p>
|
|
93470
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.float]]] static_values: <p>A list of static default values for a given decimal parameter.</p>
|
|
93471
|
-
"""
|
|
93472
|
-
if static_values is not None:
|
|
93473
|
-
pulumi.set(__self__, "static_values", static_values)
|
|
94405
|
+
transform_operation_id: pulumi.Input[_builtins.str]):
|
|
94406
|
+
pulumi.set(__self__, "transform_operation_id", transform_operation_id)
|
|
93474
94407
|
|
|
93475
94408
|
@_builtins.property
|
|
93476
|
-
@pulumi.getter(name="
|
|
93477
|
-
def
|
|
93478
|
-
""
|
|
93479
|
-
<p>A list of static default values for a given decimal parameter.</p>
|
|
93480
|
-
"""
|
|
93481
|
-
return pulumi.get(self, "static_values")
|
|
94409
|
+
@pulumi.getter(name="transformOperationId")
|
|
94410
|
+
def transform_operation_id(self) -> pulumi.Input[_builtins.str]:
|
|
94411
|
+
return pulumi.get(self, "transform_operation_id")
|
|
93482
94412
|
|
|
93483
|
-
@
|
|
93484
|
-
def
|
|
93485
|
-
pulumi.set(self, "
|
|
94413
|
+
@transform_operation_id.setter
|
|
94414
|
+
def transform_operation_id(self, value: pulumi.Input[_builtins.str]):
|
|
94415
|
+
pulumi.set(self, "transform_operation_id", value)
|
|
93486
94416
|
|
|
93487
94417
|
|
|
93488
94418
|
if not MYPY:
|
|
93489
|
-
class
|
|
93490
|
-
|
|
93491
|
-
|
|
93492
|
-
"""
|
|
93493
|
-
id: pulumi.Input[_builtins.str]
|
|
93494
|
-
"""
|
|
93495
|
-
<p>An identifier for the decimal parameter created in the dataset.</p>
|
|
93496
|
-
"""
|
|
93497
|
-
name: pulumi.Input[_builtins.str]
|
|
93498
|
-
"""
|
|
93499
|
-
<p>The name of the decimal parameter that is created in the dataset.</p>
|
|
93500
|
-
"""
|
|
93501
|
-
value_type: pulumi.Input['DataSetDatasetParameterValueType']
|
|
93502
|
-
"""
|
|
93503
|
-
The value type of the dataset parameter. Valid values are `single value` or `multi value` .
|
|
93504
|
-
"""
|
|
93505
|
-
default_values: NotRequired[pulumi.Input['DataSetDecimalDatasetParameterDefaultValuesArgsDict']]
|
|
93506
|
-
"""
|
|
93507
|
-
A list of default values for a given decimal parameter. This structure only accepts static values.
|
|
93508
|
-
"""
|
|
94419
|
+
class DataSetDestinationTableArgsDict(TypedDict):
|
|
94420
|
+
alias: pulumi.Input[_builtins.str]
|
|
94421
|
+
source: pulumi.Input['DataSetDestinationTableSourceArgsDict']
|
|
93509
94422
|
elif False:
|
|
93510
|
-
|
|
94423
|
+
DataSetDestinationTableArgsDict: TypeAlias = Mapping[str, Any]
|
|
93511
94424
|
|
|
93512
94425
|
@pulumi.input_type
|
|
93513
|
-
class
|
|
94426
|
+
class DataSetDestinationTableArgs:
|
|
93514
94427
|
def __init__(__self__, *,
|
|
93515
|
-
|
|
93516
|
-
|
|
93517
|
-
|
|
93518
|
-
|
|
93519
|
-
"""
|
|
93520
|
-
<p>A decimal parameter for a dataset.</p>
|
|
93521
|
-
:param pulumi.Input[_builtins.str] id: <p>An identifier for the decimal parameter created in the dataset.</p>
|
|
93522
|
-
:param pulumi.Input[_builtins.str] name: <p>The name of the decimal parameter that is created in the dataset.</p>
|
|
93523
|
-
:param pulumi.Input['DataSetDatasetParameterValueType'] value_type: The value type of the dataset parameter. Valid values are `single value` or `multi value` .
|
|
93524
|
-
:param pulumi.Input['DataSetDecimalDatasetParameterDefaultValuesArgs'] default_values: A list of default values for a given decimal parameter. This structure only accepts static values.
|
|
93525
|
-
"""
|
|
93526
|
-
pulumi.set(__self__, "id", id)
|
|
93527
|
-
pulumi.set(__self__, "name", name)
|
|
93528
|
-
pulumi.set(__self__, "value_type", value_type)
|
|
93529
|
-
if default_values is not None:
|
|
93530
|
-
pulumi.set(__self__, "default_values", default_values)
|
|
94428
|
+
alias: pulumi.Input[_builtins.str],
|
|
94429
|
+
source: pulumi.Input['DataSetDestinationTableSourceArgs']):
|
|
94430
|
+
pulumi.set(__self__, "alias", alias)
|
|
94431
|
+
pulumi.set(__self__, "source", source)
|
|
93531
94432
|
|
|
93532
94433
|
@_builtins.property
|
|
93533
94434
|
@pulumi.getter
|
|
93534
|
-
def
|
|
93535
|
-
""
|
|
93536
|
-
<p>An identifier for the decimal parameter created in the dataset.</p>
|
|
93537
|
-
"""
|
|
93538
|
-
return pulumi.get(self, "id")
|
|
94435
|
+
def alias(self) -> pulumi.Input[_builtins.str]:
|
|
94436
|
+
return pulumi.get(self, "alias")
|
|
93539
94437
|
|
|
93540
|
-
@
|
|
93541
|
-
def
|
|
93542
|
-
pulumi.set(self, "
|
|
94438
|
+
@alias.setter
|
|
94439
|
+
def alias(self, value: pulumi.Input[_builtins.str]):
|
|
94440
|
+
pulumi.set(self, "alias", value)
|
|
93543
94441
|
|
|
93544
94442
|
@_builtins.property
|
|
93545
94443
|
@pulumi.getter
|
|
93546
|
-
def
|
|
93547
|
-
""
|
|
93548
|
-
<p>The name of the decimal parameter that is created in the dataset.</p>
|
|
93549
|
-
"""
|
|
93550
|
-
return pulumi.get(self, "name")
|
|
93551
|
-
|
|
93552
|
-
@name.setter
|
|
93553
|
-
def name(self, value: pulumi.Input[_builtins.str]):
|
|
93554
|
-
pulumi.set(self, "name", value)
|
|
93555
|
-
|
|
93556
|
-
@_builtins.property
|
|
93557
|
-
@pulumi.getter(name="valueType")
|
|
93558
|
-
def value_type(self) -> pulumi.Input['DataSetDatasetParameterValueType']:
|
|
93559
|
-
"""
|
|
93560
|
-
The value type of the dataset parameter. Valid values are `single value` or `multi value` .
|
|
93561
|
-
"""
|
|
93562
|
-
return pulumi.get(self, "value_type")
|
|
93563
|
-
|
|
93564
|
-
@value_type.setter
|
|
93565
|
-
def value_type(self, value: pulumi.Input['DataSetDatasetParameterValueType']):
|
|
93566
|
-
pulumi.set(self, "value_type", value)
|
|
93567
|
-
|
|
93568
|
-
@_builtins.property
|
|
93569
|
-
@pulumi.getter(name="defaultValues")
|
|
93570
|
-
def default_values(self) -> Optional[pulumi.Input['DataSetDecimalDatasetParameterDefaultValuesArgs']]:
|
|
93571
|
-
"""
|
|
93572
|
-
A list of default values for a given decimal parameter. This structure only accepts static values.
|
|
93573
|
-
"""
|
|
93574
|
-
return pulumi.get(self, "default_values")
|
|
94444
|
+
def source(self) -> pulumi.Input['DataSetDestinationTableSourceArgs']:
|
|
94445
|
+
return pulumi.get(self, "source")
|
|
93575
94446
|
|
|
93576
|
-
@
|
|
93577
|
-
def
|
|
93578
|
-
pulumi.set(self, "
|
|
94447
|
+
@source.setter
|
|
94448
|
+
def source(self, value: pulumi.Input['DataSetDestinationTableSourceArgs']):
|
|
94449
|
+
pulumi.set(self, "source", value)
|
|
93579
94450
|
|
|
93580
94451
|
|
|
93581
94452
|
if not MYPY:
|
|
@@ -93644,13 +94515,19 @@ if not MYPY:
|
|
|
93644
94515
|
<p>An expression that must evaluate to a Boolean value. Rows for which the expression
|
|
93645
94516
|
evaluates to true are kept in the dataset.</p>
|
|
93646
94517
|
"""
|
|
94518
|
+
date_filter_condition: NotRequired[pulumi.Input['DataSetDateFilterConditionArgsDict']]
|
|
94519
|
+
numeric_filter_condition: NotRequired[pulumi.Input['DataSetNumericFilterConditionArgsDict']]
|
|
94520
|
+
string_filter_condition: NotRequired[pulumi.Input['DataSetStringFilterConditionArgsDict']]
|
|
93647
94521
|
elif False:
|
|
93648
94522
|
DataSetFilterOperationArgsDict: TypeAlias = Mapping[str, Any]
|
|
93649
94523
|
|
|
93650
94524
|
@pulumi.input_type
|
|
93651
94525
|
class DataSetFilterOperationArgs:
|
|
93652
94526
|
def __init__(__self__, *,
|
|
93653
|
-
condition_expression: Optional[pulumi.Input[_builtins.str]] = None
|
|
94527
|
+
condition_expression: Optional[pulumi.Input[_builtins.str]] = None,
|
|
94528
|
+
date_filter_condition: Optional[pulumi.Input['DataSetDateFilterConditionArgs']] = None,
|
|
94529
|
+
numeric_filter_condition: Optional[pulumi.Input['DataSetNumericFilterConditionArgs']] = None,
|
|
94530
|
+
string_filter_condition: Optional[pulumi.Input['DataSetStringFilterConditionArgs']] = None):
|
|
93654
94531
|
"""
|
|
93655
94532
|
<p>A transform operation that filters rows based on a condition.</p>
|
|
93656
94533
|
:param pulumi.Input[_builtins.str] condition_expression: <p>An expression that must evaluate to a Boolean value. Rows for which the expression
|
|
@@ -93658,6 +94535,12 @@ class DataSetFilterOperationArgs:
|
|
|
93658
94535
|
"""
|
|
93659
94536
|
if condition_expression is not None:
|
|
93660
94537
|
pulumi.set(__self__, "condition_expression", condition_expression)
|
|
94538
|
+
if date_filter_condition is not None:
|
|
94539
|
+
pulumi.set(__self__, "date_filter_condition", date_filter_condition)
|
|
94540
|
+
if numeric_filter_condition is not None:
|
|
94541
|
+
pulumi.set(__self__, "numeric_filter_condition", numeric_filter_condition)
|
|
94542
|
+
if string_filter_condition is not None:
|
|
94543
|
+
pulumi.set(__self__, "string_filter_condition", string_filter_condition)
|
|
93661
94544
|
|
|
93662
94545
|
@_builtins.property
|
|
93663
94546
|
@pulumi.getter(name="conditionExpression")
|
|
@@ -93672,6 +94555,79 @@ class DataSetFilterOperationArgs:
|
|
|
93672
94555
|
def condition_expression(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
93673
94556
|
pulumi.set(self, "condition_expression", value)
|
|
93674
94557
|
|
|
94558
|
+
@_builtins.property
|
|
94559
|
+
@pulumi.getter(name="dateFilterCondition")
|
|
94560
|
+
def date_filter_condition(self) -> Optional[pulumi.Input['DataSetDateFilterConditionArgs']]:
|
|
94561
|
+
return pulumi.get(self, "date_filter_condition")
|
|
94562
|
+
|
|
94563
|
+
@date_filter_condition.setter
|
|
94564
|
+
def date_filter_condition(self, value: Optional[pulumi.Input['DataSetDateFilterConditionArgs']]):
|
|
94565
|
+
pulumi.set(self, "date_filter_condition", value)
|
|
94566
|
+
|
|
94567
|
+
@_builtins.property
|
|
94568
|
+
@pulumi.getter(name="numericFilterCondition")
|
|
94569
|
+
def numeric_filter_condition(self) -> Optional[pulumi.Input['DataSetNumericFilterConditionArgs']]:
|
|
94570
|
+
return pulumi.get(self, "numeric_filter_condition")
|
|
94571
|
+
|
|
94572
|
+
@numeric_filter_condition.setter
|
|
94573
|
+
def numeric_filter_condition(self, value: Optional[pulumi.Input['DataSetNumericFilterConditionArgs']]):
|
|
94574
|
+
pulumi.set(self, "numeric_filter_condition", value)
|
|
94575
|
+
|
|
94576
|
+
@_builtins.property
|
|
94577
|
+
@pulumi.getter(name="stringFilterCondition")
|
|
94578
|
+
def string_filter_condition(self) -> Optional[pulumi.Input['DataSetStringFilterConditionArgs']]:
|
|
94579
|
+
return pulumi.get(self, "string_filter_condition")
|
|
94580
|
+
|
|
94581
|
+
@string_filter_condition.setter
|
|
94582
|
+
def string_filter_condition(self, value: Optional[pulumi.Input['DataSetStringFilterConditionArgs']]):
|
|
94583
|
+
pulumi.set(self, "string_filter_condition", value)
|
|
94584
|
+
|
|
94585
|
+
|
|
94586
|
+
if not MYPY:
|
|
94587
|
+
class DataSetFiltersOperationArgsDict(TypedDict):
|
|
94588
|
+
alias: pulumi.Input[_builtins.str]
|
|
94589
|
+
filter_operations: pulumi.Input[Sequence[pulumi.Input['DataSetFilterOperationArgsDict']]]
|
|
94590
|
+
source: pulumi.Input['DataSetTransformOperationSourceArgsDict']
|
|
94591
|
+
elif False:
|
|
94592
|
+
DataSetFiltersOperationArgsDict: TypeAlias = Mapping[str, Any]
|
|
94593
|
+
|
|
94594
|
+
@pulumi.input_type
|
|
94595
|
+
class DataSetFiltersOperationArgs:
|
|
94596
|
+
def __init__(__self__, *,
|
|
94597
|
+
alias: pulumi.Input[_builtins.str],
|
|
94598
|
+
filter_operations: pulumi.Input[Sequence[pulumi.Input['DataSetFilterOperationArgs']]],
|
|
94599
|
+
source: pulumi.Input['DataSetTransformOperationSourceArgs']):
|
|
94600
|
+
pulumi.set(__self__, "alias", alias)
|
|
94601
|
+
pulumi.set(__self__, "filter_operations", filter_operations)
|
|
94602
|
+
pulumi.set(__self__, "source", source)
|
|
94603
|
+
|
|
94604
|
+
@_builtins.property
|
|
94605
|
+
@pulumi.getter
|
|
94606
|
+
def alias(self) -> pulumi.Input[_builtins.str]:
|
|
94607
|
+
return pulumi.get(self, "alias")
|
|
94608
|
+
|
|
94609
|
+
@alias.setter
|
|
94610
|
+
def alias(self, value: pulumi.Input[_builtins.str]):
|
|
94611
|
+
pulumi.set(self, "alias", value)
|
|
94612
|
+
|
|
94613
|
+
@_builtins.property
|
|
94614
|
+
@pulumi.getter(name="filterOperations")
|
|
94615
|
+
def filter_operations(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetFilterOperationArgs']]]:
|
|
94616
|
+
return pulumi.get(self, "filter_operations")
|
|
94617
|
+
|
|
94618
|
+
@filter_operations.setter
|
|
94619
|
+
def filter_operations(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetFilterOperationArgs']]]):
|
|
94620
|
+
pulumi.set(self, "filter_operations", value)
|
|
94621
|
+
|
|
94622
|
+
@_builtins.property
|
|
94623
|
+
@pulumi.getter
|
|
94624
|
+
def source(self) -> pulumi.Input['DataSetTransformOperationSourceArgs']:
|
|
94625
|
+
return pulumi.get(self, "source")
|
|
94626
|
+
|
|
94627
|
+
@source.setter
|
|
94628
|
+
def source(self, value: pulumi.Input['DataSetTransformOperationSourceArgs']):
|
|
94629
|
+
pulumi.set(self, "source", value)
|
|
94630
|
+
|
|
93675
94631
|
|
|
93676
94632
|
if not MYPY:
|
|
93677
94633
|
class DataSetGeoSpatialColumnGroupArgsDict(TypedDict):
|
|
@@ -93747,6 +94703,75 @@ class DataSetGeoSpatialColumnGroupArgs:
|
|
|
93747
94703
|
pulumi.set(self, "country_code", value)
|
|
93748
94704
|
|
|
93749
94705
|
|
|
94706
|
+
if not MYPY:
|
|
94707
|
+
class DataSetImportTableOperationSourceArgsDict(TypedDict):
|
|
94708
|
+
source_table_id: pulumi.Input[_builtins.str]
|
|
94709
|
+
column_id_mappings: NotRequired[pulumi.Input[Sequence[pulumi.Input['DataSetColumnIdMappingArgsDict']]]]
|
|
94710
|
+
elif False:
|
|
94711
|
+
DataSetImportTableOperationSourceArgsDict: TypeAlias = Mapping[str, Any]
|
|
94712
|
+
|
|
94713
|
+
@pulumi.input_type
|
|
94714
|
+
class DataSetImportTableOperationSourceArgs:
|
|
94715
|
+
def __init__(__self__, *,
|
|
94716
|
+
source_table_id: pulumi.Input[_builtins.str],
|
|
94717
|
+
column_id_mappings: Optional[pulumi.Input[Sequence[pulumi.Input['DataSetColumnIdMappingArgs']]]] = None):
|
|
94718
|
+
pulumi.set(__self__, "source_table_id", source_table_id)
|
|
94719
|
+
if column_id_mappings is not None:
|
|
94720
|
+
pulumi.set(__self__, "column_id_mappings", column_id_mappings)
|
|
94721
|
+
|
|
94722
|
+
@_builtins.property
|
|
94723
|
+
@pulumi.getter(name="sourceTableId")
|
|
94724
|
+
def source_table_id(self) -> pulumi.Input[_builtins.str]:
|
|
94725
|
+
return pulumi.get(self, "source_table_id")
|
|
94726
|
+
|
|
94727
|
+
@source_table_id.setter
|
|
94728
|
+
def source_table_id(self, value: pulumi.Input[_builtins.str]):
|
|
94729
|
+
pulumi.set(self, "source_table_id", value)
|
|
94730
|
+
|
|
94731
|
+
@_builtins.property
|
|
94732
|
+
@pulumi.getter(name="columnIdMappings")
|
|
94733
|
+
def column_id_mappings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DataSetColumnIdMappingArgs']]]]:
|
|
94734
|
+
return pulumi.get(self, "column_id_mappings")
|
|
94735
|
+
|
|
94736
|
+
@column_id_mappings.setter
|
|
94737
|
+
def column_id_mappings(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DataSetColumnIdMappingArgs']]]]):
|
|
94738
|
+
pulumi.set(self, "column_id_mappings", value)
|
|
94739
|
+
|
|
94740
|
+
|
|
94741
|
+
if not MYPY:
|
|
94742
|
+
class DataSetImportTableOperationArgsDict(TypedDict):
|
|
94743
|
+
alias: pulumi.Input[_builtins.str]
|
|
94744
|
+
source: pulumi.Input['DataSetImportTableOperationSourceArgsDict']
|
|
94745
|
+
elif False:
|
|
94746
|
+
DataSetImportTableOperationArgsDict: TypeAlias = Mapping[str, Any]
|
|
94747
|
+
|
|
94748
|
+
@pulumi.input_type
|
|
94749
|
+
class DataSetImportTableOperationArgs:
|
|
94750
|
+
def __init__(__self__, *,
|
|
94751
|
+
alias: pulumi.Input[_builtins.str],
|
|
94752
|
+
source: pulumi.Input['DataSetImportTableOperationSourceArgs']):
|
|
94753
|
+
pulumi.set(__self__, "alias", alias)
|
|
94754
|
+
pulumi.set(__self__, "source", source)
|
|
94755
|
+
|
|
94756
|
+
@_builtins.property
|
|
94757
|
+
@pulumi.getter
|
|
94758
|
+
def alias(self) -> pulumi.Input[_builtins.str]:
|
|
94759
|
+
return pulumi.get(self, "alias")
|
|
94760
|
+
|
|
94761
|
+
@alias.setter
|
|
94762
|
+
def alias(self, value: pulumi.Input[_builtins.str]):
|
|
94763
|
+
pulumi.set(self, "alias", value)
|
|
94764
|
+
|
|
94765
|
+
@_builtins.property
|
|
94766
|
+
@pulumi.getter
|
|
94767
|
+
def source(self) -> pulumi.Input['DataSetImportTableOperationSourceArgs']:
|
|
94768
|
+
return pulumi.get(self, "source")
|
|
94769
|
+
|
|
94770
|
+
@source.setter
|
|
94771
|
+
def source(self, value: pulumi.Input['DataSetImportTableOperationSourceArgs']):
|
|
94772
|
+
pulumi.set(self, "source", value)
|
|
94773
|
+
|
|
94774
|
+
|
|
93750
94775
|
if not MYPY:
|
|
93751
94776
|
class DataSetIncrementalRefreshArgsDict(TypedDict):
|
|
93752
94777
|
"""
|
|
@@ -93857,6 +94882,7 @@ if not MYPY:
|
|
|
93857
94882
|
"""
|
|
93858
94883
|
The data type of the column.
|
|
93859
94884
|
"""
|
|
94885
|
+
id: NotRequired[pulumi.Input[_builtins.str]]
|
|
93860
94886
|
sub_type: NotRequired[pulumi.Input['DataSetColumnDataSubType']]
|
|
93861
94887
|
"""
|
|
93862
94888
|
The sub data type of the column. Sub types are only available for decimal columns that are part of a SPICE dataset.
|
|
@@ -93869,6 +94895,7 @@ class DataSetInputColumnArgs:
|
|
|
93869
94895
|
def __init__(__self__, *,
|
|
93870
94896
|
name: pulumi.Input[_builtins.str],
|
|
93871
94897
|
type: pulumi.Input['DataSetInputColumnDataType'],
|
|
94898
|
+
id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
93872
94899
|
sub_type: Optional[pulumi.Input['DataSetColumnDataSubType']] = None):
|
|
93873
94900
|
"""
|
|
93874
94901
|
<p>Metadata for a column that is used as the input of a transform operation.</p>
|
|
@@ -93878,6 +94905,8 @@ class DataSetInputColumnArgs:
|
|
|
93878
94905
|
"""
|
|
93879
94906
|
pulumi.set(__self__, "name", name)
|
|
93880
94907
|
pulumi.set(__self__, "type", type)
|
|
94908
|
+
if id is not None:
|
|
94909
|
+
pulumi.set(__self__, "id", id)
|
|
93881
94910
|
if sub_type is not None:
|
|
93882
94911
|
pulumi.set(__self__, "sub_type", sub_type)
|
|
93883
94912
|
|
|
@@ -93905,6 +94934,15 @@ class DataSetInputColumnArgs:
|
|
|
93905
94934
|
def type(self, value: pulumi.Input['DataSetInputColumnDataType']):
|
|
93906
94935
|
pulumi.set(self, "type", value)
|
|
93907
94936
|
|
|
94937
|
+
@_builtins.property
|
|
94938
|
+
@pulumi.getter
|
|
94939
|
+
def id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
94940
|
+
return pulumi.get(self, "id")
|
|
94941
|
+
|
|
94942
|
+
@id.setter
|
|
94943
|
+
def id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
94944
|
+
pulumi.set(self, "id", value)
|
|
94945
|
+
|
|
93908
94946
|
@_builtins.property
|
|
93909
94947
|
@pulumi.getter(name="subType")
|
|
93910
94948
|
def sub_type(self) -> Optional[pulumi.Input['DataSetColumnDataSubType']]:
|
|
@@ -93923,7 +94961,7 @@ if not MYPY:
|
|
|
93923
94961
|
"""
|
|
93924
94962
|
<p>The default values of an integer parameter.</p>
|
|
93925
94963
|
"""
|
|
93926
|
-
static_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.
|
|
94964
|
+
static_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]]
|
|
93927
94965
|
"""
|
|
93928
94966
|
<p>A list of static default values for a given integer parameter.</p>
|
|
93929
94967
|
"""
|
|
@@ -93933,24 +94971,24 @@ elif False:
|
|
|
93933
94971
|
@pulumi.input_type
|
|
93934
94972
|
class DataSetIntegerDatasetParameterDefaultValuesArgs:
|
|
93935
94973
|
def __init__(__self__, *,
|
|
93936
|
-
static_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.
|
|
94974
|
+
static_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]] = None):
|
|
93937
94975
|
"""
|
|
93938
94976
|
<p>The default values of an integer parameter.</p>
|
|
93939
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.
|
|
94977
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.int]]] static_values: <p>A list of static default values for a given integer parameter.</p>
|
|
93940
94978
|
"""
|
|
93941
94979
|
if static_values is not None:
|
|
93942
94980
|
pulumi.set(__self__, "static_values", static_values)
|
|
93943
94981
|
|
|
93944
94982
|
@_builtins.property
|
|
93945
94983
|
@pulumi.getter(name="staticValues")
|
|
93946
|
-
def static_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.
|
|
94984
|
+
def static_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]]:
|
|
93947
94985
|
"""
|
|
93948
94986
|
<p>A list of static default values for a given integer parameter.</p>
|
|
93949
94987
|
"""
|
|
93950
94988
|
return pulumi.get(self, "static_values")
|
|
93951
94989
|
|
|
93952
94990
|
@static_values.setter
|
|
93953
|
-
def static_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.
|
|
94991
|
+
def static_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]]):
|
|
93954
94992
|
pulumi.set(self, "static_values", value)
|
|
93955
94993
|
|
|
93956
94994
|
|
|
@@ -94218,6 +95256,124 @@ class DataSetJoinKeyPropertiesArgs:
|
|
|
94218
95256
|
pulumi.set(self, "unique_key", value)
|
|
94219
95257
|
|
|
94220
95258
|
|
|
95259
|
+
if not MYPY:
|
|
95260
|
+
class DataSetJoinOperandPropertiesArgsDict(TypedDict):
|
|
95261
|
+
output_column_name_overrides: pulumi.Input[Sequence[pulumi.Input['DataSetOutputColumnNameOverrideArgsDict']]]
|
|
95262
|
+
elif False:
|
|
95263
|
+
DataSetJoinOperandPropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
95264
|
+
|
|
95265
|
+
@pulumi.input_type
|
|
95266
|
+
class DataSetJoinOperandPropertiesArgs:
|
|
95267
|
+
def __init__(__self__, *,
|
|
95268
|
+
output_column_name_overrides: pulumi.Input[Sequence[pulumi.Input['DataSetOutputColumnNameOverrideArgs']]]):
|
|
95269
|
+
pulumi.set(__self__, "output_column_name_overrides", output_column_name_overrides)
|
|
95270
|
+
|
|
95271
|
+
@_builtins.property
|
|
95272
|
+
@pulumi.getter(name="outputColumnNameOverrides")
|
|
95273
|
+
def output_column_name_overrides(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetOutputColumnNameOverrideArgs']]]:
|
|
95274
|
+
return pulumi.get(self, "output_column_name_overrides")
|
|
95275
|
+
|
|
95276
|
+
@output_column_name_overrides.setter
|
|
95277
|
+
def output_column_name_overrides(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetOutputColumnNameOverrideArgs']]]):
|
|
95278
|
+
pulumi.set(self, "output_column_name_overrides", value)
|
|
95279
|
+
|
|
95280
|
+
|
|
95281
|
+
if not MYPY:
|
|
95282
|
+
class DataSetJoinOperationArgsDict(TypedDict):
|
|
95283
|
+
alias: pulumi.Input[_builtins.str]
|
|
95284
|
+
left_operand: pulumi.Input['DataSetTransformOperationSourceArgsDict']
|
|
95285
|
+
on_clause: pulumi.Input[_builtins.str]
|
|
95286
|
+
right_operand: pulumi.Input['DataSetTransformOperationSourceArgsDict']
|
|
95287
|
+
type: pulumi.Input['DataSetJoinOperationType']
|
|
95288
|
+
left_operand_properties: NotRequired[pulumi.Input['DataSetJoinOperandPropertiesArgsDict']]
|
|
95289
|
+
right_operand_properties: NotRequired[pulumi.Input['DataSetJoinOperandPropertiesArgsDict']]
|
|
95290
|
+
elif False:
|
|
95291
|
+
DataSetJoinOperationArgsDict: TypeAlias = Mapping[str, Any]
|
|
95292
|
+
|
|
95293
|
+
@pulumi.input_type
|
|
95294
|
+
class DataSetJoinOperationArgs:
|
|
95295
|
+
def __init__(__self__, *,
|
|
95296
|
+
alias: pulumi.Input[_builtins.str],
|
|
95297
|
+
left_operand: pulumi.Input['DataSetTransformOperationSourceArgs'],
|
|
95298
|
+
on_clause: pulumi.Input[_builtins.str],
|
|
95299
|
+
right_operand: pulumi.Input['DataSetTransformOperationSourceArgs'],
|
|
95300
|
+
type: pulumi.Input['DataSetJoinOperationType'],
|
|
95301
|
+
left_operand_properties: Optional[pulumi.Input['DataSetJoinOperandPropertiesArgs']] = None,
|
|
95302
|
+
right_operand_properties: Optional[pulumi.Input['DataSetJoinOperandPropertiesArgs']] = None):
|
|
95303
|
+
pulumi.set(__self__, "alias", alias)
|
|
95304
|
+
pulumi.set(__self__, "left_operand", left_operand)
|
|
95305
|
+
pulumi.set(__self__, "on_clause", on_clause)
|
|
95306
|
+
pulumi.set(__self__, "right_operand", right_operand)
|
|
95307
|
+
pulumi.set(__self__, "type", type)
|
|
95308
|
+
if left_operand_properties is not None:
|
|
95309
|
+
pulumi.set(__self__, "left_operand_properties", left_operand_properties)
|
|
95310
|
+
if right_operand_properties is not None:
|
|
95311
|
+
pulumi.set(__self__, "right_operand_properties", right_operand_properties)
|
|
95312
|
+
|
|
95313
|
+
@_builtins.property
|
|
95314
|
+
@pulumi.getter
|
|
95315
|
+
def alias(self) -> pulumi.Input[_builtins.str]:
|
|
95316
|
+
return pulumi.get(self, "alias")
|
|
95317
|
+
|
|
95318
|
+
@alias.setter
|
|
95319
|
+
def alias(self, value: pulumi.Input[_builtins.str]):
|
|
95320
|
+
pulumi.set(self, "alias", value)
|
|
95321
|
+
|
|
95322
|
+
@_builtins.property
|
|
95323
|
+
@pulumi.getter(name="leftOperand")
|
|
95324
|
+
def left_operand(self) -> pulumi.Input['DataSetTransformOperationSourceArgs']:
|
|
95325
|
+
return pulumi.get(self, "left_operand")
|
|
95326
|
+
|
|
95327
|
+
@left_operand.setter
|
|
95328
|
+
def left_operand(self, value: pulumi.Input['DataSetTransformOperationSourceArgs']):
|
|
95329
|
+
pulumi.set(self, "left_operand", value)
|
|
95330
|
+
|
|
95331
|
+
@_builtins.property
|
|
95332
|
+
@pulumi.getter(name="onClause")
|
|
95333
|
+
def on_clause(self) -> pulumi.Input[_builtins.str]:
|
|
95334
|
+
return pulumi.get(self, "on_clause")
|
|
95335
|
+
|
|
95336
|
+
@on_clause.setter
|
|
95337
|
+
def on_clause(self, value: pulumi.Input[_builtins.str]):
|
|
95338
|
+
pulumi.set(self, "on_clause", value)
|
|
95339
|
+
|
|
95340
|
+
@_builtins.property
|
|
95341
|
+
@pulumi.getter(name="rightOperand")
|
|
95342
|
+
def right_operand(self) -> pulumi.Input['DataSetTransformOperationSourceArgs']:
|
|
95343
|
+
return pulumi.get(self, "right_operand")
|
|
95344
|
+
|
|
95345
|
+
@right_operand.setter
|
|
95346
|
+
def right_operand(self, value: pulumi.Input['DataSetTransformOperationSourceArgs']):
|
|
95347
|
+
pulumi.set(self, "right_operand", value)
|
|
95348
|
+
|
|
95349
|
+
@_builtins.property
|
|
95350
|
+
@pulumi.getter
|
|
95351
|
+
def type(self) -> pulumi.Input['DataSetJoinOperationType']:
|
|
95352
|
+
return pulumi.get(self, "type")
|
|
95353
|
+
|
|
95354
|
+
@type.setter
|
|
95355
|
+
def type(self, value: pulumi.Input['DataSetJoinOperationType']):
|
|
95356
|
+
pulumi.set(self, "type", value)
|
|
95357
|
+
|
|
95358
|
+
@_builtins.property
|
|
95359
|
+
@pulumi.getter(name="leftOperandProperties")
|
|
95360
|
+
def left_operand_properties(self) -> Optional[pulumi.Input['DataSetJoinOperandPropertiesArgs']]:
|
|
95361
|
+
return pulumi.get(self, "left_operand_properties")
|
|
95362
|
+
|
|
95363
|
+
@left_operand_properties.setter
|
|
95364
|
+
def left_operand_properties(self, value: Optional[pulumi.Input['DataSetJoinOperandPropertiesArgs']]):
|
|
95365
|
+
pulumi.set(self, "left_operand_properties", value)
|
|
95366
|
+
|
|
95367
|
+
@_builtins.property
|
|
95368
|
+
@pulumi.getter(name="rightOperandProperties")
|
|
95369
|
+
def right_operand_properties(self) -> Optional[pulumi.Input['DataSetJoinOperandPropertiesArgs']]:
|
|
95370
|
+
return pulumi.get(self, "right_operand_properties")
|
|
95371
|
+
|
|
95372
|
+
@right_operand_properties.setter
|
|
95373
|
+
def right_operand_properties(self, value: Optional[pulumi.Input['DataSetJoinOperandPropertiesArgs']]):
|
|
95374
|
+
pulumi.set(self, "right_operand_properties", value)
|
|
95375
|
+
|
|
95376
|
+
|
|
94221
95377
|
if not MYPY:
|
|
94222
95378
|
class DataSetLogicalTableSourceArgsDict(TypedDict):
|
|
94223
95379
|
"""
|
|
@@ -94308,14 +95464,11 @@ if not MYPY:
|
|
|
94308
95464
|
"""
|
|
94309
95465
|
<p>A display name for the logical table.</p>
|
|
94310
95466
|
"""
|
|
95467
|
+
source: pulumi.Input['DataSetLogicalTableSourceArgsDict']
|
|
94311
95468
|
data_transforms: NotRequired[pulumi.Input[Sequence[pulumi.Input['DataSetTransformOperationArgsDict']]]]
|
|
94312
95469
|
"""
|
|
94313
95470
|
<p>Transform operations that act on this logical table. For this structure to be valid, only one of the attributes can be non-null. </p>
|
|
94314
95471
|
"""
|
|
94315
|
-
source: NotRequired[pulumi.Input['DataSetLogicalTableSourceArgsDict']]
|
|
94316
|
-
"""
|
|
94317
|
-
Source of this logical table.
|
|
94318
|
-
"""
|
|
94319
95472
|
elif False:
|
|
94320
95473
|
DataSetLogicalTableArgsDict: TypeAlias = Mapping[str, Any]
|
|
94321
95474
|
|
|
@@ -94323,8 +95476,8 @@ elif False:
|
|
|
94323
95476
|
class DataSetLogicalTableArgs:
|
|
94324
95477
|
def __init__(__self__, *,
|
|
94325
95478
|
alias: pulumi.Input[_builtins.str],
|
|
94326
|
-
|
|
94327
|
-
|
|
95479
|
+
source: pulumi.Input['DataSetLogicalTableSourceArgs'],
|
|
95480
|
+
data_transforms: Optional[pulumi.Input[Sequence[pulumi.Input['DataSetTransformOperationArgs']]]] = None):
|
|
94328
95481
|
"""
|
|
94329
95482
|
<p>A <i>logical table</i> is a unit that joins and that data
|
|
94330
95483
|
transformations operate on. A logical table has a source, which can be either a physical
|
|
@@ -94332,13 +95485,11 @@ class DataSetLogicalTableArgs:
|
|
|
94332
95485
|
table acts as a mutable copy of that physical table through transform operations.</p>
|
|
94333
95486
|
:param pulumi.Input[_builtins.str] alias: <p>A display name for the logical table.</p>
|
|
94334
95487
|
:param pulumi.Input[Sequence[pulumi.Input['DataSetTransformOperationArgs']]] data_transforms: <p>Transform operations that act on this logical table. For this structure to be valid, only one of the attributes can be non-null. </p>
|
|
94335
|
-
:param pulumi.Input['DataSetLogicalTableSourceArgs'] source: Source of this logical table.
|
|
94336
95488
|
"""
|
|
94337
95489
|
pulumi.set(__self__, "alias", alias)
|
|
95490
|
+
pulumi.set(__self__, "source", source)
|
|
94338
95491
|
if data_transforms is not None:
|
|
94339
95492
|
pulumi.set(__self__, "data_transforms", data_transforms)
|
|
94340
|
-
if source is not None:
|
|
94341
|
-
pulumi.set(__self__, "source", source)
|
|
94342
95493
|
|
|
94343
95494
|
@_builtins.property
|
|
94344
95495
|
@pulumi.getter
|
|
@@ -94352,6 +95503,15 @@ class DataSetLogicalTableArgs:
|
|
|
94352
95503
|
def alias(self, value: pulumi.Input[_builtins.str]):
|
|
94353
95504
|
pulumi.set(self, "alias", value)
|
|
94354
95505
|
|
|
95506
|
+
@_builtins.property
|
|
95507
|
+
@pulumi.getter
|
|
95508
|
+
def source(self) -> pulumi.Input['DataSetLogicalTableSourceArgs']:
|
|
95509
|
+
return pulumi.get(self, "source")
|
|
95510
|
+
|
|
95511
|
+
@source.setter
|
|
95512
|
+
def source(self, value: pulumi.Input['DataSetLogicalTableSourceArgs']):
|
|
95513
|
+
pulumi.set(self, "source", value)
|
|
95514
|
+
|
|
94355
95515
|
@_builtins.property
|
|
94356
95516
|
@pulumi.getter(name="dataTransforms")
|
|
94357
95517
|
def data_transforms(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DataSetTransformOperationArgs']]]]:
|
|
@@ -94364,18 +95524,6 @@ class DataSetLogicalTableArgs:
|
|
|
94364
95524
|
def data_transforms(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DataSetTransformOperationArgs']]]]):
|
|
94365
95525
|
pulumi.set(self, "data_transforms", value)
|
|
94366
95526
|
|
|
94367
|
-
@_builtins.property
|
|
94368
|
-
@pulumi.getter
|
|
94369
|
-
def source(self) -> Optional[pulumi.Input['DataSetLogicalTableSourceArgs']]:
|
|
94370
|
-
"""
|
|
94371
|
-
Source of this logical table.
|
|
94372
|
-
"""
|
|
94373
|
-
return pulumi.get(self, "source")
|
|
94374
|
-
|
|
94375
|
-
@source.setter
|
|
94376
|
-
def source(self, value: Optional[pulumi.Input['DataSetLogicalTableSourceArgs']]):
|
|
94377
|
-
pulumi.set(self, "source", value)
|
|
94378
|
-
|
|
94379
95527
|
|
|
94380
95528
|
if not MYPY:
|
|
94381
95529
|
class DataSetLookbackWindowArgsDict(TypedDict):
|
|
@@ -94463,7 +95611,7 @@ if not MYPY:
|
|
|
94463
95611
|
"""
|
|
94464
95612
|
<p>A list of static default values for a given decimal parameter.</p>
|
|
94465
95613
|
"""
|
|
94466
|
-
integer_static_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.
|
|
95614
|
+
integer_static_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]]
|
|
94467
95615
|
"""
|
|
94468
95616
|
<p>A list of static default values for a given integer parameter.</p>
|
|
94469
95617
|
"""
|
|
@@ -94479,13 +95627,13 @@ class DataSetNewDefaultValuesArgs:
|
|
|
94479
95627
|
def __init__(__self__, *,
|
|
94480
95628
|
date_time_static_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
94481
95629
|
decimal_static_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.float]]]] = None,
|
|
94482
|
-
integer_static_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.
|
|
95630
|
+
integer_static_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]] = None,
|
|
94483
95631
|
string_static_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
94484
95632
|
"""
|
|
94485
95633
|
<p>The configuration that overrides the existing default values for a dataset parameter that is inherited from another dataset.</p>
|
|
94486
95634
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] date_time_static_values: <p>A list of static default values for a given date time parameter.</p>
|
|
94487
95635
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.float]]] decimal_static_values: <p>A list of static default values for a given decimal parameter.</p>
|
|
94488
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.
|
|
95636
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.int]]] integer_static_values: <p>A list of static default values for a given integer parameter.</p>
|
|
94489
95637
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] string_static_values: <p>A list of static default values for a given string parameter.</p>
|
|
94490
95638
|
"""
|
|
94491
95639
|
if date_time_static_values is not None:
|
|
@@ -94523,14 +95671,14 @@ class DataSetNewDefaultValuesArgs:
|
|
|
94523
95671
|
|
|
94524
95672
|
@_builtins.property
|
|
94525
95673
|
@pulumi.getter(name="integerStaticValues")
|
|
94526
|
-
def integer_static_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.
|
|
95674
|
+
def integer_static_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]]:
|
|
94527
95675
|
"""
|
|
94528
95676
|
<p>A list of static default values for a given integer parameter.</p>
|
|
94529
95677
|
"""
|
|
94530
95678
|
return pulumi.get(self, "integer_static_values")
|
|
94531
95679
|
|
|
94532
95680
|
@integer_static_values.setter
|
|
94533
|
-
def integer_static_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.
|
|
95681
|
+
def integer_static_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]]):
|
|
94534
95682
|
pulumi.set(self, "integer_static_values", value)
|
|
94535
95683
|
|
|
94536
95684
|
@_builtins.property
|
|
@@ -94546,6 +95694,210 @@ class DataSetNewDefaultValuesArgs:
|
|
|
94546
95694
|
pulumi.set(self, "string_static_values", value)
|
|
94547
95695
|
|
|
94548
95696
|
|
|
95697
|
+
if not MYPY:
|
|
95698
|
+
class DataSetNumericComparisonFilterConditionArgsDict(TypedDict):
|
|
95699
|
+
operator: pulumi.Input['DataSetNumericComparisonFilterOperator']
|
|
95700
|
+
value: NotRequired[pulumi.Input['DataSetNumericFilterValueArgsDict']]
|
|
95701
|
+
elif False:
|
|
95702
|
+
DataSetNumericComparisonFilterConditionArgsDict: TypeAlias = Mapping[str, Any]
|
|
95703
|
+
|
|
95704
|
+
@pulumi.input_type
|
|
95705
|
+
class DataSetNumericComparisonFilterConditionArgs:
|
|
95706
|
+
def __init__(__self__, *,
|
|
95707
|
+
operator: pulumi.Input['DataSetNumericComparisonFilterOperator'],
|
|
95708
|
+
value: Optional[pulumi.Input['DataSetNumericFilterValueArgs']] = None):
|
|
95709
|
+
pulumi.set(__self__, "operator", operator)
|
|
95710
|
+
if value is not None:
|
|
95711
|
+
pulumi.set(__self__, "value", value)
|
|
95712
|
+
|
|
95713
|
+
@_builtins.property
|
|
95714
|
+
@pulumi.getter
|
|
95715
|
+
def operator(self) -> pulumi.Input['DataSetNumericComparisonFilterOperator']:
|
|
95716
|
+
return pulumi.get(self, "operator")
|
|
95717
|
+
|
|
95718
|
+
@operator.setter
|
|
95719
|
+
def operator(self, value: pulumi.Input['DataSetNumericComparisonFilterOperator']):
|
|
95720
|
+
pulumi.set(self, "operator", value)
|
|
95721
|
+
|
|
95722
|
+
@_builtins.property
|
|
95723
|
+
@pulumi.getter
|
|
95724
|
+
def value(self) -> Optional[pulumi.Input['DataSetNumericFilterValueArgs']]:
|
|
95725
|
+
return pulumi.get(self, "value")
|
|
95726
|
+
|
|
95727
|
+
@value.setter
|
|
95728
|
+
def value(self, value: Optional[pulumi.Input['DataSetNumericFilterValueArgs']]):
|
|
95729
|
+
pulumi.set(self, "value", value)
|
|
95730
|
+
|
|
95731
|
+
|
|
95732
|
+
if not MYPY:
|
|
95733
|
+
class DataSetNumericFilterConditionArgsDict(TypedDict):
|
|
95734
|
+
column_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
95735
|
+
comparison_filter_condition: NotRequired[pulumi.Input['DataSetNumericComparisonFilterConditionArgsDict']]
|
|
95736
|
+
range_filter_condition: NotRequired[pulumi.Input['DataSetNumericRangeFilterConditionArgsDict']]
|
|
95737
|
+
elif False:
|
|
95738
|
+
DataSetNumericFilterConditionArgsDict: TypeAlias = Mapping[str, Any]
|
|
95739
|
+
|
|
95740
|
+
@pulumi.input_type
|
|
95741
|
+
class DataSetNumericFilterConditionArgs:
|
|
95742
|
+
def __init__(__self__, *,
|
|
95743
|
+
column_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
95744
|
+
comparison_filter_condition: Optional[pulumi.Input['DataSetNumericComparisonFilterConditionArgs']] = None,
|
|
95745
|
+
range_filter_condition: Optional[pulumi.Input['DataSetNumericRangeFilterConditionArgs']] = None):
|
|
95746
|
+
if column_name is not None:
|
|
95747
|
+
pulumi.set(__self__, "column_name", column_name)
|
|
95748
|
+
if comparison_filter_condition is not None:
|
|
95749
|
+
pulumi.set(__self__, "comparison_filter_condition", comparison_filter_condition)
|
|
95750
|
+
if range_filter_condition is not None:
|
|
95751
|
+
pulumi.set(__self__, "range_filter_condition", range_filter_condition)
|
|
95752
|
+
|
|
95753
|
+
@_builtins.property
|
|
95754
|
+
@pulumi.getter(name="columnName")
|
|
95755
|
+
def column_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
95756
|
+
return pulumi.get(self, "column_name")
|
|
95757
|
+
|
|
95758
|
+
@column_name.setter
|
|
95759
|
+
def column_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
95760
|
+
pulumi.set(self, "column_name", value)
|
|
95761
|
+
|
|
95762
|
+
@_builtins.property
|
|
95763
|
+
@pulumi.getter(name="comparisonFilterCondition")
|
|
95764
|
+
def comparison_filter_condition(self) -> Optional[pulumi.Input['DataSetNumericComparisonFilterConditionArgs']]:
|
|
95765
|
+
return pulumi.get(self, "comparison_filter_condition")
|
|
95766
|
+
|
|
95767
|
+
@comparison_filter_condition.setter
|
|
95768
|
+
def comparison_filter_condition(self, value: Optional[pulumi.Input['DataSetNumericComparisonFilterConditionArgs']]):
|
|
95769
|
+
pulumi.set(self, "comparison_filter_condition", value)
|
|
95770
|
+
|
|
95771
|
+
@_builtins.property
|
|
95772
|
+
@pulumi.getter(name="rangeFilterCondition")
|
|
95773
|
+
def range_filter_condition(self) -> Optional[pulumi.Input['DataSetNumericRangeFilterConditionArgs']]:
|
|
95774
|
+
return pulumi.get(self, "range_filter_condition")
|
|
95775
|
+
|
|
95776
|
+
@range_filter_condition.setter
|
|
95777
|
+
def range_filter_condition(self, value: Optional[pulumi.Input['DataSetNumericRangeFilterConditionArgs']]):
|
|
95778
|
+
pulumi.set(self, "range_filter_condition", value)
|
|
95779
|
+
|
|
95780
|
+
|
|
95781
|
+
if not MYPY:
|
|
95782
|
+
class DataSetNumericFilterValueArgsDict(TypedDict):
|
|
95783
|
+
static_value: NotRequired[pulumi.Input[_builtins.float]]
|
|
95784
|
+
elif False:
|
|
95785
|
+
DataSetNumericFilterValueArgsDict: TypeAlias = Mapping[str, Any]
|
|
95786
|
+
|
|
95787
|
+
@pulumi.input_type
|
|
95788
|
+
class DataSetNumericFilterValueArgs:
|
|
95789
|
+
def __init__(__self__, *,
|
|
95790
|
+
static_value: Optional[pulumi.Input[_builtins.float]] = None):
|
|
95791
|
+
if static_value is not None:
|
|
95792
|
+
pulumi.set(__self__, "static_value", static_value)
|
|
95793
|
+
|
|
95794
|
+
@_builtins.property
|
|
95795
|
+
@pulumi.getter(name="staticValue")
|
|
95796
|
+
def static_value(self) -> Optional[pulumi.Input[_builtins.float]]:
|
|
95797
|
+
return pulumi.get(self, "static_value")
|
|
95798
|
+
|
|
95799
|
+
@static_value.setter
|
|
95800
|
+
def static_value(self, value: Optional[pulumi.Input[_builtins.float]]):
|
|
95801
|
+
pulumi.set(self, "static_value", value)
|
|
95802
|
+
|
|
95803
|
+
|
|
95804
|
+
if not MYPY:
|
|
95805
|
+
class DataSetNumericRangeFilterConditionArgsDict(TypedDict):
|
|
95806
|
+
include_maximum: NotRequired[pulumi.Input[_builtins.bool]]
|
|
95807
|
+
include_minimum: NotRequired[pulumi.Input[_builtins.bool]]
|
|
95808
|
+
range_maximum: NotRequired[pulumi.Input['DataSetNumericFilterValueArgsDict']]
|
|
95809
|
+
range_minimum: NotRequired[pulumi.Input['DataSetNumericFilterValueArgsDict']]
|
|
95810
|
+
elif False:
|
|
95811
|
+
DataSetNumericRangeFilterConditionArgsDict: TypeAlias = Mapping[str, Any]
|
|
95812
|
+
|
|
95813
|
+
@pulumi.input_type
|
|
95814
|
+
class DataSetNumericRangeFilterConditionArgs:
|
|
95815
|
+
def __init__(__self__, *,
|
|
95816
|
+
include_maximum: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
95817
|
+
include_minimum: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
95818
|
+
range_maximum: Optional[pulumi.Input['DataSetNumericFilterValueArgs']] = None,
|
|
95819
|
+
range_minimum: Optional[pulumi.Input['DataSetNumericFilterValueArgs']] = None):
|
|
95820
|
+
if include_maximum is not None:
|
|
95821
|
+
pulumi.set(__self__, "include_maximum", include_maximum)
|
|
95822
|
+
if include_minimum is not None:
|
|
95823
|
+
pulumi.set(__self__, "include_minimum", include_minimum)
|
|
95824
|
+
if range_maximum is not None:
|
|
95825
|
+
pulumi.set(__self__, "range_maximum", range_maximum)
|
|
95826
|
+
if range_minimum is not None:
|
|
95827
|
+
pulumi.set(__self__, "range_minimum", range_minimum)
|
|
95828
|
+
|
|
95829
|
+
@_builtins.property
|
|
95830
|
+
@pulumi.getter(name="includeMaximum")
|
|
95831
|
+
def include_maximum(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
95832
|
+
return pulumi.get(self, "include_maximum")
|
|
95833
|
+
|
|
95834
|
+
@include_maximum.setter
|
|
95835
|
+
def include_maximum(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
95836
|
+
pulumi.set(self, "include_maximum", value)
|
|
95837
|
+
|
|
95838
|
+
@_builtins.property
|
|
95839
|
+
@pulumi.getter(name="includeMinimum")
|
|
95840
|
+
def include_minimum(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
95841
|
+
return pulumi.get(self, "include_minimum")
|
|
95842
|
+
|
|
95843
|
+
@include_minimum.setter
|
|
95844
|
+
def include_minimum(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
95845
|
+
pulumi.set(self, "include_minimum", value)
|
|
95846
|
+
|
|
95847
|
+
@_builtins.property
|
|
95848
|
+
@pulumi.getter(name="rangeMaximum")
|
|
95849
|
+
def range_maximum(self) -> Optional[pulumi.Input['DataSetNumericFilterValueArgs']]:
|
|
95850
|
+
return pulumi.get(self, "range_maximum")
|
|
95851
|
+
|
|
95852
|
+
@range_maximum.setter
|
|
95853
|
+
def range_maximum(self, value: Optional[pulumi.Input['DataSetNumericFilterValueArgs']]):
|
|
95854
|
+
pulumi.set(self, "range_maximum", value)
|
|
95855
|
+
|
|
95856
|
+
@_builtins.property
|
|
95857
|
+
@pulumi.getter(name="rangeMinimum")
|
|
95858
|
+
def range_minimum(self) -> Optional[pulumi.Input['DataSetNumericFilterValueArgs']]:
|
|
95859
|
+
return pulumi.get(self, "range_minimum")
|
|
95860
|
+
|
|
95861
|
+
@range_minimum.setter
|
|
95862
|
+
def range_minimum(self, value: Optional[pulumi.Input['DataSetNumericFilterValueArgs']]):
|
|
95863
|
+
pulumi.set(self, "range_minimum", value)
|
|
95864
|
+
|
|
95865
|
+
|
|
95866
|
+
if not MYPY:
|
|
95867
|
+
class DataSetOutputColumnNameOverrideArgsDict(TypedDict):
|
|
95868
|
+
output_column_name: pulumi.Input[_builtins.str]
|
|
95869
|
+
source_column_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
95870
|
+
elif False:
|
|
95871
|
+
DataSetOutputColumnNameOverrideArgsDict: TypeAlias = Mapping[str, Any]
|
|
95872
|
+
|
|
95873
|
+
@pulumi.input_type
|
|
95874
|
+
class DataSetOutputColumnNameOverrideArgs:
|
|
95875
|
+
def __init__(__self__, *,
|
|
95876
|
+
output_column_name: pulumi.Input[_builtins.str],
|
|
95877
|
+
source_column_name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
95878
|
+
pulumi.set(__self__, "output_column_name", output_column_name)
|
|
95879
|
+
if source_column_name is not None:
|
|
95880
|
+
pulumi.set(__self__, "source_column_name", source_column_name)
|
|
95881
|
+
|
|
95882
|
+
@_builtins.property
|
|
95883
|
+
@pulumi.getter(name="outputColumnName")
|
|
95884
|
+
def output_column_name(self) -> pulumi.Input[_builtins.str]:
|
|
95885
|
+
return pulumi.get(self, "output_column_name")
|
|
95886
|
+
|
|
95887
|
+
@output_column_name.setter
|
|
95888
|
+
def output_column_name(self, value: pulumi.Input[_builtins.str]):
|
|
95889
|
+
pulumi.set(self, "output_column_name", value)
|
|
95890
|
+
|
|
95891
|
+
@_builtins.property
|
|
95892
|
+
@pulumi.getter(name="sourceColumnName")
|
|
95893
|
+
def source_column_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
95894
|
+
return pulumi.get(self, "source_column_name")
|
|
95895
|
+
|
|
95896
|
+
@source_column_name.setter
|
|
95897
|
+
def source_column_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
95898
|
+
pulumi.set(self, "source_column_name", value)
|
|
95899
|
+
|
|
95900
|
+
|
|
94549
95901
|
if not MYPY:
|
|
94550
95902
|
class DataSetOverrideDatasetParameterOperationArgsDict(TypedDict):
|
|
94551
95903
|
"""
|
|
@@ -94621,6 +95973,40 @@ class DataSetOverrideDatasetParameterOperationArgs:
|
|
|
94621
95973
|
pulumi.set(self, "new_parameter_name", value)
|
|
94622
95974
|
|
|
94623
95975
|
|
|
95976
|
+
if not MYPY:
|
|
95977
|
+
class DataSetParentDataSetArgsDict(TypedDict):
|
|
95978
|
+
data_set_arn: pulumi.Input[_builtins.str]
|
|
95979
|
+
input_columns: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgsDict']]]
|
|
95980
|
+
elif False:
|
|
95981
|
+
DataSetParentDataSetArgsDict: TypeAlias = Mapping[str, Any]
|
|
95982
|
+
|
|
95983
|
+
@pulumi.input_type
|
|
95984
|
+
class DataSetParentDataSetArgs:
|
|
95985
|
+
def __init__(__self__, *,
|
|
95986
|
+
data_set_arn: pulumi.Input[_builtins.str],
|
|
95987
|
+
input_columns: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]):
|
|
95988
|
+
pulumi.set(__self__, "data_set_arn", data_set_arn)
|
|
95989
|
+
pulumi.set(__self__, "input_columns", input_columns)
|
|
95990
|
+
|
|
95991
|
+
@_builtins.property
|
|
95992
|
+
@pulumi.getter(name="dataSetArn")
|
|
95993
|
+
def data_set_arn(self) -> pulumi.Input[_builtins.str]:
|
|
95994
|
+
return pulumi.get(self, "data_set_arn")
|
|
95995
|
+
|
|
95996
|
+
@data_set_arn.setter
|
|
95997
|
+
def data_set_arn(self, value: pulumi.Input[_builtins.str]):
|
|
95998
|
+
pulumi.set(self, "data_set_arn", value)
|
|
95999
|
+
|
|
96000
|
+
@_builtins.property
|
|
96001
|
+
@pulumi.getter(name="inputColumns")
|
|
96002
|
+
def input_columns(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]:
|
|
96003
|
+
return pulumi.get(self, "input_columns")
|
|
96004
|
+
|
|
96005
|
+
@input_columns.setter
|
|
96006
|
+
def input_columns(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]):
|
|
96007
|
+
pulumi.set(self, "input_columns", value)
|
|
96008
|
+
|
|
96009
|
+
|
|
94624
96010
|
if not MYPY:
|
|
94625
96011
|
class DataSetPerformanceConfigurationArgsDict(TypedDict):
|
|
94626
96012
|
unique_keys: NotRequired[pulumi.Input[Sequence[pulumi.Input['DataSetUniqueKeyArgsDict']]]]
|
|
@@ -94663,6 +96049,7 @@ if not MYPY:
|
|
|
94663
96049
|
"""
|
|
94664
96050
|
A physical table type for as S3 data source.
|
|
94665
96051
|
"""
|
|
96052
|
+
saa_s_table: NotRequired[pulumi.Input['DataSetSaaSTableArgsDict']]
|
|
94666
96053
|
elif False:
|
|
94667
96054
|
DataSetPhysicalTableArgsDict: TypeAlias = Mapping[str, Any]
|
|
94668
96055
|
|
|
@@ -94671,7 +96058,8 @@ class DataSetPhysicalTableArgs:
|
|
|
94671
96058
|
def __init__(__self__, *,
|
|
94672
96059
|
custom_sql: Optional[pulumi.Input['DataSetCustomSqlArgs']] = None,
|
|
94673
96060
|
relational_table: Optional[pulumi.Input['DataSetRelationalTableArgs']] = None,
|
|
94674
|
-
s3_source: Optional[pulumi.Input['DataSetS3SourceArgs']] = None
|
|
96061
|
+
s3_source: Optional[pulumi.Input['DataSetS3SourceArgs']] = None,
|
|
96062
|
+
saa_s_table: Optional[pulumi.Input['DataSetSaaSTableArgs']] = None):
|
|
94675
96063
|
"""
|
|
94676
96064
|
<p>A view of a data source that contains information about the shape of the data in the
|
|
94677
96065
|
underlying source. This is a variant type structure. For this structure to be valid,
|
|
@@ -94686,6 +96074,8 @@ class DataSetPhysicalTableArgs:
|
|
|
94686
96074
|
pulumi.set(__self__, "relational_table", relational_table)
|
|
94687
96075
|
if s3_source is not None:
|
|
94688
96076
|
pulumi.set(__self__, "s3_source", s3_source)
|
|
96077
|
+
if saa_s_table is not None:
|
|
96078
|
+
pulumi.set(__self__, "saa_s_table", saa_s_table)
|
|
94689
96079
|
|
|
94690
96080
|
@_builtins.property
|
|
94691
96081
|
@pulumi.getter(name="customSql")
|
|
@@ -94723,6 +96113,167 @@ class DataSetPhysicalTableArgs:
|
|
|
94723
96113
|
def s3_source(self, value: Optional[pulumi.Input['DataSetS3SourceArgs']]):
|
|
94724
96114
|
pulumi.set(self, "s3_source", value)
|
|
94725
96115
|
|
|
96116
|
+
@_builtins.property
|
|
96117
|
+
@pulumi.getter(name="saaSTable")
|
|
96118
|
+
def saa_s_table(self) -> Optional[pulumi.Input['DataSetSaaSTableArgs']]:
|
|
96119
|
+
return pulumi.get(self, "saa_s_table")
|
|
96120
|
+
|
|
96121
|
+
@saa_s_table.setter
|
|
96122
|
+
def saa_s_table(self, value: Optional[pulumi.Input['DataSetSaaSTableArgs']]):
|
|
96123
|
+
pulumi.set(self, "saa_s_table", value)
|
|
96124
|
+
|
|
96125
|
+
|
|
96126
|
+
if not MYPY:
|
|
96127
|
+
class DataSetPivotConfigurationArgsDict(TypedDict):
|
|
96128
|
+
pivoted_labels: pulumi.Input[Sequence[pulumi.Input['DataSetPivotedLabelArgsDict']]]
|
|
96129
|
+
label_column_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
96130
|
+
elif False:
|
|
96131
|
+
DataSetPivotConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
96132
|
+
|
|
96133
|
+
@pulumi.input_type
|
|
96134
|
+
class DataSetPivotConfigurationArgs:
|
|
96135
|
+
def __init__(__self__, *,
|
|
96136
|
+
pivoted_labels: pulumi.Input[Sequence[pulumi.Input['DataSetPivotedLabelArgs']]],
|
|
96137
|
+
label_column_name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
96138
|
+
pulumi.set(__self__, "pivoted_labels", pivoted_labels)
|
|
96139
|
+
if label_column_name is not None:
|
|
96140
|
+
pulumi.set(__self__, "label_column_name", label_column_name)
|
|
96141
|
+
|
|
96142
|
+
@_builtins.property
|
|
96143
|
+
@pulumi.getter(name="pivotedLabels")
|
|
96144
|
+
def pivoted_labels(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetPivotedLabelArgs']]]:
|
|
96145
|
+
return pulumi.get(self, "pivoted_labels")
|
|
96146
|
+
|
|
96147
|
+
@pivoted_labels.setter
|
|
96148
|
+
def pivoted_labels(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetPivotedLabelArgs']]]):
|
|
96149
|
+
pulumi.set(self, "pivoted_labels", value)
|
|
96150
|
+
|
|
96151
|
+
@_builtins.property
|
|
96152
|
+
@pulumi.getter(name="labelColumnName")
|
|
96153
|
+
def label_column_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
96154
|
+
return pulumi.get(self, "label_column_name")
|
|
96155
|
+
|
|
96156
|
+
@label_column_name.setter
|
|
96157
|
+
def label_column_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
96158
|
+
pulumi.set(self, "label_column_name", value)
|
|
96159
|
+
|
|
96160
|
+
|
|
96161
|
+
if not MYPY:
|
|
96162
|
+
class DataSetPivotOperationArgsDict(TypedDict):
|
|
96163
|
+
alias: pulumi.Input[_builtins.str]
|
|
96164
|
+
pivot_configuration: pulumi.Input['DataSetPivotConfigurationArgsDict']
|
|
96165
|
+
source: pulumi.Input['DataSetTransformOperationSourceArgsDict']
|
|
96166
|
+
value_column_configuration: pulumi.Input['DataSetValueColumnConfigurationArgsDict']
|
|
96167
|
+
group_by_column_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
96168
|
+
elif False:
|
|
96169
|
+
DataSetPivotOperationArgsDict: TypeAlias = Mapping[str, Any]
|
|
96170
|
+
|
|
96171
|
+
@pulumi.input_type
|
|
96172
|
+
class DataSetPivotOperationArgs:
|
|
96173
|
+
def __init__(__self__, *,
|
|
96174
|
+
alias: pulumi.Input[_builtins.str],
|
|
96175
|
+
pivot_configuration: pulumi.Input['DataSetPivotConfigurationArgs'],
|
|
96176
|
+
source: pulumi.Input['DataSetTransformOperationSourceArgs'],
|
|
96177
|
+
value_column_configuration: pulumi.Input['DataSetValueColumnConfigurationArgs'],
|
|
96178
|
+
group_by_column_names: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
96179
|
+
pulumi.set(__self__, "alias", alias)
|
|
96180
|
+
pulumi.set(__self__, "pivot_configuration", pivot_configuration)
|
|
96181
|
+
pulumi.set(__self__, "source", source)
|
|
96182
|
+
pulumi.set(__self__, "value_column_configuration", value_column_configuration)
|
|
96183
|
+
if group_by_column_names is not None:
|
|
96184
|
+
pulumi.set(__self__, "group_by_column_names", group_by_column_names)
|
|
96185
|
+
|
|
96186
|
+
@_builtins.property
|
|
96187
|
+
@pulumi.getter
|
|
96188
|
+
def alias(self) -> pulumi.Input[_builtins.str]:
|
|
96189
|
+
return pulumi.get(self, "alias")
|
|
96190
|
+
|
|
96191
|
+
@alias.setter
|
|
96192
|
+
def alias(self, value: pulumi.Input[_builtins.str]):
|
|
96193
|
+
pulumi.set(self, "alias", value)
|
|
96194
|
+
|
|
96195
|
+
@_builtins.property
|
|
96196
|
+
@pulumi.getter(name="pivotConfiguration")
|
|
96197
|
+
def pivot_configuration(self) -> pulumi.Input['DataSetPivotConfigurationArgs']:
|
|
96198
|
+
return pulumi.get(self, "pivot_configuration")
|
|
96199
|
+
|
|
96200
|
+
@pivot_configuration.setter
|
|
96201
|
+
def pivot_configuration(self, value: pulumi.Input['DataSetPivotConfigurationArgs']):
|
|
96202
|
+
pulumi.set(self, "pivot_configuration", value)
|
|
96203
|
+
|
|
96204
|
+
@_builtins.property
|
|
96205
|
+
@pulumi.getter
|
|
96206
|
+
def source(self) -> pulumi.Input['DataSetTransformOperationSourceArgs']:
|
|
96207
|
+
return pulumi.get(self, "source")
|
|
96208
|
+
|
|
96209
|
+
@source.setter
|
|
96210
|
+
def source(self, value: pulumi.Input['DataSetTransformOperationSourceArgs']):
|
|
96211
|
+
pulumi.set(self, "source", value)
|
|
96212
|
+
|
|
96213
|
+
@_builtins.property
|
|
96214
|
+
@pulumi.getter(name="valueColumnConfiguration")
|
|
96215
|
+
def value_column_configuration(self) -> pulumi.Input['DataSetValueColumnConfigurationArgs']:
|
|
96216
|
+
return pulumi.get(self, "value_column_configuration")
|
|
96217
|
+
|
|
96218
|
+
@value_column_configuration.setter
|
|
96219
|
+
def value_column_configuration(self, value: pulumi.Input['DataSetValueColumnConfigurationArgs']):
|
|
96220
|
+
pulumi.set(self, "value_column_configuration", value)
|
|
96221
|
+
|
|
96222
|
+
@_builtins.property
|
|
96223
|
+
@pulumi.getter(name="groupByColumnNames")
|
|
96224
|
+
def group_by_column_names(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
96225
|
+
return pulumi.get(self, "group_by_column_names")
|
|
96226
|
+
|
|
96227
|
+
@group_by_column_names.setter
|
|
96228
|
+
def group_by_column_names(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
96229
|
+
pulumi.set(self, "group_by_column_names", value)
|
|
96230
|
+
|
|
96231
|
+
|
|
96232
|
+
if not MYPY:
|
|
96233
|
+
class DataSetPivotedLabelArgsDict(TypedDict):
|
|
96234
|
+
label_name: pulumi.Input[_builtins.str]
|
|
96235
|
+
new_column_id: pulumi.Input[_builtins.str]
|
|
96236
|
+
new_column_name: pulumi.Input[_builtins.str]
|
|
96237
|
+
elif False:
|
|
96238
|
+
DataSetPivotedLabelArgsDict: TypeAlias = Mapping[str, Any]
|
|
96239
|
+
|
|
96240
|
+
@pulumi.input_type
|
|
96241
|
+
class DataSetPivotedLabelArgs:
|
|
96242
|
+
def __init__(__self__, *,
|
|
96243
|
+
label_name: pulumi.Input[_builtins.str],
|
|
96244
|
+
new_column_id: pulumi.Input[_builtins.str],
|
|
96245
|
+
new_column_name: pulumi.Input[_builtins.str]):
|
|
96246
|
+
pulumi.set(__self__, "label_name", label_name)
|
|
96247
|
+
pulumi.set(__self__, "new_column_id", new_column_id)
|
|
96248
|
+
pulumi.set(__self__, "new_column_name", new_column_name)
|
|
96249
|
+
|
|
96250
|
+
@_builtins.property
|
|
96251
|
+
@pulumi.getter(name="labelName")
|
|
96252
|
+
def label_name(self) -> pulumi.Input[_builtins.str]:
|
|
96253
|
+
return pulumi.get(self, "label_name")
|
|
96254
|
+
|
|
96255
|
+
@label_name.setter
|
|
96256
|
+
def label_name(self, value: pulumi.Input[_builtins.str]):
|
|
96257
|
+
pulumi.set(self, "label_name", value)
|
|
96258
|
+
|
|
96259
|
+
@_builtins.property
|
|
96260
|
+
@pulumi.getter(name="newColumnId")
|
|
96261
|
+
def new_column_id(self) -> pulumi.Input[_builtins.str]:
|
|
96262
|
+
return pulumi.get(self, "new_column_id")
|
|
96263
|
+
|
|
96264
|
+
@new_column_id.setter
|
|
96265
|
+
def new_column_id(self, value: pulumi.Input[_builtins.str]):
|
|
96266
|
+
pulumi.set(self, "new_column_id", value)
|
|
96267
|
+
|
|
96268
|
+
@_builtins.property
|
|
96269
|
+
@pulumi.getter(name="newColumnName")
|
|
96270
|
+
def new_column_name(self) -> pulumi.Input[_builtins.str]:
|
|
96271
|
+
return pulumi.get(self, "new_column_name")
|
|
96272
|
+
|
|
96273
|
+
@new_column_name.setter
|
|
96274
|
+
def new_column_name(self, value: pulumi.Input[_builtins.str]):
|
|
96275
|
+
pulumi.set(self, "new_column_name", value)
|
|
96276
|
+
|
|
94726
96277
|
|
|
94727
96278
|
if not MYPY:
|
|
94728
96279
|
class DataSetProjectOperationArgsDict(TypedDict):
|
|
@@ -94730,24 +96281,41 @@ if not MYPY:
|
|
|
94730
96281
|
<p>A transform operation that projects columns. Operations that come after a projection
|
|
94731
96282
|
can only refer to projected columns.</p>
|
|
94732
96283
|
"""
|
|
96284
|
+
alias: NotRequired[pulumi.Input[_builtins.str]]
|
|
94733
96285
|
projected_columns: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
94734
96286
|
"""
|
|
94735
96287
|
<p>Projected columns.</p>
|
|
94736
96288
|
"""
|
|
96289
|
+
source: NotRequired[pulumi.Input['DataSetTransformOperationSourceArgsDict']]
|
|
94737
96290
|
elif False:
|
|
94738
96291
|
DataSetProjectOperationArgsDict: TypeAlias = Mapping[str, Any]
|
|
94739
96292
|
|
|
94740
96293
|
@pulumi.input_type
|
|
94741
96294
|
class DataSetProjectOperationArgs:
|
|
94742
96295
|
def __init__(__self__, *,
|
|
94743
|
-
|
|
96296
|
+
alias: Optional[pulumi.Input[_builtins.str]] = None,
|
|
96297
|
+
projected_columns: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
96298
|
+
source: Optional[pulumi.Input['DataSetTransformOperationSourceArgs']] = None):
|
|
94744
96299
|
"""
|
|
94745
96300
|
<p>A transform operation that projects columns. Operations that come after a projection
|
|
94746
96301
|
can only refer to projected columns.</p>
|
|
94747
96302
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] projected_columns: <p>Projected columns.</p>
|
|
94748
96303
|
"""
|
|
96304
|
+
if alias is not None:
|
|
96305
|
+
pulumi.set(__self__, "alias", alias)
|
|
94749
96306
|
if projected_columns is not None:
|
|
94750
96307
|
pulumi.set(__self__, "projected_columns", projected_columns)
|
|
96308
|
+
if source is not None:
|
|
96309
|
+
pulumi.set(__self__, "source", source)
|
|
96310
|
+
|
|
96311
|
+
@_builtins.property
|
|
96312
|
+
@pulumi.getter
|
|
96313
|
+
def alias(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
96314
|
+
return pulumi.get(self, "alias")
|
|
96315
|
+
|
|
96316
|
+
@alias.setter
|
|
96317
|
+
def alias(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
96318
|
+
pulumi.set(self, "alias", value)
|
|
94751
96319
|
|
|
94752
96320
|
@_builtins.property
|
|
94753
96321
|
@pulumi.getter(name="projectedColumns")
|
|
@@ -94761,6 +96329,15 @@ class DataSetProjectOperationArgs:
|
|
|
94761
96329
|
def projected_columns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
94762
96330
|
pulumi.set(self, "projected_columns", value)
|
|
94763
96331
|
|
|
96332
|
+
@_builtins.property
|
|
96333
|
+
@pulumi.getter
|
|
96334
|
+
def source(self) -> Optional[pulumi.Input['DataSetTransformOperationSourceArgs']]:
|
|
96335
|
+
return pulumi.get(self, "source")
|
|
96336
|
+
|
|
96337
|
+
@source.setter
|
|
96338
|
+
def source(self, value: Optional[pulumi.Input['DataSetTransformOperationSourceArgs']]):
|
|
96339
|
+
pulumi.set(self, "source", value)
|
|
96340
|
+
|
|
94764
96341
|
|
|
94765
96342
|
if not MYPY:
|
|
94766
96343
|
class DataSetRefreshConfigurationArgsDict(TypedDict):
|
|
@@ -94926,6 +96503,10 @@ if not MYPY:
|
|
|
94926
96503
|
"""
|
|
94927
96504
|
<p>The Amazon Resource Name (ARN) for the data source.</p>
|
|
94928
96505
|
"""
|
|
96506
|
+
input_columns: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgsDict']]]
|
|
96507
|
+
"""
|
|
96508
|
+
<p>The column schema of the table.</p>
|
|
96509
|
+
"""
|
|
94929
96510
|
name: pulumi.Input[_builtins.str]
|
|
94930
96511
|
"""
|
|
94931
96512
|
<p>The name of the relational table.</p>
|
|
@@ -94934,10 +96515,6 @@ if not MYPY:
|
|
|
94934
96515
|
"""
|
|
94935
96516
|
<p>The catalog associated with a table.</p>
|
|
94936
96517
|
"""
|
|
94937
|
-
input_columns: NotRequired[pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgsDict']]]]
|
|
94938
|
-
"""
|
|
94939
|
-
<p>The column schema of the table.</p>
|
|
94940
|
-
"""
|
|
94941
96518
|
schema: NotRequired[pulumi.Input[_builtins.str]]
|
|
94942
96519
|
"""
|
|
94943
96520
|
<p>The schema name. This name applies to certain relational database engines.</p>
|
|
@@ -94949,24 +96526,23 @@ elif False:
|
|
|
94949
96526
|
class DataSetRelationalTableArgs:
|
|
94950
96527
|
def __init__(__self__, *,
|
|
94951
96528
|
data_source_arn: pulumi.Input[_builtins.str],
|
|
96529
|
+
input_columns: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]],
|
|
94952
96530
|
name: pulumi.Input[_builtins.str],
|
|
94953
96531
|
catalog: Optional[pulumi.Input[_builtins.str]] = None,
|
|
94954
|
-
input_columns: Optional[pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]] = None,
|
|
94955
96532
|
schema: Optional[pulumi.Input[_builtins.str]] = None):
|
|
94956
96533
|
"""
|
|
94957
96534
|
<p>A physical table type for relational data sources.</p>
|
|
94958
96535
|
:param pulumi.Input[_builtins.str] data_source_arn: <p>The Amazon Resource Name (ARN) for the data source.</p>
|
|
96536
|
+
:param pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]] input_columns: <p>The column schema of the table.</p>
|
|
94959
96537
|
:param pulumi.Input[_builtins.str] name: <p>The name of the relational table.</p>
|
|
94960
96538
|
:param pulumi.Input[_builtins.str] catalog: <p>The catalog associated with a table.</p>
|
|
94961
|
-
:param pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]] input_columns: <p>The column schema of the table.</p>
|
|
94962
96539
|
:param pulumi.Input[_builtins.str] schema: <p>The schema name. This name applies to certain relational database engines.</p>
|
|
94963
96540
|
"""
|
|
94964
96541
|
pulumi.set(__self__, "data_source_arn", data_source_arn)
|
|
96542
|
+
pulumi.set(__self__, "input_columns", input_columns)
|
|
94965
96543
|
pulumi.set(__self__, "name", name)
|
|
94966
96544
|
if catalog is not None:
|
|
94967
96545
|
pulumi.set(__self__, "catalog", catalog)
|
|
94968
|
-
if input_columns is not None:
|
|
94969
|
-
pulumi.set(__self__, "input_columns", input_columns)
|
|
94970
96546
|
if schema is not None:
|
|
94971
96547
|
pulumi.set(__self__, "schema", schema)
|
|
94972
96548
|
|
|
@@ -94982,6 +96558,18 @@ class DataSetRelationalTableArgs:
|
|
|
94982
96558
|
def data_source_arn(self, value: pulumi.Input[_builtins.str]):
|
|
94983
96559
|
pulumi.set(self, "data_source_arn", value)
|
|
94984
96560
|
|
|
96561
|
+
@_builtins.property
|
|
96562
|
+
@pulumi.getter(name="inputColumns")
|
|
96563
|
+
def input_columns(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]:
|
|
96564
|
+
"""
|
|
96565
|
+
<p>The column schema of the table.</p>
|
|
96566
|
+
"""
|
|
96567
|
+
return pulumi.get(self, "input_columns")
|
|
96568
|
+
|
|
96569
|
+
@input_columns.setter
|
|
96570
|
+
def input_columns(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]):
|
|
96571
|
+
pulumi.set(self, "input_columns", value)
|
|
96572
|
+
|
|
94985
96573
|
@_builtins.property
|
|
94986
96574
|
@pulumi.getter
|
|
94987
96575
|
def name(self) -> pulumi.Input[_builtins.str]:
|
|
@@ -95006,18 +96594,6 @@ class DataSetRelationalTableArgs:
|
|
|
95006
96594
|
def catalog(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
95007
96595
|
pulumi.set(self, "catalog", value)
|
|
95008
96596
|
|
|
95009
|
-
@_builtins.property
|
|
95010
|
-
@pulumi.getter(name="inputColumns")
|
|
95011
|
-
def input_columns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]]:
|
|
95012
|
-
"""
|
|
95013
|
-
<p>The column schema of the table.</p>
|
|
95014
|
-
"""
|
|
95015
|
-
return pulumi.get(self, "input_columns")
|
|
95016
|
-
|
|
95017
|
-
@input_columns.setter
|
|
95018
|
-
def input_columns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]]):
|
|
95019
|
-
pulumi.set(self, "input_columns", value)
|
|
95020
|
-
|
|
95021
96597
|
@_builtins.property
|
|
95022
96598
|
@pulumi.getter
|
|
95023
96599
|
def schema(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -95036,11 +96612,11 @@ if not MYPY:
|
|
|
95036
96612
|
"""
|
|
95037
96613
|
<p>A transform operation that renames a column.</p>
|
|
95038
96614
|
"""
|
|
95039
|
-
column_name:
|
|
96615
|
+
column_name: pulumi.Input[_builtins.str]
|
|
95040
96616
|
"""
|
|
95041
96617
|
<p>The name of the column to be renamed.</p>
|
|
95042
96618
|
"""
|
|
95043
|
-
new_column_name:
|
|
96619
|
+
new_column_name: pulumi.Input[_builtins.str]
|
|
95044
96620
|
"""
|
|
95045
96621
|
<p>The new name for the column.</p>
|
|
95046
96622
|
"""
|
|
@@ -95050,43 +96626,87 @@ elif False:
|
|
|
95050
96626
|
@pulumi.input_type
|
|
95051
96627
|
class DataSetRenameColumnOperationArgs:
|
|
95052
96628
|
def __init__(__self__, *,
|
|
95053
|
-
column_name:
|
|
95054
|
-
new_column_name:
|
|
96629
|
+
column_name: pulumi.Input[_builtins.str],
|
|
96630
|
+
new_column_name: pulumi.Input[_builtins.str]):
|
|
95055
96631
|
"""
|
|
95056
96632
|
<p>A transform operation that renames a column.</p>
|
|
95057
96633
|
:param pulumi.Input[_builtins.str] column_name: <p>The name of the column to be renamed.</p>
|
|
95058
96634
|
:param pulumi.Input[_builtins.str] new_column_name: <p>The new name for the column.</p>
|
|
95059
96635
|
"""
|
|
95060
|
-
|
|
95061
|
-
|
|
95062
|
-
if new_column_name is not None:
|
|
95063
|
-
pulumi.set(__self__, "new_column_name", new_column_name)
|
|
96636
|
+
pulumi.set(__self__, "column_name", column_name)
|
|
96637
|
+
pulumi.set(__self__, "new_column_name", new_column_name)
|
|
95064
96638
|
|
|
95065
96639
|
@_builtins.property
|
|
95066
96640
|
@pulumi.getter(name="columnName")
|
|
95067
|
-
def column_name(self) ->
|
|
96641
|
+
def column_name(self) -> pulumi.Input[_builtins.str]:
|
|
95068
96642
|
"""
|
|
95069
96643
|
<p>The name of the column to be renamed.</p>
|
|
95070
96644
|
"""
|
|
95071
96645
|
return pulumi.get(self, "column_name")
|
|
95072
96646
|
|
|
95073
96647
|
@column_name.setter
|
|
95074
|
-
def column_name(self, value:
|
|
96648
|
+
def column_name(self, value: pulumi.Input[_builtins.str]):
|
|
95075
96649
|
pulumi.set(self, "column_name", value)
|
|
95076
96650
|
|
|
95077
96651
|
@_builtins.property
|
|
95078
96652
|
@pulumi.getter(name="newColumnName")
|
|
95079
|
-
def new_column_name(self) ->
|
|
96653
|
+
def new_column_name(self) -> pulumi.Input[_builtins.str]:
|
|
95080
96654
|
"""
|
|
95081
96655
|
<p>The new name for the column.</p>
|
|
95082
96656
|
"""
|
|
95083
96657
|
return pulumi.get(self, "new_column_name")
|
|
95084
96658
|
|
|
95085
96659
|
@new_column_name.setter
|
|
95086
|
-
def new_column_name(self, value:
|
|
96660
|
+
def new_column_name(self, value: pulumi.Input[_builtins.str]):
|
|
95087
96661
|
pulumi.set(self, "new_column_name", value)
|
|
95088
96662
|
|
|
95089
96663
|
|
|
96664
|
+
if not MYPY:
|
|
96665
|
+
class DataSetRenameColumnsOperationArgsDict(TypedDict):
|
|
96666
|
+
alias: pulumi.Input[_builtins.str]
|
|
96667
|
+
rename_column_operations: pulumi.Input[Sequence[pulumi.Input['DataSetRenameColumnOperationArgsDict']]]
|
|
96668
|
+
source: pulumi.Input['DataSetTransformOperationSourceArgsDict']
|
|
96669
|
+
elif False:
|
|
96670
|
+
DataSetRenameColumnsOperationArgsDict: TypeAlias = Mapping[str, Any]
|
|
96671
|
+
|
|
96672
|
+
@pulumi.input_type
|
|
96673
|
+
class DataSetRenameColumnsOperationArgs:
|
|
96674
|
+
def __init__(__self__, *,
|
|
96675
|
+
alias: pulumi.Input[_builtins.str],
|
|
96676
|
+
rename_column_operations: pulumi.Input[Sequence[pulumi.Input['DataSetRenameColumnOperationArgs']]],
|
|
96677
|
+
source: pulumi.Input['DataSetTransformOperationSourceArgs']):
|
|
96678
|
+
pulumi.set(__self__, "alias", alias)
|
|
96679
|
+
pulumi.set(__self__, "rename_column_operations", rename_column_operations)
|
|
96680
|
+
pulumi.set(__self__, "source", source)
|
|
96681
|
+
|
|
96682
|
+
@_builtins.property
|
|
96683
|
+
@pulumi.getter
|
|
96684
|
+
def alias(self) -> pulumi.Input[_builtins.str]:
|
|
96685
|
+
return pulumi.get(self, "alias")
|
|
96686
|
+
|
|
96687
|
+
@alias.setter
|
|
96688
|
+
def alias(self, value: pulumi.Input[_builtins.str]):
|
|
96689
|
+
pulumi.set(self, "alias", value)
|
|
96690
|
+
|
|
96691
|
+
@_builtins.property
|
|
96692
|
+
@pulumi.getter(name="renameColumnOperations")
|
|
96693
|
+
def rename_column_operations(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetRenameColumnOperationArgs']]]:
|
|
96694
|
+
return pulumi.get(self, "rename_column_operations")
|
|
96695
|
+
|
|
96696
|
+
@rename_column_operations.setter
|
|
96697
|
+
def rename_column_operations(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetRenameColumnOperationArgs']]]):
|
|
96698
|
+
pulumi.set(self, "rename_column_operations", value)
|
|
96699
|
+
|
|
96700
|
+
@_builtins.property
|
|
96701
|
+
@pulumi.getter
|
|
96702
|
+
def source(self) -> pulumi.Input['DataSetTransformOperationSourceArgs']:
|
|
96703
|
+
return pulumi.get(self, "source")
|
|
96704
|
+
|
|
96705
|
+
@source.setter
|
|
96706
|
+
def source(self, value: pulumi.Input['DataSetTransformOperationSourceArgs']):
|
|
96707
|
+
pulumi.set(self, "source", value)
|
|
96708
|
+
|
|
96709
|
+
|
|
95090
96710
|
if not MYPY:
|
|
95091
96711
|
class DataSetResourcePermissionArgsDict(TypedDict):
|
|
95092
96712
|
"""
|
|
@@ -95183,6 +96803,42 @@ class DataSetResourcePermissionArgs:
|
|
|
95183
96803
|
pulumi.set(self, "principal", value)
|
|
95184
96804
|
|
|
95185
96805
|
|
|
96806
|
+
if not MYPY:
|
|
96807
|
+
class DataSetRowLevelPermissionConfigurationArgsDict(TypedDict):
|
|
96808
|
+
row_level_permission_data_set: NotRequired[pulumi.Input['DataSetRowLevelPermissionDataSetArgsDict']]
|
|
96809
|
+
tag_configuration: NotRequired[pulumi.Input['DataSetRowLevelPermissionTagConfigurationArgsDict']]
|
|
96810
|
+
elif False:
|
|
96811
|
+
DataSetRowLevelPermissionConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
96812
|
+
|
|
96813
|
+
@pulumi.input_type
|
|
96814
|
+
class DataSetRowLevelPermissionConfigurationArgs:
|
|
96815
|
+
def __init__(__self__, *,
|
|
96816
|
+
row_level_permission_data_set: Optional[pulumi.Input['DataSetRowLevelPermissionDataSetArgs']] = None,
|
|
96817
|
+
tag_configuration: Optional[pulumi.Input['DataSetRowLevelPermissionTagConfigurationArgs']] = None):
|
|
96818
|
+
if row_level_permission_data_set is not None:
|
|
96819
|
+
pulumi.set(__self__, "row_level_permission_data_set", row_level_permission_data_set)
|
|
96820
|
+
if tag_configuration is not None:
|
|
96821
|
+
pulumi.set(__self__, "tag_configuration", tag_configuration)
|
|
96822
|
+
|
|
96823
|
+
@_builtins.property
|
|
96824
|
+
@pulumi.getter(name="rowLevelPermissionDataSet")
|
|
96825
|
+
def row_level_permission_data_set(self) -> Optional[pulumi.Input['DataSetRowLevelPermissionDataSetArgs']]:
|
|
96826
|
+
return pulumi.get(self, "row_level_permission_data_set")
|
|
96827
|
+
|
|
96828
|
+
@row_level_permission_data_set.setter
|
|
96829
|
+
def row_level_permission_data_set(self, value: Optional[pulumi.Input['DataSetRowLevelPermissionDataSetArgs']]):
|
|
96830
|
+
pulumi.set(self, "row_level_permission_data_set", value)
|
|
96831
|
+
|
|
96832
|
+
@_builtins.property
|
|
96833
|
+
@pulumi.getter(name="tagConfiguration")
|
|
96834
|
+
def tag_configuration(self) -> Optional[pulumi.Input['DataSetRowLevelPermissionTagConfigurationArgs']]:
|
|
96835
|
+
return pulumi.get(self, "tag_configuration")
|
|
96836
|
+
|
|
96837
|
+
@tag_configuration.setter
|
|
96838
|
+
def tag_configuration(self, value: Optional[pulumi.Input['DataSetRowLevelPermissionTagConfigurationArgs']]):
|
|
96839
|
+
pulumi.set(self, "tag_configuration", value)
|
|
96840
|
+
|
|
96841
|
+
|
|
95186
96842
|
if not MYPY:
|
|
95187
96843
|
class DataSetRowLevelPermissionDataSetArgsDict(TypedDict):
|
|
95188
96844
|
"""
|
|
@@ -95393,13 +97049,13 @@ if not MYPY:
|
|
|
95393
97049
|
"""
|
|
95394
97050
|
<p>A set of rules associated with a tag.</p>
|
|
95395
97051
|
"""
|
|
95396
|
-
|
|
97052
|
+
column_name: pulumi.Input[_builtins.str]
|
|
95397
97053
|
"""
|
|
95398
|
-
<p>The
|
|
97054
|
+
<p>The column name that a tag key is assigned to.</p>
|
|
95399
97055
|
"""
|
|
95400
|
-
|
|
97056
|
+
tag_key: pulumi.Input[_builtins.str]
|
|
95401
97057
|
"""
|
|
95402
|
-
<p>The
|
|
97058
|
+
<p>The unique key for a tag.</p>
|
|
95403
97059
|
"""
|
|
95404
97060
|
match_all_value: NotRequired[pulumi.Input[_builtins.str]]
|
|
95405
97061
|
"""
|
|
@@ -95415,25 +97071,36 @@ elif False:
|
|
|
95415
97071
|
@pulumi.input_type
|
|
95416
97072
|
class DataSetRowLevelPermissionTagRuleArgs:
|
|
95417
97073
|
def __init__(__self__, *,
|
|
97074
|
+
column_name: pulumi.Input[_builtins.str],
|
|
95418
97075
|
tag_key: pulumi.Input[_builtins.str],
|
|
95419
|
-
column_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
95420
97076
|
match_all_value: Optional[pulumi.Input[_builtins.str]] = None,
|
|
95421
97077
|
tag_multi_value_delimiter: Optional[pulumi.Input[_builtins.str]] = None):
|
|
95422
97078
|
"""
|
|
95423
97079
|
<p>A set of rules associated with a tag.</p>
|
|
95424
|
-
:param pulumi.Input[_builtins.str] tag_key: <p>The unique key for a tag.</p>
|
|
95425
97080
|
:param pulumi.Input[_builtins.str] column_name: <p>The column name that a tag key is assigned to.</p>
|
|
97081
|
+
:param pulumi.Input[_builtins.str] tag_key: <p>The unique key for a tag.</p>
|
|
95426
97082
|
:param pulumi.Input[_builtins.str] match_all_value: <p>A string that you want to use to filter by all the values in a column in the dataset and don’t want to list the values one by one. For example, you can use an asterisk as your match all value.</p>
|
|
95427
97083
|
:param pulumi.Input[_builtins.str] tag_multi_value_delimiter: <p>A string that you want to use to delimit the values when you pass the values at run time. For example, you can delimit the values with a comma.</p>
|
|
95428
97084
|
"""
|
|
97085
|
+
pulumi.set(__self__, "column_name", column_name)
|
|
95429
97086
|
pulumi.set(__self__, "tag_key", tag_key)
|
|
95430
|
-
if column_name is not None:
|
|
95431
|
-
pulumi.set(__self__, "column_name", column_name)
|
|
95432
97087
|
if match_all_value is not None:
|
|
95433
97088
|
pulumi.set(__self__, "match_all_value", match_all_value)
|
|
95434
97089
|
if tag_multi_value_delimiter is not None:
|
|
95435
97090
|
pulumi.set(__self__, "tag_multi_value_delimiter", tag_multi_value_delimiter)
|
|
95436
97091
|
|
|
97092
|
+
@_builtins.property
|
|
97093
|
+
@pulumi.getter(name="columnName")
|
|
97094
|
+
def column_name(self) -> pulumi.Input[_builtins.str]:
|
|
97095
|
+
"""
|
|
97096
|
+
<p>The column name that a tag key is assigned to.</p>
|
|
97097
|
+
"""
|
|
97098
|
+
return pulumi.get(self, "column_name")
|
|
97099
|
+
|
|
97100
|
+
@column_name.setter
|
|
97101
|
+
def column_name(self, value: pulumi.Input[_builtins.str]):
|
|
97102
|
+
pulumi.set(self, "column_name", value)
|
|
97103
|
+
|
|
95437
97104
|
@_builtins.property
|
|
95438
97105
|
@pulumi.getter(name="tagKey")
|
|
95439
97106
|
def tag_key(self) -> pulumi.Input[_builtins.str]:
|
|
@@ -95446,18 +97113,6 @@ class DataSetRowLevelPermissionTagRuleArgs:
|
|
|
95446
97113
|
def tag_key(self, value: pulumi.Input[_builtins.str]):
|
|
95447
97114
|
pulumi.set(self, "tag_key", value)
|
|
95448
97115
|
|
|
95449
|
-
@_builtins.property
|
|
95450
|
-
@pulumi.getter(name="columnName")
|
|
95451
|
-
def column_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
95452
|
-
"""
|
|
95453
|
-
<p>The column name that a tag key is assigned to.</p>
|
|
95454
|
-
"""
|
|
95455
|
-
return pulumi.get(self, "column_name")
|
|
95456
|
-
|
|
95457
|
-
@column_name.setter
|
|
95458
|
-
def column_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
95459
|
-
pulumi.set(self, "column_name", value)
|
|
95460
|
-
|
|
95461
97116
|
@_builtins.property
|
|
95462
97117
|
@pulumi.getter(name="matchAllValue")
|
|
95463
97118
|
def match_all_value(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -95492,7 +97147,7 @@ if not MYPY:
|
|
|
95492
97147
|
"""
|
|
95493
97148
|
<p>The Amazon Resource Name (ARN) for the data source.</p>
|
|
95494
97149
|
"""
|
|
95495
|
-
input_columns:
|
|
97150
|
+
input_columns: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgsDict']]]
|
|
95496
97151
|
"""
|
|
95497
97152
|
<p>A physical table type for an S3 data source.</p>
|
|
95498
97153
|
<note>
|
|
@@ -95510,7 +97165,7 @@ elif False:
|
|
|
95510
97165
|
class DataSetS3SourceArgs:
|
|
95511
97166
|
def __init__(__self__, *,
|
|
95512
97167
|
data_source_arn: pulumi.Input[_builtins.str],
|
|
95513
|
-
input_columns:
|
|
97168
|
+
input_columns: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]],
|
|
95514
97169
|
upload_settings: Optional[pulumi.Input['DataSetUploadSettingsArgs']] = None):
|
|
95515
97170
|
"""
|
|
95516
97171
|
<p>A physical table type for an S3 data source.</p>
|
|
@@ -95522,8 +97177,7 @@ class DataSetS3SourceArgs:
|
|
|
95522
97177
|
:param pulumi.Input['DataSetUploadSettingsArgs'] upload_settings: Information about the format for the S3 source file or files.
|
|
95523
97178
|
"""
|
|
95524
97179
|
pulumi.set(__self__, "data_source_arn", data_source_arn)
|
|
95525
|
-
|
|
95526
|
-
pulumi.set(__self__, "input_columns", input_columns)
|
|
97180
|
+
pulumi.set(__self__, "input_columns", input_columns)
|
|
95527
97181
|
if upload_settings is not None:
|
|
95528
97182
|
pulumi.set(__self__, "upload_settings", upload_settings)
|
|
95529
97183
|
|
|
@@ -95541,7 +97195,7 @@ class DataSetS3SourceArgs:
|
|
|
95541
97195
|
|
|
95542
97196
|
@_builtins.property
|
|
95543
97197
|
@pulumi.getter(name="inputColumns")
|
|
95544
|
-
def input_columns(self) ->
|
|
97198
|
+
def input_columns(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]:
|
|
95545
97199
|
"""
|
|
95546
97200
|
<p>A physical table type for an S3 data source.</p>
|
|
95547
97201
|
<note>
|
|
@@ -95551,7 +97205,7 @@ class DataSetS3SourceArgs:
|
|
|
95551
97205
|
return pulumi.get(self, "input_columns")
|
|
95552
97206
|
|
|
95553
97207
|
@input_columns.setter
|
|
95554
|
-
def input_columns(self, value:
|
|
97208
|
+
def input_columns(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]):
|
|
95555
97209
|
pulumi.set(self, "input_columns", value)
|
|
95556
97210
|
|
|
95557
97211
|
@_builtins.property
|
|
@@ -95567,6 +97221,193 @@ class DataSetS3SourceArgs:
|
|
|
95567
97221
|
pulumi.set(self, "upload_settings", value)
|
|
95568
97222
|
|
|
95569
97223
|
|
|
97224
|
+
if not MYPY:
|
|
97225
|
+
class DataSetSaaSTableArgsDict(TypedDict):
|
|
97226
|
+
data_source_arn: pulumi.Input[_builtins.str]
|
|
97227
|
+
input_columns: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgsDict']]]
|
|
97228
|
+
table_path: pulumi.Input[Sequence[pulumi.Input['DataSetTablePathElementArgsDict']]]
|
|
97229
|
+
elif False:
|
|
97230
|
+
DataSetSaaSTableArgsDict: TypeAlias = Mapping[str, Any]
|
|
97231
|
+
|
|
97232
|
+
@pulumi.input_type
|
|
97233
|
+
class DataSetSaaSTableArgs:
|
|
97234
|
+
def __init__(__self__, *,
|
|
97235
|
+
data_source_arn: pulumi.Input[_builtins.str],
|
|
97236
|
+
input_columns: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]],
|
|
97237
|
+
table_path: pulumi.Input[Sequence[pulumi.Input['DataSetTablePathElementArgs']]]):
|
|
97238
|
+
pulumi.set(__self__, "data_source_arn", data_source_arn)
|
|
97239
|
+
pulumi.set(__self__, "input_columns", input_columns)
|
|
97240
|
+
pulumi.set(__self__, "table_path", table_path)
|
|
97241
|
+
|
|
97242
|
+
@_builtins.property
|
|
97243
|
+
@pulumi.getter(name="dataSourceArn")
|
|
97244
|
+
def data_source_arn(self) -> pulumi.Input[_builtins.str]:
|
|
97245
|
+
return pulumi.get(self, "data_source_arn")
|
|
97246
|
+
|
|
97247
|
+
@data_source_arn.setter
|
|
97248
|
+
def data_source_arn(self, value: pulumi.Input[_builtins.str]):
|
|
97249
|
+
pulumi.set(self, "data_source_arn", value)
|
|
97250
|
+
|
|
97251
|
+
@_builtins.property
|
|
97252
|
+
@pulumi.getter(name="inputColumns")
|
|
97253
|
+
def input_columns(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]:
|
|
97254
|
+
return pulumi.get(self, "input_columns")
|
|
97255
|
+
|
|
97256
|
+
@input_columns.setter
|
|
97257
|
+
def input_columns(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetInputColumnArgs']]]):
|
|
97258
|
+
pulumi.set(self, "input_columns", value)
|
|
97259
|
+
|
|
97260
|
+
@_builtins.property
|
|
97261
|
+
@pulumi.getter(name="tablePath")
|
|
97262
|
+
def table_path(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetTablePathElementArgs']]]:
|
|
97263
|
+
return pulumi.get(self, "table_path")
|
|
97264
|
+
|
|
97265
|
+
@table_path.setter
|
|
97266
|
+
def table_path(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetTablePathElementArgs']]]):
|
|
97267
|
+
pulumi.set(self, "table_path", value)
|
|
97268
|
+
|
|
97269
|
+
|
|
97270
|
+
if not MYPY:
|
|
97271
|
+
class DataSetSemanticModelConfigurationArgsDict(TypedDict):
|
|
97272
|
+
table_map: NotRequired[pulumi.Input[Mapping[str, pulumi.Input['DataSetSemanticTableArgsDict']]]]
|
|
97273
|
+
elif False:
|
|
97274
|
+
DataSetSemanticModelConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
97275
|
+
|
|
97276
|
+
@pulumi.input_type
|
|
97277
|
+
class DataSetSemanticModelConfigurationArgs:
|
|
97278
|
+
def __init__(__self__, *,
|
|
97279
|
+
table_map: Optional[pulumi.Input[Mapping[str, pulumi.Input['DataSetSemanticTableArgs']]]] = None):
|
|
97280
|
+
if table_map is not None:
|
|
97281
|
+
pulumi.set(__self__, "table_map", table_map)
|
|
97282
|
+
|
|
97283
|
+
@_builtins.property
|
|
97284
|
+
@pulumi.getter(name="tableMap")
|
|
97285
|
+
def table_map(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input['DataSetSemanticTableArgs']]]]:
|
|
97286
|
+
return pulumi.get(self, "table_map")
|
|
97287
|
+
|
|
97288
|
+
@table_map.setter
|
|
97289
|
+
def table_map(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input['DataSetSemanticTableArgs']]]]):
|
|
97290
|
+
pulumi.set(self, "table_map", value)
|
|
97291
|
+
|
|
97292
|
+
|
|
97293
|
+
if not MYPY:
|
|
97294
|
+
class DataSetSemanticTableArgsDict(TypedDict):
|
|
97295
|
+
alias: pulumi.Input[_builtins.str]
|
|
97296
|
+
destination_table_id: pulumi.Input[_builtins.str]
|
|
97297
|
+
row_level_permission_configuration: NotRequired[pulumi.Input['DataSetRowLevelPermissionConfigurationArgsDict']]
|
|
97298
|
+
elif False:
|
|
97299
|
+
DataSetSemanticTableArgsDict: TypeAlias = Mapping[str, Any]
|
|
97300
|
+
|
|
97301
|
+
@pulumi.input_type
|
|
97302
|
+
class DataSetSemanticTableArgs:
|
|
97303
|
+
def __init__(__self__, *,
|
|
97304
|
+
alias: pulumi.Input[_builtins.str],
|
|
97305
|
+
destination_table_id: pulumi.Input[_builtins.str],
|
|
97306
|
+
row_level_permission_configuration: Optional[pulumi.Input['DataSetRowLevelPermissionConfigurationArgs']] = None):
|
|
97307
|
+
pulumi.set(__self__, "alias", alias)
|
|
97308
|
+
pulumi.set(__self__, "destination_table_id", destination_table_id)
|
|
97309
|
+
if row_level_permission_configuration is not None:
|
|
97310
|
+
pulumi.set(__self__, "row_level_permission_configuration", row_level_permission_configuration)
|
|
97311
|
+
|
|
97312
|
+
@_builtins.property
|
|
97313
|
+
@pulumi.getter
|
|
97314
|
+
def alias(self) -> pulumi.Input[_builtins.str]:
|
|
97315
|
+
return pulumi.get(self, "alias")
|
|
97316
|
+
|
|
97317
|
+
@alias.setter
|
|
97318
|
+
def alias(self, value: pulumi.Input[_builtins.str]):
|
|
97319
|
+
pulumi.set(self, "alias", value)
|
|
97320
|
+
|
|
97321
|
+
@_builtins.property
|
|
97322
|
+
@pulumi.getter(name="destinationTableId")
|
|
97323
|
+
def destination_table_id(self) -> pulumi.Input[_builtins.str]:
|
|
97324
|
+
return pulumi.get(self, "destination_table_id")
|
|
97325
|
+
|
|
97326
|
+
@destination_table_id.setter
|
|
97327
|
+
def destination_table_id(self, value: pulumi.Input[_builtins.str]):
|
|
97328
|
+
pulumi.set(self, "destination_table_id", value)
|
|
97329
|
+
|
|
97330
|
+
@_builtins.property
|
|
97331
|
+
@pulumi.getter(name="rowLevelPermissionConfiguration")
|
|
97332
|
+
def row_level_permission_configuration(self) -> Optional[pulumi.Input['DataSetRowLevelPermissionConfigurationArgs']]:
|
|
97333
|
+
return pulumi.get(self, "row_level_permission_configuration")
|
|
97334
|
+
|
|
97335
|
+
@row_level_permission_configuration.setter
|
|
97336
|
+
def row_level_permission_configuration(self, value: Optional[pulumi.Input['DataSetRowLevelPermissionConfigurationArgs']]):
|
|
97337
|
+
pulumi.set(self, "row_level_permission_configuration", value)
|
|
97338
|
+
|
|
97339
|
+
|
|
97340
|
+
if not MYPY:
|
|
97341
|
+
class DataSetSourceTableArgsDict(TypedDict):
|
|
97342
|
+
data_set: NotRequired[pulumi.Input['DataSetParentDataSetArgsDict']]
|
|
97343
|
+
physical_table_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
97344
|
+
elif False:
|
|
97345
|
+
DataSetSourceTableArgsDict: TypeAlias = Mapping[str, Any]
|
|
97346
|
+
|
|
97347
|
+
@pulumi.input_type
|
|
97348
|
+
class DataSetSourceTableArgs:
|
|
97349
|
+
def __init__(__self__, *,
|
|
97350
|
+
data_set: Optional[pulumi.Input['DataSetParentDataSetArgs']] = None,
|
|
97351
|
+
physical_table_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
97352
|
+
if data_set is not None:
|
|
97353
|
+
pulumi.set(__self__, "data_set", data_set)
|
|
97354
|
+
if physical_table_id is not None:
|
|
97355
|
+
pulumi.set(__self__, "physical_table_id", physical_table_id)
|
|
97356
|
+
|
|
97357
|
+
@_builtins.property
|
|
97358
|
+
@pulumi.getter(name="dataSet")
|
|
97359
|
+
def data_set(self) -> Optional[pulumi.Input['DataSetParentDataSetArgs']]:
|
|
97360
|
+
return pulumi.get(self, "data_set")
|
|
97361
|
+
|
|
97362
|
+
@data_set.setter
|
|
97363
|
+
def data_set(self, value: Optional[pulumi.Input['DataSetParentDataSetArgs']]):
|
|
97364
|
+
pulumi.set(self, "data_set", value)
|
|
97365
|
+
|
|
97366
|
+
@_builtins.property
|
|
97367
|
+
@pulumi.getter(name="physicalTableId")
|
|
97368
|
+
def physical_table_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
97369
|
+
return pulumi.get(self, "physical_table_id")
|
|
97370
|
+
|
|
97371
|
+
@physical_table_id.setter
|
|
97372
|
+
def physical_table_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
97373
|
+
pulumi.set(self, "physical_table_id", value)
|
|
97374
|
+
|
|
97375
|
+
|
|
97376
|
+
if not MYPY:
|
|
97377
|
+
class DataSetStringComparisonFilterConditionArgsDict(TypedDict):
|
|
97378
|
+
operator: pulumi.Input['DataSetStringComparisonFilterOperator']
|
|
97379
|
+
value: NotRequired[pulumi.Input['DataSetStringFilterValueArgsDict']]
|
|
97380
|
+
elif False:
|
|
97381
|
+
DataSetStringComparisonFilterConditionArgsDict: TypeAlias = Mapping[str, Any]
|
|
97382
|
+
|
|
97383
|
+
@pulumi.input_type
|
|
97384
|
+
class DataSetStringComparisonFilterConditionArgs:
|
|
97385
|
+
def __init__(__self__, *,
|
|
97386
|
+
operator: pulumi.Input['DataSetStringComparisonFilterOperator'],
|
|
97387
|
+
value: Optional[pulumi.Input['DataSetStringFilterValueArgs']] = None):
|
|
97388
|
+
pulumi.set(__self__, "operator", operator)
|
|
97389
|
+
if value is not None:
|
|
97390
|
+
pulumi.set(__self__, "value", value)
|
|
97391
|
+
|
|
97392
|
+
@_builtins.property
|
|
97393
|
+
@pulumi.getter
|
|
97394
|
+
def operator(self) -> pulumi.Input['DataSetStringComparisonFilterOperator']:
|
|
97395
|
+
return pulumi.get(self, "operator")
|
|
97396
|
+
|
|
97397
|
+
@operator.setter
|
|
97398
|
+
def operator(self, value: pulumi.Input['DataSetStringComparisonFilterOperator']):
|
|
97399
|
+
pulumi.set(self, "operator", value)
|
|
97400
|
+
|
|
97401
|
+
@_builtins.property
|
|
97402
|
+
@pulumi.getter
|
|
97403
|
+
def value(self) -> Optional[pulumi.Input['DataSetStringFilterValueArgs']]:
|
|
97404
|
+
return pulumi.get(self, "value")
|
|
97405
|
+
|
|
97406
|
+
@value.setter
|
|
97407
|
+
def value(self, value: Optional[pulumi.Input['DataSetStringFilterValueArgs']]):
|
|
97408
|
+
pulumi.set(self, "value", value)
|
|
97409
|
+
|
|
97410
|
+
|
|
95570
97411
|
if not MYPY:
|
|
95571
97412
|
class DataSetStringDatasetParameterDefaultValuesArgsDict(TypedDict):
|
|
95572
97413
|
"""
|
|
@@ -95696,6 +97537,172 @@ class DataSetStringDatasetParameterArgs:
|
|
|
95696
97537
|
pulumi.set(self, "default_values", value)
|
|
95697
97538
|
|
|
95698
97539
|
|
|
97540
|
+
if not MYPY:
|
|
97541
|
+
class DataSetStringFilterConditionArgsDict(TypedDict):
|
|
97542
|
+
column_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
97543
|
+
comparison_filter_condition: NotRequired[pulumi.Input['DataSetStringComparisonFilterConditionArgsDict']]
|
|
97544
|
+
list_filter_condition: NotRequired[pulumi.Input['DataSetStringListFilterConditionArgsDict']]
|
|
97545
|
+
elif False:
|
|
97546
|
+
DataSetStringFilterConditionArgsDict: TypeAlias = Mapping[str, Any]
|
|
97547
|
+
|
|
97548
|
+
@pulumi.input_type
|
|
97549
|
+
class DataSetStringFilterConditionArgs:
|
|
97550
|
+
def __init__(__self__, *,
|
|
97551
|
+
column_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
97552
|
+
comparison_filter_condition: Optional[pulumi.Input['DataSetStringComparisonFilterConditionArgs']] = None,
|
|
97553
|
+
list_filter_condition: Optional[pulumi.Input['DataSetStringListFilterConditionArgs']] = None):
|
|
97554
|
+
if column_name is not None:
|
|
97555
|
+
pulumi.set(__self__, "column_name", column_name)
|
|
97556
|
+
if comparison_filter_condition is not None:
|
|
97557
|
+
pulumi.set(__self__, "comparison_filter_condition", comparison_filter_condition)
|
|
97558
|
+
if list_filter_condition is not None:
|
|
97559
|
+
pulumi.set(__self__, "list_filter_condition", list_filter_condition)
|
|
97560
|
+
|
|
97561
|
+
@_builtins.property
|
|
97562
|
+
@pulumi.getter(name="columnName")
|
|
97563
|
+
def column_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
97564
|
+
return pulumi.get(self, "column_name")
|
|
97565
|
+
|
|
97566
|
+
@column_name.setter
|
|
97567
|
+
def column_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
97568
|
+
pulumi.set(self, "column_name", value)
|
|
97569
|
+
|
|
97570
|
+
@_builtins.property
|
|
97571
|
+
@pulumi.getter(name="comparisonFilterCondition")
|
|
97572
|
+
def comparison_filter_condition(self) -> Optional[pulumi.Input['DataSetStringComparisonFilterConditionArgs']]:
|
|
97573
|
+
return pulumi.get(self, "comparison_filter_condition")
|
|
97574
|
+
|
|
97575
|
+
@comparison_filter_condition.setter
|
|
97576
|
+
def comparison_filter_condition(self, value: Optional[pulumi.Input['DataSetStringComparisonFilterConditionArgs']]):
|
|
97577
|
+
pulumi.set(self, "comparison_filter_condition", value)
|
|
97578
|
+
|
|
97579
|
+
@_builtins.property
|
|
97580
|
+
@pulumi.getter(name="listFilterCondition")
|
|
97581
|
+
def list_filter_condition(self) -> Optional[pulumi.Input['DataSetStringListFilterConditionArgs']]:
|
|
97582
|
+
return pulumi.get(self, "list_filter_condition")
|
|
97583
|
+
|
|
97584
|
+
@list_filter_condition.setter
|
|
97585
|
+
def list_filter_condition(self, value: Optional[pulumi.Input['DataSetStringListFilterConditionArgs']]):
|
|
97586
|
+
pulumi.set(self, "list_filter_condition", value)
|
|
97587
|
+
|
|
97588
|
+
|
|
97589
|
+
if not MYPY:
|
|
97590
|
+
class DataSetStringFilterValueArgsDict(TypedDict):
|
|
97591
|
+
static_value: NotRequired[pulumi.Input[_builtins.str]]
|
|
97592
|
+
elif False:
|
|
97593
|
+
DataSetStringFilterValueArgsDict: TypeAlias = Mapping[str, Any]
|
|
97594
|
+
|
|
97595
|
+
@pulumi.input_type
|
|
97596
|
+
class DataSetStringFilterValueArgs:
|
|
97597
|
+
def __init__(__self__, *,
|
|
97598
|
+
static_value: Optional[pulumi.Input[_builtins.str]] = None):
|
|
97599
|
+
if static_value is not None:
|
|
97600
|
+
pulumi.set(__self__, "static_value", static_value)
|
|
97601
|
+
|
|
97602
|
+
@_builtins.property
|
|
97603
|
+
@pulumi.getter(name="staticValue")
|
|
97604
|
+
def static_value(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
97605
|
+
return pulumi.get(self, "static_value")
|
|
97606
|
+
|
|
97607
|
+
@static_value.setter
|
|
97608
|
+
def static_value(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
97609
|
+
pulumi.set(self, "static_value", value)
|
|
97610
|
+
|
|
97611
|
+
|
|
97612
|
+
if not MYPY:
|
|
97613
|
+
class DataSetStringListFilterConditionArgsDict(TypedDict):
|
|
97614
|
+
operator: pulumi.Input['DataSetStringListFilterOperator']
|
|
97615
|
+
values: NotRequired[pulumi.Input['DataSetStringListFilterValueArgsDict']]
|
|
97616
|
+
elif False:
|
|
97617
|
+
DataSetStringListFilterConditionArgsDict: TypeAlias = Mapping[str, Any]
|
|
97618
|
+
|
|
97619
|
+
@pulumi.input_type
|
|
97620
|
+
class DataSetStringListFilterConditionArgs:
|
|
97621
|
+
def __init__(__self__, *,
|
|
97622
|
+
operator: pulumi.Input['DataSetStringListFilterOperator'],
|
|
97623
|
+
values: Optional[pulumi.Input['DataSetStringListFilterValueArgs']] = None):
|
|
97624
|
+
pulumi.set(__self__, "operator", operator)
|
|
97625
|
+
if values is not None:
|
|
97626
|
+
pulumi.set(__self__, "values", values)
|
|
97627
|
+
|
|
97628
|
+
@_builtins.property
|
|
97629
|
+
@pulumi.getter
|
|
97630
|
+
def operator(self) -> pulumi.Input['DataSetStringListFilterOperator']:
|
|
97631
|
+
return pulumi.get(self, "operator")
|
|
97632
|
+
|
|
97633
|
+
@operator.setter
|
|
97634
|
+
def operator(self, value: pulumi.Input['DataSetStringListFilterOperator']):
|
|
97635
|
+
pulumi.set(self, "operator", value)
|
|
97636
|
+
|
|
97637
|
+
@_builtins.property
|
|
97638
|
+
@pulumi.getter
|
|
97639
|
+
def values(self) -> Optional[pulumi.Input['DataSetStringListFilterValueArgs']]:
|
|
97640
|
+
return pulumi.get(self, "values")
|
|
97641
|
+
|
|
97642
|
+
@values.setter
|
|
97643
|
+
def values(self, value: Optional[pulumi.Input['DataSetStringListFilterValueArgs']]):
|
|
97644
|
+
pulumi.set(self, "values", value)
|
|
97645
|
+
|
|
97646
|
+
|
|
97647
|
+
if not MYPY:
|
|
97648
|
+
class DataSetStringListFilterValueArgsDict(TypedDict):
|
|
97649
|
+
static_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
97650
|
+
elif False:
|
|
97651
|
+
DataSetStringListFilterValueArgsDict: TypeAlias = Mapping[str, Any]
|
|
97652
|
+
|
|
97653
|
+
@pulumi.input_type
|
|
97654
|
+
class DataSetStringListFilterValueArgs:
|
|
97655
|
+
def __init__(__self__, *,
|
|
97656
|
+
static_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
|
97657
|
+
if static_values is not None:
|
|
97658
|
+
pulumi.set(__self__, "static_values", static_values)
|
|
97659
|
+
|
|
97660
|
+
@_builtins.property
|
|
97661
|
+
@pulumi.getter(name="staticValues")
|
|
97662
|
+
def static_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
97663
|
+
return pulumi.get(self, "static_values")
|
|
97664
|
+
|
|
97665
|
+
@static_values.setter
|
|
97666
|
+
def static_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
97667
|
+
pulumi.set(self, "static_values", value)
|
|
97668
|
+
|
|
97669
|
+
|
|
97670
|
+
if not MYPY:
|
|
97671
|
+
class DataSetTablePathElementArgsDict(TypedDict):
|
|
97672
|
+
id: NotRequired[pulumi.Input[_builtins.str]]
|
|
97673
|
+
name: NotRequired[pulumi.Input[_builtins.str]]
|
|
97674
|
+
elif False:
|
|
97675
|
+
DataSetTablePathElementArgsDict: TypeAlias = Mapping[str, Any]
|
|
97676
|
+
|
|
97677
|
+
@pulumi.input_type
|
|
97678
|
+
class DataSetTablePathElementArgs:
|
|
97679
|
+
def __init__(__self__, *,
|
|
97680
|
+
id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
97681
|
+
name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
97682
|
+
if id is not None:
|
|
97683
|
+
pulumi.set(__self__, "id", id)
|
|
97684
|
+
if name is not None:
|
|
97685
|
+
pulumi.set(__self__, "name", name)
|
|
97686
|
+
|
|
97687
|
+
@_builtins.property
|
|
97688
|
+
@pulumi.getter
|
|
97689
|
+
def id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
97690
|
+
return pulumi.get(self, "id")
|
|
97691
|
+
|
|
97692
|
+
@id.setter
|
|
97693
|
+
def id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
97694
|
+
pulumi.set(self, "id", value)
|
|
97695
|
+
|
|
97696
|
+
@_builtins.property
|
|
97697
|
+
@pulumi.getter
|
|
97698
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
97699
|
+
return pulumi.get(self, "name")
|
|
97700
|
+
|
|
97701
|
+
@name.setter
|
|
97702
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
97703
|
+
pulumi.set(self, "name", value)
|
|
97704
|
+
|
|
97705
|
+
|
|
95699
97706
|
if not MYPY:
|
|
95700
97707
|
class DataSetTagColumnOperationArgsDict(TypedDict):
|
|
95701
97708
|
"""
|
|
@@ -95759,6 +97766,41 @@ class DataSetTagColumnOperationArgs:
|
|
|
95759
97766
|
pulumi.set(self, "tags", value)
|
|
95760
97767
|
|
|
95761
97768
|
|
|
97769
|
+
if not MYPY:
|
|
97770
|
+
class DataSetTransformOperationSourceArgsDict(TypedDict):
|
|
97771
|
+
transform_operation_id: pulumi.Input[_builtins.str]
|
|
97772
|
+
column_id_mappings: NotRequired[pulumi.Input[Sequence[pulumi.Input['DataSetColumnIdMappingArgsDict']]]]
|
|
97773
|
+
elif False:
|
|
97774
|
+
DataSetTransformOperationSourceArgsDict: TypeAlias = Mapping[str, Any]
|
|
97775
|
+
|
|
97776
|
+
@pulumi.input_type
|
|
97777
|
+
class DataSetTransformOperationSourceArgs:
|
|
97778
|
+
def __init__(__self__, *,
|
|
97779
|
+
transform_operation_id: pulumi.Input[_builtins.str],
|
|
97780
|
+
column_id_mappings: Optional[pulumi.Input[Sequence[pulumi.Input['DataSetColumnIdMappingArgs']]]] = None):
|
|
97781
|
+
pulumi.set(__self__, "transform_operation_id", transform_operation_id)
|
|
97782
|
+
if column_id_mappings is not None:
|
|
97783
|
+
pulumi.set(__self__, "column_id_mappings", column_id_mappings)
|
|
97784
|
+
|
|
97785
|
+
@_builtins.property
|
|
97786
|
+
@pulumi.getter(name="transformOperationId")
|
|
97787
|
+
def transform_operation_id(self) -> pulumi.Input[_builtins.str]:
|
|
97788
|
+
return pulumi.get(self, "transform_operation_id")
|
|
97789
|
+
|
|
97790
|
+
@transform_operation_id.setter
|
|
97791
|
+
def transform_operation_id(self, value: pulumi.Input[_builtins.str]):
|
|
97792
|
+
pulumi.set(self, "transform_operation_id", value)
|
|
97793
|
+
|
|
97794
|
+
@_builtins.property
|
|
97795
|
+
@pulumi.getter(name="columnIdMappings")
|
|
97796
|
+
def column_id_mappings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DataSetColumnIdMappingArgs']]]]:
|
|
97797
|
+
return pulumi.get(self, "column_id_mappings")
|
|
97798
|
+
|
|
97799
|
+
@column_id_mappings.setter
|
|
97800
|
+
def column_id_mappings(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DataSetColumnIdMappingArgs']]]]):
|
|
97801
|
+
pulumi.set(self, "column_id_mappings", value)
|
|
97802
|
+
|
|
97803
|
+
|
|
95762
97804
|
if not MYPY:
|
|
95763
97805
|
class DataSetTransformOperationArgsDict(TypedDict):
|
|
95764
97806
|
"""
|
|
@@ -95930,29 +97972,275 @@ class DataSetTransformOperationArgs:
|
|
|
95930
97972
|
pulumi.set(self, "untag_column_operation", value)
|
|
95931
97973
|
|
|
95932
97974
|
|
|
97975
|
+
if not MYPY:
|
|
97976
|
+
class DataSetTransformStepArgsDict(TypedDict):
|
|
97977
|
+
aggregate_step: NotRequired[pulumi.Input['DataSetAggregateOperationArgsDict']]
|
|
97978
|
+
append_step: NotRequired[pulumi.Input['DataSetAppendOperationArgsDict']]
|
|
97979
|
+
cast_column_types_step: NotRequired[pulumi.Input['DataSetCastColumnTypesOperationArgsDict']]
|
|
97980
|
+
create_columns_step: NotRequired[pulumi.Input['DataSetCreateColumnsOperationArgsDict']]
|
|
97981
|
+
filters_step: NotRequired[pulumi.Input['DataSetFiltersOperationArgsDict']]
|
|
97982
|
+
import_table_step: NotRequired[pulumi.Input['DataSetImportTableOperationArgsDict']]
|
|
97983
|
+
join_step: NotRequired[pulumi.Input['DataSetJoinOperationArgsDict']]
|
|
97984
|
+
pivot_step: NotRequired[pulumi.Input['DataSetPivotOperationArgsDict']]
|
|
97985
|
+
project_step: NotRequired[pulumi.Input['DataSetProjectOperationArgsDict']]
|
|
97986
|
+
rename_columns_step: NotRequired[pulumi.Input['DataSetRenameColumnsOperationArgsDict']]
|
|
97987
|
+
unpivot_step: NotRequired[pulumi.Input['DataSetUnpivotOperationArgsDict']]
|
|
97988
|
+
elif False:
|
|
97989
|
+
DataSetTransformStepArgsDict: TypeAlias = Mapping[str, Any]
|
|
97990
|
+
|
|
97991
|
+
@pulumi.input_type
|
|
97992
|
+
class DataSetTransformStepArgs:
|
|
97993
|
+
def __init__(__self__, *,
|
|
97994
|
+
aggregate_step: Optional[pulumi.Input['DataSetAggregateOperationArgs']] = None,
|
|
97995
|
+
append_step: Optional[pulumi.Input['DataSetAppendOperationArgs']] = None,
|
|
97996
|
+
cast_column_types_step: Optional[pulumi.Input['DataSetCastColumnTypesOperationArgs']] = None,
|
|
97997
|
+
create_columns_step: Optional[pulumi.Input['DataSetCreateColumnsOperationArgs']] = None,
|
|
97998
|
+
filters_step: Optional[pulumi.Input['DataSetFiltersOperationArgs']] = None,
|
|
97999
|
+
import_table_step: Optional[pulumi.Input['DataSetImportTableOperationArgs']] = None,
|
|
98000
|
+
join_step: Optional[pulumi.Input['DataSetJoinOperationArgs']] = None,
|
|
98001
|
+
pivot_step: Optional[pulumi.Input['DataSetPivotOperationArgs']] = None,
|
|
98002
|
+
project_step: Optional[pulumi.Input['DataSetProjectOperationArgs']] = None,
|
|
98003
|
+
rename_columns_step: Optional[pulumi.Input['DataSetRenameColumnsOperationArgs']] = None,
|
|
98004
|
+
unpivot_step: Optional[pulumi.Input['DataSetUnpivotOperationArgs']] = None):
|
|
98005
|
+
if aggregate_step is not None:
|
|
98006
|
+
pulumi.set(__self__, "aggregate_step", aggregate_step)
|
|
98007
|
+
if append_step is not None:
|
|
98008
|
+
pulumi.set(__self__, "append_step", append_step)
|
|
98009
|
+
if cast_column_types_step is not None:
|
|
98010
|
+
pulumi.set(__self__, "cast_column_types_step", cast_column_types_step)
|
|
98011
|
+
if create_columns_step is not None:
|
|
98012
|
+
pulumi.set(__self__, "create_columns_step", create_columns_step)
|
|
98013
|
+
if filters_step is not None:
|
|
98014
|
+
pulumi.set(__self__, "filters_step", filters_step)
|
|
98015
|
+
if import_table_step is not None:
|
|
98016
|
+
pulumi.set(__self__, "import_table_step", import_table_step)
|
|
98017
|
+
if join_step is not None:
|
|
98018
|
+
pulumi.set(__self__, "join_step", join_step)
|
|
98019
|
+
if pivot_step is not None:
|
|
98020
|
+
pulumi.set(__self__, "pivot_step", pivot_step)
|
|
98021
|
+
if project_step is not None:
|
|
98022
|
+
pulumi.set(__self__, "project_step", project_step)
|
|
98023
|
+
if rename_columns_step is not None:
|
|
98024
|
+
pulumi.set(__self__, "rename_columns_step", rename_columns_step)
|
|
98025
|
+
if unpivot_step is not None:
|
|
98026
|
+
pulumi.set(__self__, "unpivot_step", unpivot_step)
|
|
98027
|
+
|
|
98028
|
+
@_builtins.property
|
|
98029
|
+
@pulumi.getter(name="aggregateStep")
|
|
98030
|
+
def aggregate_step(self) -> Optional[pulumi.Input['DataSetAggregateOperationArgs']]:
|
|
98031
|
+
return pulumi.get(self, "aggregate_step")
|
|
98032
|
+
|
|
98033
|
+
@aggregate_step.setter
|
|
98034
|
+
def aggregate_step(self, value: Optional[pulumi.Input['DataSetAggregateOperationArgs']]):
|
|
98035
|
+
pulumi.set(self, "aggregate_step", value)
|
|
98036
|
+
|
|
98037
|
+
@_builtins.property
|
|
98038
|
+
@pulumi.getter(name="appendStep")
|
|
98039
|
+
def append_step(self) -> Optional[pulumi.Input['DataSetAppendOperationArgs']]:
|
|
98040
|
+
return pulumi.get(self, "append_step")
|
|
98041
|
+
|
|
98042
|
+
@append_step.setter
|
|
98043
|
+
def append_step(self, value: Optional[pulumi.Input['DataSetAppendOperationArgs']]):
|
|
98044
|
+
pulumi.set(self, "append_step", value)
|
|
98045
|
+
|
|
98046
|
+
@_builtins.property
|
|
98047
|
+
@pulumi.getter(name="castColumnTypesStep")
|
|
98048
|
+
def cast_column_types_step(self) -> Optional[pulumi.Input['DataSetCastColumnTypesOperationArgs']]:
|
|
98049
|
+
return pulumi.get(self, "cast_column_types_step")
|
|
98050
|
+
|
|
98051
|
+
@cast_column_types_step.setter
|
|
98052
|
+
def cast_column_types_step(self, value: Optional[pulumi.Input['DataSetCastColumnTypesOperationArgs']]):
|
|
98053
|
+
pulumi.set(self, "cast_column_types_step", value)
|
|
98054
|
+
|
|
98055
|
+
@_builtins.property
|
|
98056
|
+
@pulumi.getter(name="createColumnsStep")
|
|
98057
|
+
def create_columns_step(self) -> Optional[pulumi.Input['DataSetCreateColumnsOperationArgs']]:
|
|
98058
|
+
return pulumi.get(self, "create_columns_step")
|
|
98059
|
+
|
|
98060
|
+
@create_columns_step.setter
|
|
98061
|
+
def create_columns_step(self, value: Optional[pulumi.Input['DataSetCreateColumnsOperationArgs']]):
|
|
98062
|
+
pulumi.set(self, "create_columns_step", value)
|
|
98063
|
+
|
|
98064
|
+
@_builtins.property
|
|
98065
|
+
@pulumi.getter(name="filtersStep")
|
|
98066
|
+
def filters_step(self) -> Optional[pulumi.Input['DataSetFiltersOperationArgs']]:
|
|
98067
|
+
return pulumi.get(self, "filters_step")
|
|
98068
|
+
|
|
98069
|
+
@filters_step.setter
|
|
98070
|
+
def filters_step(self, value: Optional[pulumi.Input['DataSetFiltersOperationArgs']]):
|
|
98071
|
+
pulumi.set(self, "filters_step", value)
|
|
98072
|
+
|
|
98073
|
+
@_builtins.property
|
|
98074
|
+
@pulumi.getter(name="importTableStep")
|
|
98075
|
+
def import_table_step(self) -> Optional[pulumi.Input['DataSetImportTableOperationArgs']]:
|
|
98076
|
+
return pulumi.get(self, "import_table_step")
|
|
98077
|
+
|
|
98078
|
+
@import_table_step.setter
|
|
98079
|
+
def import_table_step(self, value: Optional[pulumi.Input['DataSetImportTableOperationArgs']]):
|
|
98080
|
+
pulumi.set(self, "import_table_step", value)
|
|
98081
|
+
|
|
98082
|
+
@_builtins.property
|
|
98083
|
+
@pulumi.getter(name="joinStep")
|
|
98084
|
+
def join_step(self) -> Optional[pulumi.Input['DataSetJoinOperationArgs']]:
|
|
98085
|
+
return pulumi.get(self, "join_step")
|
|
98086
|
+
|
|
98087
|
+
@join_step.setter
|
|
98088
|
+
def join_step(self, value: Optional[pulumi.Input['DataSetJoinOperationArgs']]):
|
|
98089
|
+
pulumi.set(self, "join_step", value)
|
|
98090
|
+
|
|
98091
|
+
@_builtins.property
|
|
98092
|
+
@pulumi.getter(name="pivotStep")
|
|
98093
|
+
def pivot_step(self) -> Optional[pulumi.Input['DataSetPivotOperationArgs']]:
|
|
98094
|
+
return pulumi.get(self, "pivot_step")
|
|
98095
|
+
|
|
98096
|
+
@pivot_step.setter
|
|
98097
|
+
def pivot_step(self, value: Optional[pulumi.Input['DataSetPivotOperationArgs']]):
|
|
98098
|
+
pulumi.set(self, "pivot_step", value)
|
|
98099
|
+
|
|
98100
|
+
@_builtins.property
|
|
98101
|
+
@pulumi.getter(name="projectStep")
|
|
98102
|
+
def project_step(self) -> Optional[pulumi.Input['DataSetProjectOperationArgs']]:
|
|
98103
|
+
return pulumi.get(self, "project_step")
|
|
98104
|
+
|
|
98105
|
+
@project_step.setter
|
|
98106
|
+
def project_step(self, value: Optional[pulumi.Input['DataSetProjectOperationArgs']]):
|
|
98107
|
+
pulumi.set(self, "project_step", value)
|
|
98108
|
+
|
|
98109
|
+
@_builtins.property
|
|
98110
|
+
@pulumi.getter(name="renameColumnsStep")
|
|
98111
|
+
def rename_columns_step(self) -> Optional[pulumi.Input['DataSetRenameColumnsOperationArgs']]:
|
|
98112
|
+
return pulumi.get(self, "rename_columns_step")
|
|
98113
|
+
|
|
98114
|
+
@rename_columns_step.setter
|
|
98115
|
+
def rename_columns_step(self, value: Optional[pulumi.Input['DataSetRenameColumnsOperationArgs']]):
|
|
98116
|
+
pulumi.set(self, "rename_columns_step", value)
|
|
98117
|
+
|
|
98118
|
+
@_builtins.property
|
|
98119
|
+
@pulumi.getter(name="unpivotStep")
|
|
98120
|
+
def unpivot_step(self) -> Optional[pulumi.Input['DataSetUnpivotOperationArgs']]:
|
|
98121
|
+
return pulumi.get(self, "unpivot_step")
|
|
98122
|
+
|
|
98123
|
+
@unpivot_step.setter
|
|
98124
|
+
def unpivot_step(self, value: Optional[pulumi.Input['DataSetUnpivotOperationArgs']]):
|
|
98125
|
+
pulumi.set(self, "unpivot_step", value)
|
|
98126
|
+
|
|
98127
|
+
|
|
95933
98128
|
if not MYPY:
|
|
95934
98129
|
class DataSetUniqueKeyArgsDict(TypedDict):
|
|
95935
|
-
column_names:
|
|
98130
|
+
column_names: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
95936
98131
|
elif False:
|
|
95937
98132
|
DataSetUniqueKeyArgsDict: TypeAlias = Mapping[str, Any]
|
|
95938
98133
|
|
|
95939
98134
|
@pulumi.input_type
|
|
95940
98135
|
class DataSetUniqueKeyArgs:
|
|
95941
98136
|
def __init__(__self__, *,
|
|
95942
|
-
column_names:
|
|
95943
|
-
|
|
95944
|
-
pulumi.set(__self__, "column_names", column_names)
|
|
98137
|
+
column_names: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
98138
|
+
pulumi.set(__self__, "column_names", column_names)
|
|
95945
98139
|
|
|
95946
98140
|
@_builtins.property
|
|
95947
98141
|
@pulumi.getter(name="columnNames")
|
|
95948
|
-
def column_names(self) ->
|
|
98142
|
+
def column_names(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
95949
98143
|
return pulumi.get(self, "column_names")
|
|
95950
98144
|
|
|
95951
98145
|
@column_names.setter
|
|
95952
|
-
def column_names(self, value:
|
|
98146
|
+
def column_names(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
95953
98147
|
pulumi.set(self, "column_names", value)
|
|
95954
98148
|
|
|
95955
98149
|
|
|
98150
|
+
if not MYPY:
|
|
98151
|
+
class DataSetUnpivotOperationArgsDict(TypedDict):
|
|
98152
|
+
alias: pulumi.Input[_builtins.str]
|
|
98153
|
+
columns_to_unpivot: pulumi.Input[Sequence[pulumi.Input['DataSetColumnToUnpivotArgsDict']]]
|
|
98154
|
+
source: pulumi.Input['DataSetTransformOperationSourceArgsDict']
|
|
98155
|
+
unpivoted_label_column_id: pulumi.Input[_builtins.str]
|
|
98156
|
+
unpivoted_label_column_name: pulumi.Input[_builtins.str]
|
|
98157
|
+
unpivoted_value_column_id: pulumi.Input[_builtins.str]
|
|
98158
|
+
unpivoted_value_column_name: pulumi.Input[_builtins.str]
|
|
98159
|
+
elif False:
|
|
98160
|
+
DataSetUnpivotOperationArgsDict: TypeAlias = Mapping[str, Any]
|
|
98161
|
+
|
|
98162
|
+
@pulumi.input_type
|
|
98163
|
+
class DataSetUnpivotOperationArgs:
|
|
98164
|
+
def __init__(__self__, *,
|
|
98165
|
+
alias: pulumi.Input[_builtins.str],
|
|
98166
|
+
columns_to_unpivot: pulumi.Input[Sequence[pulumi.Input['DataSetColumnToUnpivotArgs']]],
|
|
98167
|
+
source: pulumi.Input['DataSetTransformOperationSourceArgs'],
|
|
98168
|
+
unpivoted_label_column_id: pulumi.Input[_builtins.str],
|
|
98169
|
+
unpivoted_label_column_name: pulumi.Input[_builtins.str],
|
|
98170
|
+
unpivoted_value_column_id: pulumi.Input[_builtins.str],
|
|
98171
|
+
unpivoted_value_column_name: pulumi.Input[_builtins.str]):
|
|
98172
|
+
pulumi.set(__self__, "alias", alias)
|
|
98173
|
+
pulumi.set(__self__, "columns_to_unpivot", columns_to_unpivot)
|
|
98174
|
+
pulumi.set(__self__, "source", source)
|
|
98175
|
+
pulumi.set(__self__, "unpivoted_label_column_id", unpivoted_label_column_id)
|
|
98176
|
+
pulumi.set(__self__, "unpivoted_label_column_name", unpivoted_label_column_name)
|
|
98177
|
+
pulumi.set(__self__, "unpivoted_value_column_id", unpivoted_value_column_id)
|
|
98178
|
+
pulumi.set(__self__, "unpivoted_value_column_name", unpivoted_value_column_name)
|
|
98179
|
+
|
|
98180
|
+
@_builtins.property
|
|
98181
|
+
@pulumi.getter
|
|
98182
|
+
def alias(self) -> pulumi.Input[_builtins.str]:
|
|
98183
|
+
return pulumi.get(self, "alias")
|
|
98184
|
+
|
|
98185
|
+
@alias.setter
|
|
98186
|
+
def alias(self, value: pulumi.Input[_builtins.str]):
|
|
98187
|
+
pulumi.set(self, "alias", value)
|
|
98188
|
+
|
|
98189
|
+
@_builtins.property
|
|
98190
|
+
@pulumi.getter(name="columnsToUnpivot")
|
|
98191
|
+
def columns_to_unpivot(self) -> pulumi.Input[Sequence[pulumi.Input['DataSetColumnToUnpivotArgs']]]:
|
|
98192
|
+
return pulumi.get(self, "columns_to_unpivot")
|
|
98193
|
+
|
|
98194
|
+
@columns_to_unpivot.setter
|
|
98195
|
+
def columns_to_unpivot(self, value: pulumi.Input[Sequence[pulumi.Input['DataSetColumnToUnpivotArgs']]]):
|
|
98196
|
+
pulumi.set(self, "columns_to_unpivot", value)
|
|
98197
|
+
|
|
98198
|
+
@_builtins.property
|
|
98199
|
+
@pulumi.getter
|
|
98200
|
+
def source(self) -> pulumi.Input['DataSetTransformOperationSourceArgs']:
|
|
98201
|
+
return pulumi.get(self, "source")
|
|
98202
|
+
|
|
98203
|
+
@source.setter
|
|
98204
|
+
def source(self, value: pulumi.Input['DataSetTransformOperationSourceArgs']):
|
|
98205
|
+
pulumi.set(self, "source", value)
|
|
98206
|
+
|
|
98207
|
+
@_builtins.property
|
|
98208
|
+
@pulumi.getter(name="unpivotedLabelColumnId")
|
|
98209
|
+
def unpivoted_label_column_id(self) -> pulumi.Input[_builtins.str]:
|
|
98210
|
+
return pulumi.get(self, "unpivoted_label_column_id")
|
|
98211
|
+
|
|
98212
|
+
@unpivoted_label_column_id.setter
|
|
98213
|
+
def unpivoted_label_column_id(self, value: pulumi.Input[_builtins.str]):
|
|
98214
|
+
pulumi.set(self, "unpivoted_label_column_id", value)
|
|
98215
|
+
|
|
98216
|
+
@_builtins.property
|
|
98217
|
+
@pulumi.getter(name="unpivotedLabelColumnName")
|
|
98218
|
+
def unpivoted_label_column_name(self) -> pulumi.Input[_builtins.str]:
|
|
98219
|
+
return pulumi.get(self, "unpivoted_label_column_name")
|
|
98220
|
+
|
|
98221
|
+
@unpivoted_label_column_name.setter
|
|
98222
|
+
def unpivoted_label_column_name(self, value: pulumi.Input[_builtins.str]):
|
|
98223
|
+
pulumi.set(self, "unpivoted_label_column_name", value)
|
|
98224
|
+
|
|
98225
|
+
@_builtins.property
|
|
98226
|
+
@pulumi.getter(name="unpivotedValueColumnId")
|
|
98227
|
+
def unpivoted_value_column_id(self) -> pulumi.Input[_builtins.str]:
|
|
98228
|
+
return pulumi.get(self, "unpivoted_value_column_id")
|
|
98229
|
+
|
|
98230
|
+
@unpivoted_value_column_id.setter
|
|
98231
|
+
def unpivoted_value_column_id(self, value: pulumi.Input[_builtins.str]):
|
|
98232
|
+
pulumi.set(self, "unpivoted_value_column_id", value)
|
|
98233
|
+
|
|
98234
|
+
@_builtins.property
|
|
98235
|
+
@pulumi.getter(name="unpivotedValueColumnName")
|
|
98236
|
+
def unpivoted_value_column_name(self) -> pulumi.Input[_builtins.str]:
|
|
98237
|
+
return pulumi.get(self, "unpivoted_value_column_name")
|
|
98238
|
+
|
|
98239
|
+
@unpivoted_value_column_name.setter
|
|
98240
|
+
def unpivoted_value_column_name(self, value: pulumi.Input[_builtins.str]):
|
|
98241
|
+
pulumi.set(self, "unpivoted_value_column_name", value)
|
|
98242
|
+
|
|
98243
|
+
|
|
95956
98244
|
if not MYPY:
|
|
95957
98245
|
class DataSetUntagColumnOperationArgsDict(TypedDict):
|
|
95958
98246
|
"""
|
|
@@ -96179,6 +98467,29 @@ class DataSetUsageConfigurationArgs:
|
|
|
96179
98467
|
pulumi.set(self, "disable_use_as_imported_source", value)
|
|
96180
98468
|
|
|
96181
98469
|
|
|
98470
|
+
if not MYPY:
|
|
98471
|
+
class DataSetValueColumnConfigurationArgsDict(TypedDict):
|
|
98472
|
+
aggregation_function: NotRequired[pulumi.Input['DataSetDataPrepAggregationFunctionArgsDict']]
|
|
98473
|
+
elif False:
|
|
98474
|
+
DataSetValueColumnConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
98475
|
+
|
|
98476
|
+
@pulumi.input_type
|
|
98477
|
+
class DataSetValueColumnConfigurationArgs:
|
|
98478
|
+
def __init__(__self__, *,
|
|
98479
|
+
aggregation_function: Optional[pulumi.Input['DataSetDataPrepAggregationFunctionArgs']] = None):
|
|
98480
|
+
if aggregation_function is not None:
|
|
98481
|
+
pulumi.set(__self__, "aggregation_function", aggregation_function)
|
|
98482
|
+
|
|
98483
|
+
@_builtins.property
|
|
98484
|
+
@pulumi.getter(name="aggregationFunction")
|
|
98485
|
+
def aggregation_function(self) -> Optional[pulumi.Input['DataSetDataPrepAggregationFunctionArgs']]:
|
|
98486
|
+
return pulumi.get(self, "aggregation_function")
|
|
98487
|
+
|
|
98488
|
+
@aggregation_function.setter
|
|
98489
|
+
def aggregation_function(self, value: Optional[pulumi.Input['DataSetDataPrepAggregationFunctionArgs']]):
|
|
98490
|
+
pulumi.set(self, "aggregation_function", value)
|
|
98491
|
+
|
|
98492
|
+
|
|
96182
98493
|
if not MYPY:
|
|
96183
98494
|
class DataSourceAmazonElasticsearchParametersArgsDict(TypedDict):
|
|
96184
98495
|
"""
|