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
- vw_marketplace_registration_definitions
- marketplace_registration_definitions
Name | Datatype | Description |
---|---|---|
id | text | The fully qualified path of the marketplace registration definition. |
name | text | The name of the marketplace registration definition. |
authorizations | text | field from the properties object |
eligible_authorizations | text | field from the properties object |
managed_by_tenant_id | text | field from the properties object |
marketplaceIdentifier | text | field from the properties object |
offer_display_name | text | field from the properties object |
plan | text | Plan for the resource. |
plan_display_name | text | field from the properties object |
publisher_display_name | text | field from the properties object |
scope | text | field from the properties object |
type | text | 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. |
plan | object | Plan for the resource. |
properties | object | The properties of the marketplace registration definition. |
type | string | The type of the Azure resource (Microsoft.ManagedServices/marketplaceRegistrationDefinitions). |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | marketplaceIdentifier, scope | Get the marketplace registration definition for the marketplace identifier. |
list | SELECT | scope | Gets a list of the marketplace registration definitions for the marketplace identifier. |
SELECT
examples
Gets a list of the marketplace registration definitions for the marketplace identifier.
- vw_marketplace_registration_definitions
- marketplace_registration_definitions
SELECT
id,
name,
authorizations,
eligible_authorizations,
managed_by_tenant_id,
marketplaceIdentifier,
offer_display_name,
plan,
plan_display_name,
publisher_display_name,
scope,
type
FROM azure.managed_services.vw_marketplace_registration_definitions
WHERE scope = '{{ scope }}';
SELECT
id,
name,
plan,
properties,
type
FROM azure.managed_services.marketplace_registration_definitions
WHERE scope = '{{ scope }}';