Skip to content

PrometheusServiceClient#

Index > PrometheusService > PrometheusServiceClient

Auto-generated documentation for PrometheusService type annotations stubs module types-aiobotocore-amp.

PrometheusServiceClient#

Type annotations and code completion for session.create_client("amp") boto3 documentation

PrometheusServiceClient usage example

from aiobotocore.session import get_session
from types_aiobotocore_amp.client import PrometheusServiceClient

session = get_session()
async with session.create_client("amp") as client:
    client: PrometheusServiceClient

Exceptions#

aiobotocore client exceptions are generated in runtime. This class provides code completion for session.create_client("amp").exceptions structure.

PrometheusServiceClient.exceptions usage example

async with session.create_client("amp") as client:
    try:
        do_something(client)
    except (
            client.AccessDeniedException,
        client.ClientError,
        client.ConflictException,
        client.InternalServerException,
        client.ResourceNotFoundException,
        client.ServiceQuotaExceededException,
        client.ThrottlingException,
        client.ValidationException,
    ) as e:
        print(e)
PrometheusServiceClient usage type checking example

from types_aiobotocore_amp.client import Exceptions

def handle_error(exc: Exceptions.AccessDeniedException) -> None:
    ...

Methods#

can_paginate#

Check if an operation can be paginated.

Type annotations and code completion for session.create_client("amp").can_paginate method. boto3 documentation

# can_paginate method definition

def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close#

Closes underlying endpoint connections.

Type annotations and code completion for session.create_client("amp").close method. boto3 documentation

# close method definition

await def close(
    self,
) -> None:
    ...

create_alert_manager_definition#

Create an alert manager definition.

Type annotations and code completion for session.create_client("amp").create_alert_manager_definition method. boto3 documentation

# create_alert_manager_definition method definition

await def create_alert_manager_definition(
    self,
    *,
    workspaceId: str,
    data: Union[str, bytes, IO[Any], StreamingBody],
    clientToken: str = ...,
) -> CreateAlertManagerDefinitionResponseTypeDef:  # (1)
    ...
  1. See CreateAlertManagerDefinitionResponseTypeDef
# create_alert_manager_definition method usage example with argument unpacking

kwargs: CreateAlertManagerDefinitionRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
    "data": ...,
}

parent.create_alert_manager_definition(**kwargs)
  1. See CreateAlertManagerDefinitionRequestRequestTypeDef

create_logging_configuration#

Create logging configuration.

Type annotations and code completion for session.create_client("amp").create_logging_configuration method. boto3 documentation

# create_logging_configuration method definition

await def create_logging_configuration(
    self,
    *,
    workspaceId: str,
    logGroupArn: str,
    clientToken: str = ...,
) -> CreateLoggingConfigurationResponseTypeDef:  # (1)
    ...
  1. See CreateLoggingConfigurationResponseTypeDef
# create_logging_configuration method usage example with argument unpacking

kwargs: CreateLoggingConfigurationRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
    "logGroupArn": ...,
}

parent.create_logging_configuration(**kwargs)
  1. See CreateLoggingConfigurationRequestRequestTypeDef

create_rule_groups_namespace#

Create a rule group namespace.

Type annotations and code completion for session.create_client("amp").create_rule_groups_namespace method. boto3 documentation

# create_rule_groups_namespace method definition

await def create_rule_groups_namespace(
    self,
    *,
    workspaceId: str,
    name: str,
    data: Union[str, bytes, IO[Any], StreamingBody],
    clientToken: str = ...,
    tags: Mapping[str, str] = ...,
) -> CreateRuleGroupsNamespaceResponseTypeDef:  # (1)
    ...
  1. See CreateRuleGroupsNamespaceResponseTypeDef
# create_rule_groups_namespace method usage example with argument unpacking

kwargs: CreateRuleGroupsNamespaceRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
    "name": ...,
    "data": ...,
}

parent.create_rule_groups_namespace(**kwargs)
  1. See CreateRuleGroupsNamespaceRequestRequestTypeDef

create_workspace#

Creates a new AMP workspace.

Type annotations and code completion for session.create_client("amp").create_workspace method. boto3 documentation

# create_workspace method definition

await def create_workspace(
    self,
    *,
    alias: str = ...,
    clientToken: str = ...,
    tags: Mapping[str, str] = ...,
) -> CreateWorkspaceResponseTypeDef:  # (1)
    ...
  1. See CreateWorkspaceResponseTypeDef
# create_workspace method usage example with argument unpacking

kwargs: CreateWorkspaceRequestRequestTypeDef = {  # (1)
    "alias": ...,
}

parent.create_workspace(**kwargs)
  1. See CreateWorkspaceRequestRequestTypeDef

delete_alert_manager_definition#

Deletes an alert manager definition.

Type annotations and code completion for session.create_client("amp").delete_alert_manager_definition method. boto3 documentation

# delete_alert_manager_definition method definition

await def delete_alert_manager_definition(
    self,
    *,
    workspaceId: str,
    clientToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# delete_alert_manager_definition method usage example with argument unpacking

kwargs: DeleteAlertManagerDefinitionRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
}

parent.delete_alert_manager_definition(**kwargs)
  1. See DeleteAlertManagerDefinitionRequestRequestTypeDef

delete_logging_configuration#

Delete logging configuration.

Type annotations and code completion for session.create_client("amp").delete_logging_configuration method. boto3 documentation

# delete_logging_configuration method definition

await def delete_logging_configuration(
    self,
    *,
    workspaceId: str,
    clientToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# delete_logging_configuration method usage example with argument unpacking

kwargs: DeleteLoggingConfigurationRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
}

parent.delete_logging_configuration(**kwargs)
  1. See DeleteLoggingConfigurationRequestRequestTypeDef

delete_rule_groups_namespace#

Delete a rule groups namespace.

Type annotations and code completion for session.create_client("amp").delete_rule_groups_namespace method. boto3 documentation

# delete_rule_groups_namespace method definition

await def delete_rule_groups_namespace(
    self,
    *,
    workspaceId: str,
    name: str,
    clientToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# delete_rule_groups_namespace method usage example with argument unpacking

kwargs: DeleteRuleGroupsNamespaceRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
    "name": ...,
}

parent.delete_rule_groups_namespace(**kwargs)
  1. See DeleteRuleGroupsNamespaceRequestRequestTypeDef

delete_workspace#

Deletes an AMP workspace.

Type annotations and code completion for session.create_client("amp").delete_workspace method. boto3 documentation

# delete_workspace method definition

await def delete_workspace(
    self,
    *,
    workspaceId: str,
    clientToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# delete_workspace method usage example with argument unpacking

kwargs: DeleteWorkspaceRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
}

parent.delete_workspace(**kwargs)
  1. See DeleteWorkspaceRequestRequestTypeDef

describe_alert_manager_definition#

Describes an alert manager definition.

Type annotations and code completion for session.create_client("amp").describe_alert_manager_definition method. boto3 documentation

# describe_alert_manager_definition method definition

await def describe_alert_manager_definition(
    self,
    *,
    workspaceId: str,
) -> DescribeAlertManagerDefinitionResponseTypeDef:  # (1)
    ...
  1. See DescribeAlertManagerDefinitionResponseTypeDef
# describe_alert_manager_definition method usage example with argument unpacking

kwargs: DescribeAlertManagerDefinitionRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
}

parent.describe_alert_manager_definition(**kwargs)
  1. See DescribeAlertManagerDefinitionRequestRequestTypeDef

describe_logging_configuration#

Describes logging configuration.

Type annotations and code completion for session.create_client("amp").describe_logging_configuration method. boto3 documentation

# describe_logging_configuration method definition

await def describe_logging_configuration(
    self,
    *,
    workspaceId: str,
) -> DescribeLoggingConfigurationResponseTypeDef:  # (1)
    ...
  1. See DescribeLoggingConfigurationResponseTypeDef
# describe_logging_configuration method usage example with argument unpacking

kwargs: DescribeLoggingConfigurationRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
}

parent.describe_logging_configuration(**kwargs)
  1. See DescribeLoggingConfigurationRequestRequestTypeDef

