marketplace_registration_definitions
Creates, updates, deletes, gets or lists a marketplace_registration_definitions resource.
Overview
| Name | marketplace_registration_definitions |
| Type | Resource |
| Id | azure.managed_services.marketplace_registration_definitions |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | The fully qualified path of the marketplace registration definition. |
name | string | The name of the marketplace registration definition. |
authorizations | array | The collection of authorization objects describing the access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant. Required. |
eligibleAuthorizations | array | The collection of eligible authorization objects describing the just-in-time access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant. |
managedByTenantId | string | The identifier of the managedBy tenant. Required. |
offerDisplayName | string | The marketplace offer display name. |
plan | object | The details for the Managed Services offer’s plan in Azure Marketplace. |
planDisplayName | string | The marketplace plan display name. |
publisherDisplayName | string | The marketplace publisher display name. |
type | string | The type of the Azure resource (Microsoft.ManagedServices/marketplaceRegistrationDefinitions). |
| Name | Datatype | Description |
|---|---|---|
id | string | The fully qualified path of the marketplace registration definition. |
name | string | The name of the marketplace registration definition. |
authorizations | array | The collection of authorization objects describing the access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant. Required. |
eligibleAuthorizations | array | The collection of eligible authorization objects describing the just-in-time access Azure Active Directory principals in the managedBy tenant will receive on the delegated resource in the managed tenant. |
managedByTenantId | string | The identifier of the managedBy tenant. Required. |
offerDisplayName | string | The marketplace offer display name. |
plan | object | The details for the Managed Services offer’s plan in Azure Marketplace. |
planDisplayName | string | The marketplace plan display name. |
publisherDisplayName | string | The marketplace publisher display name. |
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 | scope, marketplace_identifier | Get the marketplace registration definition for the marketplace identifier. | |
list | select | scope | $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 |
|---|---|---|
marketplace_identifier | string | The Azure Marketplace identifier. Expected formats: {publisher}.{product[-preview]}.{planName}.{version} or {publisher}.{product[-preview]}.{planName} or {publisher}.{product[-preview]} or {publisher}). Required. |
scope | string | The scope of the resource. Required. |
$filter | string | The filter query parameter to filter marketplace registration definitions by plan identifier, publisher, version etc. Default value is None. |
SELECT examples
- get
- list
Get the marketplace registration definition for the marketplace identifier.
SELECT
id,
name,
authorizations,
eligibleAuthorizations,
managedByTenantId,
offerDisplayName,
plan,
planDisplayName,
publisherDisplayName,
type
FROM azure.managed_services.marketplace_registration_definitions
WHERE scope = '{{ scope }}' -- required
AND marketplace_identifier = '{{ marketplace_identifier }}' -- required
;
Gets a list of the marketplace registration definitions for the marketplace identifier.
SELECT
id,
name,
authorizations,
eligibleAuthorizations,
managedByTenantId,
offerDisplayName,
plan,
planDisplayName,
publisherDisplayName,
type
FROM azure.managed_services.marketplace_registration_definitions
WHERE scope = '{{ scope }}' -- required
AND $filter = '{{ $filter }}'
;