How to use describe_reserved_instance_offerings method in localstack

Best Python code snippet using localstack_python

__init__.py

Source:__init__.py Github

copy

Full Screen

...1117 next_token: NextToken = None,1118 ) -> DescribePackagesResponse:1119 raise NotImplementedError1120 @handler("DescribeReservedInstanceOfferings")1121 def describe_reserved_instance_offerings(1122 self,1123 context: RequestContext,1124 reserved_instance_offering_id: GUID = None,1125 max_results: MaxResults = None,1126 next_token: NextToken = None,1127 ) -> DescribeReservedInstanceOfferingsResponse:1128 raise NotImplementedError1129 @handler("DescribeReservedInstances")1130 def describe_reserved_instances(1131 self,1132 context: RequestContext,1133 reserved_instance_id: GUID = None,1134 max_results: MaxResults = None,1135 next_token: NextToken = None,...

Full Screen

Full Screen

client.pyi

Source:client.pyi Github

copy

Full Screen

...315 Describes all packages available to Amazon OpenSearch Service domains.316 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/opensearch.html#OpenSearchService.Client.describe_packages)317 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_opensearch/client.html#describe_packages)318 """319 def describe_reserved_instance_offerings(320 self,321 *,322 ReservedInstanceOfferingId: str = None,323 MaxResults: int = None,324 NextToken: str = None325 ) -> DescribeReservedInstanceOfferingsResponseTypeDef:326 """327 Lists available reserved OpenSearch instance offerings.328 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/opensearch.html#OpenSearchService.Client.describe_reserved_instance_offerings)329 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_opensearch/client.html#describe_reserved_instance_offerings)330 """331 def describe_reserved_instances(332 self, *, ReservedInstanceId: str = None, MaxResults: int = None, NextToken: str = None333 ) -> DescribeReservedInstancesResponseTypeDef:...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run localstack automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful