Skip to main content

certificate_object_global_rulestacks

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

Overview

Namecertificate_object_global_rulestacks
TypeResource
Idazure_isv.paloalto.certificate_object_global_rulestacks

Fields

NameDatatypeDescription
nametextfield from the properties object
descriptiontextfield from the properties object
audit_commenttextfield from the properties object
certificate_self_signedtextfield from the properties object
certificate_signer_resource_idtextfield from the properties object
etagtextfield from the properties object
globalRulestackNametextfield from the properties object
provisioning_statetextfield from the properties object
system_datatextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTglobalRulestackName, nameGet a CertificateObjectGlobalRulestackResource
listSELECTglobalRulestackNameList CertificateObjectGlobalRulestackResource resources by Tenant
create_or_updateINSERTglobalRulestackName, name, data__propertiesCreate a CertificateObjectGlobalRulestackResource
deleteDELETEglobalRulestackName, nameDelete a CertificateObjectGlobalRulestackResource

SELECT examples

List CertificateObjectGlobalRulestackResource resources by Tenant

SELECT
name,
description,
audit_comment,
certificate_self_signed,
certificate_signer_resource_id,
etag,
globalRulestackName,
provisioning_state,
system_data
FROM azure_isv.paloalto.vw_certificate_object_global_rulestacks
WHERE globalRulestackName = '{{ globalRulestackName }}';

INSERT example

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

/*+ create */
INSERT INTO azure_isv.paloalto.certificate_object_global_rulestacks (
globalRulestackName,
name,
data__properties,
properties
)
SELECT
'{{ globalRulestackName }}',
'{{ name }}',
'{{ data__properties }}',
'{{ properties }}'
;

DELETE example

Deletes the specified certificate_object_global_rulestacks resource.

/*+ delete */
DELETE FROM azure_isv.paloalto.certificate_object_global_rulestacks
WHERE globalRulestackName = '{{ globalRulestackName }}'
AND name = '{{ name }}';