pulumi-aws-native 1.38.0a1761284362__py3-none-any.whl → 1.38.0a1761310773__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.
Potentially problematic release.
This version of pulumi-aws-native might be problematic. Click here for more details.
- pulumi_aws_native/__init__.py +14 -0
- pulumi_aws_native/_enums.py +4 -0
- pulumi_aws_native/applicationsignals/get_grouping_configuration.py +9 -0
- pulumi_aws_native/applicationsignals/grouping_configuration.py +3 -0
- pulumi_aws_native/aps/__init__.py +2 -0
- pulumi_aws_native/aps/_inputs.py +232 -0
- pulumi_aws_native/aps/anomaly_detector.py +318 -0
- pulumi_aws_native/aps/get_anomaly_detector.py +149 -0
- pulumi_aws_native/aps/outputs.py +193 -0
- pulumi_aws_native/cloudfront/_inputs.py +14 -1
- pulumi_aws_native/cloudfront/get_vpc_origin.py +12 -1
- pulumi_aws_native/cloudfront/outputs.py +11 -1
- pulumi_aws_native/cloudfront/vpc_origin.py +7 -0
- pulumi_aws_native/connect/_enums.py +68 -0
- pulumi_aws_native/connect/_inputs.py +581 -1
- pulumi_aws_native/connect/email_address.py +31 -0
- pulumi_aws_native/connect/get_email_address.py +16 -1
- pulumi_aws_native/connect/outputs.py +473 -3
- pulumi_aws_native/connectcampaignsv2/_enums.py +9 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +99 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +102 -0
- pulumi_aws_native/ec2/capacity_reservation.py +6 -6
- pulumi_aws_native/ec2/get_capacity_reservation.py +2 -2
- pulumi_aws_native/ec2/get_nat_gateway.py +3 -0
- pulumi_aws_native/ec2/nat_gateway.py +11 -0
- pulumi_aws_native/ecr/_inputs.py +2 -2
- pulumi_aws_native/ecr/get_repository.py +3 -2
- pulumi_aws_native/ecr/outputs.py +2 -2
- pulumi_aws_native/ecr/repository.py +12 -8
- pulumi_aws_native/ecs/_enums.py +1 -0
- pulumi_aws_native/ecs/service.py +4 -0
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +201 -22
- pulumi_aws_native/elasticloadbalancingv2/get_listener_rule.py +15 -4
- pulumi_aws_native/elasticloadbalancingv2/listener_rule.py +22 -1
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +179 -16
- pulumi_aws_native/events/__init__.py +2 -0
- pulumi_aws_native/events/_inputs.py +78 -0
- pulumi_aws_native/events/event_bus_policy.py +275 -0
- pulumi_aws_native/events/get_event_bus_policy.py +85 -0
- pulumi_aws_native/events/outputs.py +48 -0
- pulumi_aws_native/gameliftstreams/application.py +4 -4
- pulumi_aws_native/imagebuilder/_inputs.py +58 -0
- pulumi_aws_native/imagebuilder/get_image_pipeline.py +15 -1
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/image_pipeline.py +10 -0
- pulumi_aws_native/imagebuilder/outputs.py +55 -0
- pulumi_aws_native/lambda_/permission.py +4 -4
- pulumi_aws_native/mediapackagev2/_enums.py +15 -0
- pulumi_aws_native/mediapackagev2/_inputs.py +96 -0
- pulumi_aws_native/mediapackagev2/get_origin_endpoint.py +26 -1
- pulumi_aws_native/mediapackagev2/origin_endpoint.py +36 -0
- pulumi_aws_native/mediapackagev2/outputs.py +84 -0
- pulumi_aws_native/neptune/db_instance.py +29 -0
- pulumi_aws_native/neptune/get_db_instance.py +15 -1
- pulumi_aws_native/observabilityadmin/_enums.py +9 -0
- pulumi_aws_native/observabilityadmin/_inputs.py +252 -0
- pulumi_aws_native/observabilityadmin/get_organization_centralization_rule.py +9 -0
- pulumi_aws_native/observabilityadmin/get_organization_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/get_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/organization_centralization_rule.py +11 -0
- pulumi_aws_native/observabilityadmin/organization_telemetry_rule.py +8 -0
- pulumi_aws_native/observabilityadmin/outputs.py +150 -0
- pulumi_aws_native/observabilityadmin/telemetry_rule.py +8 -0
- pulumi_aws_native/organizations/_enums.py +13 -0
- pulumi_aws_native/organizations/account.py +10 -0
- pulumi_aws_native/organizations/get_account.py +15 -1
- pulumi_aws_native/osis/_inputs.py +24 -0
- pulumi_aws_native/osis/get_pipeline.py +26 -1
- pulumi_aws_native/osis/outputs.py +13 -0
- pulumi_aws_native/osis/pipeline.py +50 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/quicksight/_enums.py +1 -1
- pulumi_aws_native/quicksight/_inputs.py +3 -3
- pulumi_aws_native/quicksight/outputs.py +2 -2
- pulumi_aws_native/rds/db_cluster.py +24 -40
- pulumi_aws_native/route53/_inputs.py +21 -3
- pulumi_aws_native/route53/outputs.py +14 -2
- pulumi_aws_native/rtbfabric/__init__.py +15 -0
- pulumi_aws_native/rtbfabric/_enums.py +45 -0
- pulumi_aws_native/rtbfabric/_inputs.py +60 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +202 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +225 -0
- pulumi_aws_native/rtbfabric/outputs.py +57 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +263 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +351 -0
- pulumi_aws_native/s3/access_grants_location.py +15 -13
- pulumi_aws_native/sagemaker/_enums.py +10 -0
- pulumi_aws_native/sagemaker/_inputs.py +64 -0
- pulumi_aws_native/sagemaker/cluster.py +21 -0
- pulumi_aws_native/sagemaker/get_cluster.py +15 -4
- pulumi_aws_native/sagemaker/outputs.py +56 -0
- pulumi_aws_native/ssm/_inputs.py +15 -3
- pulumi_aws_native/ssm/outputs.py +10 -2
- pulumi_aws_native/ssmquicksetup/get_lifecycle_automation.py +6 -0
- pulumi_aws_native/ssmquicksetup/lifecycle_automation.py +16 -0
- pulumi_aws_native/synthetics/_inputs.py +52 -12
- pulumi_aws_native/synthetics/outputs.py +35 -8
- pulumi_aws_native/transfer/_inputs.py +9 -3
- pulumi_aws_native/transfer/outputs.py +6 -2
- pulumi_aws_native/wisdom/_enums.py +4 -0
- {pulumi_aws_native-1.38.0a1761284362.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761284362.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/RECORD +104 -92
- {pulumi_aws_native-1.38.0a1761284362.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761284362.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/top_level.txt +0 -0
|
@@ -26,6 +26,7 @@ class ImageArgs:
|
|
|
26
26
|
distribution_configuration_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
27
|
enhanced_image_metadata_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
28
28
|
execution_role: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
|
+
image_pipeline_execution_settings: Optional[pulumi.Input['ImagePipelineExecutionSettingsArgs']] = None,
|
|
29
30
|
image_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
30
31
|
image_scanning_configuration: Optional[pulumi.Input['ImageScanningConfigurationArgs']] = None,
|
|
31
32
|
image_tests_configuration: Optional[pulumi.Input['ImageTestsConfigurationArgs']] = None,
|
|
@@ -39,6 +40,7 @@ class ImageArgs:
|
|
|
39
40
|
:param pulumi.Input[_builtins.str] distribution_configuration_arn: The Amazon Resource Name (ARN) of the distribution configuration.
|
|
40
41
|
:param pulumi.Input[_builtins.bool] enhanced_image_metadata_enabled: Collects additional information about the image being created, including the operating system (OS) version and package list.
|
|
41
42
|
:param pulumi.Input[_builtins.str] execution_role: The execution role name/ARN for the image build, if provided
|
|
43
|
+
:param pulumi.Input['ImagePipelineExecutionSettingsArgs'] image_pipeline_execution_settings: The image pipeline execution settings of the image.
|
|
42
44
|
:param pulumi.Input[_builtins.str] image_recipe_arn: The Amazon Resource Name (ARN) of the image recipe that defines how images are configured, tested, and assessed.
|
|
43
45
|
:param pulumi.Input['ImageScanningConfigurationArgs'] image_scanning_configuration: Contains settings for vulnerability scans.
|
|
44
46
|
:param pulumi.Input['ImageTestsConfigurationArgs'] image_tests_configuration: The image tests configuration used when creating this image.
|
|
@@ -55,6 +57,8 @@ class ImageArgs:
|
|
|
55
57
|
pulumi.set(__self__, "enhanced_image_metadata_enabled", enhanced_image_metadata_enabled)
|
|
56
58
|
if execution_role is not None:
|
|
57
59
|
pulumi.set(__self__, "execution_role", execution_role)
|
|
60
|
+
if image_pipeline_execution_settings is not None:
|
|
61
|
+
pulumi.set(__self__, "image_pipeline_execution_settings", image_pipeline_execution_settings)
|
|
58
62
|
if image_recipe_arn is not None:
|
|
59
63
|
pulumi.set(__self__, "image_recipe_arn", image_recipe_arn)
|
|
60
64
|
if image_scanning_configuration is not None:
|
|
@@ -118,6 +122,18 @@ class ImageArgs:
|
|
|
118
122
|
def execution_role(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
119
123
|
pulumi.set(self, "execution_role", value)
|
|
120
124
|
|
|
125
|
+
@_builtins.property
|
|
126
|
+
@pulumi.getter(name="imagePipelineExecutionSettings")
|
|
127
|
+
def image_pipeline_execution_settings(self) -> Optional[pulumi.Input['ImagePipelineExecutionSettingsArgs']]:
|
|
128
|
+
"""
|
|
129
|
+
The image pipeline execution settings of the image.
|
|
130
|
+
"""
|
|
131
|
+
return pulumi.get(self, "image_pipeline_execution_settings")
|
|
132
|
+
|
|
133
|
+
@image_pipeline_execution_settings.setter
|
|
134
|
+
def image_pipeline_execution_settings(self, value: Optional[pulumi.Input['ImagePipelineExecutionSettingsArgs']]):
|
|
135
|
+
pulumi.set(self, "image_pipeline_execution_settings", value)
|
|
136
|
+
|
|
121
137
|
@_builtins.property
|
|
122
138
|
@pulumi.getter(name="imageRecipeArn")
|
|
123
139
|
def image_recipe_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -213,6 +229,7 @@ class Image(pulumi.CustomResource):
|
|
|
213
229
|
distribution_configuration_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
214
230
|
enhanced_image_metadata_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
215
231
|
execution_role: Optional[pulumi.Input[_builtins.str]] = None,
|
|
232
|
+
image_pipeline_execution_settings: Optional[pulumi.Input[Union['ImagePipelineExecutionSettingsArgs', 'ImagePipelineExecutionSettingsArgsDict']]] = None,
|
|
216
233
|
image_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
217
234
|
image_scanning_configuration: Optional[pulumi.Input[Union['ImageScanningConfigurationArgs', 'ImageScanningConfigurationArgsDict']]] = None,
|
|
218
235
|
image_tests_configuration: Optional[pulumi.Input[Union['ImageTestsConfigurationArgs', 'ImageTestsConfigurationArgsDict']]] = None,
|
|
@@ -230,6 +247,7 @@ class Image(pulumi.CustomResource):
|
|
|
230
247
|
:param pulumi.Input[_builtins.str] distribution_configuration_arn: The Amazon Resource Name (ARN) of the distribution configuration.
|
|
231
248
|
:param pulumi.Input[_builtins.bool] enhanced_image_metadata_enabled: Collects additional information about the image being created, including the operating system (OS) version and package list.
|
|
232
249
|
:param pulumi.Input[_builtins.str] execution_role: The execution role name/ARN for the image build, if provided
|
|
250
|
+
:param pulumi.Input[Union['ImagePipelineExecutionSettingsArgs', 'ImagePipelineExecutionSettingsArgsDict']] image_pipeline_execution_settings: The image pipeline execution settings of the image.
|
|
233
251
|
:param pulumi.Input[_builtins.str] image_recipe_arn: The Amazon Resource Name (ARN) of the image recipe that defines how images are configured, tested, and assessed.
|
|
234
252
|
:param pulumi.Input[Union['ImageScanningConfigurationArgs', 'ImageScanningConfigurationArgsDict']] image_scanning_configuration: Contains settings for vulnerability scans.
|
|
235
253
|
:param pulumi.Input[Union['ImageTestsConfigurationArgs', 'ImageTestsConfigurationArgsDict']] image_tests_configuration: The image tests configuration used when creating this image.
|
|
@@ -266,6 +284,7 @@ class Image(pulumi.CustomResource):
|
|
|
266
284
|
distribution_configuration_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
267
285
|
enhanced_image_metadata_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
268
286
|
execution_role: Optional[pulumi.Input[_builtins.str]] = None,
|
|
287
|
+
image_pipeline_execution_settings: Optional[pulumi.Input[Union['ImagePipelineExecutionSettingsArgs', 'ImagePipelineExecutionSettingsArgsDict']]] = None,
|
|
269
288
|
image_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
270
289
|
image_scanning_configuration: Optional[pulumi.Input[Union['ImageScanningConfigurationArgs', 'ImageScanningConfigurationArgsDict']]] = None,
|
|
271
290
|
image_tests_configuration: Optional[pulumi.Input[Union['ImageTestsConfigurationArgs', 'ImageTestsConfigurationArgsDict']]] = None,
|
|
@@ -286,6 +305,7 @@ class Image(pulumi.CustomResource):
|
|
|
286
305
|
__props__.__dict__["distribution_configuration_arn"] = distribution_configuration_arn
|
|
287
306
|
__props__.__dict__["enhanced_image_metadata_enabled"] = enhanced_image_metadata_enabled
|
|
288
307
|
__props__.__dict__["execution_role"] = execution_role
|
|
308
|
+
__props__.__dict__["image_pipeline_execution_settings"] = image_pipeline_execution_settings
|
|
289
309
|
__props__.__dict__["image_recipe_arn"] = image_recipe_arn
|
|
290
310
|
__props__.__dict__["image_scanning_configuration"] = image_scanning_configuration
|
|
291
311
|
__props__.__dict__["image_tests_configuration"] = image_tests_configuration
|
|
@@ -328,6 +348,7 @@ class Image(pulumi.CustomResource):
|
|
|
328
348
|
__props__.__dict__["enhanced_image_metadata_enabled"] = None
|
|
329
349
|
__props__.__dict__["execution_role"] = None
|
|
330
350
|
__props__.__dict__["image_id"] = None
|
|
351
|
+
__props__.__dict__["image_pipeline_execution_settings"] = None
|
|
331
352
|
__props__.__dict__["image_recipe_arn"] = None
|
|
332
353
|
__props__.__dict__["image_scanning_configuration"] = None
|
|
333
354
|
__props__.__dict__["image_tests_configuration"] = None
|
|
@@ -388,6 +409,14 @@ class Image(pulumi.CustomResource):
|
|
|
388
409
|
"""
|
|
389
410
|
return pulumi.get(self, "image_id")
|
|
390
411
|
|
|
412
|
+
@_builtins.property
|
|
413
|
+
@pulumi.getter(name="imagePipelineExecutionSettings")
|
|
414
|
+
def image_pipeline_execution_settings(self) -> pulumi.Output[Optional['outputs.ImagePipelineExecutionSettings']]:
|
|
415
|
+
"""
|
|
416
|
+
The image pipeline execution settings of the image.
|
|
417
|
+
"""
|
|
418
|
+
return pulumi.get(self, "image_pipeline_execution_settings")
|
|
419
|
+
|
|
391
420
|
@_builtins.property
|
|
392
421
|
@pulumi.getter(name="imageRecipeArn")
|
|
393
422
|
def image_recipe_arn(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
@@ -374,6 +374,7 @@ class ImagePipeline(pulumi.CustomResource):
|
|
|
374
374
|
__props__.__dict__["tags"] = tags
|
|
375
375
|
__props__.__dict__["workflows"] = workflows
|
|
376
376
|
__props__.__dict__["arn"] = None
|
|
377
|
+
__props__.__dict__["deployment_id"] = None
|
|
377
378
|
replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["name"])
|
|
378
379
|
opts = pulumi.ResourceOptions.merge(opts, replace_on_changes)
|
|
379
380
|
super(ImagePipeline, __self__).__init__(
|
|
@@ -400,6 +401,7 @@ class ImagePipeline(pulumi.CustomResource):
|
|
|
400
401
|
|
|
401
402
|
__props__.__dict__["arn"] = None
|
|
402
403
|
__props__.__dict__["container_recipe_arn"] = None
|
|
404
|
+
__props__.__dict__["deployment_id"] = None
|
|
403
405
|
__props__.__dict__["description"] = None
|
|
404
406
|
__props__.__dict__["distribution_configuration_arn"] = None
|
|
405
407
|
__props__.__dict__["enhanced_image_metadata_enabled"] = None
|
|
@@ -432,6 +434,14 @@ class ImagePipeline(pulumi.CustomResource):
|
|
|
432
434
|
"""
|
|
433
435
|
return pulumi.get(self, "container_recipe_arn")
|
|
434
436
|
|
|
437
|
+
@_builtins.property
|
|
438
|
+
@pulumi.getter(name="deploymentId")
|
|
439
|
+
def deployment_id(self) -> pulumi.Output[_builtins.str]:
|
|
440
|
+
"""
|
|
441
|
+
The deployment ID of the pipeline, used for resource create/update triggers.
|
|
442
|
+
"""
|
|
443
|
+
return pulumi.get(self, "deployment_id")
|
|
444
|
+
|
|
435
445
|
@_builtins.property
|
|
436
446
|
@pulumi.getter
|
|
437
447
|
def description(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
@@ -39,6 +39,7 @@ __all__ = [
|
|
|
39
39
|
'ImageLoggingConfiguration',
|
|
40
40
|
'ImagePipelineAutoDisablePolicy',
|
|
41
41
|
'ImagePipelineEcrConfiguration',
|
|
42
|
+
'ImagePipelineExecutionSettings',
|
|
42
43
|
'ImagePipelineImageScanningConfiguration',
|
|
43
44
|
'ImagePipelineImageTestsConfiguration',
|
|
44
45
|
'ImagePipelinePipelineLoggingConfiguration',
|
|
@@ -1541,6 +1542,60 @@ class ImagePipelineEcrConfiguration(dict):
|
|
|
1541
1542
|
return pulumi.get(self, "repository_name")
|
|
1542
1543
|
|
|
1543
1544
|
|
|
1545
|
+
@pulumi.output_type
|
|
1546
|
+
class ImagePipelineExecutionSettings(dict):
|
|
1547
|
+
"""
|
|
1548
|
+
The settings for starting an image pipeline execution.
|
|
1549
|
+
"""
|
|
1550
|
+
@staticmethod
|
|
1551
|
+
def __key_warning(key: str):
|
|
1552
|
+
suggest = None
|
|
1553
|
+
if key == "deploymentId":
|
|
1554
|
+
suggest = "deployment_id"
|
|
1555
|
+
elif key == "onUpdate":
|
|
1556
|
+
suggest = "on_update"
|
|
1557
|
+
|
|
1558
|
+
if suggest:
|
|
1559
|
+
pulumi.log.warn(f"Key '{key}' not found in ImagePipelineExecutionSettings. Access the value via the '{suggest}' property getter instead.")
|
|
1560
|
+
|
|
1561
|
+
def __getitem__(self, key: str) -> Any:
|
|
1562
|
+
ImagePipelineExecutionSettings.__key_warning(key)
|
|
1563
|
+
return super().__getitem__(key)
|
|
1564
|
+
|
|
1565
|
+
def get(self, key: str, default = None) -> Any:
|
|
1566
|
+
ImagePipelineExecutionSettings.__key_warning(key)
|
|
1567
|
+
return super().get(key, default)
|
|
1568
|
+
|
|
1569
|
+
def __init__(__self__, *,
|
|
1570
|
+
deployment_id: Optional[_builtins.str] = None,
|
|
1571
|
+
on_update: Optional[_builtins.bool] = None):
|
|
1572
|
+
"""
|
|
1573
|
+
The settings for starting an image pipeline execution.
|
|
1574
|
+
:param _builtins.str deployment_id: The deployment ID of the pipeline, used to trigger new image pipeline executions.
|
|
1575
|
+
:param _builtins.bool on_update: Whether to trigger the image pipeline when the pipeline is updated. False by default.
|
|
1576
|
+
"""
|
|
1577
|
+
if deployment_id is not None:
|
|
1578
|
+
pulumi.set(__self__, "deployment_id", deployment_id)
|
|
1579
|
+
if on_update is not None:
|
|
1580
|
+
pulumi.set(__self__, "on_update", on_update)
|
|
1581
|
+
|
|
1582
|
+
@_builtins.property
|
|
1583
|
+
@pulumi.getter(name="deploymentId")
|
|
1584
|
+
def deployment_id(self) -> Optional[_builtins.str]:
|
|
1585
|
+
"""
|
|
1586
|
+
The deployment ID of the pipeline, used to trigger new image pipeline executions.
|
|
1587
|
+
"""
|
|
1588
|
+
return pulumi.get(self, "deployment_id")
|
|
1589
|
+
|
|
1590
|
+
@_builtins.property
|
|
1591
|
+
@pulumi.getter(name="onUpdate")
|
|
1592
|
+
def on_update(self) -> Optional[_builtins.bool]:
|
|
1593
|
+
"""
|
|
1594
|
+
Whether to trigger the image pipeline when the pipeline is updated. False by default.
|
|
1595
|
+
"""
|
|
1596
|
+
return pulumi.get(self, "on_update")
|
|
1597
|
+
|
|
1598
|
+
|
|
1544
1599
|
@pulumi.output_type
|
|
1545
1600
|
class ImagePipelineImageScanningConfiguration(dict):
|
|
1546
1601
|
"""
|
|
@@ -42,7 +42,7 @@ class PermissionArgs:
|
|
|
42
42
|
:param pulumi.Input[_builtins.str] principal: The AWS-service, AWS-account, IAM user, or IAM role that invokes the function. If you specify a service, use ``SourceArn`` or ``SourceAccount`` to limit who can invoke the function through that service.
|
|
43
43
|
:param pulumi.Input[_builtins.str] event_source_token: For Alexa Smart Home functions, a token that the invoker must supply.
|
|
44
44
|
:param pulumi.Input['PermissionFunctionUrlAuthType'] function_url_auth_type: The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [Security and auth model for Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
|
|
45
|
-
:param pulumi.Input[_builtins.bool] invoked_via_function_url: Restricts the `lambda:InvokeFunction` action to
|
|
45
|
+
:param pulumi.Input[_builtins.bool] invoked_via_function_url: Restricts the `lambda:InvokeFunction` action to function URL calls. When set to `true` , this prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html) .
|
|
46
46
|
:param pulumi.Input[_builtins.str] principal_org_id: The identifier for your organization in AOlong. Use this to grant permissions to all the AWS-accounts under this organization.
|
|
47
47
|
:param pulumi.Input[_builtins.str] source_account: For AWS-service, the ID of the AWS-account that owns the resource. Use this together with ``SourceArn`` to ensure that the specified account owns the resource. It is possible for an Amazon S3 bucket to be deleted by its owner and recreated by another account.
|
|
48
48
|
:param pulumi.Input[_builtins.str] source_arn: For AWS-services, the ARN of the AWS resource that invokes the function. For example, an Amazon S3 bucket or Amazon SNS topic.
|
|
@@ -134,7 +134,7 @@ class PermissionArgs:
|
|
|
134
134
|
@pulumi.getter(name="invokedViaFunctionUrl")
|
|
135
135
|
def invoked_via_function_url(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
136
136
|
"""
|
|
137
|
-
Restricts the `lambda:InvokeFunction` action to
|
|
137
|
+
Restricts the `lambda:InvokeFunction` action to function URL calls. When set to `true` , this prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html) .
|
|
138
138
|
"""
|
|
139
139
|
return pulumi.get(self, "invoked_via_function_url")
|
|
140
140
|
|
|
@@ -214,7 +214,7 @@ class Permission(pulumi.CustomResource):
|
|
|
214
214
|
|
|
215
215
|
You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
|
|
216
216
|
:param pulumi.Input['PermissionFunctionUrlAuthType'] function_url_auth_type: The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [Security and auth model for Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
|
|
217
|
-
:param pulumi.Input[_builtins.bool] invoked_via_function_url: Restricts the `lambda:InvokeFunction` action to
|
|
217
|
+
:param pulumi.Input[_builtins.bool] invoked_via_function_url: Restricts the `lambda:InvokeFunction` action to function URL calls. When set to `true` , this prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html) .
|
|
218
218
|
:param pulumi.Input[_builtins.str] principal: The AWS-service, AWS-account, IAM user, or IAM role that invokes the function. If you specify a service, use ``SourceArn`` or ``SourceAccount`` to limit who can invoke the function through that service.
|
|
219
219
|
:param pulumi.Input[_builtins.str] principal_org_id: The identifier for your organization in AOlong. Use this to grant permissions to all the AWS-accounts under this organization.
|
|
220
220
|
:param pulumi.Input[_builtins.str] source_account: For AWS-service, the ID of the AWS-account that owns the resource. Use this together with ``SourceArn`` to ensure that the specified account owns the resource. It is possible for an Amazon S3 bucket to be deleted by its owner and recreated by another account.
|
|
@@ -365,7 +365,7 @@ class Permission(pulumi.CustomResource):
|
|
|
365
365
|
@pulumi.getter(name="invokedViaFunctionUrl")
|
|
366
366
|
def invoked_via_function_url(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
367
367
|
"""
|
|
368
|
-
Restricts the `lambda:InvokeFunction` action to
|
|
368
|
+
Restricts the `lambda:InvokeFunction` action to function URL calls. When set to `true` , this prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html) .
|
|
369
369
|
"""
|
|
370
370
|
return pulumi.get(self, "invoked_via_function_url")
|
|
371
371
|
|
|
@@ -21,6 +21,8 @@ __all__ = [
|
|
|
21
21
|
'OriginEndpointDashUtcTimingMode',
|
|
22
22
|
'OriginEndpointDrmSystem',
|
|
23
23
|
'OriginEndpointEndpointErrorCondition',
|
|
24
|
+
'OriginEndpointIsmEncryptionMethod',
|
|
25
|
+
'OriginEndpointMssManifestLayout',
|
|
24
26
|
'OriginEndpointPresetSpeke20Audio',
|
|
25
27
|
'OriginEndpointPresetSpeke20Video',
|
|
26
28
|
'OriginEndpointScteFilter',
|
|
@@ -43,6 +45,7 @@ class OriginEndpointAdMarkerDash(_builtins.str, Enum):
|
|
|
43
45
|
@pulumi.type_token("aws-native:mediapackagev2:OriginEndpointAdMarkerHls")
|
|
44
46
|
class OriginEndpointAdMarkerHls(_builtins.str, Enum):
|
|
45
47
|
DATERANGE = "DATERANGE"
|
|
48
|
+
SCTE35_ENHANCED = "SCTE35_ENHANCED"
|
|
46
49
|
|
|
47
50
|
|
|
48
51
|
@pulumi.type_token("aws-native:mediapackagev2:OriginEndpointCmafEncryptionMethod")
|
|
@@ -55,6 +58,7 @@ class OriginEndpointCmafEncryptionMethod(_builtins.str, Enum):
|
|
|
55
58
|
class OriginEndpointContainerType(_builtins.str, Enum):
|
|
56
59
|
TS = "TS"
|
|
57
60
|
CMAF = "CMAF"
|
|
61
|
+
ISM = "ISM"
|
|
58
62
|
|
|
59
63
|
|
|
60
64
|
@pulumi.type_token("aws-native:mediapackagev2:OriginEndpointDashCompactness")
|
|
@@ -119,6 +123,17 @@ class OriginEndpointEndpointErrorCondition(_builtins.str, Enum):
|
|
|
119
123
|
SLATE_INPUT = "SLATE_INPUT"
|
|
120
124
|
|
|
121
125
|
|
|
126
|
+
@pulumi.type_token("aws-native:mediapackagev2:OriginEndpointIsmEncryptionMethod")
|
|
127
|
+
class OriginEndpointIsmEncryptionMethod(_builtins.str, Enum):
|
|
128
|
+
CENC = "CENC"
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
@pulumi.type_token("aws-native:mediapackagev2:OriginEndpointMssManifestLayout")
|
|
132
|
+
class OriginEndpointMssManifestLayout(_builtins.str, Enum):
|
|
133
|
+
FULL = "FULL"
|
|
134
|
+
COMPACT = "COMPACT"
|
|
135
|
+
|
|
136
|
+
|
|
122
137
|
@pulumi.type_token("aws-native:mediapackagev2:OriginEndpointPresetSpeke20Audio")
|
|
123
138
|
class OriginEndpointPresetSpeke20Audio(_builtins.str, Enum):
|
|
124
139
|
PRESET_AUDIO1 = "PRESET_AUDIO_1"
|
|
@@ -52,6 +52,8 @@ __all__ = [
|
|
|
52
52
|
'OriginEndpointHlsManifestConfigurationArgsDict',
|
|
53
53
|
'OriginEndpointLowLatencyHlsManifestConfigurationArgs',
|
|
54
54
|
'OriginEndpointLowLatencyHlsManifestConfigurationArgsDict',
|
|
55
|
+
'OriginEndpointMssManifestConfigurationArgs',
|
|
56
|
+
'OriginEndpointMssManifestConfigurationArgsDict',
|
|
55
57
|
'OriginEndpointPolicyCdnAuthConfigurationArgs',
|
|
56
58
|
'OriginEndpointPolicyCdnAuthConfigurationArgsDict',
|
|
57
59
|
'OriginEndpointScteDashArgs',
|
|
@@ -1192,6 +1194,7 @@ if not MYPY:
|
|
|
1192
1194
|
"""
|
|
1193
1195
|
The encryption method to use.
|
|
1194
1196
|
"""
|
|
1197
|
+
ism_encryption_method: NotRequired[pulumi.Input['OriginEndpointIsmEncryptionMethod']]
|
|
1195
1198
|
ts_encryption_method: NotRequired[pulumi.Input['OriginEndpointTsEncryptionMethod']]
|
|
1196
1199
|
"""
|
|
1197
1200
|
The encryption method to use.
|
|
@@ -1203,6 +1206,7 @@ elif False:
|
|
|
1203
1206
|
class OriginEndpointEncryptionMethodArgs:
|
|
1204
1207
|
def __init__(__self__, *,
|
|
1205
1208
|
cmaf_encryption_method: Optional[pulumi.Input['OriginEndpointCmafEncryptionMethod']] = None,
|
|
1209
|
+
ism_encryption_method: Optional[pulumi.Input['OriginEndpointIsmEncryptionMethod']] = None,
|
|
1206
1210
|
ts_encryption_method: Optional[pulumi.Input['OriginEndpointTsEncryptionMethod']] = None):
|
|
1207
1211
|
"""
|
|
1208
1212
|
<p>The encryption type.</p>
|
|
@@ -1211,6 +1215,8 @@ class OriginEndpointEncryptionMethodArgs:
|
|
|
1211
1215
|
"""
|
|
1212
1216
|
if cmaf_encryption_method is not None:
|
|
1213
1217
|
pulumi.set(__self__, "cmaf_encryption_method", cmaf_encryption_method)
|
|
1218
|
+
if ism_encryption_method is not None:
|
|
1219
|
+
pulumi.set(__self__, "ism_encryption_method", ism_encryption_method)
|
|
1214
1220
|
if ts_encryption_method is not None:
|
|
1215
1221
|
pulumi.set(__self__, "ts_encryption_method", ts_encryption_method)
|
|
1216
1222
|
|
|
@@ -1226,6 +1232,15 @@ class OriginEndpointEncryptionMethodArgs:
|
|
|
1226
1232
|
def cmaf_encryption_method(self, value: Optional[pulumi.Input['OriginEndpointCmafEncryptionMethod']]):
|
|
1227
1233
|
pulumi.set(self, "cmaf_encryption_method", value)
|
|
1228
1234
|
|
|
1235
|
+
@_builtins.property
|
|
1236
|
+
@pulumi.getter(name="ismEncryptionMethod")
|
|
1237
|
+
def ism_encryption_method(self) -> Optional[pulumi.Input['OriginEndpointIsmEncryptionMethod']]:
|
|
1238
|
+
return pulumi.get(self, "ism_encryption_method")
|
|
1239
|
+
|
|
1240
|
+
@ism_encryption_method.setter
|
|
1241
|
+
def ism_encryption_method(self, value: Optional[pulumi.Input['OriginEndpointIsmEncryptionMethod']]):
|
|
1242
|
+
pulumi.set(self, "ism_encryption_method", value)
|
|
1243
|
+
|
|
1229
1244
|
@_builtins.property
|
|
1230
1245
|
@pulumi.getter(name="tsEncryptionMethod")
|
|
1231
1246
|
def ts_encryption_method(self) -> Optional[pulumi.Input['OriginEndpointTsEncryptionMethod']]:
|
|
@@ -1895,6 +1910,87 @@ class OriginEndpointLowLatencyHlsManifestConfigurationArgs:
|
|
|
1895
1910
|
pulumi.set(self, "url_encode_child_manifest", value)
|
|
1896
1911
|
|
|
1897
1912
|
|
|
1913
|
+
if not MYPY:
|
|
1914
|
+
class OriginEndpointMssManifestConfigurationArgsDict(TypedDict):
|
|
1915
|
+
"""
|
|
1916
|
+
<p>Configuration details for a Microsoft Smooth Streaming (MSS) manifest associated with an origin endpoint. This includes all the settings and properties that define how the MSS content is packaged and delivered.</p>
|
|
1917
|
+
"""
|
|
1918
|
+
manifest_name: pulumi.Input[_builtins.str]
|
|
1919
|
+
"""
|
|
1920
|
+
<p>The name of the MSS manifest. This name is appended to the origin endpoint URL to create the unique path for accessing this specific MSS manifest.</p>
|
|
1921
|
+
"""
|
|
1922
|
+
filter_configuration: NotRequired[pulumi.Input['OriginEndpointFilterConfigurationArgsDict']]
|
|
1923
|
+
manifest_layout: NotRequired[pulumi.Input['OriginEndpointMssManifestLayout']]
|
|
1924
|
+
manifest_window_seconds: NotRequired[pulumi.Input[_builtins.int]]
|
|
1925
|
+
"""
|
|
1926
|
+
<p>The duration (in seconds) of the manifest window. This represents the total amount of content available in the manifest at any given time.</p>
|
|
1927
|
+
"""
|
|
1928
|
+
elif False:
|
|
1929
|
+
OriginEndpointMssManifestConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
1930
|
+
|
|
1931
|
+
@pulumi.input_type
|
|
1932
|
+
class OriginEndpointMssManifestConfigurationArgs:
|
|
1933
|
+
def __init__(__self__, *,
|
|
1934
|
+
manifest_name: pulumi.Input[_builtins.str],
|
|
1935
|
+
filter_configuration: Optional[pulumi.Input['OriginEndpointFilterConfigurationArgs']] = None,
|
|
1936
|
+
manifest_layout: Optional[pulumi.Input['OriginEndpointMssManifestLayout']] = None,
|
|
1937
|
+
manifest_window_seconds: Optional[pulumi.Input[_builtins.int]] = None):
|
|
1938
|
+
"""
|
|
1939
|
+
<p>Configuration details for a Microsoft Smooth Streaming (MSS) manifest associated with an origin endpoint. This includes all the settings and properties that define how the MSS content is packaged and delivered.</p>
|
|
1940
|
+
:param pulumi.Input[_builtins.str] manifest_name: <p>The name of the MSS manifest. This name is appended to the origin endpoint URL to create the unique path for accessing this specific MSS manifest.</p>
|
|
1941
|
+
:param pulumi.Input[_builtins.int] manifest_window_seconds: <p>The duration (in seconds) of the manifest window. This represents the total amount of content available in the manifest at any given time.</p>
|
|
1942
|
+
"""
|
|
1943
|
+
pulumi.set(__self__, "manifest_name", manifest_name)
|
|
1944
|
+
if filter_configuration is not None:
|
|
1945
|
+
pulumi.set(__self__, "filter_configuration", filter_configuration)
|
|
1946
|
+
if manifest_layout is not None:
|
|
1947
|
+
pulumi.set(__self__, "manifest_layout", manifest_layout)
|
|
1948
|
+
if manifest_window_seconds is not None:
|
|
1949
|
+
pulumi.set(__self__, "manifest_window_seconds", manifest_window_seconds)
|
|
1950
|
+
|
|
1951
|
+
@_builtins.property
|
|
1952
|
+
@pulumi.getter(name="manifestName")
|
|
1953
|
+
def manifest_name(self) -> pulumi.Input[_builtins.str]:
|
|
1954
|
+
"""
|
|
1955
|
+
<p>The name of the MSS manifest. This name is appended to the origin endpoint URL to create the unique path for accessing this specific MSS manifest.</p>
|
|
1956
|
+
"""
|
|
1957
|
+
return pulumi.get(self, "manifest_name")
|
|
1958
|
+
|
|
1959
|
+
@manifest_name.setter
|
|
1960
|
+
def manifest_name(self, value: pulumi.Input[_builtins.str]):
|
|
1961
|
+
pulumi.set(self, "manifest_name", value)
|
|
1962
|
+
|
|
1963
|
+
@_builtins.property
|
|
1964
|
+
@pulumi.getter(name="filterConfiguration")
|
|
1965
|
+
def filter_configuration(self) -> Optional[pulumi.Input['OriginEndpointFilterConfigurationArgs']]:
|
|
1966
|
+
return pulumi.get(self, "filter_configuration")
|
|
1967
|
+
|
|
1968
|
+
@filter_configuration.setter
|
|
1969
|
+
def filter_configuration(self, value: Optional[pulumi.Input['OriginEndpointFilterConfigurationArgs']]):
|
|
1970
|
+
pulumi.set(self, "filter_configuration", value)
|
|
1971
|
+
|
|
1972
|
+
@_builtins.property
|
|
1973
|
+
@pulumi.getter(name="manifestLayout")
|
|
1974
|
+
def manifest_layout(self) -> Optional[pulumi.Input['OriginEndpointMssManifestLayout']]:
|
|
1975
|
+
return pulumi.get(self, "manifest_layout")
|
|
1976
|
+
|
|
1977
|
+
@manifest_layout.setter
|
|
1978
|
+
def manifest_layout(self, value: Optional[pulumi.Input['OriginEndpointMssManifestLayout']]):
|
|
1979
|
+
pulumi.set(self, "manifest_layout", value)
|
|
1980
|
+
|
|
1981
|
+
@_builtins.property
|
|
1982
|
+
@pulumi.getter(name="manifestWindowSeconds")
|
|
1983
|
+
def manifest_window_seconds(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
1984
|
+
"""
|
|
1985
|
+
<p>The duration (in seconds) of the manifest window. This represents the total amount of content available in the manifest at any given time.</p>
|
|
1986
|
+
"""
|
|
1987
|
+
return pulumi.get(self, "manifest_window_seconds")
|
|
1988
|
+
|
|
1989
|
+
@manifest_window_seconds.setter
|
|
1990
|
+
def manifest_window_seconds(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1991
|
+
pulumi.set(self, "manifest_window_seconds", value)
|
|
1992
|
+
|
|
1993
|
+
|
|
1898
1994
|
if not MYPY:
|
|
1899
1995
|
class OriginEndpointPolicyCdnAuthConfigurationArgsDict(TypedDict):
|
|
1900
1996
|
cdn_identifier_secret_arns: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
@@ -26,7 +26,7 @@ __all__ = [
|
|
|
26
26
|
|
|
27
27
|
@pulumi.output_type
|
|
28
28
|
class GetOriginEndpointResult:
|
|
29
|
-
def __init__(__self__, arn=None, container_type=None, created_at=None, dash_manifest_urls=None, dash_manifests=None, description=None, force_endpoint_error_configuration=None, hls_manifest_urls=None, hls_manifests=None, low_latency_hls_manifest_urls=None, low_latency_hls_manifests=None, modified_at=None, segment=None, startover_window_seconds=None, tags=None):
|
|
29
|
+
def __init__(__self__, arn=None, container_type=None, created_at=None, dash_manifest_urls=None, dash_manifests=None, description=None, force_endpoint_error_configuration=None, hls_manifest_urls=None, hls_manifests=None, low_latency_hls_manifest_urls=None, low_latency_hls_manifests=None, modified_at=None, mss_manifest_urls=None, mss_manifests=None, segment=None, startover_window_seconds=None, tags=None):
|
|
30
30
|
if arn and not isinstance(arn, str):
|
|
31
31
|
raise TypeError("Expected argument 'arn' to be a str")
|
|
32
32
|
pulumi.set(__self__, "arn", arn)
|
|
@@ -63,6 +63,12 @@ class GetOriginEndpointResult:
|
|
|
63
63
|
if modified_at and not isinstance(modified_at, str):
|
|
64
64
|
raise TypeError("Expected argument 'modified_at' to be a str")
|
|
65
65
|
pulumi.set(__self__, "modified_at", modified_at)
|
|
66
|
+
if mss_manifest_urls and not isinstance(mss_manifest_urls, list):
|
|
67
|
+
raise TypeError("Expected argument 'mss_manifest_urls' to be a list")
|
|
68
|
+
pulumi.set(__self__, "mss_manifest_urls", mss_manifest_urls)
|
|
69
|
+
if mss_manifests and not isinstance(mss_manifests, list):
|
|
70
|
+
raise TypeError("Expected argument 'mss_manifests' to be a list")
|
|
71
|
+
pulumi.set(__self__, "mss_manifests", mss_manifests)
|
|
66
72
|
if segment and not isinstance(segment, dict):
|
|
67
73
|
raise TypeError("Expected argument 'segment' to be a dict")
|
|
68
74
|
pulumi.set(__self__, "segment", segment)
|
|
@@ -169,6 +175,19 @@ class GetOriginEndpointResult:
|
|
|
169
175
|
"""
|
|
170
176
|
return pulumi.get(self, "modified_at")
|
|
171
177
|
|
|
178
|
+
@_builtins.property
|
|
179
|
+
@pulumi.getter(name="mssManifestUrls")
|
|
180
|
+
def mss_manifest_urls(self) -> Optional[Sequence[_builtins.str]]:
|
|
181
|
+
return pulumi.get(self, "mss_manifest_urls")
|
|
182
|
+
|
|
183
|
+
@_builtins.property
|
|
184
|
+
@pulumi.getter(name="mssManifests")
|
|
185
|
+
def mss_manifests(self) -> Optional[Sequence['outputs.OriginEndpointMssManifestConfiguration']]:
|
|
186
|
+
"""
|
|
187
|
+
<p>The Microsoft Smooth Streaming (MSS) manifest configurations associated with this origin endpoint.</p>
|
|
188
|
+
"""
|
|
189
|
+
return pulumi.get(self, "mss_manifests")
|
|
190
|
+
|
|
172
191
|
@_builtins.property
|
|
173
192
|
@pulumi.getter
|
|
174
193
|
def segment(self) -> Optional['outputs.OriginEndpointSegment']:
|
|
@@ -212,6 +231,8 @@ class AwaitableGetOriginEndpointResult(GetOriginEndpointResult):
|
|
|
212
231
|
low_latency_hls_manifest_urls=self.low_latency_hls_manifest_urls,
|
|
213
232
|
low_latency_hls_manifests=self.low_latency_hls_manifests,
|
|
214
233
|
modified_at=self.modified_at,
|
|
234
|
+
mss_manifest_urls=self.mss_manifest_urls,
|
|
235
|
+
mss_manifests=self.mss_manifests,
|
|
215
236
|
segment=self.segment,
|
|
216
237
|
startover_window_seconds=self.startover_window_seconds,
|
|
217
238
|
tags=self.tags)
|
|
@@ -243,6 +264,8 @@ def get_origin_endpoint(arn: Optional[_builtins.str] = None,
|
|
|
243
264
|
low_latency_hls_manifest_urls=pulumi.get(__ret__, 'low_latency_hls_manifest_urls'),
|
|
244
265
|
low_latency_hls_manifests=pulumi.get(__ret__, 'low_latency_hls_manifests'),
|
|
245
266
|
modified_at=pulumi.get(__ret__, 'modified_at'),
|
|
267
|
+
mss_manifest_urls=pulumi.get(__ret__, 'mss_manifest_urls'),
|
|
268
|
+
mss_manifests=pulumi.get(__ret__, 'mss_manifests'),
|
|
246
269
|
segment=pulumi.get(__ret__, 'segment'),
|
|
247
270
|
startover_window_seconds=pulumi.get(__ret__, 'startover_window_seconds'),
|
|
248
271
|
tags=pulumi.get(__ret__, 'tags'))
|
|
@@ -271,6 +294,8 @@ def get_origin_endpoint_output(arn: Optional[pulumi.Input[_builtins.str]] = None
|
|
|
271
294
|
low_latency_hls_manifest_urls=pulumi.get(__response__, 'low_latency_hls_manifest_urls'),
|
|
272
295
|
low_latency_hls_manifests=pulumi.get(__response__, 'low_latency_hls_manifests'),
|
|
273
296
|
modified_at=pulumi.get(__response__, 'modified_at'),
|
|
297
|
+
mss_manifest_urls=pulumi.get(__response__, 'mss_manifest_urls'),
|
|
298
|
+
mss_manifests=pulumi.get(__response__, 'mss_manifests'),
|
|
274
299
|
segment=pulumi.get(__response__, 'segment'),
|
|
275
300
|
startover_window_seconds=pulumi.get(__response__, 'startover_window_seconds'),
|
|
276
301
|
tags=pulumi.get(__response__, 'tags')))
|
|
@@ -32,6 +32,7 @@ class OriginEndpointArgs:
|
|
|
32
32
|
force_endpoint_error_configuration: Optional[pulumi.Input['OriginEndpointForceEndpointErrorConfigurationArgs']] = None,
|
|
33
33
|
hls_manifests: Optional[pulumi.Input[Sequence[pulumi.Input['OriginEndpointHlsManifestConfigurationArgs']]]] = None,
|
|
34
34
|
low_latency_hls_manifests: Optional[pulumi.Input[Sequence[pulumi.Input['OriginEndpointLowLatencyHlsManifestConfigurationArgs']]]] = None,
|
|
35
|
+
mss_manifests: Optional[pulumi.Input[Sequence[pulumi.Input['OriginEndpointMssManifestConfigurationArgs']]]] = None,
|
|
35
36
|
origin_endpoint_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
36
37
|
segment: Optional[pulumi.Input['OriginEndpointSegmentArgs']] = None,
|
|
37
38
|
startover_window_seconds: Optional[pulumi.Input[_builtins.int]] = None,
|
|
@@ -46,6 +47,7 @@ class OriginEndpointArgs:
|
|
|
46
47
|
:param pulumi.Input['OriginEndpointForceEndpointErrorConfigurationArgs'] force_endpoint_error_configuration: The failover settings for the endpoint.
|
|
47
48
|
:param pulumi.Input[Sequence[pulumi.Input['OriginEndpointHlsManifestConfigurationArgs']]] hls_manifests: <p>An HTTP live streaming (HLS) manifest configuration.</p>
|
|
48
49
|
:param pulumi.Input[Sequence[pulumi.Input['OriginEndpointLowLatencyHlsManifestConfigurationArgs']]] low_latency_hls_manifests: <p>A low-latency HLS manifest configuration.</p>
|
|
50
|
+
:param pulumi.Input[Sequence[pulumi.Input['OriginEndpointMssManifestConfigurationArgs']]] mss_manifests: <p>The Microsoft Smooth Streaming (MSS) manifest configurations associated with this origin endpoint.</p>
|
|
49
51
|
:param pulumi.Input[_builtins.str] origin_endpoint_name: The name of the origin endpoint associated with the origin endpoint configuration.
|
|
50
52
|
:param pulumi.Input['OriginEndpointSegmentArgs'] segment: The segment associated with the origin endpoint.
|
|
51
53
|
:param pulumi.Input[_builtins.int] startover_window_seconds: <p>The size of the window (in seconds) to create a window of the live stream that's available for on-demand viewing. Viewers can start-over or catch-up on content that falls within the window. The maximum startover window is 1,209,600 seconds (14 days).</p>
|
|
@@ -64,6 +66,8 @@ class OriginEndpointArgs:
|
|
|
64
66
|
pulumi.set(__self__, "hls_manifests", hls_manifests)
|
|
65
67
|
if low_latency_hls_manifests is not None:
|
|
66
68
|
pulumi.set(__self__, "low_latency_hls_manifests", low_latency_hls_manifests)
|
|
69
|
+
if mss_manifests is not None:
|
|
70
|
+
pulumi.set(__self__, "mss_manifests", mss_manifests)
|
|
67
71
|
if origin_endpoint_name is not None:
|
|
68
72
|
pulumi.set(__self__, "origin_endpoint_name", origin_endpoint_name)
|
|
69
73
|
if segment is not None:
|
|
@@ -169,6 +173,18 @@ class OriginEndpointArgs:
|
|
|
169
173
|
def low_latency_hls_manifests(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OriginEndpointLowLatencyHlsManifestConfigurationArgs']]]]):
|
|
170
174
|
pulumi.set(self, "low_latency_hls_manifests", value)
|
|
171
175
|
|
|
176
|
+
@_builtins.property
|
|
177
|
+
@pulumi.getter(name="mssManifests")
|
|
178
|
+
def mss_manifests(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OriginEndpointMssManifestConfigurationArgs']]]]:
|
|
179
|
+
"""
|
|
180
|
+
<p>The Microsoft Smooth Streaming (MSS) manifest configurations associated with this origin endpoint.</p>
|
|
181
|
+
"""
|
|
182
|
+
return pulumi.get(self, "mss_manifests")
|
|
183
|
+
|
|
184
|
+
@mss_manifests.setter
|
|
185
|
+
def mss_manifests(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OriginEndpointMssManifestConfigurationArgs']]]]):
|
|
186
|
+
pulumi.set(self, "mss_manifests", value)
|
|
187
|
+
|
|
172
188
|
@_builtins.property
|
|
173
189
|
@pulumi.getter(name="originEndpointName")
|
|
174
190
|
def origin_endpoint_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -232,6 +248,7 @@ class OriginEndpoint(pulumi.CustomResource):
|
|
|
232
248
|
force_endpoint_error_configuration: Optional[pulumi.Input[Union['OriginEndpointForceEndpointErrorConfigurationArgs', 'OriginEndpointForceEndpointErrorConfigurationArgsDict']]] = None,
|
|
233
249
|
hls_manifests: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OriginEndpointHlsManifestConfigurationArgs', 'OriginEndpointHlsManifestConfigurationArgsDict']]]]] = None,
|
|
234
250
|
low_latency_hls_manifests: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OriginEndpointLowLatencyHlsManifestConfigurationArgs', 'OriginEndpointLowLatencyHlsManifestConfigurationArgsDict']]]]] = None,
|
|
251
|
+
mss_manifests: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OriginEndpointMssManifestConfigurationArgs', 'OriginEndpointMssManifestConfigurationArgsDict']]]]] = None,
|
|
235
252
|
origin_endpoint_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
236
253
|
segment: Optional[pulumi.Input[Union['OriginEndpointSegmentArgs', 'OriginEndpointSegmentArgsDict']]] = None,
|
|
237
254
|
startover_window_seconds: Optional[pulumi.Input[_builtins.int]] = None,
|
|
@@ -250,6 +267,7 @@ class OriginEndpoint(pulumi.CustomResource):
|
|
|
250
267
|
:param pulumi.Input[Union['OriginEndpointForceEndpointErrorConfigurationArgs', 'OriginEndpointForceEndpointErrorConfigurationArgsDict']] force_endpoint_error_configuration: The failover settings for the endpoint.
|
|
251
268
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OriginEndpointHlsManifestConfigurationArgs', 'OriginEndpointHlsManifestConfigurationArgsDict']]]] hls_manifests: <p>An HTTP live streaming (HLS) manifest configuration.</p>
|
|
252
269
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OriginEndpointLowLatencyHlsManifestConfigurationArgs', 'OriginEndpointLowLatencyHlsManifestConfigurationArgsDict']]]] low_latency_hls_manifests: <p>A low-latency HLS manifest configuration.</p>
|
|
270
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['OriginEndpointMssManifestConfigurationArgs', 'OriginEndpointMssManifestConfigurationArgsDict']]]] mss_manifests: <p>The Microsoft Smooth Streaming (MSS) manifest configurations associated with this origin endpoint.</p>
|
|
253
271
|
:param pulumi.Input[_builtins.str] origin_endpoint_name: The name of the origin endpoint associated with the origin endpoint configuration.
|
|
254
272
|
:param pulumi.Input[Union['OriginEndpointSegmentArgs', 'OriginEndpointSegmentArgsDict']] segment: The segment associated with the origin endpoint.
|
|
255
273
|
:param pulumi.Input[_builtins.int] startover_window_seconds: <p>The size of the window (in seconds) to create a window of the live stream that's available for on-demand viewing. Viewers can start-over or catch-up on content that falls within the window. The maximum startover window is 1,209,600 seconds (14 days).</p>
|
|
@@ -287,6 +305,7 @@ class OriginEndpoint(pulumi.CustomResource):
|
|
|
287
305
|
force_endpoint_error_configuration: Optional[pulumi.Input[Union['OriginEndpointForceEndpointErrorConfigurationArgs', 'OriginEndpointForceEndpointErrorConfigurationArgsDict']]] = None,
|
|
288
306
|
hls_manifests: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OriginEndpointHlsManifestConfigurationArgs', 'OriginEndpointHlsManifestConfigurationArgsDict']]]]] = None,
|
|
289
307
|
low_latency_hls_manifests: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OriginEndpointLowLatencyHlsManifestConfigurationArgs', 'OriginEndpointLowLatencyHlsManifestConfigurationArgsDict']]]]] = None,
|
|
308
|
+
mss_manifests: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OriginEndpointMssManifestConfigurationArgs', 'OriginEndpointMssManifestConfigurationArgsDict']]]]] = None,
|
|
290
309
|
origin_endpoint_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
291
310
|
segment: Optional[pulumi.Input[Union['OriginEndpointSegmentArgs', 'OriginEndpointSegmentArgsDict']]] = None,
|
|
292
311
|
startover_window_seconds: Optional[pulumi.Input[_builtins.int]] = None,
|
|
@@ -314,6 +333,7 @@ class OriginEndpoint(pulumi.CustomResource):
|
|
|
314
333
|
__props__.__dict__["force_endpoint_error_configuration"] = force_endpoint_error_configuration
|
|
315
334
|
__props__.__dict__["hls_manifests"] = hls_manifests
|
|
316
335
|
__props__.__dict__["low_latency_hls_manifests"] = low_latency_hls_manifests
|
|
336
|
+
__props__.__dict__["mss_manifests"] = mss_manifests
|
|
317
337
|
__props__.__dict__["origin_endpoint_name"] = origin_endpoint_name
|
|
318
338
|
__props__.__dict__["segment"] = segment
|
|
319
339
|
__props__.__dict__["startover_window_seconds"] = startover_window_seconds
|
|
@@ -324,6 +344,7 @@ class OriginEndpoint(pulumi.CustomResource):
|
|
|
324
344
|
__props__.__dict__["hls_manifest_urls"] = None
|
|
325
345
|
__props__.__dict__["low_latency_hls_manifest_urls"] = None
|
|
326
346
|
__props__.__dict__["modified_at"] = None
|
|
347
|
+
__props__.__dict__["mss_manifest_urls"] = None
|
|
327
348
|
replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["channelGroupName", "channelName", "originEndpointName"])
|
|
328
349
|
opts = pulumi.ResourceOptions.merge(opts, replace_on_changes)
|
|
329
350
|
super(OriginEndpoint, __self__).__init__(
|
|
@@ -362,6 +383,8 @@ class OriginEndpoint(pulumi.CustomResource):
|
|
|
362
383
|
__props__.__dict__["low_latency_hls_manifest_urls"] = None
|
|
363
384
|
__props__.__dict__["low_latency_hls_manifests"] = None
|
|
364
385
|
__props__.__dict__["modified_at"] = None
|
|
386
|
+
__props__.__dict__["mss_manifest_urls"] = None
|
|
387
|
+
__props__.__dict__["mss_manifests"] = None
|
|
365
388
|
__props__.__dict__["origin_endpoint_name"] = None
|
|
366
389
|
__props__.__dict__["segment"] = None
|
|
367
390
|
__props__.__dict__["startover_window_seconds"] = None
|
|
@@ -480,6 +503,19 @@ class OriginEndpoint(pulumi.CustomResource):
|
|
|
480
503
|
"""
|
|
481
504
|
return pulumi.get(self, "modified_at")
|
|
482
505
|
|
|
506
|
+
@_builtins.property
|
|
507
|
+
@pulumi.getter(name="mssManifestUrls")
|
|
508
|
+
def mss_manifest_urls(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
509
|
+
return pulumi.get(self, "mss_manifest_urls")
|
|
510
|
+
|
|
511
|
+
@_builtins.property
|
|
512
|
+
@pulumi.getter(name="mssManifests")
|
|
513
|
+
def mss_manifests(self) -> pulumi.Output[Optional[Sequence['outputs.OriginEndpointMssManifestConfiguration']]]:
|
|
514
|
+
"""
|
|
515
|
+
<p>The Microsoft Smooth Streaming (MSS) manifest configurations associated with this origin endpoint.</p>
|
|
516
|
+
"""
|
|
517
|
+
return pulumi.get(self, "mss_manifests")
|
|
518
|
+
|
|
483
519
|
@_builtins.property
|
|
484
520
|
@pulumi.getter(name="originEndpointName")
|
|
485
521
|
def origin_endpoint_name(self) -> pulumi.Output[_builtins.str]:
|