pulumi-aws 7.11.1__py3-none-any.whl → 7.12.0__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/__init__.py +57 -0
- pulumi_aws/acm/certificate.py +20 -20
- pulumi_aws/acmpca/certificate.py +8 -8
- pulumi_aws/apigateway/account.py +0 -4
- pulumi_aws/appflow/_inputs.py +33 -0
- pulumi_aws/appflow/outputs.py +22 -0
- pulumi_aws/appsync/graph_ql_api.py +84 -0
- pulumi_aws/bedrock/_inputs.py +97 -21
- pulumi_aws/bedrock/agent_agent_alias.py +94 -0
- pulumi_aws/bedrock/agentcore_agent_runtime.py +4 -4
- pulumi_aws/bedrock/agentcore_browser.py +42 -0
- pulumi_aws/bedrock/agentcore_gateway_target.py +217 -7
- pulumi_aws/bedrock/agentcore_memory.py +37 -9
- pulumi_aws/bedrock/agentcore_oauth2_credential_provider.py +38 -0
- pulumi_aws/bedrock/outputs.py +64 -17
- pulumi_aws/cloudfront/_inputs.py +15 -14
- pulumi_aws/cloudfront/distribution.py +28 -0
- pulumi_aws/cloudfront/outputs.py +10 -9
- pulumi_aws/cloudhsmv2/cluster.py +64 -0
- pulumi_aws/cloudwatch/_inputs.py +9 -8
- pulumi_aws/cloudwatch/contributor_managed_insight_rule.py +20 -0
- pulumi_aws/cloudwatch/log_delivery_destination.py +53 -12
- pulumi_aws/cloudwatch/outputs.py +6 -5
- pulumi_aws/codebuild/webhook.py +16 -16
- pulumi_aws/codepipeline/webhook.py +16 -16
- pulumi_aws/connect/_inputs.py +50 -4
- pulumi_aws/connect/outputs.py +95 -4
- pulumi_aws/connect/routing_profile.py +42 -18
- pulumi_aws/datasync/location_fsx_ontap_file_system.py +34 -0
- pulumi_aws/datazone/project.py +24 -0
- pulumi_aws/detective/organization_configuration.py +20 -0
- pulumi_aws/dms/_inputs.py +3 -3
- pulumi_aws/dms/outputs.py +2 -2
- pulumi_aws/ec2/__init__.py +1 -0
- pulumi_aws/ec2/_inputs.py +182 -0
- pulumi_aws/ec2/allowed_images_settings.py +338 -0
- pulumi_aws/ec2/get_coip_pools.py +24 -0
- pulumi_aws/ec2/image_block_public_access.py +48 -1
- pulumi_aws/ec2/outputs.py +167 -0
- pulumi_aws/ec2/security_group.py +6 -6
- pulumi_aws/ec2/serial_console_access.py +50 -3
- pulumi_aws/ec2/vpc_endpoint.py +92 -0
- pulumi_aws/ec2clientvpn/authorization_rule.py +7 -7
- pulumi_aws/ec2clientvpn/route.py +7 -7
- pulumi_aws/ec2transitgateway/instance_connect_endpoint.py +47 -0
- pulumi_aws/ecrpublic/get_images.py +24 -0
- pulumi_aws/ecs/_inputs.py +172 -33
- pulumi_aws/ecs/get_service.py +318 -7
- pulumi_aws/ecs/outputs.py +957 -86
- pulumi_aws/ecs/service.py +76 -0
- pulumi_aws/eks/_inputs.py +195 -5
- pulumi_aws/eks/outputs.py +164 -4
- pulumi_aws/elasticache/_inputs.py +154 -0
- pulumi_aws/elasticache/get_replication_group.py +23 -9
- pulumi_aws/elasticache/outputs.py +204 -0
- pulumi_aws/elasticache/replication_group.py +115 -0
- pulumi_aws/elasticache/reserved_cache_node.py +28 -0
- pulumi_aws/finspace/kx_cluster.py +76 -0
- pulumi_aws/fis/__init__.py +1 -0
- pulumi_aws/fis/target_account_configuration.py +401 -0
- pulumi_aws/glue/job.py +7 -7
- pulumi_aws/guardduty/malware_protection_plan.py +50 -0
- pulumi_aws/guardduty/member_detector_feature.py +42 -0
- pulumi_aws/invoicing/__init__.py +11 -0
- pulumi_aws/invoicing/_inputs.py +128 -0
- pulumi_aws/invoicing/invoice_unit.py +620 -0
- pulumi_aws/invoicing/outputs.py +99 -0
- pulumi_aws/iot/ca_certificate.py +32 -32
- pulumi_aws/iot/get_registration_code.py +8 -8
- pulumi_aws/ivschat/logging_configuration.py +28 -0
- pulumi_aws/kinesis/get_stream.py +15 -1
- pulumi_aws/kinesis/stream.py +47 -0
- pulumi_aws/kms/key.py +7 -7
- pulumi_aws/licensemanager/license_grant.py +36 -0
- pulumi_aws/m2/environment.py +150 -0
- pulumi_aws/networkfirewall/tls_inspection_configuration.py +84 -0
- pulumi_aws/networkflowmonitor/__init__.py +12 -0
- pulumi_aws/networkflowmonitor/_inputs.py +412 -0
- pulumi_aws/networkflowmonitor/monitor.py +568 -0
- pulumi_aws/networkflowmonitor/outputs.py +302 -0
- pulumi_aws/networkflowmonitor/scope.py +443 -0
- pulumi_aws/observabilityadmin/__init__.py +11 -0
- pulumi_aws/observabilityadmin/_inputs.py +506 -0
- pulumi_aws/observabilityadmin/centralization_rule_for_organization.py +637 -0
- pulumi_aws/observabilityadmin/outputs.py +415 -0
- pulumi_aws/opensearch/_inputs.py +92 -133
- pulumi_aws/opensearch/authorize_vpc_endpoint_access.py +4 -4
- pulumi_aws/opensearch/domain.py +60 -0
- pulumi_aws/opensearch/get_domain.py +16 -9
- pulumi_aws/opensearch/outputs.py +131 -2
- pulumi_aws/organizations/get_policies.py +2 -2
- pulumi_aws/organizations/get_policies_for_target.py +2 -2
- pulumi_aws/organizations/get_policy.py +1 -1
- pulumi_aws/organizations/organization.py +7 -7
- pulumi_aws/organizations/policy.py +35 -7
- pulumi_aws/pulumi-plugin.json +1 -1
- pulumi_aws/quicksight/analysis.py +108 -0
- pulumi_aws/quicksight/dashboard.py +110 -0
- pulumi_aws/quicksight/template.py +126 -0
- pulumi_aws/redshift/cluster_snapshot.py +28 -0
- pulumi_aws/redshift/get_cluster.py +52 -0
- pulumi_aws/redshift/snapshot_copy_grant.py +22 -0
- pulumi_aws/route53/profiles_association.py +30 -0
- pulumi_aws/route53/profiles_resource_association.py +34 -0
- pulumi_aws/s3control/multi_region_access_point_policy.py +76 -0
- pulumi_aws/s3tables/table.py +76 -1
- pulumi_aws/s3tables/table_bucket.py +78 -3
- pulumi_aws/sagemaker/_inputs.py +225 -232
- pulumi_aws/sagemaker/endpoint_configuration.py +111 -64
- pulumi_aws/sagemaker/outputs.py +154 -158
- pulumi_aws/ssmincidents/get_response_plan.py +14 -0
- pulumi_aws/ssoadmin/account_assignment.py +4 -4
- pulumi_aws/transfer/profile.py +20 -0
- pulumi_aws/transfer/server.py +7 -0
- pulumi_aws/transfer/ssh_key.py +6 -6
- pulumi_aws/wafv2/rule_group.py +440 -0
- pulumi_aws/workspacesweb/session_logger_association.py +80 -0
- pulumi_aws/workspacesweb/trust_store_association.py +24 -0
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/METADATA +1 -1
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/RECORD +122 -107
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/WHEEL +0 -0
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/top_level.txt +0 -0
|
@@ -19,12 +19,16 @@ __all__ = ['ImageBlockPublicAccessArgs', 'ImageBlockPublicAccess']
|
|
|
19
19
|
@pulumi.input_type
|
|
20
20
|
class ImageBlockPublicAccessArgs:
|
|
21
21
|
def __init__(__self__, *,
|
|
22
|
-
state: pulumi.Input[_builtins.str]
|
|
22
|
+
state: pulumi.Input[_builtins.str],
|
|
23
|
+
region: Optional[pulumi.Input[_builtins.str]] = None):
|
|
23
24
|
"""
|
|
24
25
|
The set of arguments for constructing a ImageBlockPublicAccess resource.
|
|
25
26
|
:param pulumi.Input[_builtins.str] state: The state of block public access for AMIs at the account level in the configured AWS Region. Valid values: `unblocked` and `block-new-sharing`.
|
|
27
|
+
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
26
28
|
"""
|
|
27
29
|
pulumi.set(__self__, "state", state)
|
|
30
|
+
if region is not None:
|
|
31
|
+
pulumi.set(__self__, "region", region)
|
|
28
32
|
|
|
29
33
|
@_builtins.property
|
|
30
34
|
@pulumi.getter
|
|
@@ -38,18 +42,46 @@ class ImageBlockPublicAccessArgs:
|
|
|
38
42
|
def state(self, value: pulumi.Input[_builtins.str]):
|
|
39
43
|
pulumi.set(self, "state", value)
|
|
40
44
|
|
|
45
|
+
@_builtins.property
|
|
46
|
+
@pulumi.getter
|
|
47
|
+
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
48
|
+
"""
|
|
49
|
+
Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
50
|
+
"""
|
|
51
|
+
return pulumi.get(self, "region")
|
|
52
|
+
|
|
53
|
+
@region.setter
|
|
54
|
+
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
55
|
+
pulumi.set(self, "region", value)
|
|
56
|
+
|
|
41
57
|
|
|
42
58
|
@pulumi.input_type
|
|
43
59
|
class _ImageBlockPublicAccessState:
|
|
44
60
|
def __init__(__self__, *,
|
|
61
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
45
62
|
state: Optional[pulumi.Input[_builtins.str]] = None):
|
|
46
63
|
"""
|
|
47
64
|
Input properties used for looking up and filtering ImageBlockPublicAccess resources.
|
|
65
|
+
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
48
66
|
:param pulumi.Input[_builtins.str] state: The state of block public access for AMIs at the account level in the configured AWS Region. Valid values: `unblocked` and `block-new-sharing`.
|
|
49
67
|
"""
|
|
68
|
+
if region is not None:
|
|
69
|
+
pulumi.set(__self__, "region", region)
|
|
50
70
|
if state is not None:
|
|
51
71
|
pulumi.set(__self__, "state", state)
|
|
52
72
|
|
|
73
|
+
@_builtins.property
|
|
74
|
+
@pulumi.getter
|
|
75
|
+
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
76
|
+
"""
|
|
77
|
+
Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "region")
|
|
80
|
+
|
|
81
|
+
@region.setter
|
|
82
|
+
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
83
|
+
pulumi.set(self, "region", value)
|
|
84
|
+
|
|
53
85
|
@_builtins.property
|
|
54
86
|
@pulumi.getter
|
|
55
87
|
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -69,6 +101,7 @@ class ImageBlockPublicAccess(pulumi.CustomResource):
|
|
|
69
101
|
def __init__(__self__,
|
|
70
102
|
resource_name: str,
|
|
71
103
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
104
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
72
105
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
|
73
106
|
__props__=None):
|
|
74
107
|
"""
|
|
@@ -93,6 +126,7 @@ class ImageBlockPublicAccess(pulumi.CustomResource):
|
|
|
93
126
|
|
|
94
127
|
:param str resource_name: The name of the resource.
|
|
95
128
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
129
|
+
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
96
130
|
:param pulumi.Input[_builtins.str] state: The state of block public access for AMIs at the account level in the configured AWS Region. Valid values: `unblocked` and `block-new-sharing`.
|
|
97
131
|
"""
|
|
98
132
|
...
|
|
@@ -136,6 +170,7 @@ class ImageBlockPublicAccess(pulumi.CustomResource):
|
|
|
136
170
|
def _internal_init(__self__,
|
|
137
171
|
resource_name: str,
|
|
138
172
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
173
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
139
174
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
|
140
175
|
__props__=None):
|
|
141
176
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -146,6 +181,7 @@ class ImageBlockPublicAccess(pulumi.CustomResource):
|
|
|
146
181
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
147
182
|
__props__ = ImageBlockPublicAccessArgs.__new__(ImageBlockPublicAccessArgs)
|
|
148
183
|
|
|
184
|
+
__props__.__dict__["region"] = region
|
|
149
185
|
if state is None and not opts.urn:
|
|
150
186
|
raise TypeError("Missing required property 'state'")
|
|
151
187
|
__props__.__dict__["state"] = state
|
|
@@ -159,6 +195,7 @@ class ImageBlockPublicAccess(pulumi.CustomResource):
|
|
|
159
195
|
def get(resource_name: str,
|
|
160
196
|
id: pulumi.Input[str],
|
|
161
197
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
198
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
162
199
|
state: Optional[pulumi.Input[_builtins.str]] = None) -> 'ImageBlockPublicAccess':
|
|
163
200
|
"""
|
|
164
201
|
Get an existing ImageBlockPublicAccess resource's state with the given name, id, and optional extra
|
|
@@ -167,15 +204,25 @@ class ImageBlockPublicAccess(pulumi.CustomResource):
|
|
|
167
204
|
:param str resource_name: The unique name of the resulting resource.
|
|
168
205
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
169
206
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
207
|
+
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
170
208
|
:param pulumi.Input[_builtins.str] state: The state of block public access for AMIs at the account level in the configured AWS Region. Valid values: `unblocked` and `block-new-sharing`.
|
|
171
209
|
"""
|
|
172
210
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
173
211
|
|
|
174
212
|
__props__ = _ImageBlockPublicAccessState.__new__(_ImageBlockPublicAccessState)
|
|
175
213
|
|
|
214
|
+
__props__.__dict__["region"] = region
|
|
176
215
|
__props__.__dict__["state"] = state
|
|
177
216
|
return ImageBlockPublicAccess(resource_name, opts=opts, __props__=__props__)
|
|
178
217
|
|
|
218
|
+
@_builtins.property
|
|
219
|
+
@pulumi.getter
|
|
220
|
+
def region(self) -> pulumi.Output[_builtins.str]:
|
|
221
|
+
"""
|
|
222
|
+
Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
223
|
+
"""
|
|
224
|
+
return pulumi.get(self, "region")
|
|
225
|
+
|
|
179
226
|
@_builtins.property
|
|
180
227
|
@pulumi.getter
|
|
181
228
|
def state(self) -> pulumi.Output[_builtins.str]:
|
pulumi_aws/ec2/outputs.py
CHANGED
|
@@ -17,6 +17,9 @@ from . import outputs
|
|
|
17
17
|
from ._enums import *
|
|
18
18
|
|
|
19
19
|
__all__ = [
|
|
20
|
+
'AllowedImagesSettingsImageCriterion',
|
|
21
|
+
'AllowedImagesSettingsImageCriterionCreationDateCondition',
|
|
22
|
+
'AllowedImagesSettingsImageCriterionDeprecationTimeCondition',
|
|
20
23
|
'AmiCopyEbsBlockDevice',
|
|
21
24
|
'AmiCopyEphemeralBlockDevice',
|
|
22
25
|
'AmiEbsBlockDevice',
|
|
@@ -470,6 +473,170 @@ __all__ = [
|
|
|
470
473
|
'GetVpnGatewayFilterResult',
|
|
471
474
|
]
|
|
472
475
|
|
|
476
|
+
@pulumi.output_type
|
|
477
|
+
class AllowedImagesSettingsImageCriterion(dict):
|
|
478
|
+
@staticmethod
|
|
479
|
+
def __key_warning(key: str):
|
|
480
|
+
suggest = None
|
|
481
|
+
if key == "creationDateCondition":
|
|
482
|
+
suggest = "creation_date_condition"
|
|
483
|
+
elif key == "deprecationTimeCondition":
|
|
484
|
+
suggest = "deprecation_time_condition"
|
|
485
|
+
elif key == "imageNames":
|
|
486
|
+
suggest = "image_names"
|
|
487
|
+
elif key == "imageProviders":
|
|
488
|
+
suggest = "image_providers"
|
|
489
|
+
elif key == "marketplaceProductCodes":
|
|
490
|
+
suggest = "marketplace_product_codes"
|
|
491
|
+
|
|
492
|
+
if suggest:
|
|
493
|
+
pulumi.log.warn(f"Key '{key}' not found in AllowedImagesSettingsImageCriterion. Access the value via the '{suggest}' property getter instead.")
|
|
494
|
+
|
|
495
|
+
def __getitem__(self, key: str) -> Any:
|
|
496
|
+
AllowedImagesSettingsImageCriterion.__key_warning(key)
|
|
497
|
+
return super().__getitem__(key)
|
|
498
|
+
|
|
499
|
+
def get(self, key: str, default = None) -> Any:
|
|
500
|
+
AllowedImagesSettingsImageCriterion.__key_warning(key)
|
|
501
|
+
return super().get(key, default)
|
|
502
|
+
|
|
503
|
+
def __init__(__self__, *,
|
|
504
|
+
creation_date_condition: Optional['outputs.AllowedImagesSettingsImageCriterionCreationDateCondition'] = None,
|
|
505
|
+
deprecation_time_condition: Optional['outputs.AllowedImagesSettingsImageCriterionDeprecationTimeCondition'] = None,
|
|
506
|
+
image_names: Optional[Sequence[_builtins.str]] = None,
|
|
507
|
+
image_providers: Optional[Sequence[_builtins.str]] = None,
|
|
508
|
+
marketplace_product_codes: Optional[Sequence[_builtins.str]] = None):
|
|
509
|
+
"""
|
|
510
|
+
:param 'AllowedImagesSettingsImageCriterionCreationDateConditionArgs' creation_date_condition: Condition based on AMI creation date. See `creation_date_condition` below.
|
|
511
|
+
:param 'AllowedImagesSettingsImageCriterionDeprecationTimeConditionArgs' deprecation_time_condition: Condition based on AMI deprecation time. See `deprecation_time_condition` below.
|
|
512
|
+
:param Sequence[_builtins.str] image_names: Set of AMI name patterns to allow. Maximum of 50 names.
|
|
513
|
+
:param Sequence[_builtins.str] image_providers: Set of image providers to allow. Maximum of 200 providers. Valid values include `amazon`, `aws-marketplace`, `aws-backup-vault`, `none`, or a 12-digit AWS account ID.
|
|
514
|
+
:param Sequence[_builtins.str] marketplace_product_codes: Set of AWS Marketplace product codes to allow. Maximum of 50 product codes.
|
|
515
|
+
"""
|
|
516
|
+
if creation_date_condition is not None:
|
|
517
|
+
pulumi.set(__self__, "creation_date_condition", creation_date_condition)
|
|
518
|
+
if deprecation_time_condition is not None:
|
|
519
|
+
pulumi.set(__self__, "deprecation_time_condition", deprecation_time_condition)
|
|
520
|
+
if image_names is not None:
|
|
521
|
+
pulumi.set(__self__, "image_names", image_names)
|
|
522
|
+
if image_providers is not None:
|
|
523
|
+
pulumi.set(__self__, "image_providers", image_providers)
|
|
524
|
+
if marketplace_product_codes is not None:
|
|
525
|
+
pulumi.set(__self__, "marketplace_product_codes", marketplace_product_codes)
|
|
526
|
+
|
|
527
|
+
@_builtins.property
|
|
528
|
+
@pulumi.getter(name="creationDateCondition")
|
|
529
|
+
def creation_date_condition(self) -> Optional['outputs.AllowedImagesSettingsImageCriterionCreationDateCondition']:
|
|
530
|
+
"""
|
|
531
|
+
Condition based on AMI creation date. See `creation_date_condition` below.
|
|
532
|
+
"""
|
|
533
|
+
return pulumi.get(self, "creation_date_condition")
|
|
534
|
+
|
|
535
|
+
@_builtins.property
|
|
536
|
+
@pulumi.getter(name="deprecationTimeCondition")
|
|
537
|
+
def deprecation_time_condition(self) -> Optional['outputs.AllowedImagesSettingsImageCriterionDeprecationTimeCondition']:
|
|
538
|
+
"""
|
|
539
|
+
Condition based on AMI deprecation time. See `deprecation_time_condition` below.
|
|
540
|
+
"""
|
|
541
|
+
return pulumi.get(self, "deprecation_time_condition")
|
|
542
|
+
|
|
543
|
+
@_builtins.property
|
|
544
|
+
@pulumi.getter(name="imageNames")
|
|
545
|
+
def image_names(self) -> Optional[Sequence[_builtins.str]]:
|
|
546
|
+
"""
|
|
547
|
+
Set of AMI name patterns to allow. Maximum of 50 names.
|
|
548
|
+
"""
|
|
549
|
+
return pulumi.get(self, "image_names")
|
|
550
|
+
|
|
551
|
+
@_builtins.property
|
|
552
|
+
@pulumi.getter(name="imageProviders")
|
|
553
|
+
def image_providers(self) -> Optional[Sequence[_builtins.str]]:
|
|
554
|
+
"""
|
|
555
|
+
Set of image providers to allow. Maximum of 200 providers. Valid values include `amazon`, `aws-marketplace`, `aws-backup-vault`, `none`, or a 12-digit AWS account ID.
|
|
556
|
+
"""
|
|
557
|
+
return pulumi.get(self, "image_providers")
|
|
558
|
+
|
|
559
|
+
@_builtins.property
|
|
560
|
+
@pulumi.getter(name="marketplaceProductCodes")
|
|
561
|
+
def marketplace_product_codes(self) -> Optional[Sequence[_builtins.str]]:
|
|
562
|
+
"""
|
|
563
|
+
Set of AWS Marketplace product codes to allow. Maximum of 50 product codes.
|
|
564
|
+
"""
|
|
565
|
+
return pulumi.get(self, "marketplace_product_codes")
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
@pulumi.output_type
|
|
569
|
+
class AllowedImagesSettingsImageCriterionCreationDateCondition(dict):
|
|
570
|
+
@staticmethod
|
|
571
|
+
def __key_warning(key: str):
|
|
572
|
+
suggest = None
|
|
573
|
+
if key == "maximumDaysSinceCreated":
|
|
574
|
+
suggest = "maximum_days_since_created"
|
|
575
|
+
|
|
576
|
+
if suggest:
|
|
577
|
+
pulumi.log.warn(f"Key '{key}' not found in AllowedImagesSettingsImageCriterionCreationDateCondition. Access the value via the '{suggest}' property getter instead.")
|
|
578
|
+
|
|
579
|
+
def __getitem__(self, key: str) -> Any:
|
|
580
|
+
AllowedImagesSettingsImageCriterionCreationDateCondition.__key_warning(key)
|
|
581
|
+
return super().__getitem__(key)
|
|
582
|
+
|
|
583
|
+
def get(self, key: str, default = None) -> Any:
|
|
584
|
+
AllowedImagesSettingsImageCriterionCreationDateCondition.__key_warning(key)
|
|
585
|
+
return super().get(key, default)
|
|
586
|
+
|
|
587
|
+
def __init__(__self__, *,
|
|
588
|
+
maximum_days_since_created: Optional[_builtins.int] = None):
|
|
589
|
+
"""
|
|
590
|
+
:param _builtins.int maximum_days_since_created: Maximum number of days since the AMI was created.
|
|
591
|
+
"""
|
|
592
|
+
if maximum_days_since_created is not None:
|
|
593
|
+
pulumi.set(__self__, "maximum_days_since_created", maximum_days_since_created)
|
|
594
|
+
|
|
595
|
+
@_builtins.property
|
|
596
|
+
@pulumi.getter(name="maximumDaysSinceCreated")
|
|
597
|
+
def maximum_days_since_created(self) -> Optional[_builtins.int]:
|
|
598
|
+
"""
|
|
599
|
+
Maximum number of days since the AMI was created.
|
|
600
|
+
"""
|
|
601
|
+
return pulumi.get(self, "maximum_days_since_created")
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
@pulumi.output_type
|
|
605
|
+
class AllowedImagesSettingsImageCriterionDeprecationTimeCondition(dict):
|
|
606
|
+
@staticmethod
|
|
607
|
+
def __key_warning(key: str):
|
|
608
|
+
suggest = None
|
|
609
|
+
if key == "maximumDaysSinceDeprecated":
|
|
610
|
+
suggest = "maximum_days_since_deprecated"
|
|
611
|
+
|
|
612
|
+
if suggest:
|
|
613
|
+
pulumi.log.warn(f"Key '{key}' not found in AllowedImagesSettingsImageCriterionDeprecationTimeCondition. Access the value via the '{suggest}' property getter instead.")
|
|
614
|
+
|
|
615
|
+
def __getitem__(self, key: str) -> Any:
|
|
616
|
+
AllowedImagesSettingsImageCriterionDeprecationTimeCondition.__key_warning(key)
|
|
617
|
+
return super().__getitem__(key)
|
|
618
|
+
|
|
619
|
+
def get(self, key: str, default = None) -> Any:
|
|
620
|
+
AllowedImagesSettingsImageCriterionDeprecationTimeCondition.__key_warning(key)
|
|
621
|
+
return super().get(key, default)
|
|
622
|
+
|
|
623
|
+
def __init__(__self__, *,
|
|
624
|
+
maximum_days_since_deprecated: Optional[_builtins.int] = None):
|
|
625
|
+
"""
|
|
626
|
+
:param _builtins.int maximum_days_since_deprecated: Maximum number of days since the AMI was deprecated. Setting this to `0` means no deprecated images are allowed.
|
|
627
|
+
"""
|
|
628
|
+
if maximum_days_since_deprecated is not None:
|
|
629
|
+
pulumi.set(__self__, "maximum_days_since_deprecated", maximum_days_since_deprecated)
|
|
630
|
+
|
|
631
|
+
@_builtins.property
|
|
632
|
+
@pulumi.getter(name="maximumDaysSinceDeprecated")
|
|
633
|
+
def maximum_days_since_deprecated(self) -> Optional[_builtins.int]:
|
|
634
|
+
"""
|
|
635
|
+
Maximum number of days since the AMI was deprecated. Setting this to `0` means no deprecated images are allowed.
|
|
636
|
+
"""
|
|
637
|
+
return pulumi.get(self, "maximum_days_since_deprecated")
|
|
638
|
+
|
|
639
|
+
|
|
473
640
|
@pulumi.output_type
|
|
474
641
|
class AmiCopyEbsBlockDevice(dict):
|
|
475
642
|
@staticmethod
|
pulumi_aws/ec2/security_group.py
CHANGED
|
@@ -544,9 +544,9 @@ class SecurityGroup(pulumi.CustomResource):
|
|
|
544
544
|
aws ec2 modify-vpc-endpoint --vpc-endpoint-id ${{ENDPOINT_ID}} --add-security-group-ids {tags.workaround2} --remove-security-group-ids {id}
|
|
545
545
|
,
|
|
546
546
|
opts = pulumi.ResourceOptions(depends_on=[example]))
|
|
547
|
-
example_resource = null.
|
|
548
|
-
rerunUponChangeOf: std.join(separator
|
|
549
|
-
input=example_aws_vpc_endpoint
|
|
547
|
+
example_resource = null.Resource("example", triggers={
|
|
548
|
+
"rerunUponChangeOf": std.join(separator=",",
|
|
549
|
+
input=example_aws_vpc_endpoint["securityGroupIds"]).result,
|
|
550
550
|
})
|
|
551
551
|
example_resource_provisioner0 = command.local.Command("exampleResourceProvisioner0", create=f aws ec2 modify-vpc-endpoint --vpc-endpoint-id {example_aws_vpc_endpoint.id} --remove-security-group-ids {default.id}
|
|
552
552
|
,
|
|
@@ -745,9 +745,9 @@ class SecurityGroup(pulumi.CustomResource):
|
|
|
745
745
|
aws ec2 modify-vpc-endpoint --vpc-endpoint-id ${{ENDPOINT_ID}} --add-security-group-ids {tags.workaround2} --remove-security-group-ids {id}
|
|
746
746
|
,
|
|
747
747
|
opts = pulumi.ResourceOptions(depends_on=[example]))
|
|
748
|
-
example_resource = null.
|
|
749
|
-
rerunUponChangeOf: std.join(separator
|
|
750
|
-
input=example_aws_vpc_endpoint
|
|
748
|
+
example_resource = null.Resource("example", triggers={
|
|
749
|
+
"rerunUponChangeOf": std.join(separator=",",
|
|
750
|
+
input=example_aws_vpc_endpoint["securityGroupIds"]).result,
|
|
751
751
|
})
|
|
752
752
|
example_resource_provisioner0 = command.local.Command("exampleResourceProvisioner0", create=f aws ec2 modify-vpc-endpoint --vpc-endpoint-id {example_aws_vpc_endpoint.id} --remove-security-group-ids {default.id}
|
|
753
753
|
,
|
|
@@ -19,13 +19,17 @@ __all__ = ['SerialConsoleAccessArgs', 'SerialConsoleAccess']
|
|
|
19
19
|
@pulumi.input_type
|
|
20
20
|
class SerialConsoleAccessArgs:
|
|
21
21
|
def __init__(__self__, *,
|
|
22
|
-
enabled: Optional[pulumi.Input[_builtins.bool]] = None
|
|
22
|
+
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
23
|
+
region: Optional[pulumi.Input[_builtins.str]] = None):
|
|
23
24
|
"""
|
|
24
25
|
The set of arguments for constructing a SerialConsoleAccess resource.
|
|
25
26
|
:param pulumi.Input[_builtins.bool] enabled: Whether or not serial console access is enabled. Valid values are `true` or `false`. Defaults to `true`.
|
|
27
|
+
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
26
28
|
"""
|
|
27
29
|
if enabled is not None:
|
|
28
30
|
pulumi.set(__self__, "enabled", enabled)
|
|
31
|
+
if region is not None:
|
|
32
|
+
pulumi.set(__self__, "region", region)
|
|
29
33
|
|
|
30
34
|
@_builtins.property
|
|
31
35
|
@pulumi.getter
|
|
@@ -39,17 +43,33 @@ class SerialConsoleAccessArgs:
|
|
|
39
43
|
def enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
40
44
|
pulumi.set(self, "enabled", value)
|
|
41
45
|
|
|
46
|
+
@_builtins.property
|
|
47
|
+
@pulumi.getter
|
|
48
|
+
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
49
|
+
"""
|
|
50
|
+
Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "region")
|
|
53
|
+
|
|
54
|
+
@region.setter
|
|
55
|
+
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
56
|
+
pulumi.set(self, "region", value)
|
|
57
|
+
|
|
42
58
|
|
|
43
59
|
@pulumi.input_type
|
|
44
60
|
class _SerialConsoleAccessState:
|
|
45
61
|
def __init__(__self__, *,
|
|
46
|
-
enabled: Optional[pulumi.Input[_builtins.bool]] = None
|
|
62
|
+
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
63
|
+
region: Optional[pulumi.Input[_builtins.str]] = None):
|
|
47
64
|
"""
|
|
48
65
|
Input properties used for looking up and filtering SerialConsoleAccess resources.
|
|
49
66
|
:param pulumi.Input[_builtins.bool] enabled: Whether or not serial console access is enabled. Valid values are `true` or `false`. Defaults to `true`.
|
|
67
|
+
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
50
68
|
"""
|
|
51
69
|
if enabled is not None:
|
|
52
70
|
pulumi.set(__self__, "enabled", enabled)
|
|
71
|
+
if region is not None:
|
|
72
|
+
pulumi.set(__self__, "region", region)
|
|
53
73
|
|
|
54
74
|
@_builtins.property
|
|
55
75
|
@pulumi.getter
|
|
@@ -63,6 +83,18 @@ class _SerialConsoleAccessState:
|
|
|
63
83
|
def enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
64
84
|
pulumi.set(self, "enabled", value)
|
|
65
85
|
|
|
86
|
+
@_builtins.property
|
|
87
|
+
@pulumi.getter
|
|
88
|
+
def region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
89
|
+
"""
|
|
90
|
+
Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "region")
|
|
93
|
+
|
|
94
|
+
@region.setter
|
|
95
|
+
def region(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
96
|
+
pulumi.set(self, "region", value)
|
|
97
|
+
|
|
66
98
|
|
|
67
99
|
@pulumi.type_token("aws:ec2/serialConsoleAccess:SerialConsoleAccess")
|
|
68
100
|
class SerialConsoleAccess(pulumi.CustomResource):
|
|
@@ -71,6 +103,7 @@ class SerialConsoleAccess(pulumi.CustomResource):
|
|
|
71
103
|
resource_name: str,
|
|
72
104
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
73
105
|
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
106
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
74
107
|
__props__=None):
|
|
75
108
|
"""
|
|
76
109
|
Provides a resource to manage whether serial console access is enabled for your AWS account in the current AWS region.
|
|
@@ -97,6 +130,7 @@ class SerialConsoleAccess(pulumi.CustomResource):
|
|
|
97
130
|
:param str resource_name: The name of the resource.
|
|
98
131
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
99
132
|
:param pulumi.Input[_builtins.bool] enabled: Whether or not serial console access is enabled. Valid values are `true` or `false`. Defaults to `true`.
|
|
133
|
+
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
100
134
|
"""
|
|
101
135
|
...
|
|
102
136
|
@overload
|
|
@@ -142,6 +176,7 @@ class SerialConsoleAccess(pulumi.CustomResource):
|
|
|
142
176
|
resource_name: str,
|
|
143
177
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
144
178
|
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
179
|
+
region: Optional[pulumi.Input[_builtins.str]] = None,
|
|
145
180
|
__props__=None):
|
|
146
181
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
147
182
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -152,6 +187,7 @@ class SerialConsoleAccess(pulumi.CustomResource):
|
|
|
152
187
|
__props__ = SerialConsoleAccessArgs.__new__(SerialConsoleAccessArgs)
|
|
153
188
|
|
|
154
189
|
__props__.__dict__["enabled"] = enabled
|
|
190
|
+
__props__.__dict__["region"] = region
|
|
155
191
|
super(SerialConsoleAccess, __self__).__init__(
|
|
156
192
|
'aws:ec2/serialConsoleAccess:SerialConsoleAccess',
|
|
157
193
|
resource_name,
|
|
@@ -162,7 +198,8 @@ class SerialConsoleAccess(pulumi.CustomResource):
|
|
|
162
198
|
def get(resource_name: str,
|
|
163
199
|
id: pulumi.Input[str],
|
|
164
200
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
165
|
-
enabled: Optional[pulumi.Input[_builtins.bool]] = None
|
|
201
|
+
enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
202
|
+
region: Optional[pulumi.Input[_builtins.str]] = None) -> 'SerialConsoleAccess':
|
|
166
203
|
"""
|
|
167
204
|
Get an existing SerialConsoleAccess resource's state with the given name, id, and optional extra
|
|
168
205
|
properties used to qualify the lookup.
|
|
@@ -171,12 +208,14 @@ class SerialConsoleAccess(pulumi.CustomResource):
|
|
|
171
208
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
172
209
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
173
210
|
:param pulumi.Input[_builtins.bool] enabled: Whether or not serial console access is enabled. Valid values are `true` or `false`. Defaults to `true`.
|
|
211
|
+
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
174
212
|
"""
|
|
175
213
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
176
214
|
|
|
177
215
|
__props__ = _SerialConsoleAccessState.__new__(_SerialConsoleAccessState)
|
|
178
216
|
|
|
179
217
|
__props__.__dict__["enabled"] = enabled
|
|
218
|
+
__props__.__dict__["region"] = region
|
|
180
219
|
return SerialConsoleAccess(resource_name, opts=opts, __props__=__props__)
|
|
181
220
|
|
|
182
221
|
@_builtins.property
|
|
@@ -187,3 +226,11 @@ class SerialConsoleAccess(pulumi.CustomResource):
|
|
|
187
226
|
"""
|
|
188
227
|
return pulumi.get(self, "enabled")
|
|
189
228
|
|
|
229
|
+
@_builtins.property
|
|
230
|
+
@pulumi.getter
|
|
231
|
+
def region(self) -> pulumi.Output[_builtins.str]:
|
|
232
|
+
"""
|
|
233
|
+
Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
234
|
+
"""
|
|
235
|
+
return pulumi.get(self, "region")
|
|
236
|
+
|
pulumi_aws/ec2/vpc_endpoint.py
CHANGED
|
@@ -875,6 +875,52 @@ class VpcEndpoint(pulumi.CustomResource):
|
|
|
875
875
|
vpc_id=example_aws_vpc["id"])
|
|
876
876
|
```
|
|
877
877
|
|
|
878
|
+
### Non-AWS Service
|
|
879
|
+
|
|
880
|
+
```python
|
|
881
|
+
import pulumi
|
|
882
|
+
import pulumi_aws as aws
|
|
883
|
+
|
|
884
|
+
ptfe_service = aws.ec2.VpcEndpoint("ptfe_service",
|
|
885
|
+
vpc_id=vpc_id,
|
|
886
|
+
service_name=ptfe_service_config,
|
|
887
|
+
vpc_endpoint_type="Interface",
|
|
888
|
+
security_group_ids=[ptfe_service_aws_security_group["id"]],
|
|
889
|
+
subnet_ids=[subnet_ids],
|
|
890
|
+
private_dns_enabled=False)
|
|
891
|
+
internal = aws.route53.get_zone(name="vpc.internal.",
|
|
892
|
+
private_zone=True,
|
|
893
|
+
vpc_id=vpc_id)
|
|
894
|
+
ptfe_service_record = aws.route53.Record("ptfe_service",
|
|
895
|
+
zone_id=internal.zone_id,
|
|
896
|
+
name=f"ptfe.{internal.name}",
|
|
897
|
+
type=aws.route53.RecordType.CNAME,
|
|
898
|
+
ttl=300,
|
|
899
|
+
records=[ptfe_service.dns_entries[0].dns_name])
|
|
900
|
+
```
|
|
901
|
+
|
|
902
|
+
> **NOTE The `dns_entry` output is a list of maps:** This provider interpolation support for lists of maps requires the `lookup` and `[]` until full support of lists of maps is available
|
|
903
|
+
|
|
904
|
+
## Import
|
|
905
|
+
|
|
906
|
+
### Identity Schema
|
|
907
|
+
|
|
908
|
+
#### Required
|
|
909
|
+
|
|
910
|
+
* `id` - (String) ID of the VPC endpoint.
|
|
911
|
+
|
|
912
|
+
#### Optional
|
|
913
|
+
|
|
914
|
+
* `account_id` (String) AWS Account where this resource is managed.
|
|
915
|
+
|
|
916
|
+
* `region` (String) Region where this resource is managed.
|
|
917
|
+
|
|
918
|
+
Using `pulumi import`, import VPC Endpoints using the VPC endpoint `id`. For example:
|
|
919
|
+
|
|
920
|
+
console
|
|
921
|
+
|
|
922
|
+
% pulumi import aws_vpc_endpoint.example vpce-3ecf2a57
|
|
923
|
+
|
|
878
924
|
:param str resource_name: The name of the resource.
|
|
879
925
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
880
926
|
:param pulumi.Input[_builtins.bool] auto_accept: Accept the VPC endpoint (the VPC endpoint and service need to be in the same AWS account).
|
|
@@ -1025,6 +1071,52 @@ class VpcEndpoint(pulumi.CustomResource):
|
|
|
1025
1071
|
vpc_id=example_aws_vpc["id"])
|
|
1026
1072
|
```
|
|
1027
1073
|
|
|
1074
|
+
### Non-AWS Service
|
|
1075
|
+
|
|
1076
|
+
```python
|
|
1077
|
+
import pulumi
|
|
1078
|
+
import pulumi_aws as aws
|
|
1079
|
+
|
|
1080
|
+
ptfe_service = aws.ec2.VpcEndpoint("ptfe_service",
|
|
1081
|
+
vpc_id=vpc_id,
|
|
1082
|
+
service_name=ptfe_service_config,
|
|
1083
|
+
vpc_endpoint_type="Interface",
|
|
1084
|
+
security_group_ids=[ptfe_service_aws_security_group["id"]],
|
|
1085
|
+
subnet_ids=[subnet_ids],
|
|
1086
|
+
private_dns_enabled=False)
|
|
1087
|
+
internal = aws.route53.get_zone(name="vpc.internal.",
|
|
1088
|
+
private_zone=True,
|
|
1089
|
+
vpc_id=vpc_id)
|
|
1090
|
+
ptfe_service_record = aws.route53.Record("ptfe_service",
|
|
1091
|
+
zone_id=internal.zone_id,
|
|
1092
|
+
name=f"ptfe.{internal.name}",
|
|
1093
|
+
type=aws.route53.RecordType.CNAME,
|
|
1094
|
+
ttl=300,
|
|
1095
|
+
records=[ptfe_service.dns_entries[0].dns_name])
|
|
1096
|
+
```
|
|
1097
|
+
|
|
1098
|
+
> **NOTE The `dns_entry` output is a list of maps:** This provider interpolation support for lists of maps requires the `lookup` and `[]` until full support of lists of maps is available
|
|
1099
|
+
|
|
1100
|
+
## Import
|
|
1101
|
+
|
|
1102
|
+
### Identity Schema
|
|
1103
|
+
|
|
1104
|
+
#### Required
|
|
1105
|
+
|
|
1106
|
+
* `id` - (String) ID of the VPC endpoint.
|
|
1107
|
+
|
|
1108
|
+
#### Optional
|
|
1109
|
+
|
|
1110
|
+
* `account_id` (String) AWS Account where this resource is managed.
|
|
1111
|
+
|
|
1112
|
+
* `region` (String) Region where this resource is managed.
|
|
1113
|
+
|
|
1114
|
+
Using `pulumi import`, import VPC Endpoints using the VPC endpoint `id`. For example:
|
|
1115
|
+
|
|
1116
|
+
console
|
|
1117
|
+
|
|
1118
|
+
% pulumi import aws_vpc_endpoint.example vpce-3ecf2a57
|
|
1119
|
+
|
|
1028
1120
|
:param str resource_name: The name of the resource.
|
|
1029
1121
|
:param VpcEndpointArgs args: The arguments to use to populate this resource's properties.
|
|
1030
1122
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -28,7 +28,7 @@ class AuthorizationRuleArgs:
|
|
|
28
28
|
"""
|
|
29
29
|
The set of arguments for constructing a AuthorizationRule resource.
|
|
30
30
|
:param pulumi.Input[_builtins.str] client_vpn_endpoint_id: The ID of the Client VPN endpoint.
|
|
31
|
-
:param pulumi.Input[_builtins.str] target_network_cidr: The IPv4 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
31
|
+
:param pulumi.Input[_builtins.str] target_network_cidr: The IPv4 or IPv6 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
32
32
|
:param pulumi.Input[_builtins.str] access_group_id: The ID of the group to which the authorization rule grants access. One of `access_group_id` or `authorize_all_groups` must be set.
|
|
33
33
|
:param pulumi.Input[_builtins.bool] authorize_all_groups: Indicates whether the authorization rule grants access to all clients. One of `access_group_id` or `authorize_all_groups` must be set.
|
|
34
34
|
:param pulumi.Input[_builtins.str] description: A brief description of the authorization rule.
|
|
@@ -61,7 +61,7 @@ class AuthorizationRuleArgs:
|
|
|
61
61
|
@pulumi.getter(name="targetNetworkCidr")
|
|
62
62
|
def target_network_cidr(self) -> pulumi.Input[_builtins.str]:
|
|
63
63
|
"""
|
|
64
|
-
The IPv4 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
64
|
+
The IPv4 or IPv6 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
65
65
|
"""
|
|
66
66
|
return pulumi.get(self, "target_network_cidr")
|
|
67
67
|
|
|
@@ -134,7 +134,7 @@ class _AuthorizationRuleState:
|
|
|
134
134
|
:param pulumi.Input[_builtins.str] client_vpn_endpoint_id: The ID of the Client VPN endpoint.
|
|
135
135
|
:param pulumi.Input[_builtins.str] description: A brief description of the authorization rule.
|
|
136
136
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
137
|
-
:param pulumi.Input[_builtins.str] target_network_cidr: The IPv4 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
137
|
+
:param pulumi.Input[_builtins.str] target_network_cidr: The IPv4 or IPv6 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
138
138
|
"""
|
|
139
139
|
if access_group_id is not None:
|
|
140
140
|
pulumi.set(__self__, "access_group_id", access_group_id)
|
|
@@ -213,7 +213,7 @@ class _AuthorizationRuleState:
|
|
|
213
213
|
@pulumi.getter(name="targetNetworkCidr")
|
|
214
214
|
def target_network_cidr(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
215
215
|
"""
|
|
216
|
-
The IPv4 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
216
|
+
The IPv4 or IPv6 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
217
217
|
"""
|
|
218
218
|
return pulumi.get(self, "target_network_cidr")
|
|
219
219
|
|
|
@@ -275,7 +275,7 @@ class AuthorizationRule(pulumi.CustomResource):
|
|
|
275
275
|
:param pulumi.Input[_builtins.str] client_vpn_endpoint_id: The ID of the Client VPN endpoint.
|
|
276
276
|
:param pulumi.Input[_builtins.str] description: A brief description of the authorization rule.
|
|
277
277
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
278
|
-
:param pulumi.Input[_builtins.str] target_network_cidr: The IPv4 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
278
|
+
:param pulumi.Input[_builtins.str] target_network_cidr: The IPv4 or IPv6 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
279
279
|
"""
|
|
280
280
|
...
|
|
281
281
|
@overload
|
|
@@ -384,7 +384,7 @@ class AuthorizationRule(pulumi.CustomResource):
|
|
|
384
384
|
:param pulumi.Input[_builtins.str] client_vpn_endpoint_id: The ID of the Client VPN endpoint.
|
|
385
385
|
:param pulumi.Input[_builtins.str] description: A brief description of the authorization rule.
|
|
386
386
|
:param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
387
|
-
:param pulumi.Input[_builtins.str] target_network_cidr: The IPv4 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
387
|
+
:param pulumi.Input[_builtins.str] target_network_cidr: The IPv4 or IPv6 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
388
388
|
"""
|
|
389
389
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
390
390
|
|
|
@@ -442,7 +442,7 @@ class AuthorizationRule(pulumi.CustomResource):
|
|
|
442
442
|
@pulumi.getter(name="targetNetworkCidr")
|
|
443
443
|
def target_network_cidr(self) -> pulumi.Output[_builtins.str]:
|
|
444
444
|
"""
|
|
445
|
-
The IPv4 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
445
|
+
The IPv4 or IPv6 address range, in CIDR notation, of the network to which the authorization rule applies.
|
|
446
446
|
"""
|
|
447
447
|
return pulumi.get(self, "target_network_cidr")
|
|
448
448
|
|