UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

1 lines 1.82 kB
{"version":3,"sources":["../../../packages/core/azure/resources/location-data.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,QAAQ;IACrB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;CAC1B;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;OAEG;IACH,KAAK,EAAE,QAAQ,EAAE,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACrC;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IAEvB;;OAEG;IACH,KAAK,CAAC,EAAE,kBAAkB,CAAC;CAC9B","file":"location-data.d.ts","sourcesContent":["/**\r\n * Location information.\r\n */\r\nexport interface Location {\r\n /**\r\n * The display name of the location.\r\n */\r\n displayName: string;\r\n\r\n /**\r\n * The fully qualified ID of the location.\r\n * For example, /subscriptions/00000000-0000-0000-0000-000000000000/locations/westus.\r\n */\r\n id: string;\r\n\r\n /**\r\n * The latitude of the location.\r\n */\r\n latitude: string;\r\n\r\n /**\r\n * The longitude of the location.\r\n */\r\n longitude: string;\r\n\r\n /**\r\n * The location name.\r\n */\r\n name: string;\r\n\r\n /**\r\n * The subscription Id.\r\n */\r\n subscriptionId: string;\r\n}\r\n\r\n/**\r\n * Location list operation response.\r\n */\r\nexport interface LocationListResult {\r\n /**\r\n * The list of locations.\r\n */\r\n value: Location[];\r\n}\r\n\r\n/**\r\n * Custom response to get all available geo-locations.\r\n */\r\nexport interface LocationsOperationResult {\r\n /**\r\n * The http status code.\r\n */\r\n httpStatusCode: number;\r\n\r\n /**\r\n * The subscription list.\r\n */\r\n value?: LocationListResult;\r\n}\r\n"]}