How to use describe_fleet_history method in localstack

Best Python code snippet using localstack_python

_ecs.py

Source:_ecs.py Github

copy

Full Screen

...707 self.launch_template_configs = None708 def delete(self, **params):709 _params = _transfer_params(params)710 self._client.delete_fleet(fleet_id=self.fleet_id, **_params)711 def describe_fleet_history(self, **params):712 _params = _transfer_params(params)713 self._client.describe_fleet_history(fleet_id=self.fleet_id, **_params)714 def describe_fleet_instances(self, **params):715 _params = _transfer_params(params)716 self._client.describe_fleet_instances(fleet_id=self.fleet_id, **_params)717 def refresh(self):718 result = self._client.describe_fleets(list_of_fleet_id=[self.fleet_id, ])719 items = _new_get_key_in_response(result, 'Fleets.Fleet')720 if not items:721 raise ClientException(msg=722 "Failed to find fleet data from DescribeFleets response. "723 "FleetId = {0}".format(self.fleet_id))724 self._assign_attributes(items[0])725class _ECSHaVipResource(ServiceResource):726 def __init__(self, ha_vip_id, _client=None):727 ServiceResource.__init__(self, "ecs.ha_vip", _client=_client)...

Full Screen

Full Screen

client.py

Source:client.py Github

copy

Full Screen

...292 def describe_elastic_gpus(self, ElasticGpuIds: List = None, DryRun: bool = None, Filters: List = None, MaxResults: int = None, NextToken: str = None) -> Dict:293 pass294 def describe_export_tasks(self, ExportTaskIds: List = None) -> Dict:295 pass296 def describe_fleet_history(self, FleetId: str, StartTime: datetime, DryRun: bool = None, EventType: str = None, MaxResults: int = None, NextToken: str = None) -> Dict:297 pass298 def describe_fleet_instances(self, FleetId: str, DryRun: bool = None, MaxResults: int = None, NextToken: str = None, Filters: List = None) -> Dict:299 pass300 def describe_fleets(self, DryRun: bool = None, MaxResults: int = None, NextToken: str = None, FleetIds: List = None, Filters: List = None) -> Dict:301 pass302 def describe_flow_logs(self, DryRun: bool = None, Filters: List = None, FlowLogIds: List = None, MaxResults: int = None, NextToken: str = None) -> Dict:303 pass304 def describe_fpga_image_attribute(self, FpgaImageId: str, Attribute: str, DryRun: bool = None) -> Dict:305 pass306 def describe_fpga_images(self, DryRun: bool = None, FpgaImageIds: List = None, Owners: List = None, Filters: List = None, NextToken: str = None, MaxResults: int = None) -> Dict:307 pass308 def describe_host_reservation_offerings(self, Filters: List = None, MaxDuration: int = None, MaxResults: int = None, MinDuration: int = None, NextToken: str = None, OfferingId: str = None) -> Dict:309 pass310 def describe_host_reservations(self, Filters: List = None, HostReservationIdSet: List = None, MaxResults: int = None, NextToken: str = None) -> Dict:...

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