MediaLive / Client / update_network

update_network#

MediaLive.Client.update_network(**kwargs)#

Change the settings for a Network.

See also: AWS API Documentation

Request Syntax

response = client.update_network(
    IpPools=[
        {
            'Cidr': 'string'
        },
    ],
    Name='string',
    NetworkId='string',
    Routes=[
        {
            'Cidr': 'string',
            'Gateway': 'string'
        },
    ]
)
Parameters:
  • IpPools (list) –

    Include this parameter only if you want to change the pool of IP addresses in the network. An array of IpPoolCreateRequests that identify a collection of IP addresses in this network that you want to reserve for use in MediaLive Anywhere. MediaLive Anywhere uses these IP addresses for Push inputs (in both Bridge and NAT networks) and for output destinations (only in Bridge networks). Each IpPoolUpdateRequest specifies one CIDR block.

    • (dict) – Used in UpdateNetworkRequest.

      • Cidr (string) – A CIDR block of IP addresses to reserve for MediaLive Anywhere.

  • Name (string) – Include this parameter only if you want to change the name of the Network. Specify a name that is unique in the AWS account. Names are case-sensitive.

  • NetworkId (string) – [REQUIRED] The ID of the network

  • Routes (list) –

    Include this parameter only if you want to change or add routes in the Network. An array of Routes that MediaLive Anywhere needs to know about in order to route encoding traffic.

    • (dict) – Used in UpdateNetworkRequest.

      • Cidr (string) – A CIDR block for one Route.

      • Gateway (string) – The IP address of the Gateway for this route, if applicable.

Return type:

dict

Returns:

Response Syntax

{
    'Arn': 'string',
    'AssociatedClusterIds': [
        'string',
    ],
    'Id': 'string',
    'IpPools': [
        {
            'Cidr': 'string'
        },
    ],
    'Name': 'string',
    'Routes': [
        {
            'Cidr': 'string',
            'Gateway': 'string'
        },
    ],
    'State': 'CREATING'|'CREATE_FAILED'|'ACTIVE'|'DELETING'|'IDLE'|'IN_USE'|'UPDATING'|'DELETE_FAILED'|'DELETED'
}

Response Structure

  • (dict) – The network has been successfully updated.

    • Arn (string) – The ARN of this Network. It is automatically assigned when the Network is created.

    • AssociatedClusterIds (list) – Placeholder documentation for __listOf__string

      • (string) – Placeholder documentation for __string

    • Id (string) – The ID of the Network. Unique in the AWS account. The ID is the resource-id portion of the ARN.

    • IpPools (list) – An array of IpPools in your organization’s network that identify a collection of IP addresses in this network that are reserved for use in MediaLive Anywhere. MediaLive Anywhere uses these IP addresses for Push inputs (in both Bridge and NAT networks) and for output destinations (only in Bridge networks). Each IpPool specifies one CIDR block.

      • (dict) – Used in DescribeNetworkResult, DescribeNetworkSummary, UpdateNetworkResult.

        • Cidr (string) – A CIDR block of IP addresses that are reserved for MediaLive Anywhere.

    • Name (string) – The name that you specified for the Network.

    • Routes (list) – An array of Routes that MediaLive Anywhere needs to know about in order to route encoding traffic.

      • (dict) – Used in DescribeNetworkResult, DescribeNetworkSummary, UpdateNetworkResult.

        • Cidr (string) – A CIDR block for one Route.

        • Gateway (string) – The IP address of the Gateway for this route, if applicable.

    • State (string) – The current state of the Network. Only MediaLive Anywhere can change the state.

Exceptions

  • MediaLive.Client.exceptions.BadRequestException

  • MediaLive.Client.exceptions.InternalServerErrorException

  • MediaLive.Client.exceptions.ForbiddenException

  • MediaLive.Client.exceptions.BadGatewayException

  • MediaLive.Client.exceptions.GatewayTimeoutException

  • MediaLive.Client.exceptions.TooManyRequestsException

  • MediaLive.Client.exceptions.ConflictException