List Core Network Policy Versions
networkmanager_list_core_network_policy_versions | R Documentation |
Returns a list of core network policy versions¶
Description¶
Returns a list of core network policy versions.
Usage¶
Arguments¶
CoreNetworkId
[required] The ID of a core network.
MaxResults
The maximum number of results to return.
NextToken
The token for the next page of results.
Value¶
A list with the following syntax:
list(
CoreNetworkPolicyVersions = list(
list(
CoreNetworkId = "string",
PolicyVersionId = 123,
Alias = "LIVE"|"LATEST",
Description = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
ChangeSetState = "PENDING_GENERATION"|"FAILED_GENERATION"|"READY_TO_EXECUTE"|"EXECUTING"|"EXECUTION_SUCCEEDED"|"OUT_OF_DATE"
)
),
NextToken = "string"
)