Skip to main content

security_partner_providers

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

Overview

Namesecurity_partner_providers
TypeResource
Idazure.network.security_partner_providers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource ID.
namestringResource name.
connectionStatusstringThe connection status with the Security Partner Provider. Known values are: "Unknown", "PartiallyConnected", "Connected", and "NotConnected". (Unknown, PartiallyConnected, Connected, NotConnected)
etagstringA unique read-only string that changes whenever the resource is updated.
locationstringResource location.
provisioningStatestringThe provisioning state of the Security Partner Provider resource. Known values are: "Failed", "Succeeded", "Canceled", "Creating", "Updating", and "Deleting". (Failed, Succeeded, Canceled, Creating, Updating, Deleting)
securityProviderNamestringThe security provider name. Known values are: "ZScaler", "IBoss", and "Checkpoint". (ZScaler, IBoss, Checkpoint)
tagsobjectResource tags.
typestringResource type.
virtualHubobjectReference to another subresource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, security_partner_provider_name, subscription_idGets the specified Security Partner Provider.
list_by_resource_groupselectresource_group_name, subscription_idLists all Security Partner Providers in a resource group.
listselectsubscription_idGets all the Security Partner Providers in a subscription.
create_or_updateinsertresource_group_name, security_partner_provider_name, subscription_idCreates or updates the specified Security Partner Provider.
update_tagsupdateresource_group_name, security_partner_provider_name, subscription_idUpdates tags of a Security Partner Provider resource.
create_or_updatereplaceresource_group_name, security_partner_provider_name, subscription_idCreates or updates the specified Security Partner Provider.
deletedeleteresource_group_name, security_partner_provider_name, subscription_idDeletes the specified Security Partner Provider.

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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
security_partner_provider_namestringThe name of the Security Partner Provider. Required.
subscription_idstring

SELECT examples

Gets the specified Security Partner Provider.

SELECT
id,
name,
connectionStatus,
etag,
location,
provisioningState,
securityProviderName,
tags,
type,
virtualHub
FROM azure.network.security_partner_providers
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND security_partner_provider_name = '{{ security_partner_provider_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

INSERT examples

Creates or updates the specified Security Partner Provider.

INSERT INTO azure.network.security_partner_providers (
id,
location,
tags,
properties,
resource_group_name,
security_partner_provider_name,
subscription_id
)
SELECT
'{{ id }}',
'{{ location }}',
'{{ tags }}',
'{{ properties }}',
'{{ resource_group_name }}',
'{{ security_partner_provider_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
etag,
location,
properties,
tags,
type
;

UPDATE examples

Updates tags of a Security Partner Provider resource.

UPDATE azure.network.security_partner_providers
SET
tags = '{{ tags }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND security_partner_provider_name = '{{ security_partner_provider_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
etag,
location,
properties,
tags,
type;

REPLACE examples

Creates or updates the specified Security Partner Provider.

REPLACE azure.network.security_partner_providers
SET
id = '{{ id }}',
location = '{{ location }}',
tags = '{{ tags }}',
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND security_partner_provider_name = '{{ security_partner_provider_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
etag,
location,
properties,
tags,
type;

DELETE examples

Deletes the specified Security Partner Provider.

DELETE FROM azure.network.security_partner_providers
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND security_partner_provider_name = '{{ security_partner_provider_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;