Skip to content

Private5GClient

Index > Private5G > Private5GClient

Auto-generated documentation for Private5G type annotations stubs module mypy-boto3-privatenetworks.

Private5GClient

Type annotations and code completion for boto3.client("privatenetworks"). boto3 documentation

Usage example
from boto3.session import Session
from mypy_boto3_privatenetworks.client import Private5GClient

def get_privatenetworks_client() -> Private5GClient:
    return Session().client("privatenetworks")

Exceptions

boto3 client exceptions are generated in runtime. This class provides code completion for boto3.client("privatenetworks").exceptions structure.

Usage example
client = boto3.client("privatenetworks")

try:
    do_something(client)
except (
    client.AccessDeniedException,
    client.ClientError,
    client.InternalServerException,
    client.LimitExceededException,
    client.ResourceNotFoundException,
    client.ThrottlingException,
    client.ValidationException,
) as e:
    print(e)
Type checking example
from mypy_boto3_privatenetworks.client import Exceptions

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

Methods

acknowledge_order_receipt

Acknowledges that the specified network order was received.

Type annotations and code completion for boto3.client("privatenetworks").acknowledge_order_receipt method. boto3 documentation

Method definition
def acknowledge_order_receipt(
    self,
    *,
    orderArn: str,
) -> AcknowledgeOrderReceiptResponseTypeDef:  # (1)
    ...
  1. See AcknowledgeOrderReceiptResponseTypeDef
Usage example with kwargs
kwargs: AcknowledgeOrderReceiptRequestRequestTypeDef = {  # (1)
    "orderArn": ...,
}

parent.acknowledge_order_receipt(**kwargs)
  1. See AcknowledgeOrderReceiptRequestRequestTypeDef

activate_device_identifier

Activates the specified device identifier.

Type annotations and code completion for boto3.client("privatenetworks").activate_device_identifier method. boto3 documentation

Method definition
def activate_device_identifier(
    self,
    *,
    deviceIdentifierArn: str,
    clientToken: str = ...,
) -> ActivateDeviceIdentifierResponseTypeDef:  # (1)
    ...
  1. See ActivateDeviceIdentifierResponseTypeDef
Usage example with kwargs
kwargs: ActivateDeviceIdentifierRequestRequestTypeDef = {  # (1)
    "deviceIdentifierArn": ...,
}

parent.activate_device_identifier(**kwargs)
  1. See ActivateDeviceIdentifierRequestRequestTypeDef

activate_network_site

Activates the specified network site.

Type annotations and code completion for boto3.client("privatenetworks").activate_network_site method. boto3 documentation

Method definition
def activate_network_site(
    self,
    *,
    networkSiteArn: str,
    shippingAddress: AddressTypeDef,  # (1)
    clientToken: str = ...,
) -> ActivateNetworkSiteResponseTypeDef:  # (2)
    ...
  1. See AddressTypeDef
  2. See ActivateNetworkSiteResponseTypeDef
Usage example with kwargs
kwargs: ActivateNetworkSiteRequestRequestTypeDef = {  # (1)
    "networkSiteArn": ...,
    "shippingAddress": ...,
}

parent.activate_network_site(**kwargs)
  1. See ActivateNetworkSiteRequestRequestTypeDef

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for boto3.client("privatenetworks").can_paginate method. boto3 documentation

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

close

Closes underlying endpoint connections.

Type annotations and code completion for boto3.client("privatenetworks").close method. boto3 documentation

Method definition
def close(
    self,
) -> None:
    ...

configure_access_point

Configures the specified network resource.

Type annotations and code completion for boto3.client("privatenetworks").configure_access_point method. boto3 documentation

Method definition
def configure_access_point(
    self,
    *,
    accessPointArn: str,
    cpiSecretKey: str = ...,
    cpiUserId: str = ...,
    cpiUserPassword: str = ...,
    cpiUsername: str = ...,
    position: PositionTypeDef = ...,  # (1)
) -> ConfigureAccessPointResponseTypeDef:  # (2)
    ...
  1. See PositionTypeDef
  2. See ConfigureAccessPointResponseTypeDef
Usage example with kwargs
kwargs: ConfigureAccessPointRequestRequestTypeDef = {  # (1)
    "accessPointArn": ...,
}

parent.configure_access_point(**kwargs)
  1. See ConfigureAccessPointRequestRequestTypeDef

create_network

Creates a network.

Type annotations and code completion for boto3.client("privatenetworks").create_network method. boto3 documentation

Method definition
def create_network(
    self,
    *,
    networkName: str,
    clientToken: str = ...,
    description: str = ...,
    tags: Mapping[str, str] = ...,
) -> CreateNetworkResponseTypeDef:  # (1)
    ...
  1. See CreateNetworkResponseTypeDef
