Skip to content

Commit

Permalink
Merge branch 'release-1.35.38' into develop
Browse files Browse the repository at this point in the history
* release-1.35.38:
  Bumping version to 1.35.38
  Update to latest models
  Merge customizations for SocialMessaging
  • Loading branch information
aws-sdk-python-automation committed Oct 10, 2024
2 parents 8e2e8fd + 52cc070 commit 003ebdb
Show file tree
Hide file tree
Showing 23 changed files with 3,126 additions and 120 deletions.
57 changes: 57 additions & 0 deletions .changes/1.35.38.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
[
{
"category": "``acm-pca``",
"description": "Documentation updates for AWS Private CA.",
"type": "api-change"
},
{
"category": "``dms``",
"description": "Introduces DescribeDataMigrations, CreateDataMigration, ModifyDataMigration, DeleteDataMigration, StartDataMigration, StopDataMigration operations to SDK. Provides FailedDependencyFault error message.",
"type": "api-change"
},
{
"category": "``ec2``",
"description": "This release adds support for assigning the billing of shared Amazon EC2 On-Demand Capacity Reservations.",
"type": "api-change"
},
{
"category": "``ecs``",
"description": "This is a documentation only release that updates to documentation to let customers know that Amazon Elastic Inference is no longer available.",
"type": "api-change"
},
{
"category": "``elastic-inference``",
"description": "Elastic Inference - Documentation update to add service shutdown notice.",
"type": "api-change"
},
{
"category": "``iotfleetwise``",
"description": "Refine campaign related API validations",
"type": "api-change"
},
{
"category": "``neptune-graph``",
"description": "Support for 16 m-NCU graphs available through account allowlisting",
"type": "api-change"
},
{
"category": "``outposts``",
"description": "Adding new \"DELIVERED\" enum value for Outposts Order status",
"type": "api-change"
},
{
"category": "``route53resolver``",
"description": "Route 53 Resolver Forwarding Rules can now include a server name indication (SNI) in the target address for rules that use the DNS-over-HTTPS (DoH) protocol. When a DoH-enabled Outbound Resolver Endpoint forwards a request to a DoH server, it will provide the SNI in the TLS handshake.",
"type": "api-change"
},
{
"category": "``socialmessaging``",
"description": "This release for AWS End User Messaging includes a public SDK, providing a suite of APIs that enable sending WhatsApp messages to end users.",
"type": "api-change"
},
{
"category": "``timestream-influxdb``",
"description": "This release updates our regex based validation rules in regards to valid DbInstance and DbParameterGroup name.",
"type": "api-change"
}
]
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
CHANGELOG
=========

1.35.38
=======

* api-change:``acm-pca``: Documentation updates for AWS Private CA.
* api-change:``dms``: Introduces DescribeDataMigrations, CreateDataMigration, ModifyDataMigration, DeleteDataMigration, StartDataMigration, StopDataMigration operations to SDK. Provides FailedDependencyFault error message.
* api-change:``ec2``: This release adds support for assigning the billing of shared Amazon EC2 On-Demand Capacity Reservations.
* api-change:``ecs``: This is a documentation only release that updates to documentation to let customers know that Amazon Elastic Inference is no longer available.
* api-change:``elastic-inference``: Elastic Inference - Documentation update to add service shutdown notice.
* api-change:``iotfleetwise``: Refine campaign related API validations
* api-change:``neptune-graph``: Support for 16 m-NCU graphs available through account allowlisting
* api-change:``outposts``: Adding new "DELIVERED" enum value for Outposts Order status
* api-change:``route53resolver``: Route 53 Resolver Forwarding Rules can now include a server name indication (SNI) in the target address for rules that use the DNS-over-HTTPS (DoH) protocol. When a DoH-enabled Outbound Resolver Endpoint forwards a request to a DoH server, it will provide the SNI in the TLS handshake.
* api-change:``socialmessaging``: This release for AWS End User Messaging includes a public SDK, providing a suite of APIs that enable sending WhatsApp messages to end users.
* api-change:``timestream-influxdb``: This release updates our regex based validation rules in regards to valid DbInstance and DbParameterGroup name.


1.35.37
=======

Expand Down
58 changes: 57 additions & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.35.37'
__version__ = '1.35.38'


class NullHandler(logging.Handler):
Expand Down Expand Up @@ -54,6 +54,62 @@ def emit(self, record):
('ExecutePartiQLTransaction', '-'): 'execute-partiql-transaction',
('ExecutePartiQLBatch', '_'): 'execute_partiql_batch',
('ExecutePartiQLBatch', '-'): 'execute-partiql-batch',
(
'AssociateWhatsAppBusinessAccount',
'_',
): 'associate_whatsapp_business_account',
(
'AssociateWhatsAppBusinessAccount',
'-',
): 'associate-whatsapp-business-account',
('DeleteWhatsAppMessageMedia', '_'): 'delete_whatsapp_media_message',
('DeleteWhatsAppMessageMedia', '-'): 'delete-whatsapp-media-message',
(
'DisassociateWhatsAppBusinessAccount',
'_',
): 'disassociate_whatsapp_business_account',
(
'DisassociateWhatsAppBusinessAccount',
'-',
): 'disassociate-whatsapp-business-account',
(
'GetLinkedWhatsAppBusinessAccount',
'_',
): 'get_linked_whatsapp_business_account',
(
'GetLinkedWhatsAppBusinessAccount',
'-',
): 'get-linked-whatsapp-business-account',
(
'GetLinkedWhatsAppBusinessAccountPhoneNumber',
'_',
): 'get_linked_whatsapp_business_account_phone_number',
(
'GetLinkedWhatsAppBusinessAccountPhoneNumber',
'-',
): 'get-linked-whatsapp-business-account-phone-number',
('GetWhatsAppMessageMedia', '_'): 'get_whatsapp_message_media',
('GetWhatsAppMessageMedia', '-'): 'get-whatsapp-message-media',
(
'ListLinkedWhatsAppBusinessAccounts',
'_',
): 'list_linked_whatsapp_business_accounts',
(
'ListLinkedWhatsAppBusinessAccounts',
'-',
): 'list-linked-whatsapp-business-accounts',
('PostWhatsAppMessageMedia', '_'): 'post_whatsapp_message_media',
('PostWhatsAppMessageMedia', '-'): 'post-whatsapp-message-media',
(
'PutWhatsAppBusinessAccountEventDestinations',
'_',
): 'put_whatsapp_business_account_event_destinations',
(
'PutWhatsAppBusinessAccountEventDestinations',
'-',
): 'put-whatsapp-business-account-event-destinations',
('SendWhatsAppMessage', '_'): 'send_whatsapp_message',
('SendWhatsAppMessage', '-'): 'send-whatsapp-message',
}
ScalarTypes = ('string', 'integer', 'boolean', 'timestamp', 'float', 'double')

Expand Down
Loading

0 comments on commit 003ebdb

Please sign in to comment.