describe_rule_groups_namespace#

Describe a rule groups namespace.

Type annotations and code completion for session.create_client("amp").describe_rule_groups_namespace method. boto3 documentation

# describe_rule_groups_namespace method definition

await def describe_rule_groups_namespace(
    self,
    *,
    workspaceId: str,
    name: str,
) -> DescribeRuleGroupsNamespaceResponseTypeDef:  # (1)
    ...
  1. See DescribeRuleGroupsNamespaceResponseTypeDef
# describe_rule_groups_namespace method usage example with argument unpacking

kwargs: DescribeRuleGroupsNamespaceRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
    "name": ...,
}

parent.describe_rule_groups_namespace(**kwargs)
  1. See DescribeRuleGroupsNamespaceRequestRequestTypeDef

describe_workspace#

Describes an existing AMP workspace.

Type annotations and code completion for session.create_client("amp").describe_workspace method. boto3 documentation

# describe_workspace method definition

await def describe_workspace(
    self,
    *,
    workspaceId: str,
) -> DescribeWorkspaceResponseTypeDef:  # (1)
    ...
  1. See DescribeWorkspaceResponseTypeDef
# describe_workspace method usage example with argument unpacking

kwargs: DescribeWorkspaceRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
}

parent.describe_workspace(**kwargs)
  1. See DescribeWorkspaceRequestRequestTypeDef

generate_presigned_url#

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for session.create_client("amp").generate_presigned_url method. boto3 documentation

# generate_presigned_url method definition

await def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

list_rule_groups_namespaces#

Lists rule groups namespaces.

Type annotations and code completion for session.create_client("amp").list_rule_groups_namespaces method. boto3 documentation

# list_rule_groups_namespaces method definition

await def list_rule_groups_namespaces(
    self,
    *,
    workspaceId: str,
    name: str = ...,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListRuleGroupsNamespacesResponseTypeDef:  # (1)
    ...
  1. See ListRuleGroupsNamespacesResponseTypeDef
# list_rule_groups_namespaces method usage example with argument unpacking

kwargs: ListRuleGroupsNamespacesRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
}

parent.list_rule_groups_namespaces(**kwargs)
  1. See ListRuleGroupsNamespacesRequestRequestTypeDef

list_tags_for_resource#

Lists the tags you have assigned to the resource.

Type annotations and code completion for session.create_client("amp").list_tags_for_resource method. boto3 documentation

# list_tags_for_resource method definition

await def list_tags_for_resource(
    self,
    *,
    resourceArn: str,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...
  1. See ListTagsForResourceResponseTypeDef
# list_tags_for_resource method usage example with argument unpacking

kwargs: ListTagsForResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
}

parent.list_tags_for_resource(**kwargs)
  1. See ListTagsForResourceRequestRequestTypeDef

list_workspaces#

Lists all AMP workspaces, including workspaces being created or deleted.

Type annotations and code completion for session.create_client("amp").list_workspaces method. boto3 documentation

# list_workspaces method definition

await def list_workspaces(
    self,
    *,
    nextToken: str = ...,
    alias: str = ...,
    maxResults: int = ...,
) -> ListWorkspacesResponseTypeDef:  # (1)
    ...
  1. See ListWorkspacesResponseTypeDef
# list_workspaces method usage example with argument unpacking

kwargs: ListWorkspacesRequestRequestTypeDef = {  # (1)
    "nextToken": ...,
}

parent.list_workspaces(**kwargs)
  1. See ListWorkspacesRequestRequestTypeDef

put_alert_manager_definition#

Update an alert manager definition.

Type annotations and code completion for session.create_client("amp").put_alert_manager_definition method. boto3 documentation

# put_alert_manager_definition method definition

await def put_alert_manager_definition(
    self,
    *,
    workspaceId: str,
    data: Union[str, bytes, IO[Any], StreamingBody],
    clientToken: str = ...,
) -> PutAlertManagerDefinitionResponseTypeDef:  # (1)
    ...
  1. See PutAlertManagerDefinitionResponseTypeDef
# put_alert_manager_definition method usage example with argument unpacking

kwargs: PutAlertManagerDefinitionRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
    "data": ...,
}

parent.put_alert_manager_definition(**kwargs)
  1. See PutAlertManagerDefinitionRequestRequestTypeDef

put_rule_groups_namespace#

Update a rule groups namespace.

Type annotations and code completion for session.create_client("amp").put_rule_groups_namespace method. boto3 documentation

# put_rule_groups_namespace method definition

await def put_rule_groups_namespace(
    self,
    *,
    workspaceId: str,
    name: str,
    data: Union[str, bytes, IO[Any], StreamingBody],
    clientToken: str = ...,
) -> PutRuleGroupsNamespaceResponseTypeDef:  # (1)
    ...
  1. See PutRuleGroupsNamespaceResponseTypeDef
# put_rule_groups_namespace method usage example with argument unpacking

kwargs: PutRuleGroupsNamespaceRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
    "name": ...,
    "data": ...,
}

parent.put_rule_groups_namespace(**kwargs)
  1. See PutRuleGroupsNamespaceRequestRequestTypeDef

tag_resource#

Creates tags for the specified resource.

Type annotations and code completion for session.create_client("amp").tag_resource method. boto3 documentation

# tag_resource method definition

await def tag_resource(
    self,
    *,
    resourceArn: str,
    tags: Mapping[str, str],
) -> Dict[str, Any]:
    ...
# tag_resource method usage example with argument unpacking

kwargs: TagResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tags": ...,
}

parent.tag_resource(**kwargs)
  1. See TagResourceRequestRequestTypeDef

untag_resource#

Deletes tags from the specified resource.

Type annotations and code completion for session.create_client("amp").untag_resource method. boto3 documentation

# untag_resource method definition

await def untag_resource(
    self,
    *,
    resourceArn: str,
    tagKeys: Sequence[str],
) -> Dict[str, Any]:
    ...
# untag_resource method usage example with argument unpacking

kwargs: UntagResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tagKeys": ...,
}

parent.untag_resource(**kwargs)
  1. See UntagResourceRequestRequestTypeDef

update_logging_configuration#

Update logging configuration.

Type annotations and code completion for session.create_client("amp").update_logging_configuration method. boto3 documentation

# update_logging_configuration method definition

await def update_logging_configuration(
    self,
    *,
    workspaceId: str,
    logGroupArn: str,
    clientToken: str = ...,
) -> UpdateLoggingConfigurationResponseTypeDef:  # (1)
    ...
  1. See UpdateLoggingConfigurationResponseTypeDef
# update_logging_configuration method usage example with argument unpacking

kwargs: UpdateLoggingConfigurationRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
    "logGroupArn": ...,
}

parent.update_logging_configuration(**kwargs)
  1. See UpdateLoggingConfigurationRequestRequestTypeDef

update_workspace_alias#

Updates an AMP workspace alias.

Type annotations and code completion for session.create_client("amp").update_workspace_alias method. boto3 documentation

# update_workspace_alias method definition

await def update_workspace_alias(
    self,
    *,
    workspaceId: str,
    alias: str = ...,
    clientToken: str = ...,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# update_workspace_alias method usage example with argument unpacking

kwargs: UpdateWorkspaceAliasRequestRequestTypeDef = {  # (1)
    "workspaceId": ...,
}

parent.update_workspace_alias(**kwargs)
  1. See UpdateWorkspaceAliasRequestRequestTypeDef

__aenter__#

Type annotations and code completion for session.create_client("amp").__aenter__ method. boto3 documentation

# __aenter__ method definition

await def __aenter__(
    self,
) -> PrometheusServiceClient:
    ...

__aexit__#

Type annotations and code completion for session.create_client("amp").__aexit__ method. boto3 documentation

# __aexit__ method definition

await def __aexit__(
    self,
    exc_type: Any,
    exc_val: Any,
    exc_tb: Any,
) -> Any:
    ...

get_paginator#

Type annotations and code completion for session.create_client("amp").get_paginator method with overloads.

get_waiter#

Type annotations and code completion for session.create_client("amp").get_waiter method with overloads.