Class: Aws::NetworkManager::Client

Inherits:
Seahorse::Client::Base show all
Includes:
ClientStubs
Defined in:
gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb

Overview

An API client for NetworkManager. To construct a client, you need to configure a :region and :credentials.

client = Aws::NetworkManager::Client.new(
  region: region_name,
  credentials: credentials,
  # ...
)

For details on configuring region and credentials see the developer guide.

See #initialize for a full list of supported configuration options.

Instance Attribute Summary

Attributes inherited from Seahorse::Client::Base

#config, #handlers

API Operations collapse

Instance Method Summary collapse

Methods included from ClientStubs

#api_requests, #stub_data, #stub_responses

Methods inherited from Seahorse::Client::Base

add_plugin, api, clear_plugins, define, new, #operation_names, plugins, remove_plugin, set_api, set_plugins

Methods included from Seahorse::Client::HandlerBuilder

#handle, #handle_request, #handle_response

Constructor Details

#initialize(options) ⇒ Client

Returns a new instance of Client.

Parameters:

  • options (Hash)

Options Hash (options):

  • :plugins (Array<Seahorse::Client::Plugin>) — default: []]

    A list of plugins to apply to the client. Each plugin is either a class name or an instance of a plugin class.

  • :credentials (required, Aws::CredentialProvider)

    Your AWS credentials used for authentication. This can be any class that includes and implements Aws::CredentialProvider, or instance of any one of the following classes:

    • Aws::Credentials - Used for configuring static, non-refreshing credentials.

    • Aws::SharedCredentials - Used for loading static credentials from a shared file, such as ~/.aws/config.

    • Aws::AssumeRoleCredentials - Used when you need to assume a role.

    • Aws::AssumeRoleWebIdentityCredentials - Used when you need to assume a role after providing credentials via the web.

    • Aws::SSOCredentials - Used for loading credentials from AWS SSO using an access token generated from aws login.

    • Aws::ProcessCredentials - Used for loading credentials from a process that outputs to stdout.

    • Aws::InstanceProfileCredentials - Used for loading credentials from an EC2 IMDS on an EC2 instance.

    • Aws::ECSCredentials - Used for loading credentials from instances running in ECS.

    • Aws::CognitoIdentityCredentials - Used for loading credentials from the Cognito Identity service.

    When :credentials are not configured directly, the following locations will be searched for credentials:

    • Aws.config[:credentials]

    • The :access_key_id, :secret_access_key, :session_token, and :account_id options.

    • ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'], ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID'].

    • ~/.aws/credentials

    • ~/.aws/config

    • EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive. Construct and pass an instance of Aws::InstanceProfileCredentials or Aws::ECSCredentials to enable retries and extended timeouts. Instance profile credential fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED'] to true.

  • :region (required, String)

    The AWS region to connect to. The configured :region is used to determine the service :endpoint. When not passed, a default :region is searched for in the following locations:

    • Aws.config[:region]
    • ENV['AWS_REGION']
    • ENV['AMAZON_REGION']
    • ENV['AWS_DEFAULT_REGION']
    • ~/.aws/credentials
    • ~/.aws/config
  • :access_key_id (String)
  • :account_id (String)
  • :active_endpoint_cache (Boolean) — default: false

    When set to true, a thread polling for endpoints will be running in the background every 60 secs (default). Defaults to false.

  • :adaptive_retry_wait_to_fill (Boolean) — default: true

    Used only in adaptive retry mode. When true, the request will sleep until there is sufficent client side capacity to retry the request. When false, the request will raise a RetryCapacityNotAvailableError and will not retry instead of sleeping.

  • :auth_scheme_preference (Array<String>)

    A list of preferred authentication schemes to use when making a request. Supported values are: sigv4, sigv4a, httpBearerAuth, and noAuth. When set using ENV['AWS_AUTH_SCHEME_PREFERENCE'] or in shared config as auth_scheme_preference, the value should be a comma-separated list.

  • :client_side_monitoring (Boolean) — default: false

    When true, client-side metrics will be collected for all API requests from this client.

  • :client_side_monitoring_client_id (String) — default: ""

    Allows you to provide an identifier for this client which will be attached to all generated client side metrics. Defaults to an empty string.

  • :client_side_monitoring_host (String) — default: "127.0.0.1"

    Allows you to specify the DNS hostname or IPv4 or IPv6 address that the client side monitoring agent is running on, where client metrics will be published via UDP.

  • :client_side_monitoring_port (Integer) — default: 31000

    Required for publishing client metrics. The port that the client side monitoring agent is running on, where client metrics will be published via UDP.

  • :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher) — default: Aws::ClientSideMonitoring::Publisher

    Allows you to provide a custom client-side monitoring publisher class. By default, will use the Client Side Monitoring Agent Publisher.

  • :convert_params (Boolean) — default: true

    When true, an attempt is made to coerce request parameters into the required types.

  • :correct_clock_skew (Boolean) — default: true

    Used only in standard and adaptive retry modes. Specifies whether to apply a clock skew correction and retry requests with skewed client clocks.

  • :defaults_mode (String) — default: "legacy"

    See DefaultsModeConfiguration for a list of the accepted modes and the configuration defaults that are included.

  • :disable_host_prefix_injection (Boolean) — default: false

    When true, the SDK will not prepend the modeled host prefix to the endpoint.

  • :disable_request_compression (Boolean) — default: false

    When set to 'true' the request body will not be compressed for supported operations.

  • :endpoint (String, URI::HTTPS, URI::HTTP)

    Normally you should not configure the :endpoint option directly. This is normally constructed from the :region option. Configuring :endpoint is normally reserved for connecting to test or custom endpoints. The endpoint should be a URI formatted like:

    'http://example.com'
    'https://example.com'
    'http://example.com:123'
    
  • :endpoint_cache_max_entries (Integer) — default: 1000

    Used for the maximum size limit of the LRU cache storing endpoints data for endpoint discovery enabled operations. Defaults to 1000.

  • :endpoint_cache_max_threads (Integer) — default: 10

    Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.

  • :endpoint_cache_poll_interval (Integer) — default: 60

    When :endpoint_discovery and :active_endpoint_cache is enabled, Use this option to config the time interval in seconds for making requests fetching endpoints information. Defaults to 60 sec.

  • :endpoint_discovery (Boolean) — default: false

    When set to true, endpoint discovery will be enabled for operations when available.

  • :ignore_configured_endpoint_urls (Boolean)

    Setting to true disables use of endpoint URLs provided via environment variables and the shared configuration file.

  • :log_formatter (Aws::Log::Formatter) — default: Aws::Log::Formatter.default

    The log formatter.

  • :log_level (Symbol) — default: :info

    The log level to send messages to the :logger at.

  • :logger (Logger)

    The Logger instance to send log messages to. If this option is not set, logging will be disabled.

  • :max_attempts (Integer) — default: 3

    An integer representing the maximum number attempts that will be made for a single request, including the initial attempt. For example, setting this value to 5 will result in a request being retried up to 4 times. Used in standard and adaptive retry modes.

  • :profile (String) — default: "default"

    Used when loading credentials from the shared credentials file at HOME/.aws/credentials. When not specified, 'default' is used.

  • :request_checksum_calculation (String) — default: "when_supported"

    Determines when a checksum will be calculated for request payloads. Values are:

    • when_supported - (default) When set, a checksum will be calculated for all request payloads of operations modeled with the httpChecksum trait where requestChecksumRequired is true and/or a requestAlgorithmMember is modeled.
    • when_required - When set, a checksum will only be calculated for request payloads of operations modeled with the httpChecksum trait where requestChecksumRequired is true or where a requestAlgorithmMember is modeled and supplied.
  • :request_min_compression_size_bytes (Integer) — default: 10240

    The minimum size in bytes that triggers compression for request bodies. The value must be non-negative integer value between 0 and 10485780 bytes inclusive.

  • :response_checksum_validation (String) — default: "when_supported"

    Determines when checksum validation will be performed on response payloads. Values are:

    • when_supported - (default) When set, checksum validation is performed on all response payloads of operations modeled with the httpChecksum trait where responseAlgorithms is modeled, except when no modeled checksum algorithms are supported.
    • when_required - When set, checksum validation is not performed on response payloads of operations unless the checksum algorithm is supported and the requestValidationModeMember member is set to ENABLED.
  • :retry_backoff (Proc)

    A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay. This option is only used in the legacy retry mode.

  • :retry_base_delay (Float) — default: 0.3

    The base delay in seconds used by the default backoff function. This option is only used in the legacy retry mode.

  • :retry_jitter (Symbol) — default: :none

    A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number. This option is only used in the legacy retry mode.

    @see https://www.awsarchitectureblog.com/2015/03/backoff.html

  • :retry_limit (Integer) — default: 3

    The maximum number of times to retry failed requests. Only ~ 500 level server errors and certain ~ 400 level client errors are retried. Generally, these are throttling errors, data checksum errors, networking errors, timeout errors, auth errors, endpoint discovery, and errors from expired credentials. This option is only used in the legacy retry mode.

  • :retry_max_delay (Integer) — default: 0

    The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function. This option is only used in the legacy retry mode.

  • :retry_mode (String) — default: "legacy"

    Specifies which retry algorithm to use. Values are:

    • legacy - The pre-existing retry behavior. This is default value if no retry mode is provided.

    • standard - A standardized set of retry rules across the AWS SDKs. This includes support for retry quotas, which limit the number of unsuccessful retries a client can make.

    • adaptive - An experimental retry mode that includes all the functionality of standard mode along with automatic client side throttling. This is a provisional mode that may change behavior in the future.

  • :sdk_ua_app_id (String)

    A unique and opaque application ID that is appended to the User-Agent header as app/sdk_ua_app_id. It should have a maximum length of 50. This variable is sourced from environment variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.

  • :secret_access_key (String)
  • :session_token (String)
  • :sigv4a_signing_region_set (Array)

    A list of regions that should be signed with SigV4a signing. When not passed, a default :sigv4a_signing_region_set is searched for in the following locations:

    • Aws.config[:sigv4a_signing_region_set]
    • ENV['AWS_SIGV4A_SIGNING_REGION_SET']
    • ~/.aws/config
  • :stub_responses (Boolean) — default: false

    Causes the client to return stubbed responses. By default fake responses are generated and returned. You can specify the response data to return or errors to raise by calling ClientStubs#stub_responses. See ClientStubs for more information.

    Please note When response stubbing is enabled, no HTTP requests are made, and retries are disabled.

  • :telemetry_provider (Aws::Telemetry::TelemetryProviderBase) — default: Aws::Telemetry::NoOpTelemetryProvider

    Allows you to provide a telemetry provider, which is used to emit telemetry data. By default, uses NoOpTelemetryProvider which will not record or emit any telemetry data. The SDK supports the following telemetry providers:

    • OpenTelemetry (OTel) - To use the OTel provider, install and require the opentelemetry-sdk gem and then, pass in an instance of a Aws::Telemetry::OTelProvider for telemetry provider.
  • :token_provider (Aws::TokenProvider)

    Your Bearer token used for authentication. This can be any class that includes and implements Aws::TokenProvider, or instance of any one of the following classes:

    • Aws::StaticTokenProvider - Used for configuring static, non-refreshing tokens.

    • Aws::SSOTokenProvider - Used for loading tokens from AWS SSO using an access token generated from aws login.

    When :token_provider is not configured directly, the Aws::TokenProviderChain will be used to search for tokens configured for your profile in shared configuration files.

  • :use_dualstack_endpoint (Boolean)

    When set to true, dualstack enabled endpoints (with .aws TLD) will be used if available.

  • :use_fips_endpoint (Boolean)

    When set to true, fips compatible endpoints will be used if available. When a fips region is used, the region is normalized and this config is set to true.

  • :validate_params (Boolean) — default: true

    When true, request parameters are validated before sending the request.

  • :endpoint_provider (Aws::NetworkManager::EndpointProvider)

    The endpoint provider used to resolve endpoints. Any object that responds to #resolve_endpoint(parameters) where parameters is a Struct similar to Aws::NetworkManager::EndpointParameters.

  • :http_continue_timeout (Float) — default: 1

    The number of seconds to wait for a 100-continue response before sending the request body. This option has no effect unless the request has "Expect" header set to "100-continue". Defaults to nil which disables this behaviour. This value can safely be set per request on the session.

  • :http_idle_timeout (Float) — default: 5

    The number of seconds a connection is allowed to sit idle before it is considered stale. Stale connections are closed and removed from the pool before making a request.

  • :http_open_timeout (Float) — default: 15

    The default number of seconds to wait for response data. This value can safely be set per-request on the session.

  • :http_proxy (URI::HTTP, String)

    A proxy to send requests through. Formatted like 'http://proxy.com:123'.

  • :http_read_timeout (Float) — default: 60

    The default number of seconds to wait for response data. This value can safely be set per-request on the session.

  • :http_wire_trace (Boolean) — default: false

    When true, HTTP debug output will be sent to the :logger.

  • :on_chunk_received (Proc)

    When a Proc object is provided, it will be used as callback when each chunk of the response body is received. It provides three arguments: the chunk, the number of bytes received, and the total number of bytes in the response (or nil if the server did not send a content-length).

  • :on_chunk_sent (Proc)

    When a Proc object is provided, it will be used as callback when each chunk of the request body is sent. It provides three arguments: the chunk, the number of bytes read from the body, and the total number of bytes in the body.

  • :raise_response_errors (Boolean) — default: true

    When true, response errors are raised.

  • :ssl_ca_bundle (String)

    Full path to the SSL certificate authority bundle file that should be used when verifying peer certificates. If you do not pass :ssl_ca_bundle or :ssl_ca_directory the the system default will be used if available.

  • :ssl_ca_directory (String)

    Full path of the directory that contains the unbundled SSL certificate authority files for verifying peer certificates. If you do not pass :ssl_ca_bundle or :ssl_ca_directory the the system default will be used if available.

  • :ssl_ca_store (String)

    Sets the X509::Store to verify peer certificate.

  • :ssl_cert (OpenSSL::X509::Certificate)

    Sets a client certificate when creating http connections.

  • :ssl_key (OpenSSL::PKey)

    Sets a client key when creating http connections.

  • :ssl_timeout (Float)

    Sets the SSL timeout in seconds

  • :ssl_verify_peer (Boolean) — default: true

    When true, SSL peer certificates are verified when establishing a connection.



473
474
475
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 473

def initialize(*args)
  super
end

Instance Method Details

#accept_attachment(params = {}) ⇒ Types::AcceptAttachmentResponse

Accepts a core network attachment request.

Once the attachment request is accepted by a core network owner, the attachment is created and connected to a core network.

Examples:

Request syntax with placeholder values


resp = client.accept_attachment({
  attachment_id: "AttachmentId", # required
})

Response structure


resp.attachment.core_network_id #=> String
resp.attachment.core_network_arn #=> String
resp.attachment.attachment_id #=> String
resp.attachment. #=> String
resp.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.attachment.edge_location #=> String
resp.attachment.edge_locations #=> Array
resp.attachment.edge_locations[0] #=> String
resp.attachment.resource_arn #=> String
resp.attachment.attachment_policy_rule_number #=> Integer
resp.attachment.segment_name #=> String
resp.attachment.network_function_group_name #=> String
resp.attachment.tags #=> Array
resp.attachment.tags[0].key #=> String
resp.attachment.tags[0].value #=> String
resp.attachment.proposed_segment_change.tags #=> Array
resp.attachment.proposed_segment_change.tags[0].key #=> String
resp.attachment.proposed_segment_change.tags[0].value #=> String
resp.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.attachment.proposed_segment_change.segment_name #=> String
resp.attachment.proposed_network_function_group_change.tags #=> Array
resp.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.attachment.created_at #=> Time
resp.attachment.updated_at #=> Time
resp.attachment.last_modification_errors #=> Array
resp.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.attachment.last_modification_errors[0].message #=> String
resp.attachment.last_modification_errors[0].resource_arn #=> String
resp.attachment.last_modification_errors[0].request_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :attachment_id (required, String)

    The ID of the attachment.

Returns:

See Also:



537
538
539
540
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 537

def accept_attachment(params = {}, options = {})
  req = build_request(:accept_attachment, params)
  req.send_request(options)
end

#associate_connect_peer(params = {}) ⇒ Types::AssociateConnectPeerResponse

Associates a core network Connect peer with a device and optionally, with a link.

If you specify a link, it must be associated with the specified device. You can only associate core network Connect peers that have been created on a core network Connect attachment on a core network.

Examples:

Request syntax with placeholder values


resp = client.associate_connect_peer({
  global_network_id: "GlobalNetworkId", # required
  connect_peer_id: "ConnectPeerId", # required
  device_id: "DeviceId", # required
  link_id: "LinkId",
})

Response structure


resp.connect_peer_association.connect_peer_id #=> String
resp.connect_peer_association.global_network_id #=> String
resp.connect_peer_association.device_id #=> String
resp.connect_peer_association.link_id #=> String
resp.connect_peer_association.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of your global network.

  • :connect_peer_id (required, String)

    The ID of the Connect peer.

  • :device_id (required, String)

    The ID of the device.

  • :link_id (String)

    The ID of the link.

Returns:

See Also:



586
587
588
589
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 586

def associate_connect_peer(params = {}, options = {})
  req = build_request(:associate_connect_peer, params)
  req.send_request(options)
end

#associate_customer_gateway(params = {}) ⇒ Types::AssociateCustomerGatewayResponse

Associates a customer gateway with a device and optionally, with a link. If you specify a link, it must be associated with the specified device.

You can only associate customer gateways that are connected to a VPN attachment on a transit gateway or core network registered in your global network. When you register a transit gateway or core network, customer gateways that are connected to the transit gateway are automatically included in the global network. To list customer gateways that are connected to a transit gateway, use the DescribeVpnConnections EC2 API and filter by transit-gateway-id.

You cannot associate a customer gateway with more than one device and link.

Examples:

Request syntax with placeholder values


resp = client.associate_customer_gateway({
  customer_gateway_arn: "CustomerGatewayArn", # required
  global_network_id: "GlobalNetworkId", # required
  device_id: "DeviceId", # required
  link_id: "LinkId",
})

Response structure


resp.customer_gateway_association.customer_gateway_arn #=> String
resp.customer_gateway_association.global_network_id #=> String
resp.customer_gateway_association.device_id #=> String
resp.customer_gateway_association.link_id #=> String
resp.customer_gateway_association.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :customer_gateway_arn (required, String)

    The Amazon Resource Name (ARN) of the customer gateway.

  • :global_network_id (required, String)

    The ID of the global network.

  • :device_id (required, String)

    The ID of the device.

  • :link_id (String)

    The ID of the link.

Returns:

See Also:



648
649
650
651
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 648

def associate_customer_gateway(params = {}, options = {})
  req = build_request(:associate_customer_gateway, params)
  req.send_request(options)
end

Associates a link to a device. A device can be associated to multiple links and a link can be associated to multiple devices. The device and link must be in the same global network and the same site.

Examples:

Request syntax with placeholder values


resp = client.associate_link({
  global_network_id: "GlobalNetworkId", # required
  device_id: "DeviceId", # required
  link_id: "LinkId", # required
})

Response structure


resp.link_association.global_network_id #=> String
resp.link_association.device_id #=> String
resp.link_association.link_id #=> String
resp.link_association.link_association_state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :device_id (required, String)

    The ID of the device.

  • :link_id (required, String)

    The ID of the link.

Returns:

See Also:



689
690
691
692
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 689

def associate_link(params = {}, options = {})
  req = build_request(:associate_link, params)
  req.send_request(options)
end

#associate_transit_gateway_connect_peer(params = {}) ⇒ Types::AssociateTransitGatewayConnectPeerResponse

Associates a transit gateway Connect peer with a device, and optionally, with a link. If you specify a link, it must be associated with the specified device.

You can only associate transit gateway Connect peers that have been created on a transit gateway that's registered in your global network.

You cannot associate a transit gateway Connect peer with more than one device and link.

Examples:

Request syntax with placeholder values


resp = client.associate_transit_gateway_connect_peer({
  global_network_id: "GlobalNetworkId", # required
  transit_gateway_connect_peer_arn: "TransitGatewayConnectPeerArn", # required
  device_id: "DeviceId", # required
  link_id: "LinkId",
})

Response structure


resp.transit_gateway_connect_peer_association.transit_gateway_connect_peer_arn #=> String
resp.transit_gateway_connect_peer_association.global_network_id #=> String
resp.transit_gateway_connect_peer_association.device_id #=> String
resp.transit_gateway_connect_peer_association.link_id #=> String
resp.transit_gateway_connect_peer_association.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :transit_gateway_connect_peer_arn (required, String)

    The Amazon Resource Name (ARN) of the Connect peer.

  • :device_id (required, String)

    The ID of the device.

  • :link_id (String)

    The ID of the link.

Returns:

See Also:



742
743
744
745
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 742

def associate_transit_gateway_connect_peer(params = {}, options = {})
  req = build_request(:associate_transit_gateway_connect_peer, params)
  req.send_request(options)
end

#create_connect_attachment(params = {}) ⇒ Types::CreateConnectAttachmentResponse

Creates a core network Connect attachment from a specified core network attachment.

A core network Connect attachment is a GRE-based tunnel attachment that you can use to establish a connection between a core network and an appliance. A core network Connect attachment uses an existing VPC attachment as the underlying transport mechanism.

Examples:

Request syntax with placeholder values


resp = client.create_connect_attachment({
  core_network_id: "CoreNetworkId", # required
  edge_location: "ExternalRegionCode", # required
  transport_attachment_id: "AttachmentId", # required
  routing_policy_label: "ConstrainedString",
  options: { # required
    protocol: "GRE", # accepts GRE, NO_ENCAP
  },
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
  client_token: "ClientToken",
})

Response structure


