marketplace_registration_definitions_without_scopes
Creates, updates, deletes, gets or lists a marketplace_registration_definitions_without_scopes
resource.
Overview
Name | marketplace_registration_definitions_without_scopes |
Type | Resource |
Id | azure.managed_services.marketplace_registration_definitions_without_scopes |
Fields
The following fields are returned by SELECT
queries:
- get
- list
OK - Returns the details of the marketplace registration definition.
Name | Datatype | Description |
---|---|---|
id | string | The fully qualified path of the marketplace registration definition. |
name | string | The name of the marketplace registration definition. |
plan | object | The details for the Managed Services offer’s plan in Azure Marketplace. |
properties | object | The properties of the marketplace registration definition. |
type | string | The type of the Azure resource (Microsoft.ManagedServices/marketplaceRegistrationDefinitions). |
OK - Returns a list of the marketplace registration definitions.
Name | Datatype | Description |
---|---|---|
id | string | The fully qualified path of the marketplace registration definition. |
name | string | The name of the marketplace registration definition. |
plan | object | The details for the Managed Services offer’s plan in Azure Marketplace. |
properties | object | The properties of the marketplace registration definition. |
type | string | The type of the Azure resource (Microsoft.ManagedServices/marketplaceRegistrationDefinitions). |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | marketplaceIdentifier | Get the marketplace registration definition for the marketplace identifier. | |
list | select | $filter | Gets a list of the marketplace registration definitions for the marketplace identifier. |
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 |
---|---|---|
marketplaceIdentifier | string | The Azure Marketplace identifier. Expected formats: {publisher}.{product[-preview]}.{planName}.{version} or {publisher}.{product[-preview]}.{planName} or {publisher}.{product[-preview]} or {publisher}). |
$filter | string | The filter query parameter to filter managed services resources by. |
SELECT
examples
- get
- list
Get the marketplace registration definition for the marketplace identifier.
SELECT
id,
name,
plan,
properties,
type
FROM azure.managed_services.marketplace_registration_definitions_without_scopes
WHERE marketplaceIdentifier = '{{ marketplaceIdentifier }}' -- required
;
Gets a list of the marketplace registration definitions for the marketplace identifier.
SELECT
id,
name,
plan,
properties,
type
FROM azure.managed_services.marketplace_registration_definitions_without_scopes
WHERE $filter = '{{ $filter }}'
;