@@ -94,6 +94,7 @@ export interface MetricDimension {
9494 displayName? : string ;
9595 internalName? : string ;
9696 name? : string ;
97+ toBeExportedForShoebox? : boolean ;
9798}
9899
99100// @public
@@ -125,6 +126,8 @@ export class MixedRealityClient extends coreClient.ServiceClient {
125126 apiVersion: string ;
126127 checkNameAvailabilityLocal(location : string , checkNameAvailability : CheckNameAvailabilityRequest , options ? : CheckNameAvailabilityLocalOptionalParams ): Promise <CheckNameAvailabilityLocalResponse >;
127128 // (undocumented)
129+ objectAnchorsAccounts: ObjectAnchorsAccounts ;
130+ // (undocumented)
128131 operations: Operations ;
129132 // (undocumented)
130133 remoteRenderingAccounts: RemoteRenderingAccounts ;
@@ -144,6 +147,106 @@ export interface MixedRealityClientOptionalParams extends coreClient.ServiceClie
144147// @public
145148export type NameUnavailableReason = string ;
146149
150+ // @public
151+ export type ObjectAnchorsAccount = TrackedResource & {
152+ identity? : ObjectAnchorsAccountIdentity ;
153+ plan? : Identity ;
154+ sku? : Sku ;
155+ kind? : Sku ;
156+ readonly systemData? : SystemData ;
157+ storageAccountName? : string ;
158+ readonly accountId? : string ;
159+ readonly accountDomain? : string ;
160+ };
161+
162+ // @public (undocumented)
163+ export type ObjectAnchorsAccountIdentity = Identity & {};
164+
165+ // @public
166+ export interface ObjectAnchorsAccountPage {
167+ nextLink? : string ;
168+ value? : ObjectAnchorsAccount [];
169+ }
170+
171+ // @public
172+ export interface ObjectAnchorsAccounts {
173+ create(resourceGroupName : string , accountName : string , objectAnchorsAccount : ObjectAnchorsAccount , options ? : ObjectAnchorsAccountsCreateOptionalParams ): Promise <ObjectAnchorsAccountsCreateResponse >;
174+ delete(resourceGroupName : string , accountName : string , options ? : ObjectAnchorsAccountsDeleteOptionalParams ): Promise <void >;
175+ get(resourceGroupName : string , accountName : string , options ? : ObjectAnchorsAccountsGetOptionalParams ): Promise <ObjectAnchorsAccountsGetResponse >;
176+ listByResourceGroup(resourceGroupName : string , options ? : ObjectAnchorsAccountsListByResourceGroupOptionalParams ): PagedAsyncIterableIterator <ObjectAnchorsAccount >;
177+ listBySubscription(options ? : ObjectAnchorsAccountsListBySubscriptionOptionalParams ): PagedAsyncIterableIterator <ObjectAnchorsAccount >;
178+ listKeys(resourceGroupName : string , accountName : string , options ? : ObjectAnchorsAccountsListKeysOptionalParams ): Promise <ObjectAnchorsAccountsListKeysResponse >;
179+ regenerateKeys(resourceGroupName : string , accountName : string , regenerate : AccountKeyRegenerateRequest , options ? : ObjectAnchorsAccountsRegenerateKeysOptionalParams ): Promise <ObjectAnchorsAccountsRegenerateKeysResponse >;
180+ update(resourceGroupName : string , accountName : string , objectAnchorsAccount : ObjectAnchorsAccount , options ? : ObjectAnchorsAccountsUpdateOptionalParams ): Promise <ObjectAnchorsAccountsUpdateResponse >;
181+ }
182+
183+ // @public
184+ export interface ObjectAnchorsAccountsCreateOptionalParams extends coreClient .OperationOptions {
185+ }
186+
187+ // @public
188+ export type ObjectAnchorsAccountsCreateResponse = ObjectAnchorsAccount ;
189+
190+ // @public
191+ export interface ObjectAnchorsAccountsDeleteOptionalParams extends coreClient .OperationOptions {
192+ }
193+
194+ // @public
195+ export interface ObjectAnchorsAccountsGetOptionalParams extends coreClient .OperationOptions {
196+ }
197+
198+ // @public
199+ export type ObjectAnchorsAccountsGetResponse = ObjectAnchorsAccount ;
200+
201+ // @public
202+ export interface ObjectAnchorsAccountsListByResourceGroupNextOptionalParams extends coreClient .OperationOptions {
203+ }
204+
205+ // @public
206+ export type ObjectAnchorsAccountsListByResourceGroupNextResponse = ObjectAnchorsAccountPage ;
207+
208+ // @public
209+ export interface ObjectAnchorsAccountsListByResourceGroupOptionalParams extends coreClient .OperationOptions {
210+ }
211+
212+ // @public
213+ export type ObjectAnchorsAccountsListByResourceGroupResponse = ObjectAnchorsAccountPage ;
214+
215+ // @public
216+ export interface ObjectAnchorsAccountsListBySubscriptionNextOptionalParams extends coreClient .OperationOptions {
217+ }
218+
219+ // @public
220+ export type ObjectAnchorsAccountsListBySubscriptionNextResponse = ObjectAnchorsAccountPage ;
221+
222+ // @public
223+ export interface ObjectAnchorsAccountsListBySubscriptionOptionalParams extends coreClient .OperationOptions {
224+ }
225+
226+ // @public
227+ export type ObjectAnchorsAccountsListBySubscriptionResponse = ObjectAnchorsAccountPage ;
228+
229+ // @public
230+ export interface ObjectAnchorsAccountsListKeysOptionalParams extends coreClient .OperationOptions {
231+ }
232+
233+ // @public
234+ export type ObjectAnchorsAccountsListKeysResponse = AccountKeys ;
235+
236+ // @public
237+ export interface ObjectAnchorsAccountsRegenerateKeysOptionalParams extends coreClient .OperationOptions {
238+ }
239+
240+ // @public
241+ export type ObjectAnchorsAccountsRegenerateKeysResponse = AccountKeys ;
242+
243+ // @public
244+ export interface ObjectAnchorsAccountsUpdateOptionalParams extends coreClient .OperationOptions {
245+ }
246+
247+ // @public
248+ export type ObjectAnchorsAccountsUpdateResponse = ObjectAnchorsAccount ;
249+
147250// @public
148251export interface Operation {
149252 display? : OperationDisplay ;
0 commit comments