community_galleries
Creates, updates, deletes, gets or lists a community_galleries resource.
Overview
| Name | community_galleries |
| Type | Resource |
| Id | azure.compute.community_galleries |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
name | string | Resource name |
identifier | object | The identifier information of community gallery. |
location | string | Resource location |
properties | object | Describes the properties of a community gallery. |
type | string | Resource type |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, location, publicGalleryName | Get a community gallery by gallery public name. |
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 |
|---|---|---|
location | string | Resource location. |
publicGalleryName | string | The public name of the community gallery. |
subscriptionId | string | Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT examples
- get
Get a community gallery by gallery public name.
SELECT
name,
identifier,
location,
properties,
type
FROM azure.compute.community_galleries
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND publicGalleryName = '{{ publicGalleryName }}' -- required
;