Skip to main content

observability_services

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

Overview

Nameobservability_services
TypeResource
Idazure_extras.mobile_packet_core.observability_services

Fields

NameDatatypeDescription
cluster_servicetextfield from the properties object
component_parameterstextfield from the properties object
locationtextThe geo-location where the resource lives
observabilityServiceNametextfield 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
subscriptionIdtextfield from the properties object
tagstextResource tags.

Methods

NameAccessible byRequired ParamsDescription
getSELECTobservabilityServiceName, resourceGroupName, subscriptionIdGet a ObservabilityServiceResource
list_by_resource_groupSELECTresourceGroupName, subscriptionIdList all Observability Services by Resource Group.
list_by_subscriptionSELECTsubscriptionIdList all Observability Services by Subscription ID.
create_or_updateINSERTobservabilityServiceName, resourceGroupName, subscriptionIdCreate a ObservabilityServiceResource
deleteDELETEobservabilityServiceName, resourceGroupName, subscriptionIdDelete a ObservabilityServiceResource
update_tagsEXECobservabilityServiceName, resourceGroupName, subscriptionIdUpdate a ObservabilityServiceResource

SELECT examples

List all Observability Services by Subscription ID.

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

INSERT example

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

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

DELETE example

Deletes the specified observability_services resource.

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