Usage example with kwargs
kwargs: CreateNetworkRequestRequestTypeDef = {  # (1)
    "networkName": ...,
}

parent.create_network(**kwargs)
  1. See CreateNetworkRequestRequestTypeDef

create_network_site

Creates a network site.

Type annotations and code completion for boto3.client("privatenetworks").create_network_site method. boto3 documentation

Method definition
def create_network_site(
    self,
    *,
    networkArn: str,
    networkSiteName: str,
    availabilityZone: str = ...,
    availabilityZoneId: str = ...,
    clientToken: str = ...,
    description: str = ...,
    pendingPlan: SitePlanTypeDef = ...,  # (1)
    tags: Mapping[str, str] = ...,
) -> CreateNetworkSiteResponseTypeDef:  # (2)
    ...
  1. See SitePlanTypeDef
  2. See CreateNetworkSiteResponseTypeDef
Usage example with kwargs
kwargs: CreateNetworkSiteRequestRequestTypeDef = {  # (1)
    "networkArn": ...,
    "networkSiteName": ...,
}

parent.create_network_site(**kwargs)
  1. See CreateNetworkSiteRequestRequestTypeDef

deactivate_device_identifier

Deactivates the specified device identifier.

Type annotations and code completion for boto3.client("privatenetworks").deactivate_device_identifier method. boto3 documentation

Method definition
def deactivate_device_identifier(
    self,
    *,
    deviceIdentifierArn: str,
    clientToken: str = ...,
) -> DeactivateDeviceIdentifierResponseTypeDef:  # (1)
    ...
  1. See DeactivateDeviceIdentifierResponseTypeDef
Usage example with kwargs
kwargs: DeactivateDeviceIdentifierRequestRequestTypeDef = {  # (1)
    "deviceIdentifierArn": ...,
}

parent.deactivate_device_identifier(**kwargs)
  1. See DeactivateDeviceIdentifierRequestRequestTypeDef

delete_network

Deletes the specified network.

Type annotations and code completion for boto3.client("privatenetworks").delete_network method. boto3 documentation

Method definition
def delete_network(
    self,
    *,
    networkArn: str,
    clientToken: str = ...,
) -> DeleteNetworkResponseTypeDef:  # (1)
    ...
  1. See DeleteNetworkResponseTypeDef
Usage example with kwargs
kwargs: DeleteNetworkRequestRequestTypeDef = {  # (1)
    "networkArn": ...,
}

parent.delete_network(**kwargs)
  1. See DeleteNetworkRequestRequestTypeDef

delete_network_site

Deletes the specified network site.

Type annotations and code completion for boto3.client("privatenetworks").delete_network_site method. boto3 documentation

Method definition
def delete_network_site(
    self,
    *,
    networkSiteArn: str,
    clientToken: str = ...,
) -> DeleteNetworkSiteResponseTypeDef:  # (1)
    ...
  1. See DeleteNetworkSiteResponseTypeDef
Usage example with kwargs
kwargs: DeleteNetworkSiteRequestRequestTypeDef = {  # (1)
    "networkSiteArn": ...,
}

parent.delete_network_site(**kwargs)
  1. See DeleteNetworkSiteRequestRequestTypeDef

generate_presigned_url

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

Type annotations and code completion for boto3.client("privatenetworks").generate_presigned_url method. boto3 documentation

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

get_device_identifier

Gets the specified device identifier.

Type annotations and code completion for boto3.client("privatenetworks").get_device_identifier method. boto3 documentation

Method definition
def get_device_identifier(
    self,
    *,
    deviceIdentifierArn: str,
) -> GetDeviceIdentifierResponseTypeDef:  # (1)
    ...
  1. See GetDeviceIdentifierResponseTypeDef
Usage example with kwargs
kwargs: GetDeviceIdentifierRequestRequestTypeDef = {  # (1)
    "deviceIdentifierArn": ...,
}

parent.get_device_identifier(**kwargs)
  1. See GetDeviceIdentifierRequestRequestTypeDef

get_network

Gets the specified network.

Type annotations and code completion for boto3.client("privatenetworks").get_network method. boto3 documentation

Method definition
def get_network(
    self,
    *,
    networkArn: str,
) -> GetNetworkResponseTypeDef:  # (1)
    ...
  1. See GetNetworkResponseTypeDef
Usage example with kwargs
kwargs: GetNetworkRequestRequestTypeDef = {  # (1)
    "networkArn": ...,
}

parent.get_network(**kwargs)
  1. See GetNetworkRequestRequestTypeDef

get_network_resource

Gets the specified network resource.

