Skip to main content

management_group_network_manager_connections

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

Overview

Namemanagement_group_network_manager_connections
TypeResource
Idazure.network.management_group_network_manager_connections

Fields

The following fields are returned by SELECT queries:

OK - Returns the connection.

NameDatatypeDescription
idstringResource ID.
namestringResource name.
etagstringA unique read-only string that changes whenever the resource is updated.
propertiesobjectThe scope connection properties
systemDataobjectThe system metadata related to this resource.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectGet a specified connection created by this management group.
listselectmanagementGroupId$top, $skipTokenList all network manager connections created by this management group.
create_or_updateinsertCreate a network manager connection on this management group.
deletedeleteDelete specified pending connection created by this management group.

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
managementGroupIdstringThe management group Id which uniquely identify the Microsoft Azure management group.
$skipTokenstringSkipToken is only used if a previous operation returned a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls.
$topinteger (int32)An optional query parameter which specifies the maximum number of records to be returned by the server.

SELECT examples

Get a specified connection created by this management group.

SELECT
id,
name,
etag,
properties,
systemData,
type
FROM azure.network.management_group_network_manager_connections
;

INSERT examples

Create a network manager connection on this management group.

INSERT INTO azure.network.management_group_network_manager_connections (
data__properties
)
SELECT
'{{ properties }}'
RETURNING
id,
name,
etag,
properties,
systemData,
type
;

DELETE examples

Delete specified pending connection created by this management group.

DELETE FROM azure.network.management_group_network_manager_connections
;