pulumi-aws 7.13.0a1765285722__py3-none-any.whl → 7.14.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 +8 -0
- pulumi_aws/_enums.py +1 -0
- pulumi_aws/apigateway/integration.py +7 -7
- pulumi_aws/bedrock/_inputs.py +52 -0
- pulumi_aws/bedrock/outputs.py +49 -0
- pulumi_aws/bedrockmodel/_inputs.py +38 -42
- pulumi_aws/bedrockmodel/outputs.py +25 -29
- pulumi_aws/eks/_inputs.py +21 -1
- pulumi_aws/eks/get_node_group.py +12 -1
- pulumi_aws/eks/outputs.py +42 -1
- pulumi_aws/iam/__init__.py +1 -0
- pulumi_aws/iam/outbound_web_identity_federation.py +167 -0
- pulumi_aws/kinesisanalyticsv2/_inputs.py +73 -0
- pulumi_aws/kinesisanalyticsv2/application.py +7 -7
- pulumi_aws/kinesisanalyticsv2/outputs.py +64 -0
- pulumi_aws/odb/network_peering_connection.py +36 -18
- pulumi_aws/organizations/organization.py +7 -7
- pulumi_aws/organizations/policy.py +21 -7
- pulumi_aws/pulumi-plugin.json +1 -1
- pulumi_aws/rds/cluster.py +28 -0
- pulumi_aws/rds/get_cluster.py +12 -1
- pulumi_aws/rds/get_instance.py +15 -1
- pulumi_aws/rds/instance.py +28 -0
- pulumi_aws/s3/_inputs.py +78 -0
- pulumi_aws/s3/outputs.py +81 -0
- pulumi_aws/s3/vectors_index.py +96 -0
- pulumi_aws/wafv2/_inputs.py +6 -6
- pulumi_aws/wafv2/outputs.py +4 -4
- {pulumi_aws-7.13.0a1765285722.dist-info → pulumi_aws-7.14.0.dist-info}/METADATA +1 -1
- {pulumi_aws-7.13.0a1765285722.dist-info → pulumi_aws-7.14.0.dist-info}/RECORD +32 -31
- {pulumi_aws-7.13.0a1765285722.dist-info → pulumi_aws-7.14.0.dist-info}/WHEEL +0 -0
- {pulumi_aws-7.13.0a1765285722.dist-info → pulumi_aws-7.14.0.dist-info}/top_level.txt +0 -0
pulumi_aws/__init__.py
CHANGED
|
@@ -6959,6 +6959,14 @@ _utilities.register(
|
|
|
6959
6959
|
"aws:iam/organizationsFeatures:OrganizationsFeatures": "OrganizationsFeatures"
|
|
6960
6960
|
}
|
|
6961
6961
|
},
|
|
6962
|
+
{
|
|
6963
|
+
"pkg": "aws",
|
|
6964
|
+
"mod": "iam/outboundWebIdentityFederation",
|
|
6965
|
+
"fqn": "pulumi_aws.iam",
|
|
6966
|
+
"classes": {
|
|
6967
|
+
"aws:iam/outboundWebIdentityFederation:OutboundWebIdentityFederation": "OutboundWebIdentityFederation"
|
|
6968
|
+
}
|
|
6969
|
+
},
|
|
6962
6970
|
{
|
|
6963
6971
|
"pkg": "aws",
|
|
6964
6972
|
"mod": "iam/policy",
|
pulumi_aws/_enums.py
CHANGED
|
@@ -67,7 +67,7 @@ class IntegrationArgs:
|
|
|
67
67
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] request_templates: Map of the integration's request templates.
|
|
68
68
|
:param pulumi.Input[_builtins.str] response_transfer_mode: Specifies the response transfer mode of the integration. Valid values are `BUFFERED` and `STREAM`. Default to `BUFFERED`.
|
|
69
69
|
Once set, setting the value to `BUFFERED` requires explicitly specifying `BUFFERED`, rather than removing this argument.
|
|
70
|
-
:param pulumi.Input[_builtins.int] timeout_milliseconds: Custom timeout
|
|
70
|
+
:param pulumi.Input[_builtins.int] timeout_milliseconds: Custom timeout in milliseconds. The minimum value is 50. The maximum value is 300,000 when `response_transfer_mode` is `BUFFERED`, and 900,000 when `response_transfer_mode` is `STREAM`. The default value is 29,000 milliseconds. You need to raise a [Service Quota Ticket](https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) to increase time beyond 29,000 milliseconds for `BUFFERED` mode.
|
|
71
71
|
:param pulumi.Input['IntegrationTlsConfigArgs'] tls_config: TLS configuration. See below.
|
|
72
72
|
:param pulumi.Input[_builtins.str] uri: Input's URI. **Required** if `type` is `AWS`, `AWS_PROXY`, `HTTP` or `HTTP_PROXY`.
|
|
73
73
|
For HTTP integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification . For AWS integrations, the URI should be of the form `arn:aws:apigateway:{region}:{subdomain.service|service}:{path|action}/{service_api}`. `region`, `subdomain` and `service` are used to determine the right endpoint.
|
|
@@ -325,7 +325,7 @@ class IntegrationArgs:
|
|
|
325
325
|
@pulumi.getter(name="timeoutMilliseconds")
|
|
326
326
|
def timeout_milliseconds(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
327
327
|
"""
|
|
328
|
-
Custom timeout
|
|
328
|
+
Custom timeout in milliseconds. The minimum value is 50. The maximum value is 300,000 when `response_transfer_mode` is `BUFFERED`, and 900,000 when `response_transfer_mode` is `STREAM`. The default value is 29,000 milliseconds. You need to raise a [Service Quota Ticket](https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) to increase time beyond 29,000 milliseconds for `BUFFERED` mode.
|
|
329
329
|
"""
|
|
330
330
|
return pulumi.get(self, "timeout_milliseconds")
|
|
331
331
|
|
|
@@ -408,7 +408,7 @@ class _IntegrationState:
|
|
|
408
408
|
:param pulumi.Input[_builtins.str] response_transfer_mode: Specifies the response transfer mode of the integration. Valid values are `BUFFERED` and `STREAM`. Default to `BUFFERED`.
|
|
409
409
|
Once set, setting the value to `BUFFERED` requires explicitly specifying `BUFFERED`, rather than removing this argument.
|
|
410
410
|
:param pulumi.Input[_builtins.str] rest_api: ID of the associated REST API.
|
|
411
|
-
:param pulumi.Input[_builtins.int] timeout_milliseconds: Custom timeout
|
|
411
|
+
:param pulumi.Input[_builtins.int] timeout_milliseconds: Custom timeout in milliseconds. The minimum value is 50. The maximum value is 300,000 when `response_transfer_mode` is `BUFFERED`, and 900,000 when `response_transfer_mode` is `STREAM`. The default value is 29,000 milliseconds. You need to raise a [Service Quota Ticket](https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) to increase time beyond 29,000 milliseconds for `BUFFERED` mode.
|
|
412
412
|
:param pulumi.Input['IntegrationTlsConfigArgs'] tls_config: TLS configuration. See below.
|
|
413
413
|
:param pulumi.Input[_builtins.str] type: Integration input's [type](https://docs.aws.amazon.com/apigateway/api-reference/resource/integration/). Valid values are `HTTP` (for HTTP backends), `MOCK` (not calling any real backend), `AWS` (for AWS services), `AWS_PROXY` (for Lambda proxy integration) and `HTTP_PROXY` (for HTTP proxy integration). An `HTTP` or `HTTP_PROXY` integration with a `connection_type` of `VPC_LINK` is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.
|
|
414
414
|
:param pulumi.Input[_builtins.str] uri: Input's URI. **Required** if `type` is `AWS`, `AWS_PROXY`, `HTTP` or `HTTP_PROXY`.
|
|
@@ -659,7 +659,7 @@ class _IntegrationState:
|
|
|
659
659
|
@pulumi.getter(name="timeoutMilliseconds")
|
|
660
660
|
def timeout_milliseconds(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
661
661
|
"""
|
|
662
|
-
Custom timeout
|
|
662
|
+
Custom timeout in milliseconds. The minimum value is 50. The maximum value is 300,000 when `response_transfer_mode` is `BUFFERED`, and 900,000 when `response_transfer_mode` is `STREAM`. The default value is 29,000 milliseconds. You need to raise a [Service Quota Ticket](https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) to increase time beyond 29,000 milliseconds for `BUFFERED` mode.
|
|
663
663
|
"""
|
|
664
664
|
return pulumi.get(self, "timeout_milliseconds")
|
|
665
665
|
|
|
@@ -969,7 +969,7 @@ class Integration(pulumi.CustomResource):
|
|
|
969
969
|
:param pulumi.Input[_builtins.str] response_transfer_mode: Specifies the response transfer mode of the integration. Valid values are `BUFFERED` and `STREAM`. Default to `BUFFERED`.
|
|
970
970
|
Once set, setting the value to `BUFFERED` requires explicitly specifying `BUFFERED`, rather than removing this argument.
|
|
971
971
|
:param pulumi.Input[_builtins.str] rest_api: ID of the associated REST API.
|
|
972
|
-
:param pulumi.Input[_builtins.int] timeout_milliseconds: Custom timeout
|
|
972
|
+
:param pulumi.Input[_builtins.int] timeout_milliseconds: Custom timeout in milliseconds. The minimum value is 50. The maximum value is 300,000 when `response_transfer_mode` is `BUFFERED`, and 900,000 when `response_transfer_mode` is `STREAM`. The default value is 29,000 milliseconds. You need to raise a [Service Quota Ticket](https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) to increase time beyond 29,000 milliseconds for `BUFFERED` mode.
|
|
973
973
|
:param pulumi.Input[Union['IntegrationTlsConfigArgs', 'IntegrationTlsConfigArgsDict']] tls_config: TLS configuration. See below.
|
|
974
974
|
:param pulumi.Input[_builtins.str] type: Integration input's [type](https://docs.aws.amazon.com/apigateway/api-reference/resource/integration/). Valid values are `HTTP` (for HTTP backends), `MOCK` (not calling any real backend), `AWS` (for AWS services), `AWS_PROXY` (for Lambda proxy integration) and `HTTP_PROXY` (for HTTP proxy integration). An `HTTP` or `HTTP_PROXY` integration with a `connection_type` of `VPC_LINK` is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.
|
|
975
975
|
:param pulumi.Input[_builtins.str] uri: Input's URI. **Required** if `type` is `AWS`, `AWS_PROXY`, `HTTP` or `HTTP_PROXY`.
|
|
@@ -1325,7 +1325,7 @@ class Integration(pulumi.CustomResource):
|
|
|
1325
1325
|
:param pulumi.Input[_builtins.str] response_transfer_mode: Specifies the response transfer mode of the integration. Valid values are `BUFFERED` and `STREAM`. Default to `BUFFERED`.
|
|
1326
1326
|
Once set, setting the value to `BUFFERED` requires explicitly specifying `BUFFERED`, rather than removing this argument.
|
|
1327
1327
|
:param pulumi.Input[_builtins.str] rest_api: ID of the associated REST API.
|
|
1328
|
-
:param pulumi.Input[_builtins.int] timeout_milliseconds: Custom timeout
|
|
1328
|
+
:param pulumi.Input[_builtins.int] timeout_milliseconds: Custom timeout in milliseconds. The minimum value is 50. The maximum value is 300,000 when `response_transfer_mode` is `BUFFERED`, and 900,000 when `response_transfer_mode` is `STREAM`. The default value is 29,000 milliseconds. You need to raise a [Service Quota Ticket](https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) to increase time beyond 29,000 milliseconds for `BUFFERED` mode.
|
|
1329
1329
|
:param pulumi.Input[Union['IntegrationTlsConfigArgs', 'IntegrationTlsConfigArgsDict']] tls_config: TLS configuration. See below.
|
|
1330
1330
|
:param pulumi.Input[_builtins.str] type: Integration input's [type](https://docs.aws.amazon.com/apigateway/api-reference/resource/integration/). Valid values are `HTTP` (for HTTP backends), `MOCK` (not calling any real backend), `AWS` (for AWS services), `AWS_PROXY` (for Lambda proxy integration) and `HTTP_PROXY` (for HTTP proxy integration). An `HTTP` or `HTTP_PROXY` integration with a `connection_type` of `VPC_LINK` is referred to as a private integration and uses a VpcLink to connect API Gateway to a network load balancer of a VPC.
|
|
1331
1331
|
:param pulumi.Input[_builtins.str] uri: Input's URI. **Required** if `type` is `AWS`, `AWS_PROXY`, `HTTP` or `HTTP_PROXY`.
|
|
@@ -1497,7 +1497,7 @@ class Integration(pulumi.CustomResource):
|
|
|
1497
1497
|
@pulumi.getter(name="timeoutMilliseconds")
|
|
1498
1498
|
def timeout_milliseconds(self) -> pulumi.Output[Optional[_builtins.int]]:
|
|
1499
1499
|
"""
|
|
1500
|
-
Custom timeout
|
|
1500
|
+
Custom timeout in milliseconds. The minimum value is 50. The maximum value is 300,000 when `response_transfer_mode` is `BUFFERED`, and 900,000 when `response_transfer_mode` is `STREAM`. The default value is 29,000 milliseconds. You need to raise a [Service Quota Ticket](https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) to increase time beyond 29,000 milliseconds for `BUFFERED` mode.
|
|
1501
1501
|
"""
|
|
1502
1502
|
return pulumi.get(self, "timeout_milliseconds")
|
|
1503
1503
|
|
pulumi_aws/bedrock/_inputs.py
CHANGED
|
@@ -45,6 +45,8 @@ __all__ = [
|
|
|
45
45
|
'AgentAgentKnowledgeBaseAssociationTimeoutsArgsDict',
|
|
46
46
|
'AgentAgentMemoryConfigurationArgs',
|
|
47
47
|
'AgentAgentMemoryConfigurationArgsDict',
|
|
48
|
+
'AgentAgentMemoryConfigurationSessionSummaryConfigurationArgs',
|
|
49
|
+
'AgentAgentMemoryConfigurationSessionSummaryConfigurationArgsDict',
|
|
48
50
|
'AgentAgentPromptOverrideConfigurationArgs',
|
|
49
51
|
'AgentAgentPromptOverrideConfigurationArgsDict',
|
|
50
52
|
'AgentAgentPromptOverrideConfigurationPromptConfigurationArgs',
|
|
@@ -1390,6 +1392,10 @@ if not MYPY:
|
|
|
1390
1392
|
"""
|
|
1391
1393
|
The type of memory being stored by the agent. See [AWS API documentation](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_MemoryConfiguration.html) for possible values.
|
|
1392
1394
|
"""
|
|
1395
|
+
session_summary_configurations: pulumi.Input[Sequence[pulumi.Input['AgentAgentMemoryConfigurationSessionSummaryConfigurationArgsDict']]]
|
|
1396
|
+
"""
|
|
1397
|
+
Configuration block for `SESSION_SUMMARY` memory type enabled for the agent. See `session_summary_configuration` Block for details.
|
|
1398
|
+
"""
|
|
1393
1399
|
storage_days: pulumi.Input[_builtins.int]
|
|
1394
1400
|
"""
|
|
1395
1401
|
The number of days the agent is configured to retain the conversational context. Minimum value of 0, maximum value of 30.
|
|
@@ -1401,12 +1407,15 @@ elif False:
|
|
|
1401
1407
|
class AgentAgentMemoryConfigurationArgs:
|
|
1402
1408
|
def __init__(__self__, *,
|
|
1403
1409
|
enabled_memory_types: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
1410
|
+
session_summary_configurations: pulumi.Input[Sequence[pulumi.Input['AgentAgentMemoryConfigurationSessionSummaryConfigurationArgs']]],
|
|
1404
1411
|
storage_days: pulumi.Input[_builtins.int]):
|
|
1405
1412
|
"""
|
|
1406
1413
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] enabled_memory_types: The type of memory being stored by the agent. See [AWS API documentation](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_MemoryConfiguration.html) for possible values.
|
|
1414
|
+
:param pulumi.Input[Sequence[pulumi.Input['AgentAgentMemoryConfigurationSessionSummaryConfigurationArgs']]] session_summary_configurations: Configuration block for `SESSION_SUMMARY` memory type enabled for the agent. See `session_summary_configuration` Block for details.
|
|
1407
1415
|
:param pulumi.Input[_builtins.int] storage_days: The number of days the agent is configured to retain the conversational context. Minimum value of 0, maximum value of 30.
|
|
1408
1416
|
"""
|
|
1409
1417
|
pulumi.set(__self__, "enabled_memory_types", enabled_memory_types)
|
|
1418
|
+
pulumi.set(__self__, "session_summary_configurations", session_summary_configurations)
|
|
1410
1419
|
pulumi.set(__self__, "storage_days", storage_days)
|
|
1411
1420
|
|
|
1412
1421
|
@_builtins.property
|
|
@@ -1421,6 +1430,18 @@ class AgentAgentMemoryConfigurationArgs:
|
|
|
1421
1430
|
def enabled_memory_types(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
1422
1431
|
pulumi.set(self, "enabled_memory_types", value)
|
|
1423
1432
|
|
|
1433
|
+
@_builtins.property
|
|
1434
|
+
@pulumi.getter(name="sessionSummaryConfigurations")
|
|
1435
|
+
def session_summary_configurations(self) -> pulumi.Input[Sequence[pulumi.Input['AgentAgentMemoryConfigurationSessionSummaryConfigurationArgs']]]:
|
|
1436
|
+
"""
|
|
1437
|
+
Configuration block for `SESSION_SUMMARY` memory type enabled for the agent. See `session_summary_configuration` Block for details.
|
|
1438
|
+
"""
|
|
1439
|
+
return pulumi.get(self, "session_summary_configurations")
|
|
1440
|
+
|
|
1441
|
+
@session_summary_configurations.setter
|
|
1442
|
+
def session_summary_configurations(self, value: pulumi.Input[Sequence[pulumi.Input['AgentAgentMemoryConfigurationSessionSummaryConfigurationArgs']]]):
|
|
1443
|
+
pulumi.set(self, "session_summary_configurations", value)
|
|
1444
|
+
|
|
1424
1445
|
@_builtins.property
|
|
1425
1446
|
@pulumi.getter(name="storageDays")
|
|
1426
1447
|
def storage_days(self) -> pulumi.Input[_builtins.int]:
|
|
@@ -1434,6 +1455,37 @@ class AgentAgentMemoryConfigurationArgs:
|
|
|
1434
1455
|
pulumi.set(self, "storage_days", value)
|
|
1435
1456
|
|
|
1436
1457
|
|
|
1458
|
+
if not MYPY:
|
|
1459
|
+
class AgentAgentMemoryConfigurationSessionSummaryConfigurationArgsDict(TypedDict):
|
|
1460
|
+
max_recent_sessions: pulumi.Input[_builtins.int]
|
|
1461
|
+
"""
|
|
1462
|
+
Maximum number of recent session summaries to include in the agent's prompt context.
|
|
1463
|
+
"""
|
|
1464
|
+
elif False:
|
|
1465
|
+
AgentAgentMemoryConfigurationSessionSummaryConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
1466
|
+
|
|
1467
|
+
@pulumi.input_type
|
|
1468
|
+
class AgentAgentMemoryConfigurationSessionSummaryConfigurationArgs:
|
|
1469
|
+
def __init__(__self__, *,
|
|
1470
|
+
max_recent_sessions: pulumi.Input[_builtins.int]):
|
|
1471
|
+
"""
|
|
1472
|
+
:param pulumi.Input[_builtins.int] max_recent_sessions: Maximum number of recent session summaries to include in the agent's prompt context.
|
|
1473
|
+
"""
|
|
1474
|
+
pulumi.set(__self__, "max_recent_sessions", max_recent_sessions)
|
|
1475
|
+
|
|
1476
|
+
@_builtins.property
|
|
1477
|
+
@pulumi.getter(name="maxRecentSessions")
|
|
1478
|
+
def max_recent_sessions(self) -> pulumi.Input[_builtins.int]:
|
|
1479
|
+
"""
|
|
1480
|
+
Maximum number of recent session summaries to include in the agent's prompt context.
|
|
1481
|
+
"""
|
|
1482
|
+
return pulumi.get(self, "max_recent_sessions")
|
|
1483
|
+
|
|
1484
|
+
@max_recent_sessions.setter
|
|
1485
|
+
def max_recent_sessions(self, value: pulumi.Input[_builtins.int]):
|
|
1486
|
+
pulumi.set(self, "max_recent_sessions", value)
|
|
1487
|
+
|
|
1488
|
+
|
|
1437
1489
|
if not MYPY:
|
|
1438
1490
|
class AgentAgentPromptOverrideConfigurationArgsDict(TypedDict):
|
|
1439
1491
|
override_lambda: pulumi.Input[_builtins.str]
|
pulumi_aws/bedrock/outputs.py
CHANGED
|
@@ -31,6 +31,7 @@ __all__ = [
|
|
|
31
31
|
'AgentAgentGuardrailConfiguration',
|
|
32
32
|
'AgentAgentKnowledgeBaseAssociationTimeouts',
|
|
33
33
|
'AgentAgentMemoryConfiguration',
|
|
34
|
+
'AgentAgentMemoryConfigurationSessionSummaryConfiguration',
|
|
34
35
|
'AgentAgentPromptOverrideConfiguration',
|
|
35
36
|
'AgentAgentPromptOverrideConfigurationPromptConfiguration',
|
|
36
37
|
'AgentAgentPromptOverrideConfigurationPromptConfigurationInferenceConfiguration',
|
|
@@ -919,6 +920,8 @@ class AgentAgentMemoryConfiguration(dict):
|
|
|
919
920
|
suggest = None
|
|
920
921
|
if key == "enabledMemoryTypes":
|
|
921
922
|
suggest = "enabled_memory_types"
|
|
923
|
+
elif key == "sessionSummaryConfigurations":
|
|
924
|
+
suggest = "session_summary_configurations"
|
|
922
925
|
elif key == "storageDays":
|
|
923
926
|
suggest = "storage_days"
|
|
924
927
|
|
|
@@ -935,12 +938,15 @@ class AgentAgentMemoryConfiguration(dict):
|
|
|
935
938
|
|
|
936
939
|
def __init__(__self__, *,
|
|
937
940
|
enabled_memory_types: Sequence[_builtins.str],
|
|
941
|
+
session_summary_configurations: Sequence['outputs.AgentAgentMemoryConfigurationSessionSummaryConfiguration'],
|
|
938
942
|
storage_days: _builtins.int):
|
|
939
943
|
"""
|
|
940
944
|
:param Sequence[_builtins.str] enabled_memory_types: The type of memory being stored by the agent. See [AWS API documentation](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_MemoryConfiguration.html) for possible values.
|
|
945
|
+
:param Sequence['AgentAgentMemoryConfigurationSessionSummaryConfigurationArgs'] session_summary_configurations: Configuration block for `SESSION_SUMMARY` memory type enabled for the agent. See `session_summary_configuration` Block for details.
|
|
941
946
|
:param _builtins.int storage_days: The number of days the agent is configured to retain the conversational context. Minimum value of 0, maximum value of 30.
|
|
942
947
|
"""
|
|
943
948
|
pulumi.set(__self__, "enabled_memory_types", enabled_memory_types)
|
|
949
|
+
pulumi.set(__self__, "session_summary_configurations", session_summary_configurations)
|
|
944
950
|
pulumi.set(__self__, "storage_days", storage_days)
|
|
945
951
|
|
|
946
952
|
@_builtins.property
|
|
@@ -951,6 +957,14 @@ class AgentAgentMemoryConfiguration(dict):
|
|
|
951
957
|
"""
|
|
952
958
|
return pulumi.get(self, "enabled_memory_types")
|
|
953
959
|
|
|
960
|
+
@_builtins.property
|
|
961
|
+
@pulumi.getter(name="sessionSummaryConfigurations")
|
|
962
|
+
def session_summary_configurations(self) -> Sequence['outputs.AgentAgentMemoryConfigurationSessionSummaryConfiguration']:
|
|
963
|
+
"""
|
|
964
|
+
Configuration block for `SESSION_SUMMARY` memory type enabled for the agent. See `session_summary_configuration` Block for details.
|
|
965
|
+
"""
|
|
966
|
+
return pulumi.get(self, "session_summary_configurations")
|
|
967
|
+
|
|
954
968
|
@_builtins.property
|
|
955
969
|
@pulumi.getter(name="storageDays")
|
|
956
970
|
def storage_days(self) -> _builtins.int:
|
|
@@ -960,6 +974,41 @@ class AgentAgentMemoryConfiguration(dict):
|
|
|
960
974
|
return pulumi.get(self, "storage_days")
|
|
961
975
|
|
|
962
976
|
|
|
977
|
+
@pulumi.output_type
|
|
978
|
+
class AgentAgentMemoryConfigurationSessionSummaryConfiguration(dict):
|
|
979
|
+
@staticmethod
|
|
980
|
+
def __key_warning(key: str):
|
|
981
|
+
suggest = None
|
|
982
|
+
if key == "maxRecentSessions":
|
|
983
|
+
suggest = "max_recent_sessions"
|
|
984
|
+
|
|
985
|
+
if suggest:
|
|
986
|
+
pulumi.log.warn(f"Key '{key}' not found in AgentAgentMemoryConfigurationSessionSummaryConfiguration. Access the value via the '{suggest}' property getter instead.")
|
|
987
|
+
|
|
988
|
+
def __getitem__(self, key: str) -> Any:
|
|
989
|
+
AgentAgentMemoryConfigurationSessionSummaryConfiguration.__key_warning(key)
|
|
990
|
+
return super().__getitem__(key)
|
|
991
|
+
|
|
992
|
+
def get(self, key: str, default = None) -> Any:
|
|
993
|
+
AgentAgentMemoryConfigurationSessionSummaryConfiguration.__key_warning(key)
|
|
994
|
+
return super().get(key, default)
|
|
995
|
+
|
|
996
|
+
def __init__(__self__, *,
|
|
997
|
+
max_recent_sessions: _builtins.int):
|
|
998
|
+
"""
|
|
999
|
+
:param _builtins.int max_recent_sessions: Maximum number of recent session summaries to include in the agent's prompt context.
|
|
1000
|
+
"""
|
|
1001
|
+
pulumi.set(__self__, "max_recent_sessions", max_recent_sessions)
|
|
1002
|
+
|
|
1003
|
+
@_builtins.property
|
|
1004
|
+
@pulumi.getter(name="maxRecentSessions")
|
|
1005
|
+
def max_recent_sessions(self) -> _builtins.int:
|
|
1006
|
+
"""
|
|
1007
|
+
Maximum number of recent session summaries to include in the agent's prompt context.
|
|
1008
|
+
"""
|
|
1009
|
+
return pulumi.get(self, "max_recent_sessions")
|
|
1010
|
+
|
|
1011
|
+
|
|
963
1012
|
@pulumi.output_type
|
|
964
1013
|
class AgentAgentPromptOverrideConfiguration(dict):
|
|
965
1014
|
@staticmethod
|
|
@@ -161,79 +161,77 @@ class InvocationLoggingConfigurationLoggingConfigArgs:
|
|
|
161
161
|
|
|
162
162
|
if not MYPY:
|
|
163
163
|
class InvocationLoggingConfigurationLoggingConfigCloudwatchConfigArgsDict(TypedDict):
|
|
164
|
-
|
|
165
|
-
"""
|
|
166
|
-
S3 configuration for delivering a large amount of data. See `large_data_delivery_s3_config` Block for details.
|
|
167
|
-
"""
|
|
168
|
-
log_group_name: NotRequired[pulumi.Input[_builtins.str]]
|
|
164
|
+
log_group_name: pulumi.Input[_builtins.str]
|
|
169
165
|
"""
|
|
170
166
|
Log group name.
|
|
171
167
|
"""
|
|
172
|
-
role_arn:
|
|
168
|
+
role_arn: pulumi.Input[_builtins.str]
|
|
173
169
|
"""
|
|
174
170
|
The role ARN.
|
|
175
171
|
"""
|
|
172
|
+
large_data_delivery_s3_config: NotRequired[pulumi.Input['InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3ConfigArgsDict']]
|
|
173
|
+
"""
|
|
174
|
+
S3 configuration for delivering a large amount of data. See `large_data_delivery_s3_config` Block for details.
|
|
175
|
+
"""
|
|
176
176
|
elif False:
|
|
177
177
|
InvocationLoggingConfigurationLoggingConfigCloudwatchConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
178
178
|
|
|
179
179
|
@pulumi.input_type
|
|
180
180
|
class InvocationLoggingConfigurationLoggingConfigCloudwatchConfigArgs:
|
|
181
181
|
def __init__(__self__, *,
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
182
|
+
log_group_name: pulumi.Input[_builtins.str],
|
|
183
|
+
role_arn: pulumi.Input[_builtins.str],
|
|
184
|
+
large_data_delivery_s3_config: Optional[pulumi.Input['InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3ConfigArgs']] = None):
|
|
185
185
|
"""
|
|
186
|
-
:param pulumi.Input['InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3ConfigArgs'] large_data_delivery_s3_config: S3 configuration for delivering a large amount of data. See `large_data_delivery_s3_config` Block for details.
|
|
187
186
|
:param pulumi.Input[_builtins.str] log_group_name: Log group name.
|
|
188
187
|
:param pulumi.Input[_builtins.str] role_arn: The role ARN.
|
|
188
|
+
:param pulumi.Input['InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3ConfigArgs'] large_data_delivery_s3_config: S3 configuration for delivering a large amount of data. See `large_data_delivery_s3_config` Block for details.
|
|
189
189
|
"""
|
|
190
|
+
pulumi.set(__self__, "log_group_name", log_group_name)
|
|
191
|
+
pulumi.set(__self__, "role_arn", role_arn)
|
|
190
192
|
if large_data_delivery_s3_config is not None:
|
|
191
193
|
pulumi.set(__self__, "large_data_delivery_s3_config", large_data_delivery_s3_config)
|
|
192
|
-
if log_group_name is not None:
|
|
193
|
-
pulumi.set(__self__, "log_group_name", log_group_name)
|
|
194
|
-
if role_arn is not None:
|
|
195
|
-
pulumi.set(__self__, "role_arn", role_arn)
|
|
196
|
-
|
|
197
|
-
@_builtins.property
|
|
198
|
-
@pulumi.getter(name="largeDataDeliveryS3Config")
|
|
199
|
-
def large_data_delivery_s3_config(self) -> Optional[pulumi.Input['InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3ConfigArgs']]:
|
|
200
|
-
"""
|
|
201
|
-
S3 configuration for delivering a large amount of data. See `large_data_delivery_s3_config` Block for details.
|
|
202
|
-
"""
|
|
203
|
-
return pulumi.get(self, "large_data_delivery_s3_config")
|
|
204
|
-
|
|
205
|
-
@large_data_delivery_s3_config.setter
|
|
206
|
-
def large_data_delivery_s3_config(self, value: Optional[pulumi.Input['InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3ConfigArgs']]):
|
|
207
|
-
pulumi.set(self, "large_data_delivery_s3_config", value)
|
|
208
194
|
|
|
209
195
|
@_builtins.property
|
|
210
196
|
@pulumi.getter(name="logGroupName")
|
|
211
|
-
def log_group_name(self) ->
|
|
197
|
+
def log_group_name(self) -> pulumi.Input[_builtins.str]:
|
|
212
198
|
"""
|
|
213
199
|
Log group name.
|
|
214
200
|
"""
|
|
215
201
|
return pulumi.get(self, "log_group_name")
|
|
216
202
|
|
|
217
203
|
@log_group_name.setter
|
|
218
|
-
def log_group_name(self, value:
|
|
204
|
+
def log_group_name(self, value: pulumi.Input[_builtins.str]):
|
|
219
205
|
pulumi.set(self, "log_group_name", value)
|
|
220
206
|
|
|
221
207
|
@_builtins.property
|
|
222
208
|
@pulumi.getter(name="roleArn")
|
|
223
|
-
def role_arn(self) ->
|
|
209
|
+
def role_arn(self) -> pulumi.Input[_builtins.str]:
|
|
224
210
|
"""
|
|
225
211
|
The role ARN.
|
|
226
212
|
"""
|
|
227
213
|
return pulumi.get(self, "role_arn")
|
|
228
214
|
|
|
229
215
|
@role_arn.setter
|
|
230
|
-
def role_arn(self, value:
|
|
216
|
+
def role_arn(self, value: pulumi.Input[_builtins.str]):
|
|
231
217
|
pulumi.set(self, "role_arn", value)
|
|
232
218
|
|
|
219
|
+
@_builtins.property
|
|
220
|
+
@pulumi.getter(name="largeDataDeliveryS3Config")
|
|
221
|
+
def large_data_delivery_s3_config(self) -> Optional[pulumi.Input['InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3ConfigArgs']]:
|
|
222
|
+
"""
|
|
223
|
+
S3 configuration for delivering a large amount of data. See `large_data_delivery_s3_config` Block for details.
|
|
224
|
+
"""
|
|
225
|
+
return pulumi.get(self, "large_data_delivery_s3_config")
|
|
226
|
+
|
|
227
|
+
@large_data_delivery_s3_config.setter
|
|
228
|
+
def large_data_delivery_s3_config(self, value: Optional[pulumi.Input['InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3ConfigArgs']]):
|
|
229
|
+
pulumi.set(self, "large_data_delivery_s3_config", value)
|
|
230
|
+
|
|
233
231
|
|
|
234
232
|
if not MYPY:
|
|
235
233
|
class InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3ConfigArgsDict(TypedDict):
|
|
236
|
-
bucket_name:
|
|
234
|
+
bucket_name: pulumi.Input[_builtins.str]
|
|
237
235
|
"""
|
|
238
236
|
S3 bucket name.
|
|
239
237
|
"""
|
|
@@ -247,27 +245,26 @@ elif False:
|
|
|
247
245
|
@pulumi.input_type
|
|
248
246
|
class InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3ConfigArgs:
|
|
249
247
|
def __init__(__self__, *,
|
|
250
|
-
bucket_name:
|
|
248
|
+
bucket_name: pulumi.Input[_builtins.str],
|
|
251
249
|
key_prefix: Optional[pulumi.Input[_builtins.str]] = None):
|
|
252
250
|
"""
|
|
253
251
|
:param pulumi.Input[_builtins.str] bucket_name: S3 bucket name.
|
|
254
252
|
:param pulumi.Input[_builtins.str] key_prefix: S3 prefix.
|
|
255
253
|
"""
|
|
256
|
-
|
|
257
|
-
pulumi.set(__self__, "bucket_name", bucket_name)
|
|
254
|
+
pulumi.set(__self__, "bucket_name", bucket_name)
|
|
258
255
|
if key_prefix is not None:
|
|
259
256
|
pulumi.set(__self__, "key_prefix", key_prefix)
|
|
260
257
|
|
|
261
258
|
@_builtins.property
|
|
262
259
|
@pulumi.getter(name="bucketName")
|
|
263
|
-
def bucket_name(self) ->
|
|
260
|
+
def bucket_name(self) -> pulumi.Input[_builtins.str]:
|
|
264
261
|
"""
|
|
265
262
|
S3 bucket name.
|
|
266
263
|
"""
|
|
267
264
|
return pulumi.get(self, "bucket_name")
|
|
268
265
|
|
|
269
266
|
@bucket_name.setter
|
|
270
|
-
def bucket_name(self, value:
|
|
267
|
+
def bucket_name(self, value: pulumi.Input[_builtins.str]):
|
|
271
268
|
pulumi.set(self, "bucket_name", value)
|
|
272
269
|
|
|
273
270
|
@_builtins.property
|
|
@@ -285,7 +282,7 @@ class InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDelive
|
|
|
285
282
|
|
|
286
283
|
if not MYPY:
|
|
287
284
|
class InvocationLoggingConfigurationLoggingConfigS3ConfigArgsDict(TypedDict):
|
|
288
|
-
bucket_name:
|
|
285
|
+
bucket_name: pulumi.Input[_builtins.str]
|
|
289
286
|
"""
|
|
290
287
|
S3 bucket name.
|
|
291
288
|
"""
|
|
@@ -299,27 +296,26 @@ elif False:
|
|
|
299
296
|
@pulumi.input_type
|
|
300
297
|
class InvocationLoggingConfigurationLoggingConfigS3ConfigArgs:
|
|
301
298
|
def __init__(__self__, *,
|
|
302
|
-
bucket_name:
|
|
299
|
+
bucket_name: pulumi.Input[_builtins.str],
|
|
303
300
|
key_prefix: Optional[pulumi.Input[_builtins.str]] = None):
|
|
304
301
|
"""
|
|
305
302
|
:param pulumi.Input[_builtins.str] bucket_name: S3 bucket name.
|
|
306
303
|
:param pulumi.Input[_builtins.str] key_prefix: S3 prefix.
|
|
307
304
|
"""
|
|
308
|
-
|
|
309
|
-
pulumi.set(__self__, "bucket_name", bucket_name)
|
|
305
|
+
pulumi.set(__self__, "bucket_name", bucket_name)
|
|
310
306
|
if key_prefix is not None:
|
|
311
307
|
pulumi.set(__self__, "key_prefix", key_prefix)
|
|
312
308
|
|
|
313
309
|
@_builtins.property
|
|
314
310
|
@pulumi.getter(name="bucketName")
|
|
315
|
-
def bucket_name(self) ->
|
|
311
|
+
def bucket_name(self) -> pulumi.Input[_builtins.str]:
|
|
316
312
|
"""
|
|
317
313
|
S3 bucket name.
|
|
318
314
|
"""
|
|
319
315
|
return pulumi.get(self, "bucket_name")
|
|
320
316
|
|
|
321
317
|
@bucket_name.setter
|
|
322
|
-
def bucket_name(self, value:
|
|
318
|
+
def bucket_name(self, value: pulumi.Input[_builtins.str]):
|
|
323
319
|
pulumi.set(self, "bucket_name", value)
|
|
324
320
|
|
|
325
321
|
@_builtins.property
|
|
@@ -133,12 +133,12 @@ class InvocationLoggingConfigurationLoggingConfigCloudwatchConfig(dict):
|
|
|
133
133
|
@staticmethod
|
|
134
134
|
def __key_warning(key: str):
|
|
135
135
|
suggest = None
|
|
136
|
-
if key == "
|
|
137
|
-
suggest = "large_data_delivery_s3_config"
|
|
138
|
-
elif key == "logGroupName":
|
|
136
|
+
if key == "logGroupName":
|
|
139
137
|
suggest = "log_group_name"
|
|
140
138
|
elif key == "roleArn":
|
|
141
139
|
suggest = "role_arn"
|
|
140
|
+
elif key == "largeDataDeliveryS3Config":
|
|
141
|
+
suggest = "large_data_delivery_s3_config"
|
|
142
142
|
|
|
143
143
|
if suggest:
|
|
144
144
|
pulumi.log.warn(f"Key '{key}' not found in InvocationLoggingConfigurationLoggingConfigCloudwatchConfig. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -152,32 +152,22 @@ class InvocationLoggingConfigurationLoggingConfigCloudwatchConfig(dict):
|
|
|
152
152
|
return super().get(key, default)
|
|
153
153
|
|
|
154
154
|
def __init__(__self__, *,
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
155
|
+
log_group_name: _builtins.str,
|
|
156
|
+
role_arn: _builtins.str,
|
|
157
|
+
large_data_delivery_s3_config: Optional['outputs.InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config'] = None):
|
|
158
158
|
"""
|
|
159
|
-
:param 'InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3ConfigArgs' large_data_delivery_s3_config: S3 configuration for delivering a large amount of data. See `large_data_delivery_s3_config` Block for details.
|
|
160
159
|
:param _builtins.str log_group_name: Log group name.
|
|
161
160
|
:param _builtins.str role_arn: The role ARN.
|
|
161
|
+
:param 'InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3ConfigArgs' large_data_delivery_s3_config: S3 configuration for delivering a large amount of data. See `large_data_delivery_s3_config` Block for details.
|
|
162
162
|
"""
|
|
163
|
+
pulumi.set(__self__, "log_group_name", log_group_name)
|
|
164
|
+
pulumi.set(__self__, "role_arn", role_arn)
|
|
163
165
|
if large_data_delivery_s3_config is not None:
|
|
164
166
|
pulumi.set(__self__, "large_data_delivery_s3_config", large_data_delivery_s3_config)
|
|
165
|
-
if log_group_name is not None:
|
|
166
|
-
pulumi.set(__self__, "log_group_name", log_group_name)
|
|
167
|
-
if role_arn is not None:
|
|
168
|
-
pulumi.set(__self__, "role_arn", role_arn)
|
|
169
|
-
|
|
170
|
-
@_builtins.property
|
|
171
|
-
@pulumi.getter(name="largeDataDeliveryS3Config")
|
|
172
|
-
def large_data_delivery_s3_config(self) -> Optional['outputs.InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config']:
|
|
173
|
-
"""
|
|
174
|
-
S3 configuration for delivering a large amount of data. See `large_data_delivery_s3_config` Block for details.
|
|
175
|
-
"""
|
|
176
|
-
return pulumi.get(self, "large_data_delivery_s3_config")
|
|
177
167
|
|
|
178
168
|
@_builtins.property
|
|
179
169
|
@pulumi.getter(name="logGroupName")
|
|
180
|
-
def log_group_name(self) ->
|
|
170
|
+
def log_group_name(self) -> _builtins.str:
|
|
181
171
|
"""
|
|
182
172
|
Log group name.
|
|
183
173
|
"""
|
|
@@ -185,12 +175,20 @@ class InvocationLoggingConfigurationLoggingConfigCloudwatchConfig(dict):
|
|
|
185
175
|
|
|
186
176
|
@_builtins.property
|
|
187
177
|
@pulumi.getter(name="roleArn")
|
|
188
|
-
def role_arn(self) ->
|
|
178
|
+
def role_arn(self) -> _builtins.str:
|
|
189
179
|
"""
|
|
190
180
|
The role ARN.
|
|
191
181
|
"""
|
|
192
182
|
return pulumi.get(self, "role_arn")
|
|
193
183
|
|
|
184
|
+
@_builtins.property
|
|
185
|
+
@pulumi.getter(name="largeDataDeliveryS3Config")
|
|
186
|
+
def large_data_delivery_s3_config(self) -> Optional['outputs.InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config']:
|
|
187
|
+
"""
|
|
188
|
+
S3 configuration for delivering a large amount of data. See `large_data_delivery_s3_config` Block for details.
|
|
189
|
+
"""
|
|
190
|
+
return pulumi.get(self, "large_data_delivery_s3_config")
|
|
191
|
+
|
|
194
192
|
|
|
195
193
|
@pulumi.output_type
|
|
196
194
|
class InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config(dict):
|
|
@@ -214,20 +212,19 @@ class InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDelive
|
|
|
214
212
|
return super().get(key, default)
|
|
215
213
|
|
|
216
214
|
def __init__(__self__, *,
|
|
217
|
-
bucket_name:
|
|
215
|
+
bucket_name: _builtins.str,
|
|
218
216
|
key_prefix: Optional[_builtins.str] = None):
|
|
219
217
|
"""
|
|
220
218
|
:param _builtins.str bucket_name: S3 bucket name.
|
|
221
219
|
:param _builtins.str key_prefix: S3 prefix.
|
|
222
220
|
"""
|
|
223
|
-
|
|
224
|
-
pulumi.set(__self__, "bucket_name", bucket_name)
|
|
221
|
+
pulumi.set(__self__, "bucket_name", bucket_name)
|
|
225
222
|
if key_prefix is not None:
|
|
226
223
|
pulumi.set(__self__, "key_prefix", key_prefix)
|
|
227
224
|
|
|
228
225
|
@_builtins.property
|
|
229
226
|
@pulumi.getter(name="bucketName")
|
|
230
|
-
def bucket_name(self) ->
|
|
227
|
+
def bucket_name(self) -> _builtins.str:
|
|
231
228
|
"""
|
|
232
229
|
S3 bucket name.
|
|
233
230
|
"""
|
|
@@ -264,20 +261,19 @@ class InvocationLoggingConfigurationLoggingConfigS3Config(dict):
|
|
|
264
261
|
return super().get(key, default)
|
|
265
262
|
|
|
266
263
|
def __init__(__self__, *,
|
|
267
|
-
bucket_name:
|
|
264
|
+
bucket_name: _builtins.str,
|
|
268
265
|
key_prefix: Optional[_builtins.str] = None):
|
|
269
266
|
"""
|
|
270
267
|
:param _builtins.str bucket_name: S3 bucket name.
|
|
271
268
|
:param _builtins.str key_prefix: S3 prefix.
|
|
272
269
|
"""
|
|
273
|
-
|
|
274
|
-
pulumi.set(__self__, "bucket_name", bucket_name)
|
|
270
|
+
pulumi.set(__self__, "bucket_name", bucket_name)
|
|
275
271
|
if key_prefix is not None:
|
|
276
272
|
pulumi.set(__self__, "key_prefix", key_prefix)
|
|
277
273
|
|
|
278
274
|
@_builtins.property
|
|
279
275
|
@pulumi.getter(name="bucketName")
|
|
280
|
-
def bucket_name(self) ->
|
|
276
|
+
def bucket_name(self) -> _builtins.str:
|
|
281
277
|
"""
|
|
282
278
|
S3 bucket name.
|
|
283
279
|
"""
|
pulumi_aws/eks/_inputs.py
CHANGED
|
@@ -2412,6 +2412,10 @@ if not MYPY:
|
|
|
2412
2412
|
"""
|
|
2413
2413
|
Desired max percentage of unavailable worker nodes during node group update.
|
|
2414
2414
|
"""
|
|
2415
|
+
update_strategy: NotRequired[pulumi.Input[_builtins.str]]
|
|
2416
|
+
"""
|
|
2417
|
+
Strategy to use for updating the node group. Valid values: `MINIMAL` and `DEFAULT`.
|
|
2418
|
+
"""
|
|
2415
2419
|
elif False:
|
|
2416
2420
|
NodeGroupUpdateConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
2417
2421
|
|
|
@@ -2419,15 +2423,19 @@ elif False:
|
|
|
2419
2423
|
class NodeGroupUpdateConfigArgs:
|
|
2420
2424
|
def __init__(__self__, *,
|
|
2421
2425
|
max_unavailable: Optional[pulumi.Input[_builtins.int]] = None,
|
|
2422
|
-
max_unavailable_percentage: Optional[pulumi.Input[_builtins.int]] = None
|
|
2426
|
+
max_unavailable_percentage: Optional[pulumi.Input[_builtins.int]] = None,
|
|
2427
|
+
update_strategy: Optional[pulumi.Input[_builtins.str]] = None):
|
|
2423
2428
|
"""
|
|
2424
2429
|
:param pulumi.Input[_builtins.int] max_unavailable: Desired max number of unavailable worker nodes during node group update.
|
|
2425
2430
|
:param pulumi.Input[_builtins.int] max_unavailable_percentage: Desired max percentage of unavailable worker nodes during node group update.
|
|
2431
|
+
:param pulumi.Input[_builtins.str] update_strategy: Strategy to use for updating the node group. Valid values: `MINIMAL` and `DEFAULT`.
|
|
2426
2432
|
"""
|
|
2427
2433
|
if max_unavailable is not None:
|
|
2428
2434
|
pulumi.set(__self__, "max_unavailable", max_unavailable)
|
|
2429
2435
|
if max_unavailable_percentage is not None:
|
|
2430
2436
|
pulumi.set(__self__, "max_unavailable_percentage", max_unavailable_percentage)
|
|
2437
|
+
if update_strategy is not None:
|
|
2438
|
+
pulumi.set(__self__, "update_strategy", update_strategy)
|
|
2431
2439
|
|
|
2432
2440
|
@_builtins.property
|
|
2433
2441
|
@pulumi.getter(name="maxUnavailable")
|
|
@@ -2453,4 +2461,16 @@ class NodeGroupUpdateConfigArgs:
|
|
|
2453
2461
|
def max_unavailable_percentage(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
2454
2462
|
pulumi.set(self, "max_unavailable_percentage", value)
|
|
2455
2463
|
|
|
2464
|
+
@_builtins.property
|
|
2465
|
+
@pulumi.getter(name="updateStrategy")
|
|
2466
|
+
def update_strategy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
2467
|
+
"""
|
|
2468
|
+
Strategy to use for updating the node group. Valid values: `MINIMAL` and `DEFAULT`.
|
|
2469
|
+
"""
|
|
2470
|
+
return pulumi.get(self, "update_strategy")
|
|
2471
|
+
|
|
2472
|
+
@update_strategy.setter
|
|
2473
|
+
def update_strategy(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
2474
|
+
pulumi.set(self, "update_strategy", value)
|
|
2475
|
+
|
|
2456
2476
|
|