Skip to main content

nssf_deployments

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

Overview

Namenssf_deployments
TypeResource
Idazure_extras.mobile_packet_core.nssf_deployments

Fields

NameDatatypeDescription
cluster_servicetextfield from the properties object
component_parameterstextfield from the properties object
locationtextThe geo-location where the resource lives
nssfDeploymentNametextfield from the properties object
operational_statustextfield from the properties object
provisioning_statetextfield from the properties object
release_versiontextfield from the properties object
resourceGroupNametextfield from the properties object
secrets_parameterstextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextResource tags.

Methods

NameAccessible byRequired ParamsDescription
getSELECTnssfDeploymentName, resourceGroupName, subscriptionIdGet a NssfDeploymentResource
list_by_resource_groupSELECTresourceGroupName, subscriptionIdList all Network Slice Selection Function Deployments by Resource Group.
list_by_subscriptionSELECTsubscriptionIdList all Network Slice Selection Function Deployments by Subscription ID.
create_or_updateINSERTnssfDeploymentName, resourceGroupName, subscriptionIdCreate a NssfDeploymentResource
deleteDELETEnssfDeploymentName, resourceGroupName, subscriptionIdDelete a NssfDeploymentResource
update_tagsEXECnssfDeploymentName, resourceGroupName, subscriptionIdUpdate a NssfDeploymentResource

SELECT examples

List all Network Slice Selection Function Deployments by Subscription ID.

SELECT
cluster_service,
component_parameters,
location,
nssfDeploymentName,
operational_status,
provisioning_state,
release_version,
resourceGroupName,
secrets_parameters,
subscriptionId,
tags
FROM azure_extras.mobile_packet_core.vw_nssf_deployments
WHERE subscriptionId = '{{ subscriptionId }}';

INSERT example

Use the following StackQL query and manifest file to create a new nssf_deployments resource.

/*+ create */
INSERT INTO azure_extras.mobile_packet_core.nssf_deployments (
nssfDeploymentName,
resourceGroupName,
subscriptionId,
properties,
tags,
location
)
SELECT
'{{ nssfDeploymentName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}',
'{{ tags }}',
'{{ location }}'
;

DELETE example

Deletes the specified nssf_deployments resource.

/*+ delete */
DELETE FROM azure_extras.mobile_packet_core.nssf_deployments
WHERE nssfDeploymentName = '{{ nssfDeploymentName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';