@@ -274,6 +274,13 @@ export interface BatchAccountDeleteOptionalParams extends coreClient.OperationOp
274274 updateIntervalInMs? : number ;
275275}
276276
277+ // @public
278+ export interface BatchAccountGetDetectorOptionalParams extends coreClient .OperationOptions {
279+ }
280+
281+ // @public
282+ export type BatchAccountGetDetectorResponse = DetectorResponse ;
283+
277284// @public
278285export interface BatchAccountGetKeysOptionalParams extends coreClient .OperationOptions {
279286}
@@ -319,6 +326,20 @@ export interface BatchAccountListByResourceGroupOptionalParams extends coreClien
319326// @public
320327export type BatchAccountListByResourceGroupResponse = BatchAccountListResult ;
321328
329+ // @public
330+ export interface BatchAccountListDetectorsNextOptionalParams extends coreClient .OperationOptions {
331+ }
332+
333+ // @public
334+ export type BatchAccountListDetectorsNextResponse = DetectorListResult ;
335+
336+ // @public
337+ export interface BatchAccountListDetectorsOptionalParams extends coreClient .OperationOptions {
338+ }
339+
340+ // @public
341+ export type BatchAccountListDetectorsResponse = DetectorListResult ;
342+
322343// @public
323344export interface BatchAccountListNextOptionalParams extends coreClient .OperationOptions {
324345}
@@ -360,9 +381,11 @@ export interface BatchAccountOperations {
360381 beginDelete(resourceGroupName : string , accountName : string , options ? : BatchAccountDeleteOptionalParams ): Promise <PollerLike <PollOperationState <void >, void >>;
361382 beginDeleteAndWait(resourceGroupName : string , accountName : string , options ? : BatchAccountDeleteOptionalParams ): Promise <void >;
362383 get(resourceGroupName : string , accountName : string , options ? : BatchAccountGetOptionalParams ): Promise <BatchAccountGetResponse >;
384+ getDetector(resourceGroupName : string , accountName : string , detectorId : string , options ? : BatchAccountGetDetectorOptionalParams ): Promise <BatchAccountGetDetectorResponse >;
363385 getKeys(resourceGroupName : string , accountName : string , options ? : BatchAccountGetKeysOptionalParams ): Promise <BatchAccountGetKeysResponse >;
364386 list(options ? : BatchAccountListOptionalParams ): PagedAsyncIterableIterator <BatchAccount >;
365387 listByResourceGroup(resourceGroupName : string , options ? : BatchAccountListByResourceGroupOptionalParams ): PagedAsyncIterableIterator <BatchAccount >;
388+ listDetectors(resourceGroupName : string , accountName : string , options ? : BatchAccountListDetectorsOptionalParams ): PagedAsyncIterableIterator <DetectorResponse >;
366389 listOutboundNetworkDependenciesEndpoints(resourceGroupName : string , accountName : string , options ? : BatchAccountListOutboundNetworkDependenciesEndpointsOptionalParams ): PagedAsyncIterableIterator <OutboundEnvironmentEndpoint >;
367390 regenerateKey(resourceGroupName : string , accountName : string , parameters : BatchAccountRegenerateKeyParameters , options ? : BatchAccountRegenerateKeyOptionalParams ): Promise <BatchAccountRegenerateKeyResponse >;
368391 synchronizeAutoStorageKeys(resourceGroupName : string , accountName : string , options ? : BatchAccountSynchronizeAutoStorageKeysOptionalParams ): Promise <void >;
@@ -706,6 +729,17 @@ export interface DeploymentConfiguration {
706729 virtualMachineConfiguration? : VirtualMachineConfiguration ;
707730}
708731
732+ // @public
733+ export interface DetectorListResult {
734+ nextLink? : string ;
735+ value? : DetectorResponse [];
736+ }
737+
738+ // @public
739+ export type DetectorResponse = ProxyResource & {
740+ value? : string ;
741+ };
742+
709743// @public
710744export interface DiffDiskSettings {
711745 placement? : " CacheDisk" ;
@@ -719,6 +753,9 @@ export interface DiskEncryptionConfiguration {
719753// @public
720754export type DiskEncryptionTarget = " OsDisk" | " TemporaryDisk" ;
721755
756+ // @public
757+ export type DynamicVNetAssignmentScope = " none" | " job" ;
758+
722759// @public
723760export type ElevationLevel = " NonAdmin" | " Admin" ;
724761
@@ -920,6 +957,7 @@ export type NameAvailabilityReason = "Invalid" | "AlreadyExists";
920957
921958// @public
922959export interface NetworkConfiguration {
960+ dynamicVNetAssignmentScope? : DynamicVNetAssignmentScope ;
923961 endpointConfiguration? : PoolEndpointConfiguration ;
924962 publicIPAddressConfiguration? : PublicIPAddressConfiguration ;
925963 subnetId? : string ;
0 commit comments