Skip to content

Commit

Permalink
Update to latest models
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-python-automation committed Oct 14, 2024
1 parent 5efce9e commit 1b6d6fa
Show file tree
Hide file tree
Showing 12 changed files with 717 additions and 58 deletions.
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-codepipeline-98058.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``codepipeline``",
"description": "AWS CodePipeline V2 type pipelines now support automatically retrying failed stages and skipping stage for failed entry conditions."
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-mailmanager-85745.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``mailmanager``",
"description": "Mail Manager support for viewing and exporting metadata of archived messages."
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-securitylake-53848.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``securitylake``",
"description": "This release updates request validation regex for resource ARNs."
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-supplychain-68141.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``supplychain``",
"description": "This release adds AWS Supply Chain instance management functionality. Specifically adding CreateInstance, DeleteInstance, GetInstance, ListInstances, and UpdateInstance APIs."
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-transfer-15570.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``transfer``",
"description": "This release enables customers using SFTP connectors to query the transfer status of their files to meet their monitoring needs as well as orchestrate post transfer actions."
}
54 changes: 52 additions & 2 deletions botocore/data/codepipeline/2015-07-09/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2301,6 +2301,10 @@
"shape":"Result",
"documentation":"<p>The specified result for when the failure conditions are met, such as rolling back the stage.</p>"
},
"retryConfiguration":{
"shape":"RetryConfiguration",
"documentation":"<p>The retry configuration specifies automatic retry for a failed stage, along with the configured retry mode.</p>"
},
"conditions":{
"shape":"ConditionList",
"documentation":"<p>The conditions that are configured as failure conditions.</p>"
Expand Down Expand Up @@ -4192,9 +4196,25 @@
"type":"string",
"enum":[
"ROLLBACK",
"FAIL"
"FAIL",
"RETRY",
"SKIP"
]
},
"RetryAttempt":{
"type":"integer",
"min":1
},
"RetryConfiguration":{
"type":"structure",
"members":{
"retryMode":{
"shape":"StageRetryMode",
"documentation":"<p>The method that you want to configure for automatic stage retry on stage failure. You can specify to retry only failed action in the stage or all actions in the stage.</p>"
}
},
"documentation":"<p>The retry configuration specifies automatic retry for a failed stage, along with the configured retry mode.</p>"
},
"RetryStageExecutionInput":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -4233,6 +4253,31 @@
},
"documentation":"<p>Represents the output of a <code>RetryStageExecution</code> action.</p>"
},
"RetryStageMetadata":{
"type":"structure",
"members":{
"autoStageRetryAttempt":{
"shape":"RetryAttempt",
"documentation":"<p>The number of attempts for a specific stage with automatic retry on stage failure. One attempt is allowed for automatic stage retry on failure.</p>"
},
"manualStageRetryAttempt":{
"shape":"RetryAttempt",
"documentation":"<p>The number of attempts for a specific stage where manual retries have been made upon stage failure.</p>"
},
"latestRetryTrigger":{
"shape":"RetryTrigger",
"documentation":"<p>The latest trigger for a specific stage where manual or automatic retries have been made upon stage failure.</p>"
}
},
"documentation":"<p>The details of a specific automatic retry on stage failure, including the attempt number and trigger.</p>"
},
"RetryTrigger":{
"type":"string",
"enum":[
"AutomatedStageRetry",
"ManualStageRetry"
]
},
"Revision":{
"type":"string",
"max":1500,
Expand Down Expand Up @@ -4972,7 +5017,8 @@
"Failed",
"Stopped",
"Stopping",
"Succeeded"
"Succeeded",
"Skipped"
]
},
"StageName":{
Expand Down Expand Up @@ -5037,6 +5083,10 @@
"onFailureConditionState":{
"shape":"StageConditionState",
"documentation":"<p>The state of the failure conditions for a stage.</p>"
},
"retryStageMetadata":{
"shape":"RetryStageMetadata",
"documentation":"<p>he details of a specific automatic retry on stage failure, including the attempt number and trigger.</p>"
}
},
"documentation":"<p>Represents information about the state of the stage.</p>"
Expand Down
92 changes: 91 additions & 1 deletion botocore/data/mailmanager/2023-10-17/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,9 @@
"TO",
"FROM",
"CC",
"SUBJECT"
"SUBJECT",
"ENVELOPE_TO",
"ENVELOPE_FROM"
]
},
"ArchiveStringExpression":{
Expand Down Expand Up @@ -1509,6 +1511,24 @@
"type":"list",
"member":{"shape":"String"}
},
"Envelope":{
"type":"structure",
"members":{
"From":{
"shape":"String",
"documentation":"<p>The RCPT FROM given by the host from which the email was received.</p>"
},
"Helo":{
"shape":"String",
"documentation":"<p>The HELO used by the host from which the email was received.</p>"
},
"To":{
"shape":"StringList",
"documentation":"<p>All SMTP TO entries given by the host from which the email was received.</p>"
}
},
"documentation":"<p>The SMTP envelope information of the email.</p>"
},
"ErrorMessage":{"type":"string"},
"ExportDestinationConfiguration":{
"type":"structure",
Expand Down Expand Up @@ -1719,9 +1739,17 @@
"GetArchiveMessageResponse":{
"type":"structure",
"members":{
"Envelope":{
"shape":"Envelope",
"documentation":"<p>The SMTP envelope information of the email.</p>"
},
"MessageDownloadLink":{
"shape":"S3PresignedURL",
"documentation":"<p>A pre-signed URL to temporarily download the full message content.</p>"
},
"Metadata":{
"shape":"Metadata",
"documentation":"<p>The metadata about the email.</p>"
}
},
"documentation":"<p>The response containing details about the requested archived email message.</p>"
Expand Down Expand Up @@ -2726,6 +2754,44 @@
},
"documentation":"<p>The textual body content of an email message.</p>"
},
"Metadata":{
"type":"structure",
"members":{
"IngressPointId":{
"shape":"IngressPointId",
"documentation":"<p>The ID of the ingress endpoint through which the email was received.</p>"
},
"RuleSetId":{
"shape":"RuleSetId",
"documentation":"<p>The ID of the rule set that processed the email.</p>"
},
"SenderHostname":{
"shape":"String",
"documentation":"<p>The name of the host from which the email was received.</p>"
},
"SenderIpAddress":{
"shape":"SenderIpAddress",
"documentation":"<p>The IP address of the host from which the email was received.</p>"
},
"Timestamp":{
"shape":"Timestamp",
"documentation":"<p>The timestamp of when the email was received.</p>"
},
"TlsCipherSuite":{
"shape":"String",
"documentation":"<p>The TLS cipher suite used to communicate with the host from which the email was received.</p>"
},
"TlsProtocol":{
"shape":"String",
"documentation":"<p>The TLS protocol used to communicate with the host from which the email was received.</p>"
},
"TrafficPolicyId":{
"shape":"TrafficPolicyId",
"documentation":"<p>The ID of the traffic policy that was in effect when the email was received.</p>"
}
},
"documentation":"<p>The metadata about the email.</p>"
},
"MimeHeaderAttribute":{
"type":"string",
"pattern":"^X-[a-zA-Z0-9-]{1,256}$"
Expand Down Expand Up @@ -2950,6 +3016,10 @@
"shape":"String",
"documentation":"<p>The date the email was sent.</p>"
},
"Envelope":{
"shape":"Envelope",
"documentation":"<p>The SMTP envelope information of the email.</p>"
},
"From":{
"shape":"String",
"documentation":"<p>The email address of the sender.</p>"
Expand All @@ -2962,6 +3032,10 @@
"shape":"String",
"documentation":"<p>The email message ID this is a reply to.</p>"
},
"IngressPointId":{
"shape":"IngressPointId",
"documentation":"<p>The ID of the ingress endpoint through which the email was received.</p>"
},
"MessageId":{
"shape":"String",
"documentation":"<p>The unique message ID of the email.</p>"
Expand All @@ -2974,6 +3048,14 @@
"shape":"Timestamp",
"documentation":"<p>The timestamp of when the email was received.</p>"
},
"SenderHostname":{
"shape":"String",
"documentation":"<p>The name of the host from which the email was received.</p>"
},
"SenderIpAddress":{
"shape":"SenderIpAddress",
"documentation":"<p>The IP address of the host from which the email was received.</p>"
},
"Subject":{
"shape":"String",
"documentation":"<p>The subject header value of the email.</p>"
Expand Down Expand Up @@ -3617,6 +3699,10 @@
},
"documentation":"<p>Sends the email to the internet using the ses:SendRawEmail API.</p>"
},
"SenderIpAddress":{
"type":"string",
"sensitive":true
},
"ServiceQuotaExceededException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -3657,6 +3743,10 @@
"shape":"Timestamp",
"documentation":"<p>The start of the timestamp range to include emails from.</p>"
},
"IncludeMetadata":{
"shape":"Boolean",
"documentation":"<p>Whether to include message metadata as JSON files in the export.</p>"
},
"MaxResults":{
"shape":"ExportMaxResults",
"documentation":"<p>The maximum number of email items to include in the export.</p>"
Expand Down
Loading

0 comments on commit 1b6d6fa

Please sign in to comment.