How to use associate_ops_item_related_item method in localstack

Best Python code snippet using localstack_python

__init__.py

Source:__init__.py Github

copy

Full Screen

...3529 tags: TagList,3530 ) -> AddTagsToResourceResult:3531 raise NotImplementedError3532 @handler("AssociateOpsItemRelatedItem")3533 def associate_ops_item_related_item(3534 self,3535 context: RequestContext,3536 ops_item_id: OpsItemId,3537 association_type: OpsItemRelatedItemAssociationType,3538 resource_type: OpsItemRelatedItemAssociationResourceType,3539 resource_uri: OpsItemRelatedItemAssociationResourceUri,3540 ) -> AssociateOpsItemRelatedItemResponse:3541 raise NotImplementedError3542 @handler("CancelCommand")3543 def cancel_command(3544 self, context: RequestContext, command_id: CommandId, instance_ids: InstanceIdList = None3545 ) -> CancelCommandResult:3546 raise NotImplementedError3547 @handler("CancelMaintenanceWindowExecution")3548 def cancel_maintenance_window_execution(3549 self, context: RequestContext, window_execution_id: MaintenanceWindowExecutionId3550 ) -> CancelMaintenanceWindowExecutionResult:3551 raise NotImplementedError3552 @handler("CreateActivation")3553 def create_activation(3554 self,3555 context: RequestContext,3556 iam_role: IamRole,3557 description: ActivationDescription = None,3558 default_instance_name: DefaultInstanceName = None,3559 registration_limit: RegistrationLimit = None,3560 expiration_date: ExpirationDate = None,3561 tags: TagList = None,3562 registration_metadata: RegistrationMetadataList = None,3563 ) -> CreateActivationResult:3564 raise NotImplementedError3565 @handler("CreateAssociation")3566 def create_association(3567 self,3568 context: RequestContext,3569 name: DocumentARN,3570 document_version: DocumentVersion = None,3571 instance_id: InstanceId = None,3572 parameters: Parameters = None,3573 targets: Targets = None,3574 schedule_expression: ScheduleExpression = None,3575 output_location: InstanceAssociationOutputLocation = None,3576 association_name: AssociationName = None,3577 automation_target_parameter_name: AutomationTargetParameterName = None,3578 max_errors: MaxErrors = None,3579 max_concurrency: MaxConcurrency = None,3580 compliance_severity: AssociationComplianceSeverity = None,3581 sync_compliance: AssociationSyncCompliance = None,3582 apply_only_at_cron_interval: ApplyOnlyAtCronInterval = None,3583 calendar_names: CalendarNameOrARNList = None,3584 target_locations: TargetLocations = None,3585 ) -> CreateAssociationResult:3586 raise NotImplementedError3587 @handler("CreateAssociationBatch")3588 def create_association_batch(3589 self, context: RequestContext, entries: CreateAssociationBatchRequestEntries3590 ) -> CreateAssociationBatchResult:3591 raise NotImplementedError3592 @handler("CreateDocument")3593 def create_document(3594 self,3595 context: RequestContext,3596 content: DocumentContent,3597 name: DocumentName,3598 requires: DocumentRequiresList = None,3599 attachments: AttachmentsSourceList = None,3600 display_name: DocumentDisplayName = None,3601 version_name: DocumentVersionName = None,3602 document_type: DocumentType = None,3603 document_format: DocumentFormat = None,3604 target_type: TargetType = None,3605 tags: TagList = None,3606 ) -> CreateDocumentResult:3607 raise NotImplementedError3608 @handler("CreateMaintenanceWindow")3609 def create_maintenance_window(3610 self,3611 context: RequestContext,3612 name: MaintenanceWindowName,3613 schedule: MaintenanceWindowSchedule,3614 duration: MaintenanceWindowDurationHours,3615 cutoff: MaintenanceWindowCutoff,3616 allow_unassociated_targets: MaintenanceWindowAllowUnassociatedTargets,3617 description: MaintenanceWindowDescription = None,3618 start_date: MaintenanceWindowStringDateTime = None,3619 end_date: MaintenanceWindowStringDateTime = None,3620 schedule_timezone: MaintenanceWindowTimezone = None,3621 schedule_offset: MaintenanceWindowOffset = None,3622 client_token: ClientToken = None,3623 tags: TagList = None,3624 ) -> CreateMaintenanceWindowResult:3625 raise NotImplementedError3626 @handler("CreateOpsItem")3627 def create_ops_item(3628 self,3629 context: RequestContext,3630 description: OpsItemDescription,3631 source: OpsItemSource,3632 title: OpsItemTitle,3633 ops_item_type: OpsItemType = None,3634 operational_data: OpsItemOperationalData = None,3635 notifications: OpsItemNotifications = None,3636 priority: OpsItemPriority = None,3637 related_ops_items: RelatedOpsItems = None,3638 tags: TagList = None,3639 category: OpsItemCategory = None,3640 severity: OpsItemSeverity = None,3641 actual_start_time: DateTime = None,3642 actual_end_time: DateTime = None,3643 planned_start_time: DateTime = None,3644 planned_end_time: DateTime = None,3645 ) -> CreateOpsItemResponse:3646 raise NotImplementedError3647 @handler("CreateOpsMetadata")3648 def create_ops_metadata(3649 self,3650 context: RequestContext,3651 resource_id: OpsMetadataResourceId,3652 metadata: MetadataMap = None,3653 tags: TagList = None,3654 ) -> CreateOpsMetadataResult:3655 raise NotImplementedError3656 @handler("CreatePatchBaseline")3657 def create_patch_baseline(3658 self,3659 context: RequestContext,3660 name: BaselineName,3661 operating_system: OperatingSystem = None,3662 global_filters: PatchFilterGroup = None,3663 approval_rules: PatchRuleGroup = None,3664 approved_patches: PatchIdList = None,3665 approved_patches_compliance_level: PatchComplianceLevel = None,3666 approved_patches_enable_non_security: Boolean = None,3667 rejected_patches: PatchIdList = None,3668 rejected_patches_action: PatchAction = None,3669 description: BaselineDescription = None,3670 sources: PatchSourceList = None,3671 client_token: ClientToken = None,3672 tags: TagList = None,3673 ) -> CreatePatchBaselineResult:3674 raise NotImplementedError3675 @handler("CreateResourceDataSync")3676 def create_resource_data_sync(3677 self,3678 context: RequestContext,3679 sync_name: ResourceDataSyncName,3680 s3_destination: ResourceDataSyncS3Destination = None,3681 sync_type: ResourceDataSyncType = None,3682 sync_source: ResourceDataSyncSource = None,3683 ) -> CreateResourceDataSyncResult:3684 raise NotImplementedError3685 @handler("DeleteActivation")3686 def delete_activation(3687 self, context: RequestContext, activation_id: ActivationId3688 ) -> DeleteActivationResult:3689 raise NotImplementedError3690 @handler("DeleteAssociation")3691 def delete_association(3692 self,3693 context: RequestContext,3694 name: DocumentARN = None,3695 instance_id: InstanceId = None,3696 association_id: AssociationId = None,3697 ) -> DeleteAssociationResult:3698 raise NotImplementedError3699 @handler("DeleteDocument")3700 def delete_document(3701 self,3702 context: RequestContext,3703 name: DocumentName,3704 document_version: DocumentVersion = None,3705 version_name: DocumentVersionName = None,3706 force: Boolean = None,3707 ) -> DeleteDocumentResult:3708 raise NotImplementedError3709 @handler("DeleteInventory")3710 def delete_inventory(3711 self,3712 context: RequestContext,3713 type_name: InventoryItemTypeName,3714 schema_delete_option: InventorySchemaDeleteOption = None,3715 dry_run: DryRun = None,3716 client_token: UUID = None,3717 ) -> DeleteInventoryResult:3718 raise NotImplementedError3719 @handler("DeleteMaintenanceWindow")3720 def delete_maintenance_window(3721 self, context: RequestContext, window_id: MaintenanceWindowId3722 ) -> DeleteMaintenanceWindowResult:3723 raise NotImplementedError3724 @handler("DeleteOpsMetadata")3725 def delete_ops_metadata(3726 self, context: RequestContext, ops_metadata_arn: OpsMetadataArn3727 ) -> DeleteOpsMetadataResult:3728 raise NotImplementedError3729 @handler("DeleteParameter")3730 def delete_parameter(3731 self, context: RequestContext, name: PSParameterName3732 ) -> DeleteParameterResult:3733 raise NotImplementedError3734 @handler("DeleteParameters")3735 def delete_parameters(3736 self, context: RequestContext, names: ParameterNameList3737 ) -> DeleteParametersResult:3738 raise NotImplementedError3739 @handler("DeletePatchBaseline")3740 def delete_patch_baseline(3741 self, context: RequestContext, baseline_id: BaselineId3742 ) -> DeletePatchBaselineResult:3743 raise NotImplementedError3744 @handler("DeleteResourceDataSync")3745 def delete_resource_data_sync(3746 self,3747 context: RequestContext,3748 sync_name: ResourceDataSyncName,3749 sync_type: ResourceDataSyncType = None,3750 ) -> DeleteResourceDataSyncResult:3751 raise NotImplementedError3752 @handler("DeregisterManagedInstance")3753 def deregister_managed_instance(3754 self, context: RequestContext, instance_id: ManagedInstanceId3755 ) -> DeregisterManagedInstanceResult:3756 raise NotImplementedError3757 @handler("DeregisterPatchBaselineForPatchGroup")3758 def deregister_patch_baseline_for_patch_group(3759 self, context: RequestContext, baseline_id: BaselineId, patch_group: PatchGroup3760 ) -> DeregisterPatchBaselineForPatchGroupResult:3761 raise NotImplementedError3762 @handler("DeregisterTargetFromMaintenanceWindow")3763 def deregister_target_from_maintenance_window(3764 self,3765 context: RequestContext,3766 window_id: MaintenanceWindowId,3767 window_target_id: MaintenanceWindowTargetId,3768 safe: Boolean = None,3769 ) -> DeregisterTargetFromMaintenanceWindowResult:3770 raise NotImplementedError3771 @handler("DeregisterTaskFromMaintenanceWindow")3772 def deregister_task_from_maintenance_window(3773 self,3774 context: RequestContext,3775 window_id: MaintenanceWindowId,3776 window_task_id: MaintenanceWindowTaskId,3777 ) -> DeregisterTaskFromMaintenanceWindowResult:3778 raise NotImplementedError3779 @handler("DescribeActivations")3780 def describe_activations(3781 self,3782 context: RequestContext,3783 filters: DescribeActivationsFilterList = None,3784 max_results: MaxResults = None,3785 next_token: NextToken = None,3786 ) -> DescribeActivationsResult:3787 raise NotImplementedError3788 @handler("DescribeAssociation")3789 def describe_association(3790 self,3791 context: RequestContext,3792 name: DocumentARN = None,3793 instance_id: InstanceId = None,3794 association_id: AssociationId = None,3795 association_version: AssociationVersion = None,3796 ) -> DescribeAssociationResult:3797 raise NotImplementedError3798 @handler("DescribeAssociationExecutionTargets")3799 def describe_association_execution_targets(3800 self,3801 context: RequestContext,3802 association_id: AssociationId,3803 execution_id: AssociationExecutionId,3804 filters: AssociationExecutionTargetsFilterList = None,3805 max_results: MaxResults = None,3806 next_token: NextToken = None,3807 ) -> DescribeAssociationExecutionTargetsResult:3808 raise NotImplementedError3809 @handler("DescribeAssociationExecutions")3810 def describe_association_executions(3811 self,3812 context: RequestContext,3813 association_id: AssociationId,3814 filters: AssociationExecutionFilterList = None,3815 max_results: MaxResults = None,3816 next_token: NextToken = None,3817 ) -> DescribeAssociationExecutionsResult:3818 raise NotImplementedError3819 @handler("DescribeAutomationExecutions")3820 def describe_automation_executions(3821 self,3822 context: RequestContext,3823 filters: AutomationExecutionFilterList = None,3824 max_results: MaxResults = None,3825 next_token: NextToken = None,3826 ) -> DescribeAutomationExecutionsResult:3827 raise NotImplementedError3828 @handler("DescribeAutomationStepExecutions")3829 def describe_automation_step_executions(3830 self,3831 context: RequestContext,3832 automation_execution_id: AutomationExecutionId,3833 filters: StepExecutionFilterList = None,3834 next_token: NextToken = None,3835 max_results: MaxResults = None,3836 reverse_order: Boolean = None,3837 ) -> DescribeAutomationStepExecutionsResult:3838 raise NotImplementedError3839 @handler("DescribeAvailablePatches")3840 def describe_available_patches(3841 self,3842 context: RequestContext,3843 filters: PatchOrchestratorFilterList = None,3844 max_results: PatchBaselineMaxResults = None,3845 next_token: NextToken = None,3846 ) -> DescribeAvailablePatchesResult:3847 raise NotImplementedError3848 @handler("DescribeDocument")3849 def describe_document(3850 self,3851 context: RequestContext,3852 name: DocumentARN,3853 document_version: DocumentVersion = None,3854 version_name: DocumentVersionName = None,3855 ) -> DescribeDocumentResult:3856 raise NotImplementedError3857 @handler("DescribeDocumentPermission")3858 def describe_document_permission(3859 self,3860 context: RequestContext,3861 name: DocumentName,3862 permission_type: DocumentPermissionType,3863 max_results: DocumentPermissionMaxResults = None,3864 next_token: NextToken = None,3865 ) -> DescribeDocumentPermissionResponse:3866 raise NotImplementedError3867 @handler("DescribeEffectiveInstanceAssociations")3868 def describe_effective_instance_associations(3869 self,3870 context: RequestContext,3871 instance_id: InstanceId,3872 max_results: EffectiveInstanceAssociationMaxResults = None,3873 next_token: NextToken = None,3874 ) -> DescribeEffectiveInstanceAssociationsResult:3875 raise NotImplementedError3876 @handler("DescribeEffectivePatchesForPatchBaseline")3877 def describe_effective_patches_for_patch_baseline(3878 self,3879 context: RequestContext,3880 baseline_id: BaselineId,3881 max_results: PatchBaselineMaxResults = None,3882 next_token: NextToken = None,3883 ) -> DescribeEffectivePatchesForPatchBaselineResult:3884 raise NotImplementedError3885 @handler("DescribeInstanceAssociationsStatus")3886 def describe_instance_associations_status(3887 self,3888 context: RequestContext,3889 instance_id: InstanceId,3890 max_results: MaxResults = None,3891 next_token: NextToken = None,3892 ) -> DescribeInstanceAssociationsStatusResult:3893 raise NotImplementedError3894 @handler("DescribeInstanceInformation")3895 def describe_instance_information(3896 self,3897 context: RequestContext,3898 instance_information_filter_list: InstanceInformationFilterList = None,3899 filters: InstanceInformationStringFilterList = None,3900 max_results: MaxResultsEC2Compatible = None,3901 next_token: NextToken = None,3902 ) -> DescribeInstanceInformationResult:3903 raise NotImplementedError3904 @handler("DescribeInstancePatchStates")3905 def describe_instance_patch_states(3906 self,3907 context: RequestContext,3908 instance_ids: InstanceIdList,3909 next_token: NextToken = None,3910 max_results: PatchComplianceMaxResults = None,3911 ) -> DescribeInstancePatchStatesResult:3912 raise NotImplementedError3913 @handler("DescribeInstancePatchStatesForPatchGroup")3914 def describe_instance_patch_states_for_patch_group(3915 self,3916 context: RequestContext,3917 patch_group: PatchGroup,3918 filters: InstancePatchStateFilterList = None,3919 next_token: NextToken = None,3920 max_results: PatchComplianceMaxResults = None,3921 ) -> DescribeInstancePatchStatesForPatchGroupResult:3922 raise NotImplementedError3923 @handler("DescribeInstancePatches")3924 def describe_instance_patches(3925 self,3926 context: RequestContext,3927 instance_id: InstanceId,3928 filters: PatchOrchestratorFilterList = None,3929 next_token: NextToken = None,3930 max_results: PatchComplianceMaxResults = None,3931 ) -> DescribeInstancePatchesResult:3932 raise NotImplementedError3933 @handler("DescribeInventoryDeletions")3934 def describe_inventory_deletions(3935 self,3936 context: RequestContext,3937 deletion_id: UUID = None,3938 next_token: NextToken = None,3939 max_results: MaxResults = None,3940 ) -> DescribeInventoryDeletionsResult:3941 raise NotImplementedError3942 @handler("DescribeMaintenanceWindowExecutionTaskInvocations")3943 def describe_maintenance_window_execution_task_invocations(3944 self,3945 context: RequestContext,3946 window_execution_id: MaintenanceWindowExecutionId,3947 task_id: MaintenanceWindowExecutionTaskId,3948 filters: MaintenanceWindowFilterList = None,3949 max_results: MaintenanceWindowMaxResults = None,3950 next_token: NextToken = None,3951 ) -> DescribeMaintenanceWindowExecutionTaskInvocationsResult:3952 raise NotImplementedError3953 @handler("DescribeMaintenanceWindowExecutionTasks")3954 def describe_maintenance_window_execution_tasks(3955 self,3956 context: RequestContext,3957 window_execution_id: MaintenanceWindowExecutionId,3958 filters: MaintenanceWindowFilterList = None,3959 max_results: MaintenanceWindowMaxResults = None,3960 next_token: NextToken = None,3961 ) -> DescribeMaintenanceWindowExecutionTasksResult:3962 raise NotImplementedError3963 @handler("DescribeMaintenanceWindowExecutions")3964 def describe_maintenance_window_executions(3965 self,3966 context: RequestContext,3967 window_id: MaintenanceWindowId,3968 filters: MaintenanceWindowFilterList = None,3969 max_results: MaintenanceWindowMaxResults = None,3970 next_token: NextToken = None,3971 ) -> DescribeMaintenanceWindowExecutionsResult:3972 raise NotImplementedError3973 @handler("DescribeMaintenanceWindowSchedule")3974 def describe_maintenance_window_schedule(3975 self,3976 context: RequestContext,3977 window_id: MaintenanceWindowId = None,3978 targets: Targets = None,3979 resource_type: MaintenanceWindowResourceType = None,3980 filters: PatchOrchestratorFilterList = None,3981 max_results: MaintenanceWindowSearchMaxResults = None,3982 next_token: NextToken = None,3983 ) -> DescribeMaintenanceWindowScheduleResult:3984 raise NotImplementedError3985 @handler("DescribeMaintenanceWindowTargets")3986 def describe_maintenance_window_targets(3987 self,3988 context: RequestContext,3989 window_id: MaintenanceWindowId,3990 filters: MaintenanceWindowFilterList = None,3991 max_results: MaintenanceWindowMaxResults = None,3992 next_token: NextToken = None,3993 ) -> DescribeMaintenanceWindowTargetsResult:3994 raise NotImplementedError3995 @handler("DescribeMaintenanceWindowTasks")3996 def describe_maintenance_window_tasks(3997 self,3998 context: RequestContext,3999 window_id: MaintenanceWindowId,4000 filters: MaintenanceWindowFilterList = None,4001 max_results: MaintenanceWindowMaxResults = None,4002 next_token: NextToken = None,4003 ) -> DescribeMaintenanceWindowTasksResult:4004 raise NotImplementedError4005 @handler("DescribeMaintenanceWindows")4006 def describe_maintenance_windows(4007 self,4008 context: RequestContext,4009 filters: MaintenanceWindowFilterList = None,4010 max_results: MaintenanceWindowMaxResults = None,4011 next_token: NextToken = None,4012 ) -> DescribeMaintenanceWindowsResult:4013 raise NotImplementedError4014 @handler("DescribeMaintenanceWindowsForTarget")4015 def describe_maintenance_windows_for_target(4016 self,4017 context: RequestContext,4018 targets: Targets,4019 resource_type: MaintenanceWindowResourceType,4020 max_results: MaintenanceWindowSearchMaxResults = None,4021 next_token: NextToken = None,4022 ) -> DescribeMaintenanceWindowsForTargetResult:4023 raise NotImplementedError4024 @handler("DescribeOpsItems")4025 def describe_ops_items(4026 self,4027 context: RequestContext,4028 ops_item_filters: OpsItemFilters = None,4029 max_results: OpsItemMaxResults = None,4030 next_token: String = None,4031 ) -> DescribeOpsItemsResponse:4032 raise NotImplementedError4033 @handler("DescribeParameters")4034 def describe_parameters(4035 self,4036 context: RequestContext,4037 filters: ParametersFilterList = None,4038 parameter_filters: ParameterStringFilterList = None,4039 max_results: MaxResults = None,4040 next_token: NextToken = None,4041 ) -> DescribeParametersResult:4042 raise NotImplementedError4043 @handler("DescribePatchBaselines")4044 def describe_patch_baselines(4045 self,4046 context: RequestContext,4047 filters: PatchOrchestratorFilterList = None,4048 max_results: PatchBaselineMaxResults = None,4049 next_token: NextToken = None,4050 ) -> DescribePatchBaselinesResult:4051 raise NotImplementedError4052 @handler("DescribePatchGroupState")4053 def describe_patch_group_state(4054 self, context: RequestContext, patch_group: PatchGroup4055 ) -> DescribePatchGroupStateResult:4056 raise NotImplementedError4057 @handler("DescribePatchGroups")4058 def describe_patch_groups(4059 self,4060 context: RequestContext,4061 max_results: PatchBaselineMaxResults = None,4062 filters: PatchOrchestratorFilterList = None,4063 next_token: NextToken = None,4064 ) -> DescribePatchGroupsResult:4065 raise NotImplementedError4066 @handler("DescribePatchProperties")4067 def describe_patch_properties(4068 self,4069 context: RequestContext,4070 operating_system: OperatingSystem,4071 property: PatchProperty,4072 patch_set: PatchSet = None,4073 max_results: MaxResults = None,4074 next_token: NextToken = None,4075 ) -> DescribePatchPropertiesResult:4076 raise NotImplementedError4077 @handler("DescribeSessions")4078 def describe_sessions(4079 self,4080 context: RequestContext,4081 state: SessionState,4082 max_results: SessionMaxResults = None,4083 next_token: NextToken = None,4084 filters: SessionFilterList = None,4085 ) -> DescribeSessionsResponse:4086 raise NotImplementedError4087 @handler("DisassociateOpsItemRelatedItem")4088 def disassociate_ops_item_related_item(4089 self,4090 context: RequestContext,4091 ops_item_id: OpsItemId,4092 association_id: OpsItemRelatedItemAssociationId,4093 ) -> DisassociateOpsItemRelatedItemResponse:4094 raise NotImplementedError4095 @handler("GetAutomationExecution")4096 def get_automation_execution(4097 self, context: RequestContext, automation_execution_id: AutomationExecutionId4098 ) -> GetAutomationExecutionResult:4099 raise NotImplementedError4100 @handler("GetCalendarState")4101 def get_calendar_state(4102 self,...

Full Screen

Full Screen

client.pyi

Source:client.pyi Github

copy

Full Screen

...411 Adds or overwrites one or more tags for the specified resource.412 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.add_tags_to_resource)413 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#add_tags_to_resource)414 """415 def associate_ops_item_related_item(416 self, *, OpsItemId: str, AssociationType: str, ResourceType: str, ResourceUri: str417 ) -> AssociateOpsItemRelatedItemResponseTypeDef:418 """419 Associates a related item to a Systems Manager OpsCenter OpsItem.420 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.associate_ops_item_related_item)421 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#associate_ops_item_related_item)422 """423 def can_paginate(self, operation_name: str) -> bool:424 """425 Check if an operation can be paginated.426 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.can_paginate)427 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#can_paginate)428 """429 def cancel_command(self, *, CommandId: str, InstanceIds: List[str] = None) -> Dict[str, Any]:430 """431 Attempts to cancel the command specified by the Command ID.432 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.cancel_command)433 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#cancel_command)434 """435 def cancel_maintenance_window_execution(436 self, *, WindowExecutionId: str437 ) -> CancelMaintenanceWindowExecutionResultTypeDef:438 """439 Stops a maintenance window execution that is already in progress and cancels any440 tasks in the window that haven't already starting running.441 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.cancel_maintenance_window_execution)442 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#cancel_maintenance_window_execution)443 """444 def close(self) -> None:445 """446 Closes underlying endpoint connections.447 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.close)448 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#close)449 """450 def create_activation(451 self,452 *,453 IamRole: str,454 Description: str = None,455 DefaultInstanceName: str = None,456 RegistrationLimit: int = None,457 ExpirationDate: Union[datetime, str] = None,458 Tags: List["TagTypeDef"] = None,459 RegistrationMetadata: List["RegistrationMetadataItemTypeDef"] = None460 ) -> CreateActivationResultTypeDef:461 """462 Generates an activation code and activation ID you can use to register your on-463 premises servers, edge devices, or virtual machine (VM) with Amazon Web Services464 Systems Manager.465 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.create_activation)466 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#create_activation)467 """468 def create_association(469 self,470 *,471 Name: str,472 DocumentVersion: str = None,473 InstanceId: str = None,474 Parameters: Dict[str, List[str]] = None,475 Targets: List["TargetTypeDef"] = None,476 ScheduleExpression: str = None,477 OutputLocation: "InstanceAssociationOutputLocationTypeDef" = None,478 AssociationName: str = None,479 AutomationTargetParameterName: str = None,480 MaxErrors: str = None,481 MaxConcurrency: str = None,482 ComplianceSeverity: AssociationComplianceSeverityType = None,483 SyncCompliance: AssociationSyncComplianceType = None,484 ApplyOnlyAtCronInterval: bool = None,485 CalendarNames: List[str] = None,486 TargetLocations: List["TargetLocationTypeDef"] = None,487 ScheduleOffset: int = None,488 TargetMaps: List[Dict[str, List[str]]] = None489 ) -> CreateAssociationResultTypeDef:490 """491 A State Manager association defines the state that you want to maintain on your492 managed nodes.493 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.create_association)494 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#create_association)495 """496 def create_association_batch(497 self, *, Entries: List["CreateAssociationBatchRequestEntryTypeDef"]498 ) -> CreateAssociationBatchResultTypeDef:499 """500 Associates the specified Amazon Web Services Systems Manager document (SSM501 document) with the specified managed nodes or targets.502 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.create_association_batch)503 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#create_association_batch)504 """505 def create_document(506 self,507 *,508 Content: str,509 Name: str,510 Requires: List["DocumentRequiresTypeDef"] = None,511 Attachments: List["AttachmentsSourceTypeDef"] = None,512 DisplayName: str = None,513 VersionName: str = None,514 DocumentType: DocumentTypeType = None,515 DocumentFormat: DocumentFormatType = None,516 TargetType: str = None,517 Tags: List["TagTypeDef"] = None518 ) -> CreateDocumentResultTypeDef:519 """520 Creates a Amazon Web Services Systems Manager (SSM document).521 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.create_document)522 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#create_document)523 """524 def create_maintenance_window(525 self,526 *,527 Name: str,528 Schedule: str,529 Duration: int,530 Cutoff: int,531 AllowUnassociatedTargets: bool,532 Description: str = None,533 StartDate: str = None,534 EndDate: str = None,535 ScheduleTimezone: str = None,536 ScheduleOffset: int = None,537 ClientToken: str = None,538 Tags: List["TagTypeDef"] = None539 ) -> CreateMaintenanceWindowResultTypeDef:540 """541 Creates a new maintenance window.542 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.create_maintenance_window)543 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#create_maintenance_window)544 """545 def create_ops_item(546 self,547 *,548 Description: str,549 Source: str,550 Title: str,551 OpsItemType: str = None,552 OperationalData: Dict[str, "OpsItemDataValueTypeDef"] = None,553 Notifications: List["OpsItemNotificationTypeDef"] = None,554 Priority: int = None,555 RelatedOpsItems: List["RelatedOpsItemTypeDef"] = None,556 Tags: List["TagTypeDef"] = None,557 Category: str = None,558 Severity: str = None,559 ActualStartTime: Union[datetime, str] = None,560 ActualEndTime: Union[datetime, str] = None,561 PlannedStartTime: Union[datetime, str] = None,562 PlannedEndTime: Union[datetime, str] = None563 ) -> CreateOpsItemResponseTypeDef:564 """565 Creates a new OpsItem.566 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.create_ops_item)567 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#create_ops_item)568 """569 def create_ops_metadata(570 self,571 *,572 ResourceId: str,573 Metadata: Dict[str, "MetadataValueTypeDef"] = None,574 Tags: List["TagTypeDef"] = None575 ) -> CreateOpsMetadataResultTypeDef:576 """577 If you create a new application in Application Manager, Amazon Web Services578 Systems Manager calls this API operation to specify information about the new579 application, including the application type.580 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.create_ops_metadata)581 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#create_ops_metadata)582 """583 def create_patch_baseline(584 self,585 *,586 Name: str,587 OperatingSystem: OperatingSystemType = None,588 GlobalFilters: "PatchFilterGroupTypeDef" = None,589 ApprovalRules: "PatchRuleGroupTypeDef" = None,590 ApprovedPatches: List[str] = None,591 ApprovedPatchesComplianceLevel: PatchComplianceLevelType = None,592 ApprovedPatchesEnableNonSecurity: bool = None,593 RejectedPatches: List[str] = None,594 RejectedPatchesAction: PatchActionType = None,595 Description: str = None,596 Sources: List["PatchSourceTypeDef"] = None,597 ClientToken: str = None,598 Tags: List["TagTypeDef"] = None599 ) -> CreatePatchBaselineResultTypeDef:600 """601 Creates a patch baseline.602 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.create_patch_baseline)603 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#create_patch_baseline)604 """605 def create_resource_data_sync(606 self,607 *,608 SyncName: str,609 S3Destination: "ResourceDataSyncS3DestinationTypeDef" = None,610 SyncType: str = None,611 SyncSource: "ResourceDataSyncSourceTypeDef" = None612 ) -> Dict[str, Any]:613 """614 A resource data sync helps you view data from multiple sources in a single615 location.616 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.create_resource_data_sync)617 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#create_resource_data_sync)618 """619 def delete_activation(self, *, ActivationId: str) -> Dict[str, Any]:620 """621 Deletes an activation.622 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.delete_activation)623 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#delete_activation)624 """625 def delete_association(626 self, *, Name: str = None, InstanceId: str = None, AssociationId: str = None627 ) -> Dict[str, Any]:628 """629 Disassociates the specified Amazon Web Services Systems Manager document (SSM630 document) from the specified managed node.631 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.delete_association)632 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#delete_association)633 """634 def delete_document(635 self, *, Name: str, DocumentVersion: str = None, VersionName: str = None, Force: bool = None636 ) -> Dict[str, Any]:637 """638 Deletes the Amazon Web Services Systems Manager document (SSM document) and all639 managed node associations to the document.640 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.delete_document)641 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#delete_document)642 """643 def delete_inventory(644 self,645 *,646 TypeName: str,647 SchemaDeleteOption: InventorySchemaDeleteOptionType = None,648 DryRun: bool = None,649 ClientToken: str = None650 ) -> DeleteInventoryResultTypeDef:651 """652 Delete a custom inventory type or the data associated with a custom Inventory653 type.654 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.delete_inventory)655 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#delete_inventory)656 """657 def delete_maintenance_window(self, *, WindowId: str) -> DeleteMaintenanceWindowResultTypeDef:658 """659 Deletes a maintenance window.660 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.delete_maintenance_window)661 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#delete_maintenance_window)662 """663 def delete_ops_metadata(self, *, OpsMetadataArn: str) -> Dict[str, Any]:664 """665 Delete OpsMetadata related to an application.666 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.delete_ops_metadata)667 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#delete_ops_metadata)668 """669 def delete_parameter(self, *, Name: str) -> Dict[str, Any]:670 """671 Delete a parameter from the system.672 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.delete_parameter)673 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#delete_parameter)674 """675 def delete_parameters(self, *, Names: List[str]) -> DeleteParametersResultTypeDef:676 """677 Delete a list of parameters.678 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.delete_parameters)679 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#delete_parameters)680 """681 def delete_patch_baseline(self, *, BaselineId: str) -> DeletePatchBaselineResultTypeDef:682 """683 Deletes a patch baseline.684 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.delete_patch_baseline)685 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#delete_patch_baseline)686 """687 def delete_resource_data_sync(self, *, SyncName: str, SyncType: str = None) -> Dict[str, Any]:688 """689 Deletes a resource data sync configuration.690 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.delete_resource_data_sync)691 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#delete_resource_data_sync)692 """693 def deregister_managed_instance(self, *, InstanceId: str) -> Dict[str, Any]:694 """695 Removes the server or virtual machine from the list of registered servers.696 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.deregister_managed_instance)697 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#deregister_managed_instance)698 """699 def deregister_patch_baseline_for_patch_group(700 self, *, BaselineId: str, PatchGroup: str701 ) -> DeregisterPatchBaselineForPatchGroupResultTypeDef:702 """703 Removes a patch group from a patch baseline.704 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.deregister_patch_baseline_for_patch_group)705 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#deregister_patch_baseline_for_patch_group)706 """707 def deregister_target_from_maintenance_window(708 self, *, WindowId: str, WindowTargetId: str, Safe: bool = None709 ) -> DeregisterTargetFromMaintenanceWindowResultTypeDef:710 """711 Removes a target from a maintenance window.712 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.deregister_target_from_maintenance_window)713 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#deregister_target_from_maintenance_window)714 """715 def deregister_task_from_maintenance_window(716 self, *, WindowId: str, WindowTaskId: str717 ) -> DeregisterTaskFromMaintenanceWindowResultTypeDef:718 """719 Removes a task from a maintenance window.720 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.deregister_task_from_maintenance_window)721 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#deregister_task_from_maintenance_window)722 """723 def describe_activations(724 self,725 *,726 Filters: List["DescribeActivationsFilterTypeDef"] = None,727 MaxResults: int = None,728 NextToken: str = None729 ) -> DescribeActivationsResultTypeDef:730 """731 Describes details about the activation, such as the date and time the activation732 was created, its expiration date, the Identity and Access Management (IAM) role733 assigned to the managed nodes in the activation, and the number of nodes734 registered by using this activation.735 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_activations)736 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_activations)737 """738 def describe_association(739 self,740 *,741 Name: str = None,742 InstanceId: str = None,743 AssociationId: str = None,744 AssociationVersion: str = None745 ) -> DescribeAssociationResultTypeDef:746 """747 Describes the association for the specified target or managed node.748 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_association)749 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_association)750 """751 def describe_association_execution_targets(752 self,753 *,754 AssociationId: str,755 ExecutionId: str,756 Filters: List["AssociationExecutionTargetsFilterTypeDef"] = None,757 MaxResults: int = None,758 NextToken: str = None759 ) -> DescribeAssociationExecutionTargetsResultTypeDef:760 """761 Views information about a specific execution of a specific association.762 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_association_execution_targets)763 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_association_execution_targets)764 """765 def describe_association_executions(766 self,767 *,768 AssociationId: str,769 Filters: List["AssociationExecutionFilterTypeDef"] = None,770 MaxResults: int = None,771 NextToken: str = None772 ) -> DescribeAssociationExecutionsResultTypeDef:773 """774 Views all executions for a specific association ID.775 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_association_executions)776 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_association_executions)777 """778 def describe_automation_executions(779 self,780 *,781 Filters: List["AutomationExecutionFilterTypeDef"] = None,782 MaxResults: int = None,783 NextToken: str = None784 ) -> DescribeAutomationExecutionsResultTypeDef:785 """786 Provides details about all active and terminated Automation executions.787 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_automation_executions)788 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_automation_executions)789 """790 def describe_automation_step_executions(791 self,792 *,793 AutomationExecutionId: str,794 Filters: List["StepExecutionFilterTypeDef"] = None,795 NextToken: str = None,796 MaxResults: int = None,797 ReverseOrder: bool = None798 ) -> DescribeAutomationStepExecutionsResultTypeDef:799 """800 Information about all active and terminated step executions in an Automation801 workflow.802 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_automation_step_executions)803 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_automation_step_executions)804 """805 def describe_available_patches(806 self,807 *,808 Filters: List["PatchOrchestratorFilterTypeDef"] = None,809 MaxResults: int = None,810 NextToken: str = None811 ) -> DescribeAvailablePatchesResultTypeDef:812 """813 Lists all patches eligible to be included in a patch baseline.814 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_available_patches)815 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_available_patches)816 """817 def describe_document(818 self, *, Name: str, DocumentVersion: str = None, VersionName: str = None819 ) -> DescribeDocumentResultTypeDef:820 """821 Describes the specified Amazon Web Services Systems Manager document (SSM822 document).823 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_document)824 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_document)825 """826 def describe_document_permission(827 self,828 *,829 Name: str,830 PermissionType: Literal["Share"],831 MaxResults: int = None,832 NextToken: str = None833 ) -> DescribeDocumentPermissionResponseTypeDef:834 """835 Describes the permissions for a Amazon Web Services Systems Manager document836 (SSM document).837 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_document_permission)838 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_document_permission)839 """840 def describe_effective_instance_associations(841 self, *, InstanceId: str, MaxResults: int = None, NextToken: str = None842 ) -> DescribeEffectiveInstanceAssociationsResultTypeDef:843 """844 All associations for the managed node(s).845 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_effective_instance_associations)846 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_effective_instance_associations)847 """848 def describe_effective_patches_for_patch_baseline(849 self, *, BaselineId: str, MaxResults: int = None, NextToken: str = None850 ) -> DescribeEffectivePatchesForPatchBaselineResultTypeDef:851 """852 Retrieves the current effective patches (the patch and the approval state) for853 the specified patch baseline.854 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_effective_patches_for_patch_baseline)855 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_effective_patches_for_patch_baseline)856 """857 def describe_instance_associations_status(858 self, *, InstanceId: str, MaxResults: int = None, NextToken: str = None859 ) -> DescribeInstanceAssociationsStatusResultTypeDef:860 """861 The status of the associations for the managed node(s).862 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_instance_associations_status)863 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_instance_associations_status)864 """865 def describe_instance_information(866 self,867 *,868 InstanceInformationFilterList: List["InstanceInformationFilterTypeDef"] = None,869 Filters: List["InstanceInformationStringFilterTypeDef"] = None,870 MaxResults: int = None,871 NextToken: str = None872 ) -> DescribeInstanceInformationResultTypeDef:873 """874 Describes one or more of your managed nodes, including information about the875 operating system platform, the version of SSM Agent installed on the managed876 node, node status, and so on.877 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_instance_information)878 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_instance_information)879 """880 def describe_instance_patch_states(881 self, *, InstanceIds: List[str], NextToken: str = None, MaxResults: int = None882 ) -> DescribeInstancePatchStatesResultTypeDef:883 """884 .885 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_instance_patch_states)886 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_instance_patch_states)887 """888 def describe_instance_patch_states_for_patch_group(889 self,890 *,891 PatchGroup: str,892 Filters: List["InstancePatchStateFilterTypeDef"] = None,893 NextToken: str = None,894 MaxResults: int = None895 ) -> DescribeInstancePatchStatesForPatchGroupResultTypeDef:896 """897 .898 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_instance_patch_states_for_patch_group)899 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_instance_patch_states_for_patch_group)900 """901 def describe_instance_patches(902 self,903 *,904 InstanceId: str,905 Filters: List["PatchOrchestratorFilterTypeDef"] = None,906 NextToken: str = None,907 MaxResults: int = None908 ) -> DescribeInstancePatchesResultTypeDef:909 """910 Retrieves information about the patches on the specified managed node and their911 state relative to the patch baseline being used for the node.912 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_instance_patches)913 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_instance_patches)914 """915 def describe_inventory_deletions(916 self, *, DeletionId: str = None, NextToken: str = None, MaxResults: int = None917 ) -> DescribeInventoryDeletionsResultTypeDef:918 """919 Describes a specific delete inventory operation.920 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_inventory_deletions)921 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_inventory_deletions)922 """923 def describe_maintenance_window_execution_task_invocations(924 self,925 *,926 WindowExecutionId: str,927 TaskId: str,928 Filters: List["MaintenanceWindowFilterTypeDef"] = None,929 MaxResults: int = None,930 NextToken: str = None931 ) -> DescribeMaintenanceWindowExecutionTaskInvocationsResultTypeDef:932 """933 Retrieves the individual task executions (one per target) for a particular task934 run as part of a maintenance window execution.935 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_maintenance_window_execution_task_invocations)936 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_maintenance_window_execution_task_invocations)937 """938 def describe_maintenance_window_execution_tasks(939 self,940 *,941 WindowExecutionId: str,942 Filters: List["MaintenanceWindowFilterTypeDef"] = None,943 MaxResults: int = None,944 NextToken: str = None945 ) -> DescribeMaintenanceWindowExecutionTasksResultTypeDef:946 """947 For a given maintenance window execution, lists the tasks that were run.948 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_maintenance_window_execution_tasks)949 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_maintenance_window_execution_tasks)950 """951 def describe_maintenance_window_executions(952 self,953 *,954 WindowId: str,955 Filters: List["MaintenanceWindowFilterTypeDef"] = None,956 MaxResults: int = None,957 NextToken: str = None958 ) -> DescribeMaintenanceWindowExecutionsResultTypeDef:959 """960 Lists the executions of a maintenance window.961 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_maintenance_window_executions)962 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_maintenance_window_executions)963 """964 def describe_maintenance_window_schedule(965 self,966 *,967 WindowId: str = None,968 Targets: List["TargetTypeDef"] = None,969 ResourceType: MaintenanceWindowResourceTypeType = None,970 Filters: List["PatchOrchestratorFilterTypeDef"] = None,971 MaxResults: int = None,972 NextToken: str = None973 ) -> DescribeMaintenanceWindowScheduleResultTypeDef:974 """975 Retrieves information about upcoming executions of a maintenance window.976 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_maintenance_window_schedule)977 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_maintenance_window_schedule)978 """979 def describe_maintenance_window_targets(980 self,981 *,982 WindowId: str,983 Filters: List["MaintenanceWindowFilterTypeDef"] = None,984 MaxResults: int = None,985 NextToken: str = None986 ) -> DescribeMaintenanceWindowTargetsResultTypeDef:987 """988 Lists the targets registered with the maintenance window.989 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_maintenance_window_targets)990 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_maintenance_window_targets)991 """992 def describe_maintenance_window_tasks(993 self,994 *,995 WindowId: str,996 Filters: List["MaintenanceWindowFilterTypeDef"] = None,997 MaxResults: int = None,998 NextToken: str = None999 ) -> DescribeMaintenanceWindowTasksResultTypeDef:1000 """1001 Lists the tasks in a maintenance window.1002 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_maintenance_window_tasks)1003 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_maintenance_window_tasks)1004 """1005 def describe_maintenance_windows(1006 self,1007 *,1008 Filters: List["MaintenanceWindowFilterTypeDef"] = None,1009 MaxResults: int = None,1010 NextToken: str = None1011 ) -> DescribeMaintenanceWindowsResultTypeDef:1012 """1013 Retrieves the maintenance windows in an Amazon Web Services account.1014 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_maintenance_windows)1015 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_maintenance_windows)1016 """1017 def describe_maintenance_windows_for_target(1018 self,1019 *,1020 Targets: List["TargetTypeDef"],1021 ResourceType: MaintenanceWindowResourceTypeType,1022 MaxResults: int = None,1023 NextToken: str = None1024 ) -> DescribeMaintenanceWindowsForTargetResultTypeDef:1025 """1026 Retrieves information about the maintenance window targets or tasks that a1027 managed node is associated with.1028 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_maintenance_windows_for_target)1029 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_maintenance_windows_for_target)1030 """1031 def describe_ops_items(1032 self,1033 *,1034 OpsItemFilters: List["OpsItemFilterTypeDef"] = None,1035 MaxResults: int = None,1036 NextToken: str = None1037 ) -> DescribeOpsItemsResponseTypeDef:1038 """1039 Query a set of OpsItems.1040 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_ops_items)1041 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_ops_items)1042 """1043 def describe_parameters(1044 self,1045 *,1046 Filters: List["ParametersFilterTypeDef"] = None,1047 ParameterFilters: List["ParameterStringFilterTypeDef"] = None,1048 MaxResults: int = None,1049 NextToken: str = None1050 ) -> DescribeParametersResultTypeDef:1051 """1052 Get information about a parameter.1053 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_parameters)1054 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_parameters)1055 """1056 def describe_patch_baselines(1057 self,1058 *,1059 Filters: List["PatchOrchestratorFilterTypeDef"] = None,1060 MaxResults: int = None,1061 NextToken: str = None1062 ) -> DescribePatchBaselinesResultTypeDef:1063 """1064 Lists the patch baselines in your Amazon Web Services account.1065 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_patch_baselines)1066 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_patch_baselines)1067 """1068 def describe_patch_group_state(1069 self, *, PatchGroup: str1070 ) -> DescribePatchGroupStateResultTypeDef:1071 """1072 Returns high-level aggregated patch compliance state information for a patch1073 group.1074 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_patch_group_state)1075 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_patch_group_state)1076 """1077 def describe_patch_groups(1078 self,1079 *,1080 MaxResults: int = None,1081 Filters: List["PatchOrchestratorFilterTypeDef"] = None,1082 NextToken: str = None1083 ) -> DescribePatchGroupsResultTypeDef:1084 """1085 Lists all patch groups that have been registered with patch baselines.1086 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_patch_groups)1087 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_patch_groups)1088 """1089 def describe_patch_properties(1090 self,1091 *,1092 OperatingSystem: OperatingSystemType,1093 Property: PatchPropertyType,1094 PatchSet: PatchSetType = None,1095 MaxResults: int = None,1096 NextToken: str = None1097 ) -> DescribePatchPropertiesResultTypeDef:1098 """1099 Lists the properties of available patches organized by product, product family,1100 classification, severity, and other properties of available patches.1101 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_patch_properties)1102 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_patch_properties)1103 """1104 def describe_sessions(1105 self,1106 *,1107 State: SessionStateType,1108 MaxResults: int = None,1109 NextToken: str = None,1110 Filters: List["SessionFilterTypeDef"] = None1111 ) -> DescribeSessionsResponseTypeDef:1112 """1113 Retrieves a list of all active sessions (both connected and disconnected) or1114 terminated sessions from the past 30 days.1115 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.describe_sessions)1116 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#describe_sessions)1117 """1118 def disassociate_ops_item_related_item(1119 self, *, OpsItemId: str, AssociationId: str1120 ) -> Dict[str, Any]:1121 """1122 Deletes the association between an OpsItem and a related item.1123 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.disassociate_ops_item_related_item)1124 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#disassociate_ops_item_related_item)1125 """1126 def generate_presigned_url(1127 self,1128 ClientMethod: str,1129 Params: Dict[str, Any] = None,1130 ExpiresIn: int = 3600,1131 HttpMethod: str = None,1132 ) -> str:...

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