MarketplaceSubscriptionOperations Class
MarketplaceSubscriptionOperations.
You should not instantiate this class directly. Instead, you should create an MLClient instance that instantiates it for you and attaches it as an attribute.
- Inheritance
-
azure.ai.ml._scope_dependent_operations._ScopeDependentOperationsMarketplaceSubscriptionOperations
Constructor
MarketplaceSubscriptionOperations(operation_scope: OperationScope, operation_config: OperationConfig, service_client: AzureMachineLearningWorkspaces)
Parameters
Name | Description |
---|---|
operation_scope
Required
|
|
operation_config
Required
|
|
service_client
Required
|
|
Methods
begin_create_or_update |
Note This is an experimental method, and may change at any time. Please see https://aka.ms/azuremlexperimental for more information. Create or update a Marketplace Subscription. |
begin_delete |
Note This is an experimental method, and may change at any time. Please see https://aka.ms/azuremlexperimental for more information. Delete a Marketplace Subscription. |
get |
Note This is an experimental method, and may change at any time. Please see https://aka.ms/azuremlexperimental for more information. Get a Marketplace Subscription resource. |
list |
Note This is an experimental method, and may change at any time. Please see https://aka.ms/azuremlexperimental for more information. List marketplace subscriptions of the workspace. |
begin_create_or_update
Note
This is an experimental method, and may change at any time. Please see https://aka.ms/azuremlexperimental for more information.
Create or update a Marketplace Subscription.
begin_create_or_update(marketplace_subscription: MarketplaceSubscription, **kwargs) -> LROPoller[MarketplaceSubscription]
Parameters
Name | Description |
---|---|
marketplace_subscription
Required
|
The marketplace subscription entity. |
Returns
Type | Description |
---|---|
A poller to track the operation status |
begin_delete
Note
This is an experimental method, and may change at any time. Please see https://aka.ms/azuremlexperimental for more information.
Delete a Marketplace Subscription.
begin_delete(name: str, **kwargs) -> LROPoller[None]
Parameters
Name | Description |
---|---|
name
Required
|
Name of the marketplace subscription. |
Returns
Type | Description |
---|---|
A poller to track the operation status. |
get
Note
This is an experimental method, and may change at any time. Please see https://aka.ms/azuremlexperimental for more information.
Get a Marketplace Subscription resource.
get(name: str, **kwargs) -> MarketplaceSubscription
Parameters
Name | Description |
---|---|
name
Required
|
Name of the marketplace subscription. |
Returns
Type | Description |
---|---|
Marketplace subscription object retrieved from the service. |
list
Note
This is an experimental method, and may change at any time. Please see https://aka.ms/azuremlexperimental for more information.
List marketplace subscriptions of the workspace.
list(**kwargs) -> Iterable[MarketplaceSubscription]
Returns
Type | Description |
---|---|
A list of marketplace subscriptions |
Azure SDK for Python