resp.connect_attachment.attachment.core_network_id #=> String
resp.connect_attachment.attachment.core_network_arn #=> String
resp.connect_attachment.attachment.attachment_id #=> String
resp.connect_attachment.attachment. #=> String
resp.connect_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.connect_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.connect_attachment.attachment.edge_location #=> String
resp.connect_attachment.attachment.edge_locations #=> Array
resp.connect_attachment.attachment.edge_locations[0] #=> String
resp.connect_attachment.attachment.resource_arn #=> String
resp.connect_attachment.attachment.attachment_policy_rule_number #=> Integer
resp.connect_attachment.attachment.segment_name #=> String
resp.connect_attachment.attachment.network_function_group_name #=> String
resp.connect_attachment.attachment.tags #=> Array
resp.connect_attachment.attachment.tags[0].key #=> String
resp.connect_attachment.attachment.tags[0].value #=> String
resp.connect_attachment.attachment.proposed_segment_change.tags #=> Array
resp.connect_attachment.attachment.proposed_segment_change.tags[0].key #=> String
resp.connect_attachment.attachment.proposed_segment_change.tags[0].value #=> String
resp.connect_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.connect_attachment.attachment.proposed_segment_change.segment_name #=> String
resp.connect_attachment.attachment.proposed_network_function_group_change.tags #=> Array
resp.connect_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.connect_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.connect_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.connect_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.connect_attachment.attachment.created_at #=> Time
resp.connect_attachment.attachment.updated_at #=> Time
resp.connect_attachment.attachment.last_modification_errors #=> Array
resp.connect_attachment.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.connect_attachment.attachment.last_modification_errors[0].message #=> String
resp.connect_attachment.attachment.last_modification_errors[0].resource_arn #=> String
resp.connect_attachment.attachment.last_modification_errors[0].request_id #=> String
resp.connect_attachment.transport_attachment_id #=> String
resp.connect_attachment.options.protocol #=> String, one of "GRE", "NO_ENCAP"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network where you want to create the attachment.

  • :edge_location (required, String)

    The Region where the edge is located.

  • :transport_attachment_id (required, String)

    The ID of the attachment between the two connections.

  • :routing_policy_label (String)

    The routing policy label to apply to the Connect attachment for traffic routing decisions.

  • :options (required, Types::ConnectAttachmentOptions)

    Options for creating an attachment.

  • :tags (Array<Types::Tag>)

    The list of key-value tags associated with the request.

  • :client_token (String)

    The client token associated with the request.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

Returns:

See Also:



845
846
847
848
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 845

def create_connect_attachment(params = {}, options = {})
  req = build_request(:create_connect_attachment, params)
  req.send_request(options)
end

#create_connect_peer(params = {}) ⇒ Types::CreateConnectPeerResponse

Creates a core network Connect peer for a specified core network connect attachment between a core network and an appliance. The peer address and transit gateway address must be the same IP address family (IPv4 or IPv6).

Examples:

Request syntax with placeholder values


resp = client.create_connect_peer({
  connect_attachment_id: "AttachmentId", # required
  core_network_address: "IPAddress",
  peer_address: "IPAddress", # required
  bgp_options: {
    peer_asn: 1,
  },
  inside_cidr_blocks: ["ConstrainedString"],
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
  client_token: "ClientToken",
  subnet_arn: "SubnetArn",
})

Response structure


resp.connect_peer.core_network_id #=> String
resp.connect_peer.connect_attachment_id #=> String
resp.connect_peer.connect_peer_id #=> String
resp.connect_peer.edge_location #=> String
resp.connect_peer.state #=> String, one of "CREATING", "FAILED", "AVAILABLE", "DELETING"
resp.connect_peer.created_at #=> Time
resp.connect_peer.configuration.core_network_address #=> String
resp.connect_peer.configuration.peer_address #=> String
resp.connect_peer.configuration.inside_cidr_blocks #=> Array
resp.connect_peer.configuration.inside_cidr_blocks[0] #=> String
resp.connect_peer.configuration.protocol #=> String, one of "GRE", "NO_ENCAP"
resp.connect_peer.configuration.bgp_configurations #=> Array
resp.connect_peer.configuration.bgp_configurations[0].core_network_asn #=> Integer
resp.connect_peer.configuration.bgp_configurations[0].peer_asn #=> Integer
resp.connect_peer.configuration.bgp_configurations[0].core_network_address #=> String
resp.connect_peer.configuration.bgp_configurations[0].peer_address #=> String
resp.connect_peer.tags #=> Array
resp.connect_peer.tags[0].key #=> String
resp.connect_peer.tags[0].value #=> String
resp.connect_peer.subnet_arn #=> String
resp.connect_peer.last_modification_errors #=> Array
resp.connect_peer.last_modification_errors[0].code #=> String, one of "EDGE_LOCATION_NO_FREE_IPS", "EDGE_LOCATION_PEER_DUPLICATE", "SUBNET_NOT_FOUND", "IP_OUTSIDE_SUBNET_CIDR_RANGE", "INVALID_INSIDE_CIDR_BLOCK", "NO_ASSOCIATED_CIDR_BLOCK"
resp.connect_peer.last_modification_errors[0].message #=> String
resp.connect_peer.last_modification_errors[0].resource_arn #=> String
resp.connect_peer.last_modification_errors[0].request_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :connect_attachment_id (required, String)

    The ID of the connection attachment.

  • :core_network_address (String)

    A Connect peer core network address. This only applies only when the protocol is GRE.

  • :peer_address (required, String)

    The Connect peer address.

  • :bgp_options (Types::BgpOptions)

    The Connect peer BGP options. This only applies only when the protocol is GRE.

  • :inside_cidr_blocks (Array<String>)

    The inside IP addresses used for BGP peering.

  • :tags (Array<Types::Tag>)

    The tags associated with the peer request.

  • :client_token (String)

    The client token associated with the request.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :subnet_arn (String)

    The subnet ARN for the Connect peer. This only applies only when the protocol is NO_ENCAP.

Returns:

See Also:



941
942
943
944
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 941

def create_connect_peer(params = {}, options = {})
  req = build_request(:create_connect_peer, params)
  req.send_request(options)
end

#create_connection(params = {}) ⇒ Types::CreateConnectionResponse

Creates a connection between two devices. The devices can be a physical or virtual appliance that connects to a third-party appliance in a VPC, or a physical appliance that connects to another physical appliance in an on-premises network.

Examples:

Request syntax with placeholder values


resp = client.create_connection({
  global_network_id: "GlobalNetworkId", # required
  device_id: "DeviceId", # required
  connected_device_id: "DeviceId", # required
  link_id: "LinkId",
  connected_link_id: "LinkId",
  description: "ConstrainedString",
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
})

Response structure


resp.connection.connection_id #=> String
resp.connection.connection_arn #=> String
resp.connection.global_network_id #=> String
resp.connection.device_id #=> String
resp.connection.connected_device_id #=> String
resp.connection.link_id #=> String
resp.connection.connected_link_id #=> String
resp.connection.description #=> String
resp.connection.created_at #=> Time
resp.connection.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.connection.tags #=> Array
resp.connection.tags[0].key #=> String
resp.connection.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :device_id (required, String)

    The ID of the first device in the connection.

  • :connected_device_id (required, String)

    The ID of the second device in the connection.

  • :link_id (String)

    The ID of the link for the first device.

  • :connected_link_id (String)

    The ID of the link for the second device.

  • :description (String)

    A description of the connection.

    Length Constraints: Maximum length of 256 characters.

  • :tags (Array<Types::Tag>)

    The tags to apply to the resource during creation.

Returns:

See Also:



1015
1016
1017
1018
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1015

def create_connection(params = {}, options = {})
  req = build_request(:create_connection, params)
  req.send_request(options)
end

#create_core_network(params = {}) ⇒ Types::CreateCoreNetworkResponse

Creates a core network as part of your global network, and optionally, with a core network policy.

Examples:

Request syntax with placeholder values


resp = client.create_core_network({
  global_network_id: "GlobalNetworkId", # required
  description: "ConstrainedString",
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
  policy_document: "CoreNetworkPolicyDocument",
  client_token: "ClientToken",
})

Response structure


resp.core_network.global_network_id #=> String
resp.core_network.core_network_id #=> String
resp.core_network.core_network_arn #=> String
resp.core_network.description #=> String
resp.core_network.created_at #=> Time
resp.core_network.state #=> String, one of "CREATING", "UPDATING", "AVAILABLE", "DELETING"
resp.core_network.segments #=> Array
resp.core_network.segments[0].name #=> String
resp.core_network.segments[0].edge_locations #=> Array
resp.core_network.segments[0].edge_locations[0] #=> String
resp.core_network.segments[0].shared_segments #=> Array
resp.core_network.segments[0].shared_segments[0] #=> String
resp.core_network.network_function_groups #=> Array
resp.core_network.network_function_groups[0].name #=> String
resp.core_network.network_function_groups[0].edge_locations #=> Array
resp.core_network.network_function_groups[0].edge_locations[0] #=> String
resp.core_network.network_function_groups[0].segments.send_via #=> Array
resp.core_network.network_function_groups[0].segments.send_via[0] #=> String
resp.core_network.network_function_groups[0].segments.send_to #=> Array
resp.core_network.network_function_groups[0].segments.send_to[0] #=> String
resp.core_network.edges #=> Array
resp.core_network.edges[0].edge_location #=> String
resp.core_network.edges[0].asn #=> Integer
resp.core_network.edges[0].inside_cidr_blocks #=> Array
resp.core_network.edges[0].inside_cidr_blocks[0] #=> String
resp.core_network.tags #=> Array
resp.core_network.tags[0].key #=> String
resp.core_network.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network that a core network will be a part of.

  • :description (String)

    The description of a core network.

  • :tags (Array<Types::Tag>)

    Key-value tags associated with a core network request.

  • :policy_document (String)

    The policy document for creating a core network.

  • :client_token (String)

    The client token associated with a core network request.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

Returns:

See Also:



1095
1096
1097
1098
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1095

def create_core_network(params = {}, options = {})
  req = build_request(:create_core_network, params)
  req.send_request(options)
end

#create_core_network_prefix_list_association(params = {}) ⇒ Types::CreateCoreNetworkPrefixListAssociationResponse

Creates an association between a core network and a prefix list for routing control.

Examples:

Request syntax with placeholder values


resp = client.create_core_network_prefix_list_association({
  core_network_id: "CoreNetworkId", # required
  prefix_list_arn: "PrefixListArn", # required
  prefix_list_alias: "ConstrainedString", # required
  client_token: "ClientToken",
})

Response structure


resp.core_network_id #=> String
resp.prefix_list_arn #=> String
resp.prefix_list_alias #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of the core network to associate with the prefix list.

  • :prefix_list_arn (required, String)

    The ARN of the prefix list to associate with the core network.

  • :prefix_list_alias (required, String)

    An optional alias for the prefix list association.

  • :client_token (String)

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

Returns:

See Also:



1144
1145
1146
1147
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1144

def create_core_network_prefix_list_association(params = {}, options = {})
  req = build_request(:create_core_network_prefix_list_association, params)
  req.send_request(options)
end

#create_device(params = {}) ⇒ Types::CreateDeviceResponse

Creates a new device in a global network. If you specify both a site ID and a location, the location of the site is used for visualization in the Network Manager console.

Examples:

Request syntax with placeholder values


resp = client.create_device({
  global_network_id: "GlobalNetworkId", # required
  aws_location: {
    zone: "ConstrainedString",
    subnet_arn: "SubnetArn",
  },
  description: "ConstrainedString",
  type: "ConstrainedString",
  vendor: "ConstrainedString",
  model: "ConstrainedString",
  serial_number: "ConstrainedString",
  location: {
    address: "ConstrainedString",
    latitude: "ConstrainedString",
    longitude: "ConstrainedString",
  },
  site_id: "SiteId",
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
})

Response structure


resp.device.device_id #=> String
resp.device.device_arn #=> String
resp.device.global_network_id #=> String
resp.device.aws_location.zone #=> String
resp.device.aws_location.subnet_arn #=> String
resp.device.description #=> String
resp.device.type #=> String
resp.device.vendor #=> String
resp.device.model #=> String
resp.device.serial_number #=> String
resp.device.location.address #=> String
resp.device.location.latitude #=> String
resp.device.location.longitude #=> String
resp.device.site_id #=> String
resp.device.created_at #=> Time
resp.device.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.device.tags #=> Array
resp.device.tags[0].key #=> String
resp.device.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :aws_location (Types::AWSLocation)

    The Amazon Web Services location of the device, if applicable. For an on-premises device, you can omit this parameter.

  • :description (String)

    A description of the device.

    Constraints: Maximum length of 256 characters.

  • :type (String)

    The type of the device.

  • :vendor (String)

    The vendor of the device.

    Constraints: Maximum length of 128 characters.

  • :model (String)

    The model of the device.

    Constraints: Maximum length of 128 characters.

  • :serial_number (String)

    The serial number of the device.

    Constraints: Maximum length of 128 characters.

  • :location (Types::Location)

    The location of the device.

  • :site_id (String)

    The ID of the site.

  • :tags (Array<Types::Tag>)

    The tags to apply to the resource during creation.

Returns:

See Also:



1249
1250
1251
1252
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1249

def create_device(params = {}, options = {})
  req = build_request(:create_device, params)
  req.send_request(options)
end

#create_direct_connect_gateway_attachment(params = {}) ⇒ Types::CreateDirectConnectGatewayAttachmentResponse

Creates an Amazon Web Services Direct Connect gateway attachment

Examples:

Request syntax with placeholder values


resp = client.create_direct_connect_gateway_attachment({
  core_network_id: "CoreNetworkId", # required
  direct_connect_gateway_arn: "DirectConnectGatewayArn", # required
  routing_policy_label: "ConstrainedString",
  edge_locations: ["ExternalRegionCode"], # required
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
  client_token: "ClientToken",
})

Response structure


resp.direct_connect_gateway_attachment.attachment.core_network_id #=> String
resp.direct_connect_gateway_attachment.attachment.core_network_arn #=> String
resp.direct_connect_gateway_attachment.attachment.attachment_id #=> String
resp.direct_connect_gateway_attachment.attachment. #=> String
resp.direct_connect_gateway_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.direct_connect_gateway_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.direct_connect_gateway_attachment.attachment.edge_location #=> String
resp.direct_connect_gateway_attachment.attachment.edge_locations #=> Array
resp.direct_connect_gateway_attachment.attachment.edge_locations[0] #=> String
resp.direct_connect_gateway_attachment.attachment.resource_arn #=> String
resp.direct_connect_gateway_attachment.attachment.attachment_policy_rule_number #=> Integer
resp.direct_connect_gateway_attachment.attachment.segment_name #=> String
resp.direct_connect_gateway_attachment.attachment.network_function_group_name #=> String
resp.direct_connect_gateway_attachment.attachment.tags #=> Array
resp.direct_connect_gateway_attachment.attachment.tags[0].key #=> String
resp.direct_connect_gateway_attachment.attachment.tags[0].value #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.tags #=> Array
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.tags[0].key #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.tags[0].value #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.segment_name #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.tags #=> Array
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.direct_connect_gateway_attachment.attachment.created_at #=> Time
resp.direct_connect_gateway_attachment.attachment.updated_at #=> Time
resp.direct_connect_gateway_attachment.attachment.last_modification_errors #=> Array
resp.direct_connect_gateway_attachment.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.direct_connect_gateway_attachment.attachment.last_modification_errors[0].message #=> String
resp.direct_connect_gateway_attachment.attachment.last_modification_errors[0].resource_arn #=> String
resp.direct_connect_gateway_attachment.attachment.last_modification_errors[0].request_id #=> String
resp.direct_connect_gateway_attachment.direct_connect_gateway_arn #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of the Cloud WAN core network that the Direct Connect gateway attachment should be attached to.

  • :direct_connect_gateway_arn (required, String)

    The ARN of the Direct Connect gateway attachment.

  • :routing_policy_label (String)

    The routing policy label to apply to the Direct Connect Gateway attachment for traffic routing decisions.

  • :edge_locations (required, Array<String>)

    One or more core network edge locations that the Direct Connect gateway attachment is associated with.

  • :tags (Array<Types::Tag>)

    The key value tags to apply to the Direct Connect gateway attachment during creation.

  • :client_token (String)

    client token

    A suitable default value is auto-generated. You should normally not need to pass this option.**

Returns:

See Also:



1342
1343
1344
1345
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1342

def create_direct_connect_gateway_attachment(params = {}, options = {})
  req = build_request(:create_direct_connect_gateway_attachment, params)
  req.send_request(options)
end

#create_global_network(params = {}) ⇒ Types::CreateGlobalNetworkResponse

Creates a new, empty global network.

Examples:

Request syntax with placeholder values


resp = client.create_global_network({
  description: "ConstrainedString",
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
})

Response structure


resp.global_network.global_network_id #=> String
resp.global_network.global_network_arn #=> String
resp.global_network.description #=> String
resp.global_network.created_at #=> Time
resp.global_network.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.global_network.tags #=> Array
resp.global_network.tags[0].key #=> String
resp.global_network.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :description (String)

    A description of the global network.

    Constraints: Maximum length of 256 characters.

  • :tags (Array<Types::Tag>)

    The tags to apply to the resource during creation.

Returns:

See Also:



1388
1389
1390
1391
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1388

def create_global_network(params = {}, options = {})
  req = build_request(:create_global_network, params)
  req.send_request(options)
end

Creates a new link for a specified site.

Examples:

Request syntax with placeholder values


resp = client.create_link({
  global_network_id: "GlobalNetworkId", # required
  description: "ConstrainedString",
  type: "ConstrainedString",
  bandwidth: { # required
    upload_speed: 1,
    download_speed: 1,
  },
  provider: "ConstrainedString",
  site_id: "SiteId", # required
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
})

Response structure


resp.link.link_id #=> String
resp.link.link_arn #=> String
resp.link.global_network_id #=> String
resp.link.site_id #=> String
resp.link.description #=> String
resp.link.type #=> String
resp.link.bandwidth.upload_speed #=> Integer
resp.link.bandwidth.download_speed #=> Integer
resp.link.provider #=> String
resp.link.created_at #=> Time
resp.link.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.link.tags #=> Array
resp.link.tags[0].key #=> String
resp.link.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :description (String)

    A description of the link.

    Constraints: Maximum length of 256 characters.

  • :type (String)

    The type of the link.

    Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^

  • :bandwidth (required, Types::Bandwidth)

    The upload speed and download speed in Mbps.

  • :provider (String)

    The provider of the link.

    Constraints: Maximum length of 128 characters. Cannot include the following characters: | \ ^

  • :site_id (required, String)

    The ID of the site.

  • :tags (Array<Types::Tag>)

    The tags to apply to the resource during creation.

Returns:

See Also:



1469
1470
1471
1472
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1469

def create_link(params = {}, options = {})
  req = build_request(:create_link, params)
  req.send_request(options)
end

#create_site(params = {}) ⇒ Types::CreateSiteResponse

Creates a new site in a global network.

Examples:

Request syntax with placeholder values


resp = client.create_site({
  global_network_id: "GlobalNetworkId", # required
  description: "ConstrainedString",
  location: {
    address: "ConstrainedString",
    latitude: "ConstrainedString",
    longitude: "ConstrainedString",
  },
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
})

Response structure


resp.site.site_id #=> String
resp.site.site_arn #=> String
resp.site.global_network_id #=> String
resp.site.description #=> String
resp.site.location.address #=> String
resp.site.location.latitude #=> String
resp.site.location.longitude #=> String
resp.site.created_at #=> Time
resp.site.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.site.tags #=> Array
resp.site.tags[0].key #=> String
resp.site.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :description (String)

    A description of your site.

    Constraints: Maximum length of 256 characters.

  • :location (Types::Location)

    The site location. This information is used for visualization in the Network Manager console. If you specify the address, the latitude and longitude are automatically calculated.

    • Address: The physical address of the site.

    • Latitude: The latitude of the site.

    • Longitude: The longitude of the site.

  • :tags (Array<Types::Tag>)

    The tags to apply to the resource during creation.

Returns:

See Also:



1539
1540
1541
1542
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1539

def create_site(params = {}, options = {})
  req = build_request(:create_site, params)
  req.send_request(options)
end

#create_site_to_site_vpn_attachment(params = {}) ⇒ Types::CreateSiteToSiteVpnAttachmentResponse

Creates an Amazon Web Services site-to-site VPN attachment on an edge location of a core network.

Examples:

Request syntax with placeholder values


resp = client.create_site_to_site_vpn_attachment({
  core_network_id: "CoreNetworkId", # required
  vpn_connection_arn: "VpnConnectionArn", # required
  routing_policy_label: "ConstrainedString",
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
  client_token: "ClientToken",
})

Response structure


resp.site_to_site_vpn_attachment.attachment.core_network_id #=> String
resp.site_to_site_vpn_attachment.attachment.core_network_arn #=> String
resp.site_to_site_vpn_attachment.attachment.attachment_id #=> String
resp.site_to_site_vpn_attachment.attachment. #=> String
resp.site_to_site_vpn_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.site_to_site_vpn_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.site_to_site_vpn_attachment.attachment.edge_location #=> String
resp.site_to_site_vpn_attachment.attachment.edge_locations #=> Array
resp.site_to_site_vpn_attachment.attachment.edge_locations[0] #=> String
resp.site_to_site_vpn_attachment.attachment.resource_arn #=> String
resp.site_to_site_vpn_attachment.attachment.attachment_policy_rule_number #=> Integer
resp.site_to_site_vpn_attachment.attachment.segment_name #=> String
resp.site_to_site_vpn_attachment.attachment.network_function_group_name #=> String
resp.site_to_site_vpn_attachment.attachment.tags #=> Array
resp.site_to_site_vpn_attachment.attachment.tags[0].key #=> String
resp.site_to_site_vpn_attachment.attachment.tags[0].value #=> String
resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.tags #=> Array
resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.tags[0].key #=> String
resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.tags[0].value #=> String
resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.segment_name #=> String
resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.tags #=> Array
resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.site_to_site_vpn_attachment.attachment.created_at #=> Time
resp.site_to_site_vpn_attachment.attachment.updated_at #=> Time
resp.site_to_site_vpn_attachment.attachment.last_modification_errors #=> Array
resp.site_to_site_vpn_attachment.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.site_to_site_vpn_attachment.attachment.last_modification_errors[0].message #=> String
resp.site_to_site_vpn_attachment.attachment.last_modification_errors[0].resource_arn #=> String
resp.site_to_site_vpn_attachment.attachment.last_modification_errors[0].request_id #=> String
resp.site_to_site_vpn_attachment.vpn_connection_arn #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network where you're creating a site-to-site VPN attachment.

  • :vpn_connection_arn (required, String)

    The ARN identifying the VPN attachment.

  • :routing_policy_label (String)

    The routing policy label to apply to the Site-to-Site VPN attachment for traffic routing decisions.

  • :tags (Array<Types::Tag>)

    The tags associated with the request.

  • :client_token (String)

    The client token associated with the request.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