Type annotations and code completion for boto3.client("privatenetworks").get_network_resource method. boto3 documentation

Method definition
def get_network_resource(
    self,
    *,
    networkResourceArn: str,
) -> GetNetworkResourceResponseTypeDef:  # (1)
    ...
  1. See GetNetworkResourceResponseTypeDef
Usage example with kwargs
kwargs: GetNetworkResourceRequestRequestTypeDef = {  # (1)
    "networkResourceArn": ...,
}

parent.get_network_resource(**kwargs)
  1. See GetNetworkResourceRequestRequestTypeDef

get_network_site

Gets the specified network site.

Type annotations and code completion for boto3.client("privatenetworks").get_network_site method. boto3 documentation

Method definition
def get_network_site(
    self,
    *,
    networkSiteArn: str,
) -> GetNetworkSiteResponseTypeDef:  # (1)
    ...
  1. See GetNetworkSiteResponseTypeDef
Usage example with kwargs
kwargs: GetNetworkSiteRequestRequestTypeDef = {  # (1)
    "networkSiteArn": ...,
}

parent.get_network_site(**kwargs)
  1. See GetNetworkSiteRequestRequestTypeDef

get_order

Gets the specified order.

Type annotations and code completion for boto3.client("privatenetworks").get_order method. boto3 documentation

Method definition
def get_order(
    self,
    *,
    orderArn: str,
) -> GetOrderResponseTypeDef:  # (1)
    ...
  1. See GetOrderResponseTypeDef
Usage example with kwargs
kwargs: GetOrderRequestRequestTypeDef = {  # (1)
    "orderArn": ...,
}

parent.get_order(**kwargs)
  1. See GetOrderRequestRequestTypeDef

list_device_identifiers

Lists device identifiers.

Type annotations and code completion for boto3.client("privatenetworks").list_device_identifiers method. boto3 documentation

Method definition
def list_device_identifiers(
    self,
    *,
    networkArn: str,
    filters: Mapping[DeviceIdentifierFilterKeysType, Sequence[str]] = ...,  # (1)
    maxResults: int = ...,
    startToken: str = ...,
) -> ListDeviceIdentifiersResponseTypeDef:  # (2)
    ...
  1. See DeviceIdentifierFilterKeysType
  2. See ListDeviceIdentifiersResponseTypeDef
Usage example with kwargs
kwargs: ListDeviceIdentifiersRequestRequestTypeDef = {  # (1)
    "networkArn": ...,
}

parent.list_device_identifiers(**kwargs)
  1. See ListDeviceIdentifiersRequestRequestTypeDef

list_network_resources

Lists network resources.

Type annotations and code completion for boto3.client("privatenetworks").list_network_resources method. boto3 documentation

Method definition
def list_network_resources(
    self,
    *,
    networkArn: str,
    filters: Mapping[NetworkResourceFilterKeysType, Sequence[str]] = ...,  # (1)
    maxResults: int = ...,
    startToken: str = ...,
) -> ListNetworkResourcesResponseTypeDef:  # (2)
    ...
  1. See NetworkResourceFilterKeysType
  2. See ListNetworkResourcesResponseTypeDef
Usage example with kwargs
kwargs: ListNetworkResourcesRequestRequestTypeDef = {  # (1)
    "networkArn": ...,
}

parent.list_network_resources(**kwargs)
  1. See ListNetworkResourcesRequestRequestTypeDef

list_network_sites

Lists network sites.

Type annotations and code completion for boto3.client("privatenetworks").list_network_sites method. boto3 documentation

Method definition
def list_network_sites(
    self,
    *,
    networkArn: str,
    filters: Mapping[NetworkSiteFilterKeysType, Sequence[str]] = ...,  # (1)
    maxResults: int = ...,
    startToken: str = ...,
) -> ListNetworkSitesResponseTypeDef:  # (2)
    ...
  1. See NetworkSiteFilterKeysType
  2. See ListNetworkSitesResponseTypeDef
Usage example with kwargs
kwargs: ListNetworkSitesRequestRequestTypeDef = {  # (1)
    "networkArn": ...,
}

parent.list_network_sites(**kwargs)
  1. See ListNetworkSitesRequestRequestTypeDef

list_networks

Lists networks.

Type annotations and code completion for boto3.client("privatenetworks").list_networks method. boto3 documentation

Method definition
def list_networks(
    self,
    *,
    filters: Mapping[NetworkFilterKeysType, Sequence[str]] = ...,  # (1)
    maxResults: int = ...,
    startToken: str = ...,
) -> ListNetworksResponseTypeDef:  # (2)
    ...
  1. See NetworkFilterKeysType
  2. See ListNetworksResponseTypeDef
