Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,42 @@ title: LogAnalyticsManagementClient
``` yaml
description: Operational Insights Client
openapi-type: arm
tag: package-2025-07-01
tag: package-2026-03-01
```


### Tag: package-2026-03-01

These settings apply only when `--tag=package-2026-03-01` is specified on the command line.

```yaml $(tag) == 'package-2026-03-01'
input-file:
- stable/2026-03-01/AvailableServiceTiers.json
- stable/2026-03-01/Clusters.json
- stable/2026-03-01/DataExports.json
- stable/2026-03-01/DataSources.json
- stable/2026-03-01/Gateways.json
- stable/2026-03-01/IntelligencePacks.json
- stable/2026-03-01/LinkedServices.json
- stable/2026-03-01/LinkedStorageAccounts.json
- stable/2026-03-01/ManagementGroups.json
- stable/2026-03-01/Operations.json
- stable/2026-03-01/OperationStatuses.json
- stable/2026-03-01/QueryPackQueries.json
- stable/2026-03-01/QueryPacks.json
- stable/2026-03-01/SavedSearches.json
- stable/2026-03-01/Schema.json
- stable/2026-03-01/SharedKeys.json
- stable/2026-03-01/StorageInsightConfigs.json
- stable/2026-03-01/SummaryLogs.json
- stable/2026-03-01/Tables.json
- stable/2026-03-01/Usages.json
- stable/2026-03-01/WorkspacePurge.json
- stable/2026-03-01/Workspaces.json
- stable/2026-03-01/WorkspacesFailover.json
- stable/2026-03-01/Workspaces_NetworkSecurityPerimeter_API.json
```

### Tag: package-2025-07-01

These settings apply only when `--tag=package-2025-07-01` is specified on the command line.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
{

Check warning on line 1 in specification/operationalinsights/resource-manager/Microsoft.OperationalInsights/OperationalInsights/stable/2026-03-01/AvailableServiceTiers.json

View workflow job for this annotation

GitHub Actions / TypeSpec Requirement

WARNING: This PR uses OpenAPI / Swagger. All Azure services are required to convert to TypeSpec by March 30, 2026. PRs not using TypeSpec will be blocked after that date. Starting July 1, 2026, all SDKs will be generated from TypeSpec as the autorest toolchain is being retired. Please reach out to tspconversion@service.microsoft.com with any questions and see http://aka.ms/azsdk/typespec for more details on TypeSpec.
"swagger": "2.0",
"info": {
"title": "Azure Log Analytics",
"description": "Azure Log Analytics API reference",
"version": "2026-03-01"
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"security": [
{
"azure_auth": [
"user_impersonation"
]
}
],
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"description": "Azure Active Directory OAuth2 Flow",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"paths": {
"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/availableServiceTiers": {
"get": {
"tags": [
"AvailableServiceTiers"
],
"x-ms-examples": {
"AvailableServiceTiers": {
"$ref": "./examples/WorkspacesAvailableServiceTiers.json"
}
},
"operationId": "AvailableServiceTiers_ListByWorkspace",
"description": "Gets the available service tiers for the workspace.",
"parameters": [
{
"$ref": "../../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v1/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "../../common/v1/types.json#/parameters/WorkspaceNameParameter"
},
{
"$ref": "../../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "OK response definition.",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/AvailableServiceTier"
}
}
}
}
}
}
},
"definitions": {
"AvailableServiceTier": {
"description": "Service Tier details.",
"properties": {
"serviceTier": {
"readOnly": true,
"type": "string",
"description": "The name of the Service Tier.",
"enum": [
"Free",
"Standard",
"Premium",
"PerNode",
"PerGB2018",
"Standalone",
"CapacityReservation"
],
"x-ms-enum": {
"name": "SkuNameEnum",
"modelAsString": true
}
},
"enabled": {
"readOnly": true,
"type": "boolean",
"description": "True if the Service Tier is enabled for the workspace."
},
"minimumRetention": {
"readOnly": true,
"type": "integer",
"format": "int64",
"description": "The minimum retention for the Service Tier, in days."
},
"maximumRetention": {
"readOnly": true,
"type": "integer",
"format": "int64",
"description": "The maximum retention for the Service Tier, in days."
},
"defaultRetention": {
"readOnly": true,
"type": "integer",
"format": "int64",
"description": "The default retention for the Service Tier, in days."
},
"capacityReservationLevel": {
"readOnly": true,
"type": "integer",
"format": "int64",
"description": "The capacity reservation level in GB per day. Returned for the Capacity Reservation Service Tier."
},
"lastSkuUpdate": {
"readOnly": true,
"type": "string",
"description": "Time when the sku was last updated for the workspace. Returned for the Capacity Reservation Service Tier."
}
}
}
},
"parameters": {}
}
Loading
Loading