certificate_object_global_rulestack
Creates, updates, deletes, gets or lists a certificate_object_global_rulestack resource.
Overview
| Name | certificate_object_global_rulestack |
| Type | Resource |
| Id | azure_isv.paloaltonetworksngfw.certificate_object_global_rulestack |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
auditComment | string | comment for this object. |
certificateSelfSigned | string | use certificate self signed. Required. Known values are: "TRUE" and "FALSE". |
certificateSignerResourceId | string | Resource Id of certificate signer, to be populated only when certificateSelfSigned is false. |
description | string | user description for this object. |
etag | string | read only string representing last create or update. |
provisioningState | string | Provisioning state of the resource. Known values are: "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", "Deleted", and "NotSpecified". |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
auditComment | string | comment for this object. |
certificateSelfSigned | string | use certificate self signed. Required. Known values are: "TRUE" and "FALSE". |
certificateSignerResourceId | string | Resource Id of certificate signer, to be populated only when certificateSelfSigned is false. |
description | string | user description for this object. |
etag | string | read only string representing last create or update. |
provisioningState | string | Provisioning state of the resource. Known values are: "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", "Deleted", and "NotSpecified". |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | global_rulestack_name, name | Get a CertificateObjectGlobalRulestackResource. | |
list | select | global_rulestack_name | List CertificateObjectGlobalRulestackResource resources by Tenant. | |
create_or_update | insert | global_rulestack_name, name, properties | Create a CertificateObjectGlobalRulestackResource. | |
create_or_update | replace | global_rulestack_name, name, properties | Create a CertificateObjectGlobalRulestackResource. | |
delete | delete | global_rulestack_name, name | Delete a CertificateObjectGlobalRulestackResource. |
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.
| Name | Datatype | Description |
|---|---|---|
global_rulestack_name | string | GlobalRulestack resource name. Required. |
name | string | certificate name. Required. |
SELECT examples
- get
- list
Get a CertificateObjectGlobalRulestackResource.
SELECT
id,
name,
auditComment,
certificateSelfSigned,
certificateSignerResourceId,
description,
etag,
provisioningState,
systemData,
type
FROM azure_isv.paloaltonetworksngfw.certificate_object_global_rulestack
WHERE global_rulestack_name = '{{ global_rulestack_name }}' -- required
AND name = '{{ name }}' -- required
;
List CertificateObjectGlobalRulestackResource resources by Tenant.
SELECT
id,
name,
auditComment,
certificateSelfSigned,
certificateSignerResourceId,
description,
etag,
provisioningState,
systemData,
type
FROM azure_isv.paloaltonetworksngfw.certificate_object_global_rulestack
WHERE global_rulestack_name = '{{ global_rulestack_name }}' -- required
;
INSERT examples
- create_or_update
- Manifest
Create a CertificateObjectGlobalRulestackResource.
INSERT INTO azure_isv.paloaltonetworksngfw.certificate_object_global_rulestack (
properties,
global_rulestack_name,
name
)
SELECT
'{{ properties }}' /* required */,
'{{ global_rulestack_name }}',
'{{ name }}'
RETURNING
id,
name,
properties,
systemData,
type
;
# Description fields are for documentation purposes
- name: certificate_object_global_rulestack
props:
- name: global_rulestack_name
value: "{{ global_rulestack_name }}"
description: Required parameter for the certificate_object_global_rulestack resource.
- name: name
value: "{{ name }}"
description: Required parameter for the certificate_object_global_rulestack resource.
- name: properties
value:
certificateSignerResourceId: "{{ certificateSignerResourceId }}"
certificateSelfSigned: "{{ certificateSelfSigned }}"
auditComment: "{{ auditComment }}"
description: "{{ description }}"
etag: "{{ etag }}"
REPLACE examples
- create_or_update
Create a CertificateObjectGlobalRulestackResource.
REPLACE azure_isv.paloaltonetworksngfw.certificate_object_global_rulestack
SET
properties = '{{ properties }}'
WHERE
global_rulestack_name = '{{ global_rulestack_name }}' --required
AND name = '{{ name }}' --required
AND properties = '{{ properties }}' --required
RETURNING
id,
name,
properties,
systemData,
type;
DELETE examples
- delete
Delete a CertificateObjectGlobalRulestackResource.
DELETE FROM azure_isv.paloaltonetworksngfw.certificate_object_global_rulestack
WHERE global_rulestack_name = '{{ global_rulestack_name }}' --required
AND name = '{{ name }}' --required
;