Usage example with kwargs
kwargs: ListNetworksRequestRequestTypeDef = {  # (1)
    "filters": ...,
}

parent.list_networks(**kwargs)
  1. See ListNetworksRequestRequestTypeDef

list_orders

Lists orders.

Type annotations and code completion for boto3.client("privatenetworks").list_orders method. boto3 documentation

Method definition
def list_orders(
    self,
    *,
    networkArn: str,
    filters: Mapping[OrderFilterKeysType, Sequence[str]] = ...,  # (1)
    maxResults: int = ...,
    startToken: str = ...,
) -> ListOrdersResponseTypeDef:  # (2)
    ...
  1. See OrderFilterKeysType
  2. See ListOrdersResponseTypeDef
Usage example with kwargs
kwargs: ListOrdersRequestRequestTypeDef = {  # (1)
    "networkArn": ...,
}

parent.list_orders(**kwargs)
  1. See ListOrdersRequestRequestTypeDef

list_tags_for_resource

Lists the tags for the specified resource.

Type annotations and code completion for boto3.client("privatenetworks").list_tags_for_resource method. boto3 documentation

Method definition
def list_tags_for_resource(
    self,
    *,
    resourceArn: str,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...
  1. See ListTagsForResourceResponseTypeDef
Usage example with kwargs
kwargs: ListTagsForResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
}

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

ping

Checks the health of the service.

Type annotations and code completion for boto3.client("privatenetworks").ping method. boto3 documentation

Method definition
def ping(
    self,
) -> PingResponseTypeDef:  # (1)
    ...
  1. See PingResponseTypeDef

start_network_resource_update

Starts an update of the specified network resource.

Type annotations and code completion for boto3.client("privatenetworks").start_network_resource_update method. boto3 documentation

Method definition
def start_network_resource_update(
    self,
    *,
    networkResourceArn: str,
    updateType: UpdateTypeType,  # (1)
    returnReason: str = ...,
    shippingAddress: AddressTypeDef = ...,  # (2)
) -> StartNetworkResourceUpdateResponseTypeDef:  # (3)
    ...
  1. See UpdateTypeType
  2. See AddressTypeDef
  3. See StartNetworkResourceUpdateResponseTypeDef
Usage example with kwargs
kwargs: StartNetworkResourceUpdateRequestRequestTypeDef = {  # (1)
    "networkResourceArn": ...,
    "updateType": ...,
}

parent.start_network_resource_update(**kwargs)
  1. See StartNetworkResourceUpdateRequestRequestTypeDef

tag_resource

Adds tags to the specified resource.

Type annotations and code completion for boto3.client("privatenetworks").tag_resource method. boto3 documentation

Method definition
def tag_resource(
    self,
    *,
    resourceArn: str,
    tags: Mapping[str, str],
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: TagResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tags": ...,
}

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

untag_resource

Removes tags from the specified resource.

Type annotations and code completion for boto3.client("privatenetworks").untag_resource method. boto3 documentation

Method definition
def untag_resource(
    self,
    *,
    resourceArn: str,
    tagKeys: Sequence[str],
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: UntagResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tagKeys": ...,
}

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

update_network_site

Updates the specified network site.

Type annotations and code completion for boto3.client("privatenetworks").update_network_site method. boto3 documentation

Method definition
def update_network_site(
    self,
    *,
    networkSiteArn: str,
    clientToken: str = ...,
    description: str = ...,
) -> UpdateNetworkSiteResponseTypeDef:  # (1)
    ...
  1. See UpdateNetworkSiteResponseTypeDef
Usage example with kwargs
kwargs: UpdateNetworkSiteRequestRequestTypeDef = {  # (1)
    "networkSiteArn": ...,
}

parent.update_network_site(**kwargs)
  1. See UpdateNetworkSiteRequestRequestTypeDef

update_network_site_plan

Updates the specified network site plan.

Type annotations and code completion for boto3.client("privatenetworks").update_network_site_plan method. boto3 documentation

Method definition
def update_network_site_plan(
    self,
    *,
    networkSiteArn: str,
    pendingPlan: SitePlanTypeDef,  # (1)
    clientToken: str = ...,
) -> UpdateNetworkSiteResponseTypeDef:  # (2)
    ...
  1. See SitePlanTypeDef
  2. See UpdateNetworkSiteResponseTypeDef
Usage example with kwargs
kwargs: UpdateNetworkSitePlanRequestRequestTypeDef = {  # (1)
    "networkSiteArn": ...,
    "pendingPlan": ...,
}

parent.update_network_site_plan(**kwargs)
  1. See UpdateNetworkSitePlanRequestRequestTypeDef

get_paginator

Type annotations and code completion for boto3.client("privatenetworks").get_paginator method with overloads.