@@ -681,6 +681,16 @@ export interface CertificateCreateOrUpdateParameters extends ProxyResource {
681681 password ?: string ;
682682}
683683
684+ /**
685+ * Contains the information for a detector.
686+ */
687+ export interface DetectorResponse extends ProxyResource {
688+ /**
689+ * A base64 encoded string that represents the content of a detector.
690+ */
691+ value ?: string ;
692+ }
693+
684694/**
685695 * Contains information about a private link resource.
686696 */
@@ -743,7 +753,7 @@ export interface ImageReference {
743753 offer ?: string ;
744754 /**
745755 * The SKU of the Azure Virtual Machines Marketplace image. For example, 18.04-LTS or
746- * 2019-Datacenter .
756+ * 2022-datacenter .
747757 */
748758 sku ?: string ;
749759 /**
@@ -2759,6 +2769,18 @@ export interface BatchAccountListResult extends Array<BatchAccount> {
27592769 nextLink ?: string ;
27602770}
27612771
2772+ /**
2773+ * @interface
2774+ * Values returned by the List operation.
2775+ * @extends Array<DetectorResponse>
2776+ */
2777+ export interface DetectorListResult extends Array < DetectorResponse > {
2778+ /**
2779+ * The URL to get the next set of results.
2780+ */
2781+ nextLink ?: string ;
2782+ }
2783+
27622784/**
27632785 * @interface
27642786 * Values returned by the List operation.
@@ -3299,6 +3321,46 @@ export type BatchAccountGetKeysResponse = BatchAccountKeys & {
32993321 } ;
33003322} ;
33013323
3324+ /**
3325+ * Contains response data for the listDetectors operation.
3326+ */
3327+ export type BatchAccountListDetectorsResponse = DetectorListResult & {
3328+ /**
3329+ * The underlying HTTP response.
3330+ */
3331+ _response : msRest . HttpResponse & {
3332+ /**
3333+ * The response body as text (string format)
3334+ */
3335+ bodyAsText : string ;
3336+
3337+ /**
3338+ * The response body as parsed JSON or XML
3339+ */
3340+ parsedBody : DetectorListResult ;
3341+ } ;
3342+ } ;
3343+
3344+ /**
3345+ * Contains response data for the getDetector operation.
3346+ */
3347+ export type BatchAccountGetDetectorResponse = DetectorResponse & {
3348+ /**
3349+ * The underlying HTTP response.
3350+ */
3351+ _response : msRest . HttpResponse & {
3352+ /**
3353+ * The response body as text (string format)
3354+ */
3355+ bodyAsText : string ;
3356+
3357+ /**
3358+ * The response body as parsed JSON or XML
3359+ */
3360+ parsedBody : DetectorResponse ;
3361+ } ;
3362+ } ;
3363+
33023364/**
33033365 * Contains response data for the listOutboundNetworkDependenciesEndpoints operation.
33043366 */
@@ -3359,6 +3421,26 @@ export type BatchAccountListByResourceGroupNextResponse = BatchAccountListResult
33593421 } ;
33603422} ;
33613423
3424+ /**
3425+ * Contains response data for the listDetectorsNext operation.
3426+ */
3427+ export type BatchAccountListDetectorsNextResponse = DetectorListResult & {
3428+ /**
3429+ * The underlying HTTP response.
3430+ */
3431+ _response : msRest . HttpResponse & {
3432+ /**
3433+ * The response body as text (string format)
3434+ */
3435+ bodyAsText : string ;
3436+
3437+ /**
3438+ * The response body as parsed JSON or XML
3439+ */
3440+ parsedBody : DetectorListResult ;
3441+ } ;
3442+ } ;
3443+
33623444/**
33633445 * Contains response data for the listOutboundNetworkDependenciesEndpointsNext operation.
33643446 */
0 commit comments