Returns:

See Also:



1627
1628
1629
1630
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1627

def create_site_to_site_vpn_attachment(params = {}, options = {})
  req = build_request(:create_site_to_site_vpn_attachment, params)
  req.send_request(options)
end

#create_transit_gateway_peering(params = {}) ⇒ Types::CreateTransitGatewayPeeringResponse

Creates a transit gateway peering connection.

Examples:

Request syntax with placeholder values


resp = client.create_transit_gateway_peering({
  core_network_id: "CoreNetworkId", # required
  transit_gateway_arn: "TransitGatewayArn", # required
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
  client_token: "ClientToken",
})

Response structure


resp.transit_gateway_peering.peering.core_network_id #=> String
resp.transit_gateway_peering.peering.core_network_arn #=> String
resp.transit_gateway_peering.peering.peering_id #=> String
resp.transit_gateway_peering.peering. #=> String
resp.transit_gateway_peering.peering.peering_type #=> String, one of "TRANSIT_GATEWAY"
resp.transit_gateway_peering.peering.state #=> String, one of "CREATING", "FAILED", "AVAILABLE", "DELETING"
resp.transit_gateway_peering.peering.edge_location #=> String
resp.transit_gateway_peering.peering.resource_arn #=> String
resp.transit_gateway_peering.peering.tags #=> Array
resp.transit_gateway_peering.peering.tags[0].key #=> String
resp.transit_gateway_peering.peering.tags[0].value #=> String
resp.transit_gateway_peering.peering.created_at #=> Time
resp.transit_gateway_peering.peering.last_modification_errors #=> Array
resp.transit_gateway_peering.peering.last_modification_errors[0].code #=> String, one of "TRANSIT_GATEWAY_NOT_FOUND", "TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED", "MISSING_PERMISSIONS", "INTERNAL_ERROR", "EDGE_LOCATION_PEER_DUPLICATE", "INVALID_TRANSIT_GATEWAY_STATE"
resp.transit_gateway_peering.peering.last_modification_errors[0].message #=> String
resp.transit_gateway_peering.peering.last_modification_errors[0].resource_arn #=> String
resp.transit_gateway_peering.peering.last_modification_errors[0].request_id #=> String
resp.transit_gateway_peering.peering.last_modification_errors[0].missing_permissions_context.missing_permission #=> String
resp.transit_gateway_peering.transit_gateway_arn #=> String
resp.transit_gateway_peering.transit_gateway_peering_attachment_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network.

  • :transit_gateway_arn (required, String)

    The ARN of the transit gateway for the peering request.

  • :tags (Array<Types::Tag>)

    The list of key-value tags associated with the request.

  • :client_token (String)

    The client token associated with the request.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

Returns:

See Also:



1694
1695
1696
1697
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1694

def create_transit_gateway_peering(params = {}, options = {})
  req = build_request(:create_transit_gateway_peering, params)
  req.send_request(options)
end

#create_transit_gateway_route_table_attachment(params = {}) ⇒ Types::CreateTransitGatewayRouteTableAttachmentResponse

Creates a transit gateway route table attachment.

Examples:

Request syntax with placeholder values


resp = client.create_transit_gateway_route_table_attachment({
  peering_id: "PeeringId", # required
  transit_gateway_route_table_arn: "TransitGatewayRouteTableArn", # required
  routing_policy_label: "ConstrainedString",
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
  client_token: "ClientToken",
})

Response structure


resp.transit_gateway_route_table_attachment.attachment.core_network_id #=> String
resp.transit_gateway_route_table_attachment.attachment.core_network_arn #=> String
resp.transit_gateway_route_table_attachment.attachment.attachment_id #=> String
resp.transit_gateway_route_table_attachment.attachment. #=> String
resp.transit_gateway_route_table_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.transit_gateway_route_table_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.transit_gateway_route_table_attachment.attachment.edge_location #=> String
resp.transit_gateway_route_table_attachment.attachment.edge_locations #=> Array
resp.transit_gateway_route_table_attachment.attachment.edge_locations[0] #=> String
resp.transit_gateway_route_table_attachment.attachment.resource_arn #=> String
resp.transit_gateway_route_table_attachment.attachment.attachment_policy_rule_number #=> Integer
resp.transit_gateway_route_table_attachment.attachment.segment_name #=> String
resp.transit_gateway_route_table_attachment.attachment.network_function_group_name #=> String
resp.transit_gateway_route_table_attachment.attachment.tags #=> Array
resp.transit_gateway_route_table_attachment.attachment.tags[0].key #=> String
resp.transit_gateway_route_table_attachment.attachment.tags[0].value #=> String
resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags #=> Array
resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags[0].key #=> String
resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags[0].value #=> String
resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.segment_name #=> String
resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.tags #=> Array
resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.transit_gateway_route_table_attachment.attachment.created_at #=> Time
resp.transit_gateway_route_table_attachment.attachment.updated_at #=> Time
resp.transit_gateway_route_table_attachment.attachment.last_modification_errors #=> Array
resp.transit_gateway_route_table_attachment.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.transit_gateway_route_table_attachment.attachment.last_modification_errors[0].message #=> String
resp.transit_gateway_route_table_attachment.attachment.last_modification_errors[0].resource_arn #=> String
resp.transit_gateway_route_table_attachment.attachment.last_modification_errors[0].request_id #=> String
resp.transit_gateway_route_table_attachment.peering_id #=> String
resp.transit_gateway_route_table_attachment.transit_gateway_route_table_arn #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :peering_id (required, String)

    The ID of the peer for the

  • :transit_gateway_route_table_arn (required, String)

    The ARN of the transit gateway route table for the attachment request. For example, "TransitGatewayRouteTableArn": "arn:aws:ec2:us-west-2:123456789012:transit-gateway-route-table/tgw-rtb-9876543210123456".

  • :routing_policy_label (String)

    The routing policy label to apply to the Transit Gateway route table attachment for traffic routing decisions.

  • :tags (Array<Types::Tag>)

    The list of key-value tags associated with the request.

  • :client_token (String)

    The client token associated with the request.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

Returns:

See Also:



1783
1784
1785
1786
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1783

def create_transit_gateway_route_table_attachment(params = {}, options = {})
  req = build_request(:create_transit_gateway_route_table_attachment, params)
  req.send_request(options)
end

#create_vpc_attachment(params = {}) ⇒ Types::CreateVpcAttachmentResponse

Creates a VPC attachment on an edge location of a core network.

Examples:

Request syntax with placeholder values


resp = client.create_vpc_attachment({
  core_network_id: "CoreNetworkId", # required
  vpc_arn: "VpcArn", # required
  subnet_arns: ["SubnetArn"], # required
  options: {
    ipv_6_support: false,
    appliance_mode_support: false,
    dns_support: false,
    security_group_referencing_support: false,
  },
  routing_policy_label: "ConstrainedString",
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
  client_token: "ClientToken",
})

Response structure


resp.vpc_attachment.attachment.core_network_id #=> String
resp.vpc_attachment.attachment.core_network_arn #=> String
resp.vpc_attachment.attachment.attachment_id #=> String
resp.vpc_attachment.attachment. #=> String
resp.vpc_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.vpc_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.vpc_attachment.attachment.edge_location #=> String
resp.vpc_attachment.attachment.edge_locations #=> Array
resp.vpc_attachment.attachment.edge_locations[0] #=> String
resp.vpc_attachment.attachment.resource_arn #=> String
resp.vpc_attachment.attachment.attachment_policy_rule_number #=> Integer
resp.vpc_attachment.attachment.segment_name #=> String
resp.vpc_attachment.attachment.network_function_group_name #=> String
resp.vpc_attachment.attachment.tags #=> Array
resp.vpc_attachment.attachment.tags[0].key #=> String
resp.vpc_attachment.attachment.tags[0].value #=> String
resp.vpc_attachment.attachment.proposed_segment_change.tags #=> Array
resp.vpc_attachment.attachment.proposed_segment_change.tags[0].key #=> String
resp.vpc_attachment.attachment.proposed_segment_change.tags[0].value #=> String
resp.vpc_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.vpc_attachment.attachment.proposed_segment_change.segment_name #=> String
resp.vpc_attachment.attachment.proposed_network_function_group_change.tags #=> Array
resp.vpc_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.vpc_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.vpc_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.vpc_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.vpc_attachment.attachment.created_at #=> Time
resp.vpc_attachment.attachment.updated_at #=> Time
resp.vpc_attachment.attachment.last_modification_errors #=> Array
resp.vpc_attachment.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.vpc_attachment.attachment.last_modification_errors[0].message #=> String
resp.vpc_attachment.attachment.last_modification_errors[0].resource_arn #=> String
resp.vpc_attachment.attachment.last_modification_errors[0].request_id #=> String
resp.vpc_attachment.subnet_arns #=> Array
resp.vpc_attachment.subnet_arns[0] #=> String
resp.vpc_attachment.options.ipv_6_support #=> Boolean
resp.vpc_attachment.options.appliance_mode_support #=> Boolean
resp.vpc_attachment.options.dns_support #=> Boolean
resp.vpc_attachment.options.security_group_referencing_support #=> Boolean

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network for the VPC attachment.

  • :vpc_arn (required, String)

    The ARN of the VPC.

  • :subnet_arns (required, Array<String>)

    The subnet ARN of the VPC attachment.

  • :options (Types::VpcOptions)

    Options for the VPC attachment.

  • :routing_policy_label (String)

    The routing policy label to apply to the VPC attachment for traffic routing decisions.

  • :tags (Array<Types::Tag>)

    The key-value tags associated with the request.

  • :client_token (String)

    The client token associated with the request.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

Returns:

See Also:



1887
1888
1889
1890
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1887

def create_vpc_attachment(params = {}, options = {})
  req = build_request(:create_vpc_attachment, params)
  req.send_request(options)
end

#delete_attachment(params = {}) ⇒ Types::DeleteAttachmentResponse

Deletes an attachment. Supports all attachment types.

Examples:

Request syntax with placeholder values


resp = client.delete_attachment({
  attachment_id: "AttachmentId", # required
})

Response structure


resp.attachment.core_network_id #=> String
resp.attachment.core_network_arn #=> String
resp.attachment.attachment_id #=> String
resp.attachment. #=> String
resp.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.attachment.edge_location #=> String
resp.attachment.edge_locations #=> Array
resp.attachment.edge_locations[0] #=> String
resp.attachment.resource_arn #=> String
resp.attachment.attachment_policy_rule_number #=> Integer
resp.attachment.segment_name #=> String
resp.attachment.network_function_group_name #=> String
resp.attachment.tags #=> Array
resp.attachment.tags[0].key #=> String
resp.attachment.tags[0].value #=> String
resp.attachment.proposed_segment_change.tags #=> Array
resp.attachment.proposed_segment_change.tags[0].key #=> String
resp.attachment.proposed_segment_change.tags[0].value #=> String
resp.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.attachment.proposed_segment_change.segment_name #=> String
resp.attachment.proposed_network_function_group_change.tags #=> Array
resp.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.attachment.created_at #=> Time
resp.attachment.updated_at #=> Time
resp.attachment.last_modification_errors #=> Array
resp.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.attachment.last_modification_errors[0].message #=> String
resp.attachment.last_modification_errors[0].resource_arn #=> String
resp.attachment.last_modification_errors[0].request_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :attachment_id (required, String)

    The ID of the attachment to delete.

Returns:

See Also:



1947
1948
1949
1950
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1947

def delete_attachment(params = {}, options = {})
  req = build_request(:delete_attachment, params)
  req.send_request(options)
end

#delete_connect_peer(params = {}) ⇒ Types::DeleteConnectPeerResponse

Deletes a Connect peer.

Examples:

Request syntax with placeholder values


resp = client.delete_connect_peer({
  connect_peer_id: "ConnectPeerId", # required
})

Response structure


resp.connect_peer.core_network_id #=> String
resp.connect_peer.connect_attachment_id #=> String
resp.connect_peer.connect_peer_id #=> String
resp.connect_peer.edge_location #=> String
resp.connect_peer.state #=> String, one of "CREATING", "FAILED", "AVAILABLE", "DELETING"
resp.connect_peer.created_at #=> Time
resp.connect_peer.configuration.core_network_address #=> String
resp.connect_peer.configuration.peer_address #=> String
resp.connect_peer.configuration.inside_cidr_blocks #=> Array
resp.connect_peer.configuration.inside_cidr_blocks[0] #=> String
resp.connect_peer.configuration.protocol #=> String, one of "GRE", "NO_ENCAP"
resp.connect_peer.configuration.bgp_configurations #=> Array
resp.connect_peer.configuration.bgp_configurations[0].core_network_asn #=> Integer
resp.connect_peer.configuration.bgp_configurations[0].peer_asn #=> Integer
resp.connect_peer.configuration.bgp_configurations[0].core_network_address #=> String
resp.connect_peer.configuration.bgp_configurations[0].peer_address #=> String
resp.connect_peer.tags #=> Array
resp.connect_peer.tags[0].key #=> String
resp.connect_peer.tags[0].value #=> String
resp.connect_peer.subnet_arn #=> String
resp.connect_peer.last_modification_errors #=> Array
resp.connect_peer.last_modification_errors[0].code #=> String, one of "EDGE_LOCATION_NO_FREE_IPS", "EDGE_LOCATION_PEER_DUPLICATE", "SUBNET_NOT_FOUND", "IP_OUTSIDE_SUBNET_CIDR_RANGE", "INVALID_INSIDE_CIDR_BLOCK", "NO_ASSOCIATED_CIDR_BLOCK"
resp.connect_peer.last_modification_errors[0].message #=> String
resp.connect_peer.last_modification_errors[0].resource_arn #=> String
resp.connect_peer.last_modification_errors[0].request_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :connect_peer_id (required, String)

    The ID of the deleted Connect peer.

Returns:

See Also:



1999
2000
2001
2002
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 1999

def delete_connect_peer(params = {}, options = {})
  req = build_request(:delete_connect_peer, params)
  req.send_request(options)
end

#delete_connection(params = {}) ⇒ Types::DeleteConnectionResponse

Deletes the specified connection in your global network.

Examples:

Request syntax with placeholder values


resp = client.delete_connection({
  global_network_id: "GlobalNetworkId", # required
  connection_id: "ConnectionId", # required
})

Response structure


resp.connection.connection_id #=> String
resp.connection.connection_arn #=> String
resp.connection.global_network_id #=> String
resp.connection.device_id #=> String
resp.connection.connected_device_id #=> String
resp.connection.link_id #=> String
resp.connection.connected_link_id #=> String
resp.connection.description #=> String
resp.connection.created_at #=> Time
resp.connection.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.connection.tags #=> Array
resp.connection.tags[0].key #=> String
resp.connection.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :connection_id (required, String)

    The ID of the connection.

Returns:

See Also:



2043
2044
2045
2046
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2043

def delete_connection(params = {}, options = {})
  req = build_request(:delete_connection, params)
  req.send_request(options)
end

#delete_core_network(params = {}) ⇒ Types::DeleteCoreNetworkResponse

Deletes a core network along with all core network policies. This can only be done if there are no attachments on a core network.

Examples:

Request syntax with placeholder values


resp = client.delete_core_network({
  core_network_id: "CoreNetworkId", # required
})

Response structure


resp.core_network.global_network_id #=> String
resp.core_network.core_network_id #=> String
resp.core_network.core_network_arn #=> String
resp.core_network.description #=> String
resp.core_network.created_at #=> Time
resp.core_network.state #=> String, one of "CREATING", "UPDATING", "AVAILABLE", "DELETING"
resp.core_network.segments #=> Array
resp.core_network.segments[0].name #=> String
resp.core_network.segments[0].edge_locations #=> Array
resp.core_network.segments[0].edge_locations[0] #=> String
resp.core_network.segments[0].shared_segments #=> Array
resp.core_network.segments[0].shared_segments[0] #=> String
resp.core_network.network_function_groups #=> Array
resp.core_network.network_function_groups[0].name #=> String
resp.core_network.network_function_groups[0].edge_locations #=> Array
resp.core_network.network_function_groups[0].edge_locations[0] #=> String
resp.core_network.network_function_groups[0].segments.send_via #=> Array
resp.core_network.network_function_groups[0].segments.send_via[0] #=> String
resp.core_network.network_function_groups[0].segments.send_to #=> Array
resp.core_network.network_function_groups[0].segments.send_to[0] #=> String
resp.core_network.edges #=> Array
resp.core_network.edges[0].edge_location #=> String
resp.core_network.edges[0].asn #=> Integer
resp.core_network.edges[0].inside_cidr_blocks #=> Array
resp.core_network.edges[0].inside_cidr_blocks[0] #=> String
resp.core_network.tags #=> Array
resp.core_network.tags[0].key #=> String
resp.core_network.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The network ID of the deleted core network.

Returns:

See Also:



2099
2100
2101
2102
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2099

def delete_core_network(params = {}, options = {})
  req = build_request(:delete_core_network, params)
  req.send_request(options)
end

#delete_core_network_policy_version(params = {}) ⇒ Types::DeleteCoreNetworkPolicyVersionResponse

Deletes a policy version from a core network. You can't delete the current LIVE policy.

Examples:

Request syntax with placeholder values


resp = client.delete_core_network_policy_version({
  core_network_id: "CoreNetworkId", # required
  policy_version_id: 1, # required
})

Response structure


resp.core_network_policy.core_network_id #=> String
resp.core_network_policy.policy_version_id #=> Integer
resp.core_network_policy.alias #=> String, one of "LIVE", "LATEST"
resp.core_network_policy.description #=> String
resp.core_network_policy.created_at #=> Time
resp.core_network_policy.change_set_state #=> String, one of "PENDING_GENERATION", "FAILED_GENERATION", "READY_TO_EXECUTE", "EXECUTING", "EXECUTION_SUCCEEDED", "OUT_OF_DATE"
resp.core_network_policy.policy_errors #=> Array
resp.core_network_policy.policy_errors[0].error_code #=> String
resp.core_network_policy.policy_errors[0].message #=> String
resp.core_network_policy.policy_errors[0].path #=> String
resp.core_network_policy.policy_document #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network for the deleted policy.

  • :policy_version_id (required, Integer)

    The version ID of the deleted policy.

Returns:

See Also:



2142
2143
2144
2145
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2142

def delete_core_network_policy_version(params = {}, options = {})
  req = build_request(:delete_core_network_policy_version, params)
  req.send_request(options)
end

#delete_core_network_prefix_list_association(params = {}) ⇒ Types::DeleteCoreNetworkPrefixListAssociationResponse

Deletes an association between a core network and a prefix list.

Examples:

Request syntax with placeholder values


resp = client.delete_core_network_prefix_list_association({
  core_network_id: "CoreNetworkId", # required
  prefix_list_arn: "PrefixListArn", # required
})

Response structure


resp.core_network_id #=> String
resp.prefix_list_arn #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of the core network from which to delete the prefix list association.

  • :prefix_list_arn (required, String)

    The ARN of the prefix list to disassociate from the core network.

Returns:

See Also:



2177
2178
2179
2180
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2177

def delete_core_network_prefix_list_association(params = {}, options = {})
  req = build_request(:delete_core_network_prefix_list_association, params)
  req.send_request(options)
end

#delete_device(params = {}) ⇒ Types::DeleteDeviceResponse

Deletes an existing device. You must first disassociate the device from any links and customer gateways.

Examples:

Request syntax with placeholder values


resp = client.delete_device({
  global_network_id: "GlobalNetworkId", # required
  device_id: "DeviceId", # required
})

Response structure


resp.device.device_id #=> String
resp.device.device_arn #=> String
resp.device.global_network_id #=> String
resp.device.aws_location.zone #=> String
resp.device.aws_location.subnet_arn #=> String
resp.device.description #=> String
resp.device.type #=> String
resp.device.vendor #=> String
resp.device.model #=> String
resp.device.serial_number #=> String
resp.device.location.address #=> String
resp.device.location.latitude #=> String
resp.device.location.longitude #=> String
resp.device.site_id #=> String
resp.device.created_at #=> Time
resp.device.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.device.tags #=> Array
resp.device.tags[0].key #=> String
resp.device.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :device_id (required, String)

    The ID of the device.

Returns:

See Also:



2228
2229
2230
2231
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2228

def delete_device(params = {}, options = {})
  req = build_request(:delete_device, params)
  req.send_request(options)
end

#delete_global_network(params = {}) ⇒ Types::DeleteGlobalNetworkResponse

Deletes an existing global network. You must first delete all global network objects (devices, links, and sites), deregister all transit gateways, and delete any core networks.

Examples:

Request syntax with placeholder values


resp = client.delete_global_network({
  global_network_id: "GlobalNetworkId", # required
})

Response structure


resp.global_network.global_network_id #=> String
resp.global_network.global_network_arn #=> String
resp.global_network.description #=> String
resp.global_network.created_at #=> Time
resp.global_network.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.global_network.tags #=> Array
resp.global_network.tags[0].key #=> String
resp.global_network.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

Returns:

See Also:



2265
2266
2267
2268
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2265

def delete_global_network(params = {}, options = {})
  req = build_request(:delete_global_network, params)
  req.send_request(options)
end

Deletes an existing link. You must first disassociate the link from any devices and customer gateways.

Examples:

Request syntax with placeholder values


resp = client.delete_link({
  global_network_id: "GlobalNetworkId", # required
  link_id: "LinkId", # required
})

Response structure


resp.link.link_id #=> String
resp.link.link_arn #=> String
resp.link.global_network_id #=> String
resp.link.site_id #=> String
resp.link.description #=> String
resp.link.type #=> String
resp.link.bandwidth.upload_speed #=> Integer
resp.link.bandwidth.download_speed #=> Integer
resp.link.provider #=> String
resp.link.created_at #=> Time
resp.link.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.link.tags #=> Array
resp.link.tags[0].key #=> String
resp.link.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :link_id (required, String)

    The ID of the link.

