Skip to main content

scope_connections

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

Overview

Namescope_connections
TypeResource
Idazure.network.scope_connections

Fields

The following fields are returned by SELECT queries:

OK - Returns the resource

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 specified scope connection created by this Network Manager.
listselectsubscriptionId, resourceGroupName, networkManagerName$top, $skipTokenList all scope connections created by this network manager.
create_or_updateinsertCreates or updates scope connection from Network Manager
deletedeleteDelete the pending scope connection created by this network manager.

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
networkManagerNamestringThe name of the network manager.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
$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 specified scope connection created by this Network Manager.

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

INSERT examples

Creates or updates scope connection from Network Manager

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

DELETE examples

Delete the pending scope connection created by this network manager.

DELETE FROM azure.network.scope_connections
;