operations
Creates, updates, deletes, gets or lists an operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure_isv.sap_workloads.operations |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
name | string | The name of the operation, as per Resource-Based Access Control (RBAC). Examples: "Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action" |
actionType | string | Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs. |
display | object | Localized display information for this particular operation. |
isDataAction | boolean | Whether the operation applies to data-plane. This is "true" for data-plane operations and "false" for ARM/control-plane operations. |
origin | string | The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system" |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | Lists all the available API operations under this PR | ||
sap_sizing_recommendations | exec | subscriptionId , location , appLocation , environment , sapProduct , deploymentType , saps , dbMemory , databaseType | Get SAP sizing recommendations by providing input SAPS for application tier and memory required for database tier | |
sap_supported_sku | exec | subscriptionId , location , appLocation , environment , sapProduct , databaseType , deploymentType | Get a list of SAP supported SKUs for ASCS, Application and Database tier. | |
sap_disk_configurations | exec | subscriptionId , location , appLocation , environment , sapProduct , databaseType , deploymentType , dbVmSku | Get the SAP Disk Configuration Layout prod/non-prod SAP System. | |
sap_availability_zone_details | exec | subscriptionId , location , appLocation , sapProduct , databaseType | Get the recommended SAP Availability Zone Pair Details for your region. |
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 | The name of Azure region. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
Lists all the available API operations under this PR
SELECT
name,
actionType,
display,
isDataAction,
origin
FROM azure_isv.sap_workloads.operations
;
Lifecycle Methods
- sap_sizing_recommendations
- sap_supported_sku
- sap_disk_configurations
- sap_availability_zone_details
Get SAP sizing recommendations by providing input SAPS for application tier and memory required for database tier
EXEC azure_isv.sap_workloads.operations.sap_sizing_recommendations
@subscriptionId='{{ subscriptionId }}' --required,
@location='{{ location }}' --required
@@json=
'{
"appLocation": "{{ appLocation }}",
"environment": "{{ environment }}",
"sapProduct": "{{ sapProduct }}",
"deploymentType": "{{ deploymentType }}",
"saps": {{ saps }},
"dbMemory": {{ dbMemory }},
"databaseType": "{{ databaseType }}",
"dbScaleMethod": "{{ dbScaleMethod }}",
"highAvailabilityType": "{{ highAvailabilityType }}"
}'
;
Get a list of SAP supported SKUs for ASCS, Application and Database tier.
EXEC azure_isv.sap_workloads.operations.sap_supported_sku
@subscriptionId='{{ subscriptionId }}' --required,
@location='{{ location }}' --required
@@json=
'{
"appLocation": "{{ appLocation }}",
"environment": "{{ environment }}",
"sapProduct": "{{ sapProduct }}",
"deploymentType": "{{ deploymentType }}",
"databaseType": "{{ databaseType }}",
"highAvailabilityType": "{{ highAvailabilityType }}"
}'
;
Get the SAP Disk Configuration Layout prod/non-prod SAP System.
EXEC azure_isv.sap_workloads.operations.sap_disk_configurations
@subscriptionId='{{ subscriptionId }}' --required,
@location='{{ location }}' --required
@@json=
'{
"appLocation": "{{ appLocation }}",
"environment": "{{ environment }}",
"sapProduct": "{{ sapProduct }}",
"databaseType": "{{ databaseType }}",
"deploymentType": "{{ deploymentType }}",
"dbVmSku": "{{ dbVmSku }}"
}'
;
Get the recommended SAP Availability Zone Pair Details for your region.
EXEC azure_isv.sap_workloads.operations.sap_availability_zone_details
@subscriptionId='{{ subscriptionId }}' --required,
@location='{{ location }}' --required
@@json=
'{
"appLocation": "{{ appLocation }}",
"sapProduct": "{{ sapProduct }}",
"databaseType": "{{ databaseType }}"
}'
;