/* * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ import { TagsGetOptionalParams, TagsGetResponse } from "../models"; /** Interface representing a Tags. */ export interface Tags { /** * Get all available tag keys for the defined scope * @param scope The scope associated with tags operations. This includes * '/subscriptions/{subscriptionId}/' for subscription scope, * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for resourceGroup scope, * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}' for Billing Account scope, * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/departments/{departmentId}' for * Department scope, * '/providers/Microsoft.Billing/billingAccounts/{billingAccountId}/enrollmentAccounts/{enrollmentAccountId}' * for EnrollmentAccount scope and * '/providers/Microsoft.Management/managementGroups/{managementGroupId}' for Management Group scope.. * @param options The options parameters. */ get(scope: string, options?: TagsGetOptionalParams): Promise; }