Returns:

See Also:



2311
2312
2313
2314
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2311

def delete_link(params = {}, options = {})
  req = build_request(:delete_link, params)
  req.send_request(options)
end

#delete_peering(params = {}) ⇒ Types::DeletePeeringResponse

Deletes an existing peering connection.

Examples:

Request syntax with placeholder values


resp = client.delete_peering({
  peering_id: "PeeringId", # required
})

Response structure


resp.peering.core_network_id #=> String
resp.peering.core_network_arn #=> String
resp.peering.peering_id #=> String
resp.peering. #=> String
resp.peering.peering_type #=> String, one of "TRANSIT_GATEWAY"
resp.peering.state #=> String, one of "CREATING", "FAILED", "AVAILABLE", "DELETING"
resp.peering.edge_location #=> String
resp.peering.resource_arn #=> String
resp.peering.tags #=> Array
resp.peering.tags[0].key #=> String
resp.peering.tags[0].value #=> String
resp.peering.created_at #=> Time
resp.peering.last_modification_errors #=> Array
resp.peering.last_modification_errors[0].code #=> String, one of "TRANSIT_GATEWAY_NOT_FOUND", "TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED", "MISSING_PERMISSIONS", "INTERNAL_ERROR", "EDGE_LOCATION_PEER_DUPLICATE", "INVALID_TRANSIT_GATEWAY_STATE"
resp.peering.last_modification_errors[0].message #=> String
resp.peering.last_modification_errors[0].resource_arn #=> String
resp.peering.last_modification_errors[0].request_id #=> String
resp.peering.last_modification_errors[0].missing_permissions_context.missing_permission #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :peering_id (required, String)

    The ID of the peering connection to delete.

Returns:

See Also:



2356
2357
2358
2359
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2356

def delete_peering(params = {}, options = {})
  req = build_request(:delete_peering, params)
  req.send_request(options)
end

#delete_resource_policy(params = {}) ⇒ Struct

Deletes a resource policy for the specified resource. This revokes the access of the principals specified in the resource policy.

Examples:

Request syntax with placeholder values


resp = client.delete_resource_policy({
  resource_arn: "ResourceArn", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The ARN of the policy to delete.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



2379
2380
2381
2382
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2379

def delete_resource_policy(params = {}, options = {})
  req = build_request(:delete_resource_policy, params)
  req.send_request(options)
end

#delete_site(params = {}) ⇒ Types::DeleteSiteResponse

Deletes an existing site. The site cannot be associated with any device or link.

Examples:

Request syntax with placeholder values


resp = client.delete_site({
  global_network_id: "GlobalNetworkId", # required
  site_id: "SiteId", # required
})

Response structure


resp.site.site_id #=> String
resp.site.site_arn #=> String
resp.site.global_network_id #=> String
resp.site.description #=> String
resp.site.location.address #=> String
resp.site.location.latitude #=> String
resp.site.location.longitude #=> String
resp.site.created_at #=> Time
resp.site.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.site.tags #=> Array
resp.site.tags[0].key #=> String
resp.site.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :site_id (required, String)

    The ID of the site.

Returns:

See Also:



2423
2424
2425
2426
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2423

def delete_site(params = {}, options = {})
  req = build_request(:delete_site, params)
  req.send_request(options)
end

#deregister_transit_gateway(params = {}) ⇒ Types::DeregisterTransitGatewayResponse

Deregisters a transit gateway from your global network. This action does not delete your transit gateway, or modify any of its attachments. This action removes any customer gateway associations.

Examples:

Request syntax with placeholder values


resp = client.deregister_transit_gateway({
  global_network_id: "GlobalNetworkId", # required
  transit_gateway_arn: "TransitGatewayArn", # required
})

Response structure


resp.transit_gateway_registration.global_network_id #=> String
resp.transit_gateway_registration.transit_gateway_arn #=> String
resp.transit_gateway_registration.state.code #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED", "FAILED"
resp.transit_gateway_registration.state.message #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :transit_gateway_arn (required, String)

    The Amazon Resource Name (ARN) of the transit gateway.

Returns:

See Also:



2460
2461
2462
2463
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2460

def deregister_transit_gateway(params = {}, options = {})
  req = build_request(:deregister_transit_gateway, params)
  req.send_request(options)
end

#describe_global_networks(params = {}) ⇒ Types::DescribeGlobalNetworksResponse

Describes one or more global networks. By default, all global networks are described. To describe the objects in your global network, you must use the appropriate Get* action. For example, to list the transit gateways in your global network, use GetTransitGatewayRegistrations.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.describe_global_networks({
  global_network_ids: ["GlobalNetworkId"],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.global_networks #=> Array
resp.global_networks[0].global_network_id #=> String
resp.global_networks[0].global_network_arn #=> String
resp.global_networks[0].description #=> String
resp.global_networks[0].created_at #=> Time
resp.global_networks[0].state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.global_networks[0].tags #=> Array
resp.global_networks[0].tags[0].key #=> String
resp.global_networks[0].tags[0].value #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_ids (Array<String>)

    The IDs of one or more global networks. The maximum is 10.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



2512
2513
2514
2515
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2512

def describe_global_networks(params = {}, options = {})
  req = build_request(:describe_global_networks, params)
  req.send_request(options)
end

#disassociate_connect_peer(params = {}) ⇒ Types::DisassociateConnectPeerResponse

Disassociates a core network Connect peer from a device and a link.

Examples:

Request syntax with placeholder values


resp = client.disassociate_connect_peer({
  global_network_id: "GlobalNetworkId", # required
  connect_peer_id: "ConnectPeerId", # required
})

Response structure


resp.connect_peer_association.connect_peer_id #=> String
resp.connect_peer_association.global_network_id #=> String
resp.connect_peer_association.device_id #=> String
resp.connect_peer_association.link_id #=> String
resp.connect_peer_association.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :connect_peer_id (required, String)

    The ID of the Connect peer to disassociate from a device.

Returns:

See Also:



2548
2549
2550
2551
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2548

def disassociate_connect_peer(params = {}, options = {})
  req = build_request(:disassociate_connect_peer, params)
  req.send_request(options)
end

#disassociate_customer_gateway(params = {}) ⇒ Types::DisassociateCustomerGatewayResponse

Disassociates a customer gateway from a device and a link.

Examples:

Request syntax with placeholder values


resp = client.disassociate_customer_gateway({
  global_network_id: "GlobalNetworkId", # required
  customer_gateway_arn: "CustomerGatewayArn", # required
})

Response structure


resp.customer_gateway_association.customer_gateway_arn #=> String
resp.customer_gateway_association.global_network_id #=> String
resp.customer_gateway_association.device_id #=> String
resp.customer_gateway_association.link_id #=> String
resp.customer_gateway_association.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :customer_gateway_arn (required, String)

    The Amazon Resource Name (ARN) of the customer gateway.

Returns:

See Also:



2584
2585
2586
2587
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2584

def disassociate_customer_gateway(params = {}, options = {})
  req = build_request(:disassociate_customer_gateway, params)
  req.send_request(options)
end

Disassociates an existing device from a link. You must first disassociate any customer gateways that are associated with the link.

Examples:

Request syntax with placeholder values


resp = client.disassociate_link({
  global_network_id: "GlobalNetworkId", # required
  device_id: "DeviceId", # required
  link_id: "LinkId", # required
})

Response structure


resp.link_association.global_network_id #=> String
resp.link_association.device_id #=> String
resp.link_association.link_id #=> String
resp.link_association.link_association_state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :device_id (required, String)

    The ID of the device.

  • :link_id (required, String)

    The ID of the link.

Returns:

See Also:



2624
2625
2626
2627
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2624

def disassociate_link(params = {}, options = {})
  req = build_request(:disassociate_link, params)
  req.send_request(options)
end

#disassociate_transit_gateway_connect_peer(params = {}) ⇒ Types::DisassociateTransitGatewayConnectPeerResponse

Disassociates a transit gateway Connect peer from a device and link.

Examples:

Request syntax with placeholder values


resp = client.disassociate_transit_gateway_connect_peer({
  global_network_id: "GlobalNetworkId", # required
  transit_gateway_connect_peer_arn: "TransitGatewayConnectPeerArn", # required
})

Response structure


resp.transit_gateway_connect_peer_association.transit_gateway_connect_peer_arn #=> String
resp.transit_gateway_connect_peer_association.global_network_id #=> String
resp.transit_gateway_connect_peer_association.device_id #=> String
resp.transit_gateway_connect_peer_association.link_id #=> String
resp.transit_gateway_connect_peer_association.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :transit_gateway_connect_peer_arn (required, String)

    The Amazon Resource Name (ARN) of the transit gateway Connect peer.

Returns:

See Also:



2660
2661
2662
2663
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2660

def disassociate_transit_gateway_connect_peer(params = {}, options = {})
  req = build_request(:disassociate_transit_gateway_connect_peer, params)
  req.send_request(options)
end

#execute_core_network_change_set(params = {}) ⇒ Struct

Executes a change set on your core network. Deploys changes globally based on the policy submitted..

Examples:

Request syntax with placeholder values


resp = client.execute_core_network_change_set({
  core_network_id: "CoreNetworkId", # required
  policy_version_id: 1, # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network.

  • :policy_version_id (required, Integer)

    The ID of the policy version.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



2687
2688
2689
2690
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2687

def execute_core_network_change_set(params = {}, options = {})
  req = build_request(:execute_core_network_change_set, params)
  req.send_request(options)
end

#get_connect_attachment(params = {}) ⇒ Types::GetConnectAttachmentResponse

Returns information about a core network Connect attachment.

Examples:

Request syntax with placeholder values


resp = client.get_connect_attachment({
  attachment_id: "AttachmentId", # required
})

Response structure


resp.connect_attachment.attachment.core_network_id #=> String
resp.connect_attachment.attachment.core_network_arn #=> String
resp.connect_attachment.attachment.attachment_id #=> String
resp.connect_attachment.attachment. #=> String
resp.connect_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.connect_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.connect_attachment.attachment.edge_location #=> String
resp.connect_attachment.attachment.edge_locations #=> Array
resp.connect_attachment.attachment.edge_locations[0] #=> String
resp.connect_attachment.attachment.resource_arn #=> String
resp.connect_attachment.attachment.attachment_policy_rule_number #=> Integer
resp.connect_attachment.attachment.segment_name #=> String
resp.connect_attachment.attachment.network_function_group_name #=> String
resp.connect_attachment.attachment.tags #=> Array
resp.connect_attachment.attachment.tags[0].key #=> String
resp.connect_attachment.attachment.tags[0].value #=> String
resp.connect_attachment.attachment.proposed_segment_change.tags #=> Array
resp.connect_attachment.attachment.proposed_segment_change.tags[0].key #=> String
resp.connect_attachment.attachment.proposed_segment_change.tags[0].value #=> String
resp.connect_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.connect_attachment.attachment.proposed_segment_change.segment_name #=> String
resp.connect_attachment.attachment.proposed_network_function_group_change.tags #=> Array
resp.connect_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.connect_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.connect_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.connect_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.connect_attachment.attachment.created_at #=> Time
resp.connect_attachment.attachment.updated_at #=> Time
resp.connect_attachment.attachment.last_modification_errors #=> Array
resp.connect_attachment.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.connect_attachment.attachment.last_modification_errors[0].message #=> String
resp.connect_attachment.attachment.last_modification_errors[0].resource_arn #=> String
resp.connect_attachment.attachment.last_modification_errors[0].request_id #=> String
resp.connect_attachment.transport_attachment_id #=> String
resp.connect_attachment.options.protocol #=> String, one of "GRE", "NO_ENCAP"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :attachment_id (required, String)

    The ID of the attachment.

Returns:

See Also:



2749
2750
2751
2752
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2749

def get_connect_attachment(params = {}, options = {})
  req = build_request(:get_connect_attachment, params)
  req.send_request(options)
end

#get_connect_peer(params = {}) ⇒ Types::GetConnectPeerResponse

Returns information about a core network Connect peer.

Examples:

Request syntax with placeholder values


resp = client.get_connect_peer({
  connect_peer_id: "ConnectPeerId", # required
})

Response structure


resp.connect_peer.core_network_id #=> String
resp.connect_peer.connect_attachment_id #=> String
resp.connect_peer.connect_peer_id #=> String
resp.connect_peer.edge_location #=> String
resp.connect_peer.state #=> String, one of "CREATING", "FAILED", "AVAILABLE", "DELETING"
resp.connect_peer.created_at #=> Time
resp.connect_peer.configuration.core_network_address #=> String
resp.connect_peer.configuration.peer_address #=> String
resp.connect_peer.configuration.inside_cidr_blocks #=> Array
resp.connect_peer.configuration.inside_cidr_blocks[0] #=> String
resp.connect_peer.configuration.protocol #=> String, one of "GRE", "NO_ENCAP"
resp.connect_peer.configuration.bgp_configurations #=> Array
resp.connect_peer.configuration.bgp_configurations[0].core_network_asn #=> Integer
resp.connect_peer.configuration.bgp_configurations[0].peer_asn #=> Integer
resp.connect_peer.configuration.bgp_configurations[0].core_network_address #=> String
resp.connect_peer.configuration.bgp_configurations[0].peer_address #=> String
resp.connect_peer.tags #=> Array
resp.connect_peer.tags[0].key #=> String
resp.connect_peer.tags[0].value #=> String
resp.connect_peer.subnet_arn #=> String
resp.connect_peer.last_modification_errors #=> Array
resp.connect_peer.last_modification_errors[0].code #=> String, one of "EDGE_LOCATION_NO_FREE_IPS", "EDGE_LOCATION_PEER_DUPLICATE", "SUBNET_NOT_FOUND", "IP_OUTSIDE_SUBNET_CIDR_RANGE", "INVALID_INSIDE_CIDR_BLOCK", "NO_ASSOCIATED_CIDR_BLOCK"
resp.connect_peer.last_modification_errors[0].message #=> String
resp.connect_peer.last_modification_errors[0].resource_arn #=> String
resp.connect_peer.last_modification_errors[0].request_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :connect_peer_id (required, String)

    The ID of the Connect peer.

Returns:

See Also:



2801
2802
2803
2804
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2801

def get_connect_peer(params = {}, options = {})
  req = build_request(:get_connect_peer, params)
  req.send_request(options)
end

#get_connect_peer_associations(params = {}) ⇒ Types::GetConnectPeerAssociationsResponse

Returns information about a core network Connect peer associations.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_connect_peer_associations({
  global_network_id: "GlobalNetworkId", # required
  connect_peer_ids: ["ConnectPeerId"],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.connect_peer_associations #=> Array
resp.connect_peer_associations[0].connect_peer_id #=> String
resp.connect_peer_associations[0].global_network_id #=> String
resp.connect_peer_associations[0].device_id #=> String
resp.connect_peer_associations[0].link_id #=> String
resp.connect_peer_associations[0].state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :connect_peer_ids (Array<String>)

    The IDs of the Connect peers.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



2850
2851
2852
2853
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2850

def get_connect_peer_associations(params = {}, options = {})
  req = build_request(:get_connect_peer_associations, params)
  req.send_request(options)
end

#get_connections(params = {}) ⇒ Types::GetConnectionsResponse

Gets information about one or more of your connections in a global network.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_connections({
  global_network_id: "GlobalNetworkId", # required
  connection_ids: ["ConnectionId"],
  device_id: "DeviceId",
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.connections #=> Array
resp.connections[0].connection_id #=> String
resp.connections[0].connection_arn #=> String
resp.connections[0].global_network_id #=> String
resp.connections[0].device_id #=> String
resp.connections[0].connected_device_id #=> String
resp.connections[0].link_id #=> String
resp.connections[0].connected_link_id #=> String
resp.connections[0].description #=> String
resp.connections[0].created_at #=> Time
resp.connections[0].state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.connections[0].tags #=> Array
resp.connections[0].tags[0].key #=> String
resp.connections[0].tags[0].value #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :connection_ids (Array<String>)

    One or more connection IDs.

  • :device_id (String)

    The ID of the device.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



2912
2913
2914
2915
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2912

def get_connections(params = {}, options = {})
  req = build_request(:get_connections, params)
  req.send_request(options)
end

#get_core_network(params = {}) ⇒ Types::GetCoreNetworkResponse

Returns information about the LIVE policy for a core network.

Examples:

Request syntax with placeholder values


resp = client.get_core_network({
  core_network_id: "CoreNetworkId", # required
})

Response structure


resp.core_network.global_network_id #=> String
resp.core_network.core_network_id #=> String
resp.core_network.core_network_arn #=> String
resp.core_network.description #=> String
resp.core_network.created_at #=> Time
resp.core_network.state #=> String, one of "CREATING", "UPDATING", "AVAILABLE", "DELETING"
resp.core_network.segments #=> Array
resp.core_network.segments[0].name #=> String
resp.core_network.segments[0].edge_locations #=> Array
resp.core_network.segments[0].edge_locations[0] #=> String
resp.core_network.segments[0].shared_segments #=> Array
resp.core_network.segments[0].shared_segments[0] #=> String
resp.core_network.network_function_groups #=> Array
resp.core_network.network_function_groups[0].name #=> String
resp.core_network.network_function_groups[0].edge_locations #=> Array
resp.core_network.network_function_groups[0].edge_locations[0] #=> String
resp.core_network.network_function_groups[0].segments.send_via #=> Array
resp.core_network.network_function_groups[0].segments.send_via[0] #=> String
resp.core_network.network_function_groups[0].segments.send_to #=> Array
resp.core_network.network_function_groups[0].segments.send_to[0] #=> String
resp.core_network.edges #=> Array
resp.core_network.edges[0].edge_location #=> String
resp.core_network.edges[0].asn #=> Integer
resp.core_network.edges[0].inside_cidr_blocks #=> Array
resp.core_network.edges[0].inside_cidr_blocks[0] #=> String
resp.core_network.tags #=> Array
resp.core_network.tags[0].key #=> String
resp.core_network.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network.

Returns:

See Also:



2967
2968
2969
2970
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 2967

def get_core_network(params = {}, options = {})
  req = build_request(:get_core_network, params)
  req.send_request(options)
end

#get_core_network_change_events(params = {}) ⇒ Types::GetCoreNetworkChangeEventsResponse

Returns information about a core network change event.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_core_network_change_events({
  core_network_id: "CoreNetworkId", # required
  policy_version_id: 1, # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.core_network_change_events #=> Array
resp.core_network_change_events[0].type #=> String, one of "CORE_NETWORK_SEGMENT", "NETWORK_FUNCTION_GROUP", "CORE_NETWORK_EDGE", "ATTACHMENT_MAPPING", "ATTACHMENT_ROUTE_PROPAGATION", "ATTACHMENT_ROUTE_STATIC", "ROUTING_POLICY", "ROUTING_POLICY_SEGMENT_ASSOCIATION", "ROUTING_POLICY_EDGE_ASSOCIATION", "ROUTING_POLICY_ATTACHMENT_ASSOCIATION", "CORE_NETWORK_CONFIGURATION", "SEGMENTS_CONFIGURATION", "SEGMENT_ACTIONS_CONFIGURATION", "ATTACHMENT_POLICIES_CONFIGURATION"
resp.core_network_change_events[0].action #=> String, one of "ADD", "MODIFY", "REMOVE"
resp.core_network_change_events[0].identifier_path #=> String
resp.core_network_change_events[0].event_time #=> Time
resp.core_network_change_events[0].status #=> String, one of "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "FAILED"
resp.core_network_change_events[0].values.edge_location #=> String
resp.core_network_change_events[0].values.peer_edge_location #=> String
resp.core_network_change_events[0].values.routing_policy_direction #=> String, one of "inbound", "outbound"
resp.core_network_change_events[0].values.segment_name #=> String
resp.core_network_change_events[0].values.network_function_group_name #=> String
resp.core_network_change_events[0].values.attachment_id #=> String
resp.core_network_change_events[0].values.cidr #=> String
resp.core_network_change_events[0].values.routing_policy_association_details #=> Array
resp.core_network_change_events[0].values.routing_policy_association_details[0].routing_policy_names #=> Array
resp.core_network_change_events[0].values.routing_policy_association_details[0].routing_policy_names[0] #=> String
resp.core_network_change_events[0].values.routing_policy_association_details[0].shared_segments #=> Array
resp.core_network_change_events[0].values.routing_policy_association_details[0].shared_segments[0] #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network.

  • :policy_version_id (required, Integer)

    The ID of the policy version.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



3028
3029
3030
3031
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 3028

def get_core_network_change_events(params = {}, options = {})
  req = build_request(:get_core_network_change_events, params)
  req.send_request(options)
end

#get_core_network_change_set(params = {}) ⇒ Types::GetCoreNetworkChangeSetResponse

Returns a change set between the LIVE core network policy and a submitted policy.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_core_network_change_set({
  core_network_id: "CoreNetworkId", # required
  policy_version_id: 1, # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.core_network_changes #=> Array
resp.core_network_changes[0].type #=> String, one of "CORE_NETWORK_SEGMENT", "NETWORK_FUNCTION_GROUP", "CORE_NETWORK_EDGE", "ATTACHMENT_MAPPING", "ATTACHMENT_ROUTE_PROPAGATION", "ATTACHMENT_ROUTE_STATIC", "ROUTING_POLICY", "ROUTING_POLICY_SEGMENT_ASSOCIATION", "ROUTING_POLICY_EDGE_ASSOCIATION", "ROUTING_POLICY_ATTACHMENT_ASSOCIATION", "CORE_NETWORK_CONFIGURATION", "SEGMENTS_CONFIGURATION", "SEGMENT_ACTIONS_CONFIGURATION", "ATTACHMENT_POLICIES_CONFIGURATION"
resp.core_network_changes[0].action #=> String, one of "ADD", "MODIFY", "REMOVE"
resp.core_network_changes[0].identifier #=> String
resp.core_network_changes[0].previous_values.segment_name #=> String
resp.core_network_changes[0].previous_values.network_function_group_name #=> String
resp.core_network_changes[0].previous_values.edge_locations #=> Array
resp.core_network_changes[0].previous_values.edge_locations[0] #=> String
resp.core_network_changes[0].previous_values.asn #=> Integer
resp.core_network_changes[0].previous_values.cidr #=> String
resp.core_network_changes[0].previous_values.destination_identifier #=> String
resp.core_network_changes[0].previous_values.inside_cidr_blocks #=> Array
resp.core_network_changes[0].previous_values.inside_cidr_blocks[0] #=> String
resp.core_network_changes[0].previous_values.shared_segments #=> Array
resp.core_network_changes[0].previous_values.shared_segments[0] #=> String
resp.core_network_changes[0].previous_values.service_insertion_actions #=> Array
resp.core_network_changes[0].previous_values.service_insertion_actions[0].action #=> String, one of "send-via", "send-to"
resp.core_network_changes[0].previous_values.service_insertion_actions[0].mode #=> String, one of "dual-hop", "single-hop"
resp.core_network_changes[0].previous_values.service_insertion_actions[0].when_sent_to.when_sent_to_segments_list #=> Array
resp.core_network_changes[0].previous_values.service_insertion_actions[0].when_sent_to.when_sent_to_segments_list[0] #=> String
resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.network_function_groups #=> Array
resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.network_function_groups[0].name #=> String
resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.with_edge_overrides #=> Array
resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets #=> Array
resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets[0] #=> Array
resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets[0][0] #=> String
resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.with_edge_overrides[0].use_edge #=> String
resp.core_network_changes[0].previous_values.vpn_ecmp_support #=> Boolean
resp.core_network_changes[0].previous_values.dns_support #=> Boolean
resp.core_network_changes[0].previous_values.security_group_referencing_support #=> Boolean
resp.core_network_changes[0].previous_values.routing_policy_direction #=> String, one of "inbound", "outbound"
resp.core_network_changes[0].previous_values.routing_policy #=> String
resp.core_network_changes[0].previous_values.peer_edge_locations #=> Array
resp.core_network_changes[0].previous_values.peer_edge_locations[0] #=> String
resp.core_network_changes[0].previous_values.attachment_id #=> String
resp.core_network_changes[0].previous_values.routing_policy_association_details #=> Array
resp.core_network_changes[0].previous_values.routing_policy_association_details[0].routing_policy_names #=> Array
resp.core_network_changes[0].previous_values.routing_policy_association_details[0].routing_policy_names[0] #=> String
resp.core_network_changes[0].previous_values.routing_policy_association_details[0].shared_segments #=> Array
resp.core_network_changes[0].previous_values.routing_policy_association_details[0].shared_segments[0] #=> String
resp.core_network_changes[0].new_values.segment_name #=> String
resp.core_network_changes[0].new_values.network_function_group_name #=> String
resp.core_network_changes[0].new_values.edge_locations #=> Array
resp.core_network_changes[0].new_values.edge_locations[0] #=> String
resp.core_network_changes[0].new_values.asn #=> Integer
resp.core_network_changes[0].new_values.cidr #=> String
resp.core_network_changes[0].new_values.destination_identifier #=> String
resp.core_network_changes[0].new_values.inside_cidr_blocks #=> Array
resp.core_network_changes[0].new_values.inside_cidr_blocks[0] #=> String
resp.core_network_changes[0].new_values.shared_segments #=> Array
resp.core_network_changes[0].new_values.shared_segments[0] #=> String
resp.core_network_changes[0].new_values.service_insertion_actions #=> Array
resp.core_network_changes[0].new_values.service_insertion_actions[0].action #=> String, one of "send-via", "send-to"
resp.core_network_changes[0].new_values.service_insertion_actions[0].mode #=> String, one of "dual-hop", "single-hop"
resp.core_network_changes[0].new_values.service_insertion_actions[0].when_sent_to.when_sent_to_segments_list #=> Array
resp.core_network_changes[0].new_values.service_insertion_actions[0].when_sent_to.when_sent_to_segments_list[0] #=> String
resp.core_network_changes[0].new_values.service_insertion_actions[0].via.network_function_groups #=> Array
resp.core_network_changes[0].new_values.service_insertion_actions[0].via.network_function_groups[0].name #=> String
resp.core_network_changes[0].new_values.service_insertion_actions[0].via.with_edge_overrides #=> Array
resp.core_network_changes[0].new_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets #=> Array
resp.core_network_changes[0].new_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets[0] #=> Array
resp.core_network_changes[0].new_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets[0][0] #=> String
resp.core_network_changes[0].new_values.service_insertion_actions[0].via.with_edge_overrides[0].use_edge #=> String
resp.core_network_changes[0].new_values.vpn_ecmp_support #=> Boolean
resp.core_network_changes[0].new_values.dns_support #=> Boolean
resp.core_network_changes[0].new_values.security_group_referencing_support #=> Boolean
resp.core_network_changes[0].new_values.routing_policy_direction #=> String, one of "inbound", "outbound"
resp.core_network_changes[0].new_values.routing_policy #=> String
resp.core_network_changes[0].new_values.peer_edge_locations #=> Array
resp.core_network_changes[0].new_values.peer_edge_locations[0] #=> String
resp.core_network_changes[0].new_values.attachment_id #=> String
resp.core_network_changes[0].new_values.routing_policy_association_details #=> Array
resp.core_network_changes[0].new_values.routing_policy_association_details[0].routing_policy_names #=> Array
resp.core_network_changes[0].new_values.routing_policy_association_details[0].routing_policy_names[0] #=> String
resp.core_network_changes[0].new_values.routing_policy_association_details[0].shared_segments #=> Array
resp.core_network_changes[0].new_values.routing_policy_association_details[0].shared_segments[0] #=> String
resp.core_network_changes[0].identifier_path #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network.

  • :policy_version_id (required, Integer)

    The ID of the policy version.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



3149
3150
3151
3152
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 3149

def get_core_network_change_set(params = {}, options = {})
  req = build_request(:get_core_network_change_set, params)
  req.send_request(options)
end

#get_core_network_policy(params = {}) ⇒ Types::GetCoreNetworkPolicyResponse

Returns details about a core network policy. You can get details about your current live policy or any previous policy version.

Examples:

Request syntax with placeholder values


resp = client.get_core_network_policy({
  core_network_id: "CoreNetworkId", # required
  policy_version_id: 1,
  alias: "LIVE", # accepts LIVE, LATEST
})

Response structure


resp.core_network_policy.core_network_id #=> String
resp.core_network_policy.policy_version_id #=> Integer
resp.core_network_policy.alias #=> String, one of "LIVE", "LATEST"
resp.core_network_policy.description #=> String
resp.core_network_policy.created_at #=> Time
resp.core_network_policy.change_set_state #=> String, one of "PENDING_GENERATION", "FAILED_GENERATION", "READY_TO_EXECUTE", "EXECUTING", "EXECUTION_SUCCEEDED", "OUT_OF_DATE"
resp.core_network_policy.policy_errors #=> Array
resp.core_network_policy.policy_errors[0].error_code #=> String
resp.core_network_policy.policy_errors[0].message #=> String
resp.core_network_policy.policy_errors[0].path #=> String
resp.core_network_policy.policy_document #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network.

  • :policy_version_id (Integer)

    The ID of a core network policy version.

  • :alias (String)

    The alias of a core network policy

Returns:

See Also:



3196
3197
3198
3199
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 3196

def get_core_network_policy(params = {}, options = {})
  req = build_request(:get_core_network_policy, params)
  req.send_request(options)
end

#get_customer_gateway_associations(params = {}) ⇒ Types::GetCustomerGatewayAssociationsResponse

Gets the association information for customer gateways that are associated with devices and links in your global network.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_customer_gateway_associations({
  global_network_id: "GlobalNetworkId", # required
  customer_gateway_arns: ["CustomerGatewayArn"],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.customer_gateway_associations #=> Array
resp.customer_gateway_associations[0].customer_gateway_arn #=> String
resp.customer_gateway_associations[0].global_network_id #=> String
resp.customer_gateway_associations[0].device_id #=> String
resp.customer_gateway_associations[0].link_id #=> String
resp.customer_gateway_associations[0].state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :customer_gateway_arns (Array<String>)

    One or more customer gateway Amazon Resource Names (ARNs). The maximum is 10.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



3247
3248
3249
3250
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 3247

def get_customer_gateway_associations(params = {}, options = {})
  req = build_request(:get_customer_gateway_associations, params)
  req.send_request(options)
end

#get_devices(params = {}) ⇒ Types::GetDevicesResponse

Gets information about one or more of your devices in a global network.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_devices({
  global_network_id: "GlobalNetworkId", # required
  device_ids: ["DeviceId"],
  site_id: "SiteId",
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.devices #=> Array
resp.devices[0].device_id #=> String
resp.devices[0].device_arn #=> String
resp.devices[0].global_network_id #=> String
resp.devices[0].aws_location.zone #=> String
resp.devices[0].aws_location.subnet_arn #=> String
resp.devices[0].description #=> String
resp.devices[0].type #=> String
resp.devices[0].vendor #=> String
resp.devices[0].model #=> String
resp.devices[0].serial_number #=> String
resp.devices[0].location.address #=> String
resp.devices[0].location.latitude #=> String
resp.devices[0].location.longitude #=> String
resp.devices[0].site_id #=> String
resp.devices[0].created_at #=> Time
resp.devices[0].state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.devices[0].tags #=> Array
resp.devices[0].tags[0].key #=> String
resp.devices[0].tags[0].value #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :device_ids (Array<String>)

    One or more device IDs. The maximum is 10.

  • :site_id (String)

    The ID of the site.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



3315
3316
3317
3318
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 3315

def get_devices(params = {}, options = {})
  req = build_request(:get_devices, params)
  req.send_request(options)
end

#get_direct_connect_gateway_attachment(params = {}) ⇒ Types::GetDirectConnectGatewayAttachmentResponse

Returns information about a specific Amazon Web Services Direct Connect gateway attachment.

Examples:

Request syntax with placeholder values


resp = client.get_direct_connect_gateway_attachment({
  attachment_id: "AttachmentId", # required
})

Response structure


resp.direct_connect_gateway_attachment.attachment.core_network_id #=> String
resp.direct_connect_gateway_attachment.attachment.core_network_arn #=> String
resp.direct_connect_gateway_attachment.attachment.attachment_id #=> String
resp.direct_connect_gateway_attachment.attachment. #=> String
resp.direct_connect_gateway_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.direct_connect_gateway_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.direct_connect_gateway_attachment.attachment.edge_location #=> String
resp.direct_connect_gateway_attachment.attachment.edge_locations #=> Array
resp.direct_connect_gateway_attachment.attachment.edge_locations[0] #=> String
resp.direct_connect_gateway_attachment.attachment.resource_arn #=> String
resp.direct_connect_gateway_attachment.attachment.attachment_policy_rule_number #=> Integer
resp.direct_connect_gateway_attachment.attachment.segment_name #=> String
resp.direct_connect_gateway_attachment.attachment.network_function_group_name #=> String
resp.direct_connect_gateway_attachment.attachment.tags #=> Array
resp.direct_connect_gateway_attachment.attachment.tags[0].key #=> String
resp.direct_connect_gateway_attachment.attachment.tags[0].value #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.tags #=> Array
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.tags[0].key #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.tags[0].value #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.segment_name #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.tags #=> Array
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.direct_connect_gateway_attachment.attachment.created_at #=> Time
resp.direct_connect_gateway_attachment.attachment.updated_at #=> Time
resp.direct_connect_gateway_attachment.attachment.last_modification_errors #=> Array
resp.direct_connect_gateway_attachment.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.direct_connect_gateway_attachment.attachment.last_modification_errors[0].message #=> String
resp.direct_connect_gateway_attachment.attachment.last_modification_errors[0].resource_arn #=> String
resp.direct_connect_gateway_attachment.attachment.last_modification_errors[0].request_id #=> String
resp.direct_connect_gateway_attachment.direct_connect_gateway_arn #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :attachment_id (required, String)

    The ID of the Direct Connect gateway attachment that you want to see details about.

Returns:

See Also:



3378
3379
3380
3381
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 3378

def get_direct_connect_gateway_attachment(params = {}, options = {})
  req = build_request(:get_direct_connect_gateway_attachment, params)
  req.send_request(options)
end

Gets the link associations for a device or a link. Either the device ID or the link ID must be specified.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_link_associations({
  global_network_id: "GlobalNetworkId", # required
  device_id: "DeviceId",
  link_id: "LinkId",
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.link_associations #=> Array
resp.link_associations[0].global_network_id #=> String
resp.link_associations[0].device_id #=> String
resp.link_associations[0].link_id #=> String
resp.link_associations[0].link_association_state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :device_id (String)

    The ID of the device.

  • :link_id (String)

    The ID of the link.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



3431
3432
3433
3434
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 3431

def get_link_associations(params = {}, options = {})
  req = build_request(:get_link_associations, params)
  req.send_request(options)
end

Gets information about one or more links in a specified global network.

If you specify the site ID, you cannot specify the type or provider in the same request. You can specify the type and provider in the same request.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_links({
  global_network_id: "GlobalNetworkId", # required
  link_ids: ["LinkId"],
  site_id: "SiteId",
  type: "ConstrainedString",
  provider: "ConstrainedString",
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.links #=> Array
resp.links[0].link_id #=> String
resp.links[0].link_arn #=> String
resp.links[0].global_network_id #=> String
resp.links[0].site_id #=> String
resp.links[0].description #=> String
resp.links[0].type #=> String
resp.links[0].bandwidth.upload_speed #=> Integer
resp.links[0].bandwidth.download_speed #=> Integer
resp.links[0].provider #=> String
resp.links[0].created_at #=> Time
resp.links[0].state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.links[0].tags #=> Array
resp.links[0].tags[0].key #=> String
resp.links[0].tags[0].value #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :link_ids (Array<String>)

    One or more link IDs. The maximum is 10.

  • :site_id (String)

    The ID of the site.

  • :type (String)

    The link type.

  • :provider (String)

    The link provider.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



3506
3507
3508
3509
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 3506

def get_links(params = {}, options = {})
  req = build_request(:get_links, params)
  req.send_request(options)
end

#get_network_resource_counts(params = {}) ⇒ Types::GetNetworkResourceCountsResponse

Gets the count of network resources, by resource type, for the specified global network.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_network_resource_counts({
  global_network_id: "GlobalNetworkId", # required
  resource_type: "ConstrainedString",
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.network_resource_counts #=> Array
resp.network_resource_counts[0].resource_type #=> String
resp.network_resource_counts[0].count #=> Integer
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :resource_type (String)

    The resource type.

    The following are the supported resource types for Direct Connect:

    • dxcon

    • dx-gateway

    • dx-vif

    The following are the supported resource types for Network Manager:

    • attachment

    • connect-peer

    • connection

    • core-network

    • device

    • link

    • peering

    • site

    The following are the supported resource types for Amazon VPC:

    • customer-gateway

    • transit-gateway

    • transit-gateway-attachment

    • transit-gateway-connect-peer

    • transit-gateway-route-table

    • vpn-connection

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



3593
3594
3595
3596
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 3593

def get_network_resource_counts(params = {}, options = {})
  req = build_request(:get_network_resource_counts, params)
  req.send_request(options)
end

#get_network_resource_relationships(params = {}) ⇒ Types::GetNetworkResourceRelationshipsResponse

Gets the network resource relationships for the specified global network.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_network_resource_relationships({
  global_network_id: "GlobalNetworkId", # required
  core_network_id: "CoreNetworkId",
  registered_gateway_arn: "ResourceArn",
  aws_region: "ExternalRegionCode",
  account_id: "AWSAccountId",
  resource_type: "ConstrainedString",
  resource_arn: "ResourceArn",
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.relationships #=> Array
resp.relationships[0].from #=> String
resp.relationships[0].to #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :core_network_id (String)

    The ID of a core network.

  • :registered_gateway_arn (String)

    The ARN of the registered gateway.

  • :aws_region (String)

    The Amazon Web Services Region.

  • :account_id (String)

    The Amazon Web Services account ID.

  • :resource_type (String)

    The resource type.

    The following are the supported resource types for Direct Connect:

    • dxcon

    • dx-gateway

    • dx-vif

    The following are the supported resource types for Network Manager:

    • attachment

    • connect-peer

    • connection

    • core-network

    • device

    • link

    • peering

    • site

    The following are the supported resource types for Amazon VPC:

    • customer-gateway

    • transit-gateway

    • transit-gateway-attachment

    • transit-gateway-connect-peer

    • transit-gateway-route-table

    • vpn-connection

  • :resource_arn (String)

    The ARN of the gateway.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



3700
3701
3702
3703
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 3700

def get_network_resource_relationships(params = {}, options = {})
  req = build_request(:get_network_resource_relationships, params)
  req.send_request(options)
end

#get_network_resources(params = {}) ⇒ Types::GetNetworkResourcesResponse

Describes the network resources for the specified global network.

The results include information from the corresponding Describe call for the resource, minus any sensitive information such as pre-shared keys.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_network_resources({
  global_network_id: "GlobalNetworkId", # required
  core_network_id: "CoreNetworkId",
  registered_gateway_arn: "ResourceArn",
  aws_region: "ExternalRegionCode",
  account_id: "AWSAccountId",
  resource_type: "ConstrainedString",
  resource_arn: "ResourceArn",
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.network_resources #=> Array
resp.network_resources[0].registered_gateway_arn #=> String
resp.network_resources[0].core_network_id #=> String
resp.network_resources[0].aws_region #=> String
resp.network_resources[0]. #=> String
resp.network_resources[0].resource_type #=> String
resp.network_resources[0].resource_id #=> String
resp.network_resources[0].resource_arn #=> String
resp.network_resources[0].definition #=> String
resp.network_resources[0].definition_timestamp #=> Time
resp.network_resources[0].tags #=> Array
resp.network_resources[0].tags[0].key #=> String
resp.network_resources[0].tags[0].value #=> String
resp.network_resources[0]. #=> Hash
resp.network_resources[0].["ConstrainedString"] #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :core_network_id (String)

    The ID of a core network.

  • :registered_gateway_arn (String)

    The ARN of the gateway.

  • :aws_region (String)

    The Amazon Web Services Region.

  • :account_id (String)

    The Amazon Web Services account ID.

  • :resource_type (String)

    The resource type.

    The following are the supported resource types for Direct Connect:

    • dxcon

    • dx-gateway

    • dx-vif

    The following are the supported resource types for Network Manager:

    • attachment

    • connect-peer

    • connection

    • core-network

    • device

    • link

    • peering

    • site

    The following are the supported resource types for Amazon VPC:

    • customer-gateway

    • transit-gateway

    • transit-gateway-attachment

    • transit-gateway-connect-peer

    • transit-gateway-route-table

    • vpn-connection

  • :resource_arn (String)

    The ARN of the resource.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



3822
3823
3824
3825
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 3822

def get_network_resources(params = {}, options = {})
  req = build_request(:get_network_resources, params)
  req.send_request(options)
end

#get_network_routes(params = {}) ⇒ Types::GetNetworkRoutesResponse

Gets the network routes of the specified global network.

Examples:

Request syntax with placeholder values


resp = client.get_network_routes({
  global_network_id: "GlobalNetworkId", # required
  route_table_identifier: { # required
    transit_gateway_route_table_arn: "TransitGatewayRouteTableArn",
    core_network_segment_edge: {
      core_network_id: "CoreNetworkId",
      segment_name: "ConstrainedString",
      edge_location: "ExternalRegionCode",
    },
    core_network_network_function_group: {
      core_network_id: "CoreNetworkId",
      network_function_group_name: "ConstrainedString",
      edge_location: "ExternalRegionCode",
    },
  },
  exact_cidr_matches: ["ConstrainedString"],
  longest_prefix_matches: ["ConstrainedString"],
  subnet_of_matches: ["ConstrainedString"],
  supernet_of_matches: ["ConstrainedString"],
  prefix_list_ids: ["ConstrainedString"],
  states: ["ACTIVE"], # accepts ACTIVE, BLACKHOLE
  types: ["PROPAGATED"], # accepts PROPAGATED, STATIC
  destination_filters: {
    "FilterName" => ["FilterValue"],
  },
})

Response structure


resp.route_table_arn #=> String
resp.core_network_segment_edge.core_network_id #=> String
resp.core_network_segment_edge.segment_name #=> String
resp.core_network_segment_edge.edge_location #=> String
resp.route_table_type #=> String, one of "TRANSIT_GATEWAY_ROUTE_TABLE", "CORE_NETWORK_SEGMENT", "NETWORK_FUNCTION_GROUP"
resp.route_table_timestamp #=> Time
resp.network_routes #=> Array
resp.network_routes[0].destination_cidr_block #=> String
resp.network_routes[0].destinations #=> Array
resp.network_routes[0].destinations[0].core_network_attachment_id #=> String
resp.network_routes[0].destinations[0].transit_gateway_attachment_id #=> String
resp.network_routes[0].destinations[0].segment_name #=> String
resp.network_routes[0].destinations[0].network_function_group_name #=> String
resp.network_routes[0].destinations[0].edge_location #=> String
resp.network_routes[0].destinations[0].resource_type #=> String
resp.network_routes[0].destinations[0].resource_id #=> String
resp.network_routes[0].prefix_list_id #=> String
resp.network_routes[0].state #=> String, one of "ACTIVE", "BLACKHOLE"
resp.network_routes[0].type #=> String, one of "PROPAGATED", "STATIC"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :route_table_identifier (required, Types::RouteTableIdentifier)

    The ID of the route table.

  • :exact_cidr_matches (Array<String>)

    An exact CIDR block.

  • :longest_prefix_matches (Array<String>)

    The most specific route that matches the traffic (longest prefix match).

  • :subnet_of_matches (Array<String>)

    The routes with a subnet that match the specified CIDR filter.

  • :supernet_of_matches (Array<String>)

    The routes with a CIDR that encompasses the CIDR filter. Example: If you specify 10.0.1.0/30, then the result returns 10.0.1.0/29.

  • :prefix_list_ids (Array<String>)

    The IDs of the prefix lists.

  • :states (Array<String>)

    The route states.

  • :types (Array<String>)

    The route types.

  • :destination_filters (Hash<String,Array>)

    Filter by route table destination. Possible Values: TRANSIT_GATEWAY_ATTACHMENT_ID, RESOURCE_ID, or RESOURCE_TYPE.

Returns:

See Also:



3925
3926
3927
3928
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 3925

def get_network_routes(params = {}, options = {})
  req = build_request(:get_network_routes, params)
  req.send_request(options)
end

#get_network_telemetry(params = {}) ⇒ Types::GetNetworkTelemetryResponse

Gets the network telemetry of the specified global network.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_network_telemetry({
  global_network_id: "GlobalNetworkId", # required
  core_network_id: "CoreNetworkId",
  registered_gateway_arn: "ResourceArn",
  aws_region: "ExternalRegionCode",
  account_id: "AWSAccountId",
  resource_type: "ConstrainedString",
  resource_arn: "ResourceArn",
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.network_telemetry #=> Array
resp.network_telemetry[0].registered_gateway_arn #=> String
resp.network_telemetry[0].core_network_id #=> String
resp.network_telemetry[0].aws_region #=> String
resp.network_telemetry[0]. #=> String
resp.network_telemetry[0].resource_type #=> String
resp.network_telemetry[0].resource_id #=> String
resp.network_telemetry[0].resource_arn #=> String
resp.network_telemetry[0].address #=> String
resp.network_telemetry[0].health.type #=> String, one of "BGP", "IPSEC"
resp.network_telemetry[0].health.status #=> String, one of "UP", "DOWN"
resp.network_telemetry[0].health.timestamp #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :core_network_id (String)

    The ID of a core network.

  • :registered_gateway_arn (String)

    The ARN of the gateway.

  • :aws_region (String)

    The Amazon Web Services Region.

  • :account_id (String)

    The Amazon Web Services account ID.

  • :resource_type (String)

    The resource type. The following are the supported resource types:

    • connect-peer

    • transit-gateway-connect-peer

    • vpn-connection

  • :resource_arn (String)

    The ARN of the resource.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



4006
4007
4008
4009
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4006

def get_network_telemetry(params = {}, options = {})
  req = build_request(:get_network_telemetry, params)
  req.send_request(options)
end

#get_resource_policy(params = {}) ⇒ Types::GetResourcePolicyResponse

Returns information about a resource policy.

Examples:

Request syntax with placeholder values


resp = client.get_resource_policy({
  resource_arn: "ResourceArn", # required
})

Response structure


resp.policy_document #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The ARN of the resource.

Returns:

See Also:



4034
4035
4036
4037
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4034

def get_resource_policy(params = {}, options = {})
  req = build_request(:get_resource_policy, params)
  req.send_request(options)
end

#get_route_analysis(params = {}) ⇒ Types::GetRouteAnalysisResponse

Gets information about the specified route analysis.

Examples:

Request syntax with placeholder values


resp = client.get_route_analysis({
  global_network_id: "GlobalNetworkId", # required
  route_analysis_id: "ConstrainedString", # required
})

Response structure


resp.route_analysis.global_network_id #=> String
resp.route_analysis. #=> String
resp.route_analysis.route_analysis_id #=> String
resp.route_analysis.start_timestamp #=> Time
resp.route_analysis.status #=> String, one of "RUNNING", "COMPLETED", "FAILED"
resp.route_analysis.source.transit_gateway_attachment_arn #=> String
resp.route_analysis.source.transit_gateway_arn #=> String
resp.route_analysis.source.ip_address #=> String
resp.route_analysis.destination.transit_gateway_attachment_arn #=> String
resp.route_analysis.destination.transit_gateway_arn #=> String
resp.route_analysis.destination.ip_address #=> String
resp.route_analysis.include_return_path #=> Boolean
resp.route_analysis.use_middleboxes #=> Boolean
resp.route_analysis.forward_path.completion_status.result_code #=> String, one of "CONNECTED", "NOT_CONNECTED"
resp.route_analysis.forward_path.completion_status.reason_code #=> String, one of "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND", "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY", "CYCLIC_PATH_DETECTED", "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND", "ROUTE_NOT_FOUND", "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND", "INACTIVE_ROUTE_FOR_DESTINATION_FOUND", "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH", "MAX_HOPS_EXCEEDED", "POSSIBLE_MIDDLEBOX", "NO_DESTINATION_ARN_PROVIDED"
resp.route_analysis.forward_path.completion_status.reason_context #=> Hash
resp.route_analysis.forward_path.completion_status.reason_context["ReasonContextKey"] #=> String
resp.route_analysis.forward_path.path #=> Array
resp.route_analysis.forward_path.path[0].sequence #=> Integer
resp.route_analysis.forward_path.path[0].resource.registered_gateway_arn #=> String
resp.route_analysis.forward_path.path[0].resource.resource_arn #=> String
resp.route_analysis.forward_path.path[0].resource.resource_type #=> String
resp.route_analysis.forward_path.path[0].resource.definition #=> String
resp.route_analysis.forward_path.path[0].resource.name_tag #=> String
resp.route_analysis.forward_path.path[0].resource.is_middlebox #=> Boolean
resp.route_analysis.forward_path.path[0].destination_cidr_block #=> String
resp.route_analysis.return_path.completion_status.result_code #=> String, one of "CONNECTED", "NOT_CONNECTED"
resp.route_analysis.return_path.completion_status.reason_code #=> String, one of "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND", "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY", "CYCLIC_PATH_DETECTED", "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND", "ROUTE_NOT_FOUND", "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND", "INACTIVE_ROUTE_FOR_DESTINATION_FOUND", "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH", "MAX_HOPS_EXCEEDED", "POSSIBLE_MIDDLEBOX", "NO_DESTINATION_ARN_PROVIDED"
resp.route_analysis.return_path.completion_status.reason_context #=> Hash
resp.route_analysis.return_path.completion_status.reason_context["ReasonContextKey"] #=> String
resp.route_analysis.return_path.path #=> Array
resp.route_analysis.return_path.path[0].sequence #=> Integer
resp.route_analysis.return_path.path[0].resource.registered_gateway_arn #=> String
resp.route_analysis.return_path.path[0].resource.resource_arn #=> String
resp.route_analysis.return_path.path[0].resource.resource_type #=> String
resp.route_analysis.return_path.path[0].resource.definition #=> String
resp.route_analysis.return_path.path[0].resource.name_tag #=> String
resp.route_analysis.return_path.path[0].resource.is_middlebox #=> Boolean
resp.route_analysis.return_path.path[0].destination_cidr_block #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :route_analysis_id (required, String)

    The ID of the route analysis.

Returns:

See Also:



4104
4105
4106
4107
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4104

def get_route_analysis(params = {}, options = {})
  req = build_request(:get_route_analysis, params)
  req.send_request(options)
end

#get_site_to_site_vpn_attachment(params = {}) ⇒ Types::GetSiteToSiteVpnAttachmentResponse

Returns information about a site-to-site VPN attachment.

Examples:

Request syntax with placeholder values


resp = client.get_site_to_site_vpn_attachment({
  attachment_id: "AttachmentId", # required
})

Response structure


resp.site_to_site_vpn_attachment.attachment.core_network_id #=> String
resp.site_to_site_vpn_attachment.attachment.core_network_arn #=> String
resp.site_to_site_vpn_attachment.attachment.attachment_id #=> String
resp.site_to_site_vpn_attachment.attachment. #=> String
resp.site_to_site_vpn_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.site_to_site_vpn_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.site_to_site_vpn_attachment.attachment.edge_location #=> String
resp.site_to_site_vpn_attachment.attachment.edge_locations #=> Array
resp.site_to_site_vpn_attachment.attachment.edge_locations[0] #=> String
resp.site_to_site_vpn_attachment.attachment.resource_arn #=> String
resp.site_to_site_vpn_attachment.attachment.attachment_policy_rule_number #=> Integer
resp.site_to_site_vpn_attachment.attachment.segment_name #=> String
resp.site_to_site_vpn_attachment.attachment.network_function_group_name #=> String
resp.site_to_site_vpn_attachment.attachment.tags #=> Array
resp.site_to_site_vpn_attachment.attachment.tags[0].key #=> String
resp.site_to_site_vpn_attachment.attachment.tags[0].value #=> String
resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.tags #=> Array
resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.tags[0].key #=> String
resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.tags[0].value #=> String
resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.site_to_site_vpn_attachment.attachment.proposed_segment_change.segment_name #=> String
resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.tags #=> Array
resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.site_to_site_vpn_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.site_to_site_vpn_attachment.attachment.created_at #=> Time
resp.site_to_site_vpn_attachment.attachment.updated_at #=> Time
resp.site_to_site_vpn_attachment.attachment.last_modification_errors #=> Array
resp.site_to_site_vpn_attachment.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.site_to_site_vpn_attachment.attachment.last_modification_errors[0].message #=> String
resp.site_to_site_vpn_attachment.attachment.last_modification_errors[0].resource_arn #=> String
resp.site_to_site_vpn_attachment.attachment.last_modification_errors[0].request_id #=> String
resp.site_to_site_vpn_attachment.vpn_connection_arn #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :attachment_id (required, String)

    The ID of the attachment.

Returns:

See Also:



4165
4166
4167
4168
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4165

def get_site_to_site_vpn_attachment(params = {}, options = {})
  req = build_request(:get_site_to_site_vpn_attachment, params)
  req.send_request(options)
end

#get_sites(params = {}) ⇒ Types::GetSitesResponse

Gets information about one or more of your sites in a global network.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_sites({
  global_network_id: "GlobalNetworkId", # required
  site_ids: ["SiteId"],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.sites #=> Array
resp.sites[0].site_id #=> String
resp.sites[0].site_arn #=> String
resp.sites[0].global_network_id #=> String
resp.sites[0].description #=> String
resp.sites[0].location.address #=> String
resp.sites[0].location.latitude #=> String
resp.sites[0].location.longitude #=> String
resp.sites[0].created_at #=> Time
resp.sites[0].state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.sites[0].tags #=> Array
resp.sites[0].tags[0].key #=> String
resp.sites[0].tags[0].value #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :site_ids (Array<String>)

    One or more site IDs. The maximum is 10.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



4221
4222
4223
4224
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4221

def get_sites(params = {}, options = {})
  req = build_request(:get_sites, params)
  req.send_request(options)
end

#get_transit_gateway_connect_peer_associations(params = {}) ⇒ Types::GetTransitGatewayConnectPeerAssociationsResponse

Gets information about one or more of your transit gateway Connect peer associations in a global network.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_transit_gateway_connect_peer_associations({
  global_network_id: "GlobalNetworkId", # required
  transit_gateway_connect_peer_arns: ["TransitGatewayConnectPeerArn"],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.transit_gateway_connect_peer_associations #=> Array
resp.transit_gateway_connect_peer_associations[0].transit_gateway_connect_peer_arn #=> String
resp.transit_gateway_connect_peer_associations[0].global_network_id #=> String
resp.transit_gateway_connect_peer_associations[0].device_id #=> String
resp.transit_gateway_connect_peer_associations[0].link_id #=> String
resp.transit_gateway_connect_peer_associations[0].state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :transit_gateway_connect_peer_arns (Array<String>)

    One or more transit gateway Connect peer Amazon Resource Names (ARNs).

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



4271
4272
4273
4274
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4271

def get_transit_gateway_connect_peer_associations(params = {}, options = {})
  req = build_request(:get_transit_gateway_connect_peer_associations, params)
  req.send_request(options)
end

#get_transit_gateway_peering(params = {}) ⇒ Types::GetTransitGatewayPeeringResponse

Returns information about a transit gateway peer.

Examples:

Request syntax with placeholder values


resp = client.get_transit_gateway_peering({
  peering_id: "PeeringId", # required
})

Response structure


resp.transit_gateway_peering.peering.core_network_id #=> String
resp.transit_gateway_peering.peering.core_network_arn #=> String
resp.transit_gateway_peering.peering.peering_id #=> String
resp.transit_gateway_peering.peering. #=> String
resp.transit_gateway_peering.peering.peering_type #=> String, one of "TRANSIT_GATEWAY"
resp.transit_gateway_peering.peering.state #=> String, one of "CREATING", "FAILED", "AVAILABLE", "DELETING"
resp.transit_gateway_peering.peering.edge_location #=> String
resp.transit_gateway_peering.peering.resource_arn #=> String
resp.transit_gateway_peering.peering.tags #=> Array
resp.transit_gateway_peering.peering.tags[0].key #=> String
resp.transit_gateway_peering.peering.tags[0].value #=> String
resp.transit_gateway_peering.peering.created_at #=> Time
resp.transit_gateway_peering.peering.last_modification_errors #=> Array
resp.transit_gateway_peering.peering.last_modification_errors[0].code #=> String, one of "TRANSIT_GATEWAY_NOT_FOUND", "TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED", "MISSING_PERMISSIONS", "INTERNAL_ERROR", "EDGE_LOCATION_PEER_DUPLICATE", "INVALID_TRANSIT_GATEWAY_STATE"
resp.transit_gateway_peering.peering.last_modification_errors[0].message #=> String
resp.transit_gateway_peering.peering.last_modification_errors[0].resource_arn #=> String
resp.transit_gateway_peering.peering.last_modification_errors[0].request_id #=> String
resp.transit_gateway_peering.peering.last_modification_errors[0].missing_permissions_context.missing_permission #=> String
resp.transit_gateway_peering.transit_gateway_arn #=> String
resp.transit_gateway_peering.transit_gateway_peering_attachment_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :peering_id (required, String)

    The ID of the peering request.

Returns:

See Also:



4318
4319
4320
4321
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4318

def get_transit_gateway_peering(params = {}, options = {})
  req = build_request(:get_transit_gateway_peering, params)
  req.send_request(options)
end

#get_transit_gateway_registrations(params = {}) ⇒ Types::GetTransitGatewayRegistrationsResponse

Gets information about the transit gateway registrations in a specified global network.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_transit_gateway_registrations({
  global_network_id: "GlobalNetworkId", # required
  transit_gateway_arns: ["TransitGatewayArn"],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.transit_gateway_registrations #=> Array
resp.transit_gateway_registrations[0].global_network_id #=> String
resp.transit_gateway_registrations[0].transit_gateway_arn #=> String
resp.transit_gateway_registrations[0].state.code #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED", "FAILED"
resp.transit_gateway_registrations[0].state.message #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :transit_gateway_arns (Array<String>)

    The Amazon Resource Names (ARNs) of one or more transit gateways. The maximum is 10.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



4368
4369
4370
4371
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4368

def get_transit_gateway_registrations(params = {}, options = {})
  req = build_request(:get_transit_gateway_registrations, params)
  req.send_request(options)
end

#get_transit_gateway_route_table_attachment(params = {}) ⇒ Types::GetTransitGatewayRouteTableAttachmentResponse

Returns information about a transit gateway route table attachment.

Examples:

Request syntax with placeholder values


resp = client.get_transit_gateway_route_table_attachment({
  attachment_id: "AttachmentId", # required
})

Response structure


resp.transit_gateway_route_table_attachment.attachment.core_network_id #=> String
resp.transit_gateway_route_table_attachment.attachment.core_network_arn #=> String
resp.transit_gateway_route_table_attachment.attachment.attachment_id #=> String
resp.transit_gateway_route_table_attachment.attachment. #=> String
resp.transit_gateway_route_table_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.transit_gateway_route_table_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.transit_gateway_route_table_attachment.attachment.edge_location #=> String
resp.transit_gateway_route_table_attachment.attachment.edge_locations #=> Array
resp.transit_gateway_route_table_attachment.attachment.edge_locations[0] #=> String
resp.transit_gateway_route_table_attachment.attachment.resource_arn #=> String
resp.transit_gateway_route_table_attachment.attachment.attachment_policy_rule_number #=> Integer
resp.transit_gateway_route_table_attachment.attachment.segment_name #=> String
resp.transit_gateway_route_table_attachment.attachment.network_function_group_name #=> String
resp.transit_gateway_route_table_attachment.attachment.tags #=> Array
resp.transit_gateway_route_table_attachment.attachment.tags[0].key #=> String
resp.transit_gateway_route_table_attachment.attachment.tags[0].value #=> String
resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags #=> Array
resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags[0].key #=> String
resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags[0].value #=> String
resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.segment_name #=> String
resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.tags #=> Array
resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.transit_gateway_route_table_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.transit_gateway_route_table_attachment.attachment.created_at #=> Time
resp.transit_gateway_route_table_attachment.attachment.updated_at #=> Time
resp.transit_gateway_route_table_attachment.attachment.last_modification_errors #=> Array
resp.transit_gateway_route_table_attachment.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.transit_gateway_route_table_attachment.attachment.last_modification_errors[0].message #=> String
resp.transit_gateway_route_table_attachment.attachment.last_modification_errors[0].resource_arn #=> String
resp.transit_gateway_route_table_attachment.attachment.last_modification_errors[0].request_id #=> String
resp.transit_gateway_route_table_attachment.peering_id #=> String
resp.transit_gateway_route_table_attachment.transit_gateway_route_table_arn #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :attachment_id (required, String)

    The ID of the transit gateway route table attachment.

Returns:

See Also:



4430
4431
4432
4433
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4430

def get_transit_gateway_route_table_attachment(params = {}, options = {})
  req = build_request(:get_transit_gateway_route_table_attachment, params)
  req.send_request(options)
end

#get_vpc_attachment(params = {}) ⇒ Types::GetVpcAttachmentResponse

Returns information about a VPC attachment.

Examples:

Request syntax with placeholder values


resp = client.get_vpc_attachment({
  attachment_id: "AttachmentId", # required
})

Response structure


resp.vpc_attachment.attachment.core_network_id #=> String
resp.vpc_attachment.attachment.core_network_arn #=> String
resp.vpc_attachment.attachment.attachment_id #=> String
resp.vpc_attachment.attachment. #=> String
resp.vpc_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.vpc_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.vpc_attachment.attachment.edge_location #=> String
resp.vpc_attachment.attachment.edge_locations #=> Array
resp.vpc_attachment.attachment.edge_locations[0] #=> String
resp.vpc_attachment.attachment.resource_arn #=> String
resp.vpc_attachment.attachment.attachment_policy_rule_number #=> Integer
resp.vpc_attachment.attachment.segment_name #=> String
resp.vpc_attachment.attachment.network_function_group_name #=> String
resp.vpc_attachment.attachment.tags #=> Array
resp.vpc_attachment.attachment.tags[0].key #=> String
resp.vpc_attachment.attachment.tags[0].value #=> String
resp.vpc_attachment.attachment.proposed_segment_change.tags #=> Array
resp.vpc_attachment.attachment.proposed_segment_change.tags[0].key #=> String
resp.vpc_attachment.attachment.proposed_segment_change.tags[0].value #=> String
resp.vpc_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.vpc_attachment.attachment.proposed_segment_change.segment_name #=> String
resp.vpc_attachment.attachment.proposed_network_function_group_change.tags #=> Array
resp.vpc_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.vpc_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.vpc_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.vpc_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.vpc_attachment.attachment.created_at #=> Time
resp.vpc_attachment.attachment.updated_at #=> Time
resp.vpc_attachment.attachment.last_modification_errors #=> Array
resp.vpc_attachment.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.vpc_attachment.attachment.last_modification_errors[0].message #=> String
resp.vpc_attachment.attachment.last_modification_errors[0].resource_arn #=> String
resp.vpc_attachment.attachment.last_modification_errors[0].request_id #=> String
resp.vpc_attachment.subnet_arns #=> Array
resp.vpc_attachment.subnet_arns[0] #=> String
resp.vpc_attachment.options.ipv_6_support #=> Boolean
resp.vpc_attachment.options.appliance_mode_support #=> Boolean
resp.vpc_attachment.options.dns_support #=> Boolean
resp.vpc_attachment.options.security_group_referencing_support #=> Boolean

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :attachment_id (required, String)

    The ID of the attachment.

Returns:

See Also:



4496
4497
4498
4499
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4496

def get_vpc_attachment(params = {}, options = {})
  req = build_request(:get_vpc_attachment, params)
  req.send_request(options)
end

#list_attachment_routing_policy_associations(params = {}) ⇒ Types::ListAttachmentRoutingPolicyAssociationsResponse

Lists the routing policy associations for attachments in a core network.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_attachment_routing_policy_associations({
  core_network_id: "CoreNetworkId", # required
  attachment_id: "AttachmentId",
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.attachment_routing_policy_associations #=> Array
resp.attachment_routing_policy_associations[0].attachment_id #=> String
resp.attachment_routing_policy_associations[0].pending_routing_policies #=> Array
resp.attachment_routing_policy_associations[0].pending_routing_policies[0] #=> String
resp.attachment_routing_policy_associations[0].associated_routing_policies #=> Array
resp.attachment_routing_policy_associations[0].associated_routing_policies[0] #=> String
resp.attachment_routing_policy_associations[0].routing_policy_label #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of the core network to list attachment routing policy associations for.

  • :attachment_id (String)

    The ID of a specific attachment to filter the routing policy associations.

  • :max_results (Integer)

    The maximum number of results to return in a single page.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



4549
4550
4551
4552
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4549

def list_attachment_routing_policy_associations(params = {}, options = {})
  req = build_request(:list_attachment_routing_policy_associations, params)
  req.send_request(options)
end

#list_attachments(params = {}) ⇒ Types::ListAttachmentsResponse

Returns a list of core network attachments.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_attachments({
  core_network_id: "CoreNetworkId",
  attachment_type: "CONNECT", # accepts CONNECT, SITE_TO_SITE_VPN, VPC, DIRECT_CONNECT_GATEWAY, TRANSIT_GATEWAY_ROUTE_TABLE
  edge_location: "ExternalRegionCode",
  state: "REJECTED", # accepts REJECTED, PENDING_ATTACHMENT_ACCEPTANCE, CREATING, FAILED, AVAILABLE, UPDATING, PENDING_NETWORK_UPDATE, PENDING_TAG_ACCEPTANCE, DELETING
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.attachments #=> Array
resp.attachments[0].core_network_id #=> String
resp.attachments[0].core_network_arn #=> String
resp.attachments[0].attachment_id #=> String
resp.attachments[0]. #=> String
resp.attachments[0].attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.attachments[0].state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.attachments[0].edge_location #=> String
resp.attachments[0].edge_locations #=> Array
resp.attachments[0].edge_locations[0] #=> String
resp.attachments[0].resource_arn #=> String
resp.attachments[0].attachment_policy_rule_number #=> Integer
resp.attachments[0].segment_name #=> String
resp.attachments[0].network_function_group_name #=> String
resp.attachments[0].tags #=> Array
resp.attachments[0].tags[0].key #=> String
resp.attachments[0].tags[0].value #=> String
resp.attachments[0].proposed_segment_change.tags #=> Array
resp.attachments[0].proposed_segment_change.tags[0].key #=> String
resp.attachments[0].proposed_segment_change.tags[0].value #=> String
resp.attachments[0].proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.attachments[0].proposed_segment_change.segment_name #=> String
resp.attachments[0].proposed_network_function_group_change.tags #=> Array
resp.attachments[0].proposed_network_function_group_change.tags[0].key #=> String
resp.attachments[0].proposed_network_function_group_change.tags[0].value #=> String
resp.attachments[0].proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.attachments[0].proposed_network_function_group_change.network_function_group_name #=> String
resp.attachments[0].created_at #=> Time
resp.attachments[0].updated_at #=> Time
resp.attachments[0].last_modification_errors #=> Array
resp.attachments[0].last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.attachments[0].last_modification_errors[0].message #=> String
resp.attachments[0].last_modification_errors[0].resource_arn #=> String
resp.attachments[0].last_modification_errors[0].request_id #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (String)

    The ID of a core network.

  • :attachment_type (String)

    The type of attachment.

  • :edge_location (String)

    The Region where the edge is located.

  • :state (String)

    The state of the attachment.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



4634
4635
4636
4637
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4634

def list_attachments(params = {}, options = {})
  req = build_request(:list_attachments, params)
  req.send_request(options)
end

#list_connect_peers(params = {}) ⇒ Types::ListConnectPeersResponse

Returns a list of core network Connect peers.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_connect_peers({
  core_network_id: "CoreNetworkId",
  connect_attachment_id: "AttachmentId",
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.connect_peers #=> Array
resp.connect_peers[0].core_network_id #=> String
resp.connect_peers[0].connect_attachment_id #=> String
resp.connect_peers[0].connect_peer_id #=> String
resp.connect_peers[0].edge_location #=> String
resp.connect_peers[0].connect_peer_state #=> String, one of "CREATING", "FAILED", "AVAILABLE", "DELETING"
resp.connect_peers[0].created_at #=> Time
resp.connect_peers[0].tags #=> Array
resp.connect_peers[0].tags[0].key #=> String
resp.connect_peers[0].tags[0].value #=> String
resp.connect_peers[0].subnet_arn #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (String)

    The ID of a core network.

  • :connect_attachment_id (String)

    The ID of the attachment.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



4688
4689
4690
4691
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4688

def list_connect_peers(params = {}, options = {})
  req = build_request(:list_connect_peers, params)
  req.send_request(options)
end

#list_core_network_policy_versions(params = {}) ⇒ Types::ListCoreNetworkPolicyVersionsResponse

Returns a list of core network policy versions.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_core_network_policy_versions({
  core_network_id: "CoreNetworkId", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.core_network_policy_versions #=> Array
resp.core_network_policy_versions[0].core_network_id #=> String
resp.core_network_policy_versions[0].policy_version_id #=> Integer
resp.core_network_policy_versions[0].alias #=> String, one of "LIVE", "LATEST"
resp.core_network_policy_versions[0].description #=> String
resp.core_network_policy_versions[0].created_at #=> Time
resp.core_network_policy_versions[0].change_set_state #=> String, one of "PENDING_GENERATION", "FAILED_GENERATION", "READY_TO_EXECUTE", "EXECUTING", "EXECUTION_SUCCEEDED", "OUT_OF_DATE"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



4734
4735
4736
4737
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4734

def list_core_network_policy_versions(params = {}, options = {})
  req = build_request(:list_core_network_policy_versions, params)
  req.send_request(options)
end

#list_core_network_prefix_list_associations(params = {}) ⇒ Types::ListCoreNetworkPrefixListAssociationsResponse

Lists the prefix list associations for a core network.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_core_network_prefix_list_associations({
  core_network_id: "CoreNetworkId", # required
  prefix_list_arn: "PrefixListArn",
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.prefix_list_associations #=> Array
resp.prefix_list_associations[0].core_network_id #=> String
resp.prefix_list_associations[0].prefix_list_arn #=> String
resp.prefix_list_associations[0].prefix_list_alias #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of the core network to list prefix list associations for.

  • :prefix_list_arn (String)

    The ARN of a specific prefix list to filter the associations.

  • :max_results (Integer)

    The maximum number of results to return in a single page.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



4781
4782
4783
4784
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4781

def list_core_network_prefix_list_associations(params = {}, options = {})
  req = build_request(:list_core_network_prefix_list_associations, params)
  req.send_request(options)
end

#list_core_network_routing_information(params = {}) ⇒ Types::ListCoreNetworkRoutingInformationResponse

Lists routing information for a core network, including routes and their attributes.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_core_network_routing_information({
  core_network_id: "CoreNetworkId", # required
  segment_name: "ConstrainedString", # required
  edge_location: "ExternalRegionCode", # required
  next_hop_filters: {
    "FilterName" => ["FilterValue"],
  },
  local_preference_matches: ["ConstrainedString"],
  exact_as_path_matches: ["ConstrainedString"],
  med_matches: ["ConstrainedString"],
  community_matches: ["ConstrainedString"],
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.core_network_routing_information #=> Array
resp.core_network_routing_information[0].prefix #=> String
resp.core_network_routing_information[0].next_hop.ip_address #=> String
resp.core_network_routing_information[0].next_hop.core_network_attachment_id #=> String
resp.core_network_routing_information[0].next_hop.resource_id #=> String
resp.core_network_routing_information[0].next_hop.resource_type #=> String
resp.core_network_routing_information[0].next_hop.segment_name #=> String
resp.core_network_routing_information[0].next_hop.edge_location #=> String
resp.core_network_routing_information[0].local_preference #=> String
resp.core_network_routing_information[0].med #=> String
resp.core_network_routing_information[0].as_path #=> Array
resp.core_network_routing_information[0].as_path[0] #=> String
resp.core_network_routing_information[0].communities #=> Array
resp.core_network_routing_information[0].communities[0] #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of the core network to retrieve routing information for.

  • :segment_name (required, String)

    The name of the segment to filter routing information by.

  • :edge_location (required, String)

    The edge location to filter routing information by.

  • :next_hop_filters (Hash<String,Array>)

    Filters to apply based on next hop information.

  • :local_preference_matches (Array<String>)

    Local preference values to match when filtering routing information.

  • :exact_as_path_matches (Array<String>)

    Exact AS path values to match when filtering routing information.

  • :med_matches (Array<String>)

    Multi-Exit Discriminator (MED) values to match when filtering routing information.

  • :community_matches (Array<String>)

    BGP community values to match when filtering routing information.

  • :max_results (Integer)

    The maximum number of routing information entries to return in a single page.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



4867
4868
4869
4870
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4867

def list_core_network_routing_information(params = {}, options = {})
  req = build_request(:list_core_network_routing_information, params)
  req.send_request(options)
end

#list_core_networks(params = {}) ⇒ Types::ListCoreNetworksResponse

Returns a list of owned and shared core networks.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_core_networks({
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.core_networks #=> Array
resp.core_networks[0].core_network_id #=> String
resp.core_networks[0].core_network_arn #=> String
resp.core_networks[0].global_network_id #=> String
resp.core_networks[0]. #=> String
resp.core_networks[0].state #=> String, one of "CREATING", "UPDATING", "AVAILABLE", "DELETING"
resp.core_networks[0].description #=> String
resp.core_networks[0].tags #=> Array
resp.core_networks[0].tags[0].key #=> String
resp.core_networks[0].tags[0].value #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



4912
4913
4914
4915
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4912

def list_core_networks(params = {}, options = {})
  req = build_request(:list_core_networks, params)
  req.send_request(options)
end

#list_organization_service_access_status(params = {}) ⇒ Types::ListOrganizationServiceAccessStatusResponse

Gets the status of the Service Linked Role (SLR) deployment for the accounts in a given Amazon Web Services Organization.

Examples:

Request syntax with placeholder values


resp = client.list_organization_service_access_status({
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.organization_status.organization_id #=> String
resp.organization_status.organization_aws_service_access_status #=> String
resp.organization_status.slr_deployment_status #=> String
resp.organization_status. #=> Array
resp.organization_status.[0]. #=> String
resp.organization_status.[0].slr_deployment_status #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



4952
4953
4954
4955
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 4952

def list_organization_service_access_status(params = {}, options = {})
  req = build_request(:list_organization_service_access_status, params)
  req.send_request(options)
end

#list_peerings(params = {}) ⇒ Types::ListPeeringsResponse

Lists the peerings for a core network.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_peerings({
  core_network_id: "CoreNetworkId",
  peering_type: "TRANSIT_GATEWAY", # accepts TRANSIT_GATEWAY
  edge_location: "ExternalRegionCode",
  state: "CREATING", # accepts CREATING, FAILED, AVAILABLE, DELETING
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.peerings #=> Array
resp.peerings[0].core_network_id #=> String
resp.peerings[0].core_network_arn #=> String
resp.peerings[0].peering_id #=> String
resp.peerings[0]. #=> String
resp.peerings[0].peering_type #=> String, one of "TRANSIT_GATEWAY"
resp.peerings[0].state #=> String, one of "CREATING", "FAILED", "AVAILABLE", "DELETING"
resp.peerings[0].edge_location #=> String
resp.peerings[0].resource_arn #=> String
resp.peerings[0].tags #=> Array
resp.peerings[0].tags[0].key #=> String
resp.peerings[0].tags[0].value #=> String
resp.peerings[0].created_at #=> Time
resp.peerings[0].last_modification_errors #=> Array
resp.peerings[0].last_modification_errors[0].code #=> String, one of "TRANSIT_GATEWAY_NOT_FOUND", "TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED", "MISSING_PERMISSIONS", "INTERNAL_ERROR", "EDGE_LOCATION_PEER_DUPLICATE", "INVALID_TRANSIT_GATEWAY_STATE"
resp.peerings[0].last_modification_errors[0].message #=> String
resp.peerings[0].last_modification_errors[0].resource_arn #=> String
resp.peerings[0].last_modification_errors[0].request_id #=> String
resp.peerings[0].last_modification_errors[0].missing_permissions_context.missing_permission #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (String)

    The ID of a core network.

  • :peering_type (String)

    Returns a list of a peering requests.

  • :edge_location (String)

    Returns a list edge locations for the

  • :state (String)

    Returns a list of the peering request states.

  • :max_results (Integer)

    The maximum number of results to return.

  • :next_token (String)

    The token for the next page of results.

Returns:

See Also:



5022
5023
5024
5025
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5022

def list_peerings(params = {}, options = {})
  req = build_request(:list_peerings, params)
  req.send_request(options)
end

#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResponse

Lists the tags for a specified resource.

Examples:

Request syntax with placeholder values


resp = client.list_tags_for_resource({
  resource_arn: "ResourceArn", # required
})

Response structure


resp.tag_list #=> Array
resp.tag_list[0].key #=> String
resp.tag_list[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the resource.

Returns:

See Also:



5052
5053
5054
5055
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5052

def list_tags_for_resource(params = {}, options = {})
  req = build_request(:list_tags_for_resource, params)
  req.send_request(options)
end

#put_attachment_routing_policy_label(params = {}) ⇒ Types::PutAttachmentRoutingPolicyLabelResponse

Applies a routing policy label to an attachment for traffic routing decisions.

Examples:

Request syntax with placeholder values


resp = client.put_attachment_routing_policy_label({
  core_network_id: "CoreNetworkId", # required
  attachment_id: "AttachmentId", # required
  routing_policy_label: "ConstrainedString", # required
  client_token: "ClientToken",
})

Response structure


resp.core_network_id #=> String
resp.attachment_id #=> String
resp.routing_policy_label #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of the core network containing the attachment.

  • :attachment_id (required, String)

    The ID of the attachment to apply the routing policy label to.

  • :routing_policy_label (required, String)

    The routing policy label to apply to the attachment.

  • :client_token (String)

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

Returns:

See Also:



5101
5102
5103
5104
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5101

def put_attachment_routing_policy_label(params = {}, options = {})
  req = build_request(:put_attachment_routing_policy_label, params)
  req.send_request(options)
end

#put_core_network_policy(params = {}) ⇒ Types::PutCoreNetworkPolicyResponse

Creates a new, immutable version of a core network policy. A subsequent change set is created showing the differences between the LIVE policy and the submitted policy.

Examples:

Request syntax with placeholder values


resp = client.put_core_network_policy({
  core_network_id: "CoreNetworkId", # required
  policy_document: "CoreNetworkPolicyDocument", # required
  description: "ConstrainedString",
  latest_version_id: 1,
  client_token: "ClientToken",
})

Response structure


resp.core_network_policy.core_network_id #=> String
resp.core_network_policy.policy_version_id #=> Integer
resp.core_network_policy.alias #=> String, one of "LIVE", "LATEST"
resp.core_network_policy.description #=> String
resp.core_network_policy.created_at #=> Time
resp.core_network_policy.change_set_state #=> String, one of "PENDING_GENERATION", "FAILED_GENERATION", "READY_TO_EXECUTE", "EXECUTING", "EXECUTION_SUCCEEDED", "OUT_OF_DATE"
resp.core_network_policy.policy_errors #=> Array
resp.core_network_policy.policy_errors[0].error_code #=> String
resp.core_network_policy.policy_errors[0].message #=> String
resp.core_network_policy.policy_errors[0].path #=> String
resp.core_network_policy.policy_document #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network.

  • :policy_document (required, String)

    The policy document.

    SDK automatically handles json encoding and base64 encoding for you when the required value (Hash, Array, etc.) is provided according to the description.

  • :description (String)

    a core network policy description.

  • :latest_version_id (Integer)

    The ID of a core network policy.

  • :client_token (String)

    The client token associated with the request.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

Returns:

See Also:



5164
5165
5166
5167
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5164

def put_core_network_policy(params = {}, options = {})
  req = build_request(:put_core_network_policy, params)
  req.send_request(options)
end

#put_resource_policy(params = {}) ⇒ Struct

Creates or updates a resource policy.

Examples:

Request syntax with placeholder values


resp = client.put_resource_policy({
  policy_document: "ResourcePolicyDocument", # required
  resource_arn: "ResourceArn", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :policy_document (required, String)

    The JSON resource policy document.

    SDK automatically handles json encoding and base64 encoding for you when the required value (Hash, Array, etc.) is provided according to the description.

  • :resource_arn (required, String)

    The ARN of the resource policy.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



5194
5195
5196
5197
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5194

def put_resource_policy(params = {}, options = {})
  req = build_request(:put_resource_policy, params)
  req.send_request(options)
end

#register_transit_gateway(params = {}) ⇒ Types::RegisterTransitGatewayResponse

Registers a transit gateway in your global network. Not all Regions support transit gateways for global networks. For a list of the supported Regions, see Region Availability in the Amazon Web Services Transit Gateways for Global Networks User Guide. The transit gateway can be in any of the supported Amazon Web Services Regions, but it must be owned by the same Amazon Web Services account that owns the global network. You cannot register a transit gateway in more than one global network.

Examples:

Request syntax with placeholder values


resp = client.register_transit_gateway({
  global_network_id: "GlobalNetworkId", # required
  transit_gateway_arn: "TransitGatewayArn", # required
})

Response structure


resp.transit_gateway_registration.global_network_id #=> String
resp.transit_gateway_registration.transit_gateway_arn #=> String
resp.transit_gateway_registration.state.code #=> String, one of "PENDING", "AVAILABLE", "DELETING", "DELETED", "FAILED"
resp.transit_gateway_registration.state.message #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :transit_gateway_arn (required, String)

    The Amazon Resource Name (ARN) of the transit gateway.

Returns:

See Also:



5240
5241
5242
5243
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5240

def register_transit_gateway(params = {}, options = {})
  req = build_request(:register_transit_gateway, params)
  req.send_request(options)
end

#reject_attachment(params = {}) ⇒ Types::RejectAttachmentResponse

Rejects a core network attachment request.

Examples:

Request syntax with placeholder values


resp = client.reject_attachment({
  attachment_id: "AttachmentId", # required
})

Response structure


resp.attachment.core_network_id #=> String
resp.attachment.core_network_arn #=> String
resp.attachment.attachment_id #=> String
resp.attachment. #=> String
resp.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.attachment.edge_location #=> String
resp.attachment.edge_locations #=> Array
resp.attachment.edge_locations[0] #=> String
resp.attachment.resource_arn #=> String
resp.attachment.attachment_policy_rule_number #=> Integer
resp.attachment.segment_name #=> String
resp.attachment.network_function_group_name #=> String
resp.attachment.tags #=> Array
resp.attachment.tags[0].key #=> String
resp.attachment.tags[0].value #=> String
resp.attachment.proposed_segment_change.tags #=> Array
resp.attachment.proposed_segment_change.tags[0].key #=> String
resp.attachment.proposed_segment_change.tags[0].value #=> String
resp.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.attachment.proposed_segment_change.segment_name #=> String
resp.attachment.proposed_network_function_group_change.tags #=> Array
resp.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.attachment.created_at #=> Time
resp.attachment.updated_at #=> Time
resp.attachment.last_modification_errors #=> Array
resp.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.attachment.last_modification_errors[0].message #=> String
resp.attachment.last_modification_errors[0].resource_arn #=> String
resp.attachment.last_modification_errors[0].request_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :attachment_id (required, String)

    The ID of the attachment.

Returns:

See Also:



5300
5301
5302
5303
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5300

def reject_attachment(params = {}, options = {})
  req = build_request(:reject_attachment, params)
  req.send_request(options)
end

#remove_attachment_routing_policy_label(params = {}) ⇒ Types::RemoveAttachmentRoutingPolicyLabelResponse

Removes a routing policy label from an attachment.

Examples:

Request syntax with placeholder values


resp = client.remove_attachment_routing_policy_label({
  core_network_id: "CoreNetworkId", # required
  attachment_id: "AttachmentId", # required
})

Response structure


resp.core_network_id #=> String
resp.attachment_id #=> String
resp.routing_policy_label #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of the core network containing the attachment.

  • :attachment_id (required, String)

    The ID of the attachment to remove the routing policy label from.

Returns:

See Also:



5336
5337
5338
5339
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5336

def remove_attachment_routing_policy_label(params = {}, options = {})
  req = build_request(:remove_attachment_routing_policy_label, params)
  req.send_request(options)
end

#restore_core_network_policy_version(params = {}) ⇒ Types::RestoreCoreNetworkPolicyVersionResponse

Restores a previous policy version as a new, immutable version of a core network policy. A subsequent change set is created showing the differences between the LIVE policy and restored policy.

Examples:

Request syntax with placeholder values


resp = client.restore_core_network_policy_version({
  core_network_id: "CoreNetworkId", # required
  policy_version_id: 1, # required
})

Response structure


resp.core_network_policy.core_network_id #=> String
resp.core_network_policy.policy_version_id #=> Integer
resp.core_network_policy.alias #=> String, one of "LIVE", "LATEST"
resp.core_network_policy.description #=> String
resp.core_network_policy.created_at #=> Time
resp.core_network_policy.change_set_state #=> String, one of "PENDING_GENERATION", "FAILED_GENERATION", "READY_TO_EXECUTE", "EXECUTING", "EXECUTION_SUCCEEDED", "OUT_OF_DATE"
resp.core_network_policy.policy_errors #=> Array
resp.core_network_policy.policy_errors[0].error_code #=> String
resp.core_network_policy.policy_errors[0].message #=> String
resp.core_network_policy.policy_errors[0].path #=> String
resp.core_network_policy.policy_document #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network.

  • :policy_version_id (required, Integer)

    The ID of the policy version to restore.

Returns:

See Also:



5380
5381
5382
5383
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5380

def restore_core_network_policy_version(params = {}, options = {})
  req = build_request(:restore_core_network_policy_version, params)
  req.send_request(options)
end

#start_organization_service_access_update(params = {}) ⇒ Types::StartOrganizationServiceAccessUpdateResponse

Enables the Network Manager service for an Amazon Web Services Organization. This can only be called by a management account within the organization.

Examples:

Request syntax with placeholder values


resp = client.start_organization_service_access_update({
  action: "Action", # required
})

Response structure


resp.organization_status.organization_id #=> String
resp.organization_status.organization_aws_service_access_status #=> String
resp.organization_status.slr_deployment_status #=> String
resp.organization_status. #=> Array
resp.organization_status.[0]. #=> String
resp.organization_status.[0].slr_deployment_status #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :action (required, String)

    The action to take for the update request. This can be either ENABLE or DISABLE.

Returns:

See Also:



5416
5417
5418
5419
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5416

def start_organization_service_access_update(params = {}, options = {})
  req = build_request(:start_organization_service_access_update, params)
  req.send_request(options)
end

#start_route_analysis(params = {}) ⇒ Types::StartRouteAnalysisResponse

Starts analyzing the routing path between the specified source and destination. For more information, see Route Analyzer.

Examples:

Request syntax with placeholder values


resp = client.start_route_analysis({
  global_network_id: "GlobalNetworkId", # required
  source: { # required
    transit_gateway_attachment_arn: "TransitGatewayAttachmentArn",
    ip_address: "IPAddress",
  },
  destination: { # required
    transit_gateway_attachment_arn: "TransitGatewayAttachmentArn",
    ip_address: "IPAddress",
  },
  include_return_path: false,
  use_middleboxes: false,
})

Response structure


resp.route_analysis.global_network_id #=> String
resp.route_analysis. #=> String
resp.route_analysis.route_analysis_id #=> String
resp.route_analysis.start_timestamp #=> Time
resp.route_analysis.status #=> String, one of "RUNNING", "COMPLETED", "FAILED"
resp.route_analysis.source.transit_gateway_attachment_arn #=> String
resp.route_analysis.source.transit_gateway_arn #=> String
resp.route_analysis.source.ip_address #=> String
resp.route_analysis.destination.transit_gateway_attachment_arn #=> String
resp.route_analysis.destination.transit_gateway_arn #=> String
resp.route_analysis.destination.ip_address #=> String
resp.route_analysis.include_return_path #=> Boolean
resp.route_analysis.use_middleboxes #=> Boolean
resp.route_analysis.forward_path.completion_status.result_code #=> String, one of "CONNECTED", "NOT_CONNECTED"
resp.route_analysis.forward_path.completion_status.reason_code #=> String, one of "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND", "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY", "CYCLIC_PATH_DETECTED", "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND", "ROUTE_NOT_FOUND", "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND", "INACTIVE_ROUTE_FOR_DESTINATION_FOUND", "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH", "MAX_HOPS_EXCEEDED", "POSSIBLE_MIDDLEBOX", "NO_DESTINATION_ARN_PROVIDED"
resp.route_analysis.forward_path.completion_status.reason_context #=> Hash
resp.route_analysis.forward_path.completion_status.reason_context["ReasonContextKey"] #=> String
resp.route_analysis.forward_path.path #=> Array
resp.route_analysis.forward_path.path[0].sequence #=> Integer
resp.route_analysis.forward_path.path[0].resource.registered_gateway_arn #=> String
resp.route_analysis.forward_path.path[0].resource.resource_arn #=> String
resp.route_analysis.forward_path.path[0].resource.resource_type #=> String
resp.route_analysis.forward_path.path[0].resource.definition #=> String
resp.route_analysis.forward_path.path[0].resource.name_tag #=> String
resp.route_analysis.forward_path.path[0].resource.is_middlebox #=> Boolean
resp.route_analysis.forward_path.path[0].destination_cidr_block #=> String
resp.route_analysis.return_path.completion_status.result_code #=> String, one of "CONNECTED", "NOT_CONNECTED"
resp.route_analysis.return_path.completion_status.reason_code #=> String, one of "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND", "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY", "CYCLIC_PATH_DETECTED", "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND", "ROUTE_NOT_FOUND", "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND", "INACTIVE_ROUTE_FOR_DESTINATION_FOUND", "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH", "MAX_HOPS_EXCEEDED", "POSSIBLE_MIDDLEBOX", "NO_DESTINATION_ARN_PROVIDED"
resp.route_analysis.return_path.completion_status.reason_context #=> Hash
resp.route_analysis.return_path.completion_status.reason_context["ReasonContextKey"] #=> String
resp.route_analysis.return_path.path #=> Array
resp.route_analysis.return_path.path[0].sequence #=> Integer
resp.route_analysis.return_path.path[0].resource.registered_gateway_arn #=> String
resp.route_analysis.return_path.path[0].resource.resource_arn #=> String
resp.route_analysis.return_path.path[0].resource.resource_type #=> String
resp.route_analysis.return_path.path[0].resource.definition #=> String
resp.route_analysis.return_path.path[0].resource.name_tag #=> String
resp.route_analysis.return_path.path[0].resource.is_middlebox #=> Boolean
resp.route_analysis.return_path.path[0].destination_cidr_block #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :source (required, Types::RouteAnalysisEndpointOptionsSpecification)

    The source from which traffic originates.

  • :destination (required, Types::RouteAnalysisEndpointOptionsSpecification)

    The destination.

  • :include_return_path (Boolean)

    Indicates whether to analyze the return path. The default is false.

  • :use_middleboxes (Boolean)

    Indicates whether to include the location of middlebox appliances in the route analysis. The default is false.

Returns:

See Also:



5510
5511
5512
5513
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5510

def start_route_analysis(params = {}, options = {})
  req = build_request(:start_route_analysis, params)
  req.send_request(options)
end

#tag_resource(params = {}) ⇒ Struct

Tags a specified resource.

Examples:

Request syntax with placeholder values


resp = client.tag_resource({
  resource_arn: "ResourceArn", # required
  tags: [ # required
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the resource.

  • :tags (required, Array<Types::Tag>)

    The tags to apply to the specified resource.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



5541
5542
5543
5544
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5541

def tag_resource(params = {}, options = {})
  req = build_request(:tag_resource, params)
  req.send_request(options)
end

#untag_resource(params = {}) ⇒ Struct

Removes tags from a specified resource.

Examples:

Request syntax with placeholder values


resp = client.untag_resource({
  resource_arn: "ResourceArn", # required
  tag_keys: ["TagKey"], # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the resource.

  • :tag_keys (required, Array<String>)

    The tag keys to remove from the specified resource.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



5567
5568
5569
5570
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5567

def untag_resource(params = {}, options = {})
  req = build_request(:untag_resource, params)
  req.send_request(options)
end

#update_connection(params = {}) ⇒ Types::UpdateConnectionResponse

Updates the information for an existing connection. To remove information for any of the parameters, specify an empty string.

Examples:

Request syntax with placeholder values


resp = client.update_connection({
  global_network_id: "GlobalNetworkId", # required
  connection_id: "ConnectionId", # required
  link_id: "LinkId",
  connected_link_id: "LinkId",
  description: "ConstrainedString",
})

Response structure


resp.connection.connection_id #=> String
resp.connection.connection_arn #=> String
resp.connection.global_network_id #=> String
resp.connection.device_id #=> String
resp.connection.connected_device_id #=> String
resp.connection.link_id #=> String
resp.connection.connected_link_id #=> String
resp.connection.description #=> String
resp.connection.created_at #=> Time
resp.connection.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.connection.tags #=> Array
resp.connection.tags[0].key #=> String
resp.connection.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :connection_id (required, String)

    The ID of the connection.

  • :link_id (String)

    The ID of the link for the first device in the connection.

  • :connected_link_id (String)

    The ID of the link for the second device in the connection.

  • :description (String)

    A description of the connection.

    Length Constraints: Maximum length of 256 characters.

Returns:

See Also:



5626
5627
5628
5629
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5626

def update_connection(params = {}, options = {})
  req = build_request(:update_connection, params)
  req.send_request(options)
end

#update_core_network(params = {}) ⇒ Types::UpdateCoreNetworkResponse

Updates the description of a core network.

Examples:

Request syntax with placeholder values


resp = client.update_core_network({
  core_network_id: "CoreNetworkId", # required
  description: "ConstrainedString",
})

Response structure


resp.core_network.global_network_id #=> String
resp.core_network.core_network_id #=> String
resp.core_network.core_network_arn #=> String
resp.core_network.description #=> String
resp.core_network.created_at #=> Time
resp.core_network.state #=> String, one of "CREATING", "UPDATING", "AVAILABLE", "DELETING"
resp.core_network.segments #=> Array
resp.core_network.segments[0].name #=> String
resp.core_network.segments[0].edge_locations #=> Array
resp.core_network.segments[0].edge_locations[0] #=> String
resp.core_network.segments[0].shared_segments #=> Array
resp.core_network.segments[0].shared_segments[0] #=> String
resp.core_network.network_function_groups #=> Array
resp.core_network.network_function_groups[0].name #=> String
resp.core_network.network_function_groups[0].edge_locations #=> Array
resp.core_network.network_function_groups[0].edge_locations[0] #=> String
resp.core_network.network_function_groups[0].segments.send_via #=> Array
resp.core_network.network_function_groups[0].segments.send_via[0] #=> String
resp.core_network.network_function_groups[0].segments.send_to #=> Array
resp.core_network.network_function_groups[0].segments.send_to[0] #=> String
resp.core_network.edges #=> Array
resp.core_network.edges[0].edge_location #=> String
resp.core_network.edges[0].asn #=> Integer
resp.core_network.edges[0].inside_cidr_blocks #=> Array
resp.core_network.edges[0].inside_cidr_blocks[0] #=> String
resp.core_network.tags #=> Array
resp.core_network.tags[0].key #=> String
resp.core_network.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :core_network_id (required, String)

    The ID of a core network.

  • :description (String)

    The description of the update.

Returns:

See Also:



5685
5686
5687
5688
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5685

def update_core_network(params = {}, options = {})
  req = build_request(:update_core_network, params)
  req.send_request(options)
end

#update_device(params = {}) ⇒ Types::UpdateDeviceResponse

Updates the details for an existing device. To remove information for any of the parameters, specify an empty string.

Examples:

Request syntax with placeholder values


resp = client.update_device({
  global_network_id: "GlobalNetworkId", # required
  device_id: "DeviceId", # required
  aws_location: {
    zone: "ConstrainedString",
    subnet_arn: "SubnetArn",
  },
  description: "ConstrainedString",
  type: "ConstrainedString",
  vendor: "ConstrainedString",
  model: "ConstrainedString",
  serial_number: "ConstrainedString",
  location: {
    address: "ConstrainedString",
    latitude: "ConstrainedString",
    longitude: "ConstrainedString",
  },
  site_id: "SiteId",
})

Response structure


resp.device.device_id #=> String
resp.device.device_arn #=> String
resp.device.global_network_id #=> String
resp.device.aws_location.zone #=> String
resp.device.aws_location.subnet_arn #=> String
resp.device.description #=> String
resp.device.type #=> String
resp.device.vendor #=> String
resp.device.model #=> String
resp.device.serial_number #=> String
resp.device.location.address #=> String
resp.device.location.latitude #=> String
resp.device.location.longitude #=> String
resp.device.site_id #=> String
resp.device.created_at #=> Time
resp.device.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.device.tags #=> Array
resp.device.tags[0].key #=> String
resp.device.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :device_id (required, String)

    The ID of the device.

  • :aws_location (Types::AWSLocation)

    The Amazon Web Services location of the device, if applicable. For an on-premises device, you can omit this parameter.

  • :description (String)

    A description of the device.

    Constraints: Maximum length of 256 characters.

  • :type (String)

    The type of the device.

  • :vendor (String)

    The vendor of the device.

    Constraints: Maximum length of 128 characters.

  • :model (String)

    The model of the device.

    Constraints: Maximum length of 128 characters.

  • :serial_number (String)

    The serial number of the device.

    Constraints: Maximum length of 128 characters.

  • :location (Types::Location)

    Describes a location.

  • :site_id (String)

    The ID of the site.

Returns:

See Also:



5784
5785
5786
5787
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5784

def update_device(params = {}, options = {})
  req = build_request(:update_device, params)
  req.send_request(options)
end

#update_direct_connect_gateway_attachment(params = {}) ⇒ Types::UpdateDirectConnectGatewayAttachmentResponse

Updates the edge locations associated with an Amazon Web Services Direct Connect gateway attachment.

Examples:

Request syntax with placeholder values


resp = client.update_direct_connect_gateway_attachment({
  attachment_id: "AttachmentId", # required
  edge_locations: ["ExternalRegionCode"],
})

Response structure


resp.direct_connect_gateway_attachment.attachment.core_network_id #=> String
resp.direct_connect_gateway_attachment.attachment.core_network_arn #=> String
resp.direct_connect_gateway_attachment.attachment.attachment_id #=> String
resp.direct_connect_gateway_attachment.attachment. #=> String
resp.direct_connect_gateway_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.direct_connect_gateway_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.direct_connect_gateway_attachment.attachment.edge_location #=> String
resp.direct_connect_gateway_attachment.attachment.edge_locations #=> Array
resp.direct_connect_gateway_attachment.attachment.edge_locations[0] #=> String
resp.direct_connect_gateway_attachment.attachment.resource_arn #=> String
resp.direct_connect_gateway_attachment.attachment.attachment_policy_rule_number #=> Integer
resp.direct_connect_gateway_attachment.attachment.segment_name #=> String
resp.direct_connect_gateway_attachment.attachment.network_function_group_name #=> String
resp.direct_connect_gateway_attachment.attachment.tags #=> Array
resp.direct_connect_gateway_attachment.attachment.tags[0].key #=> String
resp.direct_connect_gateway_attachment.attachment.tags[0].value #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.tags #=> Array
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.tags[0].key #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.tags[0].value #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.direct_connect_gateway_attachment.attachment.proposed_segment_change.segment_name #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.tags #=> Array
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.direct_connect_gateway_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.direct_connect_gateway_attachment.attachment.created_at #=> Time
resp.direct_connect_gateway_attachment.attachment.updated_at #=> Time
resp.direct_connect_gateway_attachment.attachment.last_modification_errors #=> Array
resp.direct_connect_gateway_attachment.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.direct_connect_gateway_attachment.attachment.last_modification_errors[0].message #=> String
resp.direct_connect_gateway_attachment.attachment.last_modification_errors[0].resource_arn #=> String
resp.direct_connect_gateway_attachment.attachment.last_modification_errors[0].request_id #=> String
resp.direct_connect_gateway_attachment.direct_connect_gateway_arn #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :attachment_id (required, String)

    The ID of the Direct Connect gateway attachment for the updated edge locations.

  • :edge_locations (Array<String>)

    One or more edge locations to update for the Direct Connect gateway attachment. The updated array of edge locations overwrites the previous array of locations. EdgeLocations is only used for Direct Connect gateway attachments.

Returns:

See Also:



5854
5855
5856
5857
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5854

def update_direct_connect_gateway_attachment(params = {}, options = {})
  req = build_request(:update_direct_connect_gateway_attachment, params)
  req.send_request(options)
end

#update_global_network(params = {}) ⇒ Types::UpdateGlobalNetworkResponse

Updates an existing global network. To remove information for any of the parameters, specify an empty string.

Examples:

Request syntax with placeholder values


resp = client.update_global_network({
  global_network_id: "GlobalNetworkId", # required
  description: "ConstrainedString",
})

Response structure


resp.global_network.global_network_id #=> String
resp.global_network.global_network_arn #=> String
resp.global_network.description #=> String
resp.global_network.created_at #=> Time
resp.global_network.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.global_network.tags #=> Array
resp.global_network.tags[0].key #=> String
resp.global_network.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of your global network.

  • :description (String)

    A description of the global network.

    Constraints: Maximum length of 256 characters.

Returns:

See Also:



5896
5897
5898
5899
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5896

def update_global_network(params = {}, options = {})
  req = build_request(:update_global_network, params)
  req.send_request(options)
end

Updates the details for an existing link. To remove information for any of the parameters, specify an empty string.

Examples:

Request syntax with placeholder values


resp = client.update_link({
  global_network_id: "GlobalNetworkId", # required
  link_id: "LinkId", # required
  description: "ConstrainedString",
  type: "ConstrainedString",
  bandwidth: {
    upload_speed: 1,
    download_speed: 1,
  },
  provider: "ConstrainedString",
})

Response structure


resp.link.link_id #=> String
resp.link.link_arn #=> String
resp.link.global_network_id #=> String
resp.link.site_id #=> String
resp.link.description #=> String
resp.link.type #=> String
resp.link.bandwidth.upload_speed #=> Integer
resp.link.bandwidth.download_speed #=> Integer
resp.link.provider #=> String
resp.link.created_at #=> Time
resp.link.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.link.tags #=> Array
resp.link.tags[0].key #=> String
resp.link.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :link_id (required, String)

    The ID of the link.

  • :description (String)

    A description of the link.

    Constraints: Maximum length of 256 characters.

  • :type (String)

    The type of the link.

    Constraints: Maximum length of 128 characters.

  • :bandwidth (Types::Bandwidth)

    The upload and download speed in Mbps.

  • :provider (String)

    The provider of the link.

    Constraints: Maximum length of 128 characters.

Returns:

See Also:



5967
5968
5969
5970
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 5967

def update_link(params = {}, options = {})
  req = build_request(:update_link, params)
  req.send_request(options)
end

#update_network_resource_metadata(params = {}) ⇒ Types::UpdateNetworkResourceMetadataResponse

Updates the resource metadata for the specified global network.

Examples:

Request syntax with placeholder values


resp = client.({
  global_network_id: "GlobalNetworkId", # required
  resource_arn: "ResourceArn", # required
  metadata: { # required
    "ConstrainedString" => "ConstrainedString",
  },
})

Response structure


resp.resource_arn #=> String
resp. #=> Hash
resp.["ConstrainedString"] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :resource_arn (required, String)

    The ARN of the resource.

  • :metadata (required, Hash<String,String>)

    The resource metadata.

Returns:

See Also:



6008
6009
6010
6011
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 6008

def (params = {}, options = {})
  req = build_request(:update_network_resource_metadata, params)
  req.send_request(options)
end

#update_site(params = {}) ⇒ Types::UpdateSiteResponse

Updates the information for an existing site. To remove information for any of the parameters, specify an empty string.

Examples:

Request syntax with placeholder values


resp = client.update_site({
  global_network_id: "GlobalNetworkId", # required
  site_id: "SiteId", # required
  description: "ConstrainedString",
  location: {
    address: "ConstrainedString",
    latitude: "ConstrainedString",
    longitude: "ConstrainedString",
  },
})

Response structure


resp.site.site_id #=> String
resp.site.site_arn #=> String
resp.site.global_network_id #=> String
resp.site.description #=> String
resp.site.location.address #=> String
resp.site.location.latitude #=> String
resp.site.location.longitude #=> String
resp.site.created_at #=> Time
resp.site.state #=> String, one of "PENDING", "AVAILABLE", "DELETING", "UPDATING"
resp.site.tags #=> Array
resp.site.tags[0].key #=> String
resp.site.tags[0].value #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :global_network_id (required, String)

    The ID of the global network.

  • :site_id (required, String)

    The ID of your site.

  • :description (String)

    A description of your site.

    Constraints: Maximum length of 256 characters.

  • :location (Types::Location)

    The site location:

    • Address: The physical address of the site.

    • Latitude: The latitude of the site.

    • Longitude: The longitude of the site.

Returns:

See Also:



6072
6073
6074
6075
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 6072

def update_site(params = {}, options = {})
  req = build_request(:update_site, params)
  req.send_request(options)
end

#update_vpc_attachment(params = {}) ⇒ Types::UpdateVpcAttachmentResponse

Updates a VPC attachment.

Examples:

Request syntax with placeholder values


resp = client.update_vpc_attachment({
  attachment_id: "AttachmentId", # required
  add_subnet_arns: ["SubnetArn"],
  remove_subnet_arns: ["SubnetArn"],
  options: {
    ipv_6_support: false,
    appliance_mode_support: false,
    dns_support: false,
    security_group_referencing_support: false,
  },
})

Response structure


resp.vpc_attachment.attachment.core_network_id #=> String
resp.vpc_attachment.attachment.core_network_arn #=> String
resp.vpc_attachment.attachment.attachment_id #=> String
resp.vpc_attachment.attachment. #=> String
resp.vpc_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "DIRECT_CONNECT_GATEWAY", "TRANSIT_GATEWAY_ROUTE_TABLE"
resp.vpc_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
resp.vpc_attachment.attachment.edge_location #=> String
resp.vpc_attachment.attachment.edge_locations #=> Array
resp.vpc_attachment.attachment.edge_locations[0] #=> String
resp.vpc_attachment.attachment.resource_arn #=> String
resp.vpc_attachment.attachment.attachment_policy_rule_number #=> Integer
resp.vpc_attachment.attachment.segment_name #=> String
resp.vpc_attachment.attachment.network_function_group_name #=> String
resp.vpc_attachment.attachment.tags #=> Array
resp.vpc_attachment.attachment.tags[0].key #=> String
resp.vpc_attachment.attachment.tags[0].value #=> String
resp.vpc_attachment.attachment.proposed_segment_change.tags #=> Array
resp.vpc_attachment.attachment.proposed_segment_change.tags[0].key #=> String
resp.vpc_attachment.attachment.proposed_segment_change.tags[0].value #=> String
resp.vpc_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
resp.vpc_attachment.attachment.proposed_segment_change.segment_name #=> String
resp.vpc_attachment.attachment.proposed_network_function_group_change.tags #=> Array
resp.vpc_attachment.attachment.proposed_network_function_group_change.tags[0].key #=> String
resp.vpc_attachment.attachment.proposed_network_function_group_change.tags[0].value #=> String
resp.vpc_attachment.attachment.proposed_network_function_group_change.attachment_policy_rule_number #=> Integer
resp.vpc_attachment.attachment.proposed_network_function_group_change.network_function_group_name #=> String
resp.vpc_attachment.attachment.created_at #=> Time
resp.vpc_attachment.attachment.updated_at #=> Time
resp.vpc_attachment.attachment.last_modification_errors #=> Array
resp.vpc_attachment.attachment.last_modification_errors[0].code #=> String, one of "VPC_NOT_FOUND", "SUBNET_NOT_FOUND", "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE", "SUBNET_NO_FREE_ADDRESSES", "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE", "SUBNET_NO_IPV6_CIDRS", "VPN_CONNECTION_NOT_FOUND", "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED", "DIRECT_CONNECT_GATEWAY_NOT_FOUND", "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS", "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF", "VPN_EXISTING_ASSOCIATIONS", "VPC_UNSUPPORTED_FEATURES"
resp.vpc_attachment.attachment.last_modification_errors[0].message #=> String
resp.vpc_attachment.attachment.last_modification_errors[0].resource_arn #=> String
resp.vpc_attachment.attachment.last_modification_errors[0].request_id #=> String
resp.vpc_attachment.subnet_arns #=> Array
resp.vpc_attachment.subnet_arns[0] #=> String
resp.vpc_attachment.options.ipv_6_support #=> Boolean
resp.vpc_attachment.options.appliance_mode_support #=> Boolean
resp.vpc_attachment.options.dns_support #=> Boolean
resp.vpc_attachment.options.security_group_referencing_support #=> Boolean

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :attachment_id (required, String)

    The ID of the attachment.

  • :add_subnet_arns (Array<String>)

    Adds a subnet ARN to the VPC attachment.

  • :remove_subnet_arns (Array<String>)

    Removes a subnet ARN from the attachment.

  • :options (Types::VpcOptions)

    Additional options for updating the VPC attachment.

Returns:

See Also:



6155
6156
6157
6158
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/client.rb', line 6155

def update_vpc_attachment(params = {}, options = {})
  req = build_request(:update_vpc_attachment, params)
  req.send_request(options)
end