Skip to main content

core_network_change_sets

Creates, updates, deletes, gets or lists a core_network_change_sets resource.

Overview

Namecore_network_change_sets
TypeResource
Idaws.networkmanager.core_network_change_sets

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
actionstringThe action to take for a core network. (ADD, MODIFY, REMOVE)
identifierstringThe resource identifier. (pattern: <code>[\s\S]*</code>)
identifier_pathstringUniquely identifies the path for a change within the changeset. For example, the IdentifierPath for a core network segment change might be "CORE_NETWORK_SEGMENT/us-east-1/devsegment". (pattern: <code>[\s\S]*</code>)
new_valuesobjectThe new value for a core network
previous_valuesobjectThe previous values for a core network.
typestringThe type of change. (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)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_core_network_change_setselectcore_network_id, policy_version_id, regionmaxResults, nextTokenReturns a change set between the LIVE core network policy and a submitted policy.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
core_network_idstringThe ID of a core network.
policy_version_idintegerThe ID of the policy version.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return.
nextTokenstringThe token for the next page of results.

SELECT examples

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

SELECT
action,
identifier,
identifier_path,
new_values,
previous_values,
type
FROM aws.networkmanager.core_network_change_sets
WHERE core_network_id = '{{ core_network_id }}' -- required
AND policy_version_id = '{{ policy_version_id }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;