async def sample_get_exclusion():
    # Create a client
    client = logging_v2.ConfigServiceV2AsyncClient()

    # Initialize request argument(s)
    request = logging_v2.GetExclusionRequest(
        name="name_value",
    )

    # Make the request
    response = await client.get_exclusion(request=request)

    # Handle the response
    print(response)
async def sample_get_exclusion():
    """Snippet for get_exclusion"""

    # Create a client
    client = logging_v2.ConfigServiceV2AsyncClient()

    # Initialize request argument(s)
    request = logging_v2.GetExclusionRequest()

    # Make the request
    response = await client.get_exclusion(request=request)

    # Handle response
    print("{}".format(response))