diff --git a/src/normalizer.ts b/src/normalizer.ts index fa3ec6ba..a4770f9a 100644 --- a/src/normalizer.ts +++ b/src/normalizer.ts @@ -3,6 +3,7 @@ import {appendToDescription, escapeBlockComment, isSchemaLike, justName, toSafeS import {Options} from './' import {DereferencedPaths} from './resolver' import {isDeepStrictEqual} from 'util' +import {typesOfSchema} from './typesOfSchema' type Rule = ( schema: LinkedJSONSchema, @@ -222,6 +223,30 @@ rules.set('Transform const to singleton enum', schema => { } }) +rules.set('Propagate additionalProperties=false to all intersection members', schema => { + if (schema.additionalProperties !== false) { + return + } + schema.allOf?.forEach(_ => { + if (typesOfSchema(_)[0] !== 'NAMED_SCHEMA' && typesOfSchema(_)[0] !== 'UNNAMED_SCHEMA') { + return + } + _.additionalProperties = false + }) + schema.anyOf?.forEach(_ => { + if (typesOfSchema(_)[0] !== 'NAMED_SCHEMA' && typesOfSchema(_)[0] !== 'UNNAMED_SCHEMA') { + return + } + _.additionalProperties = false + }) + schema.oneOf?.forEach(_ => { + if (typesOfSchema(_)[0] !== 'NAMED_SCHEMA' && typesOfSchema(_)[0] !== 'UNNAMED_SCHEMA') { + return + } + _.additionalProperties = false + }) +}) + export function normalize( rootSchema: LinkedJSONSchema, dereferencedPaths: DereferencedPaths, diff --git a/src/parser.ts b/src/parser.ts index a52479fc..1fb3fe5e 100644 --- a/src/parser.ts +++ b/src/parser.ts @@ -427,6 +427,20 @@ via the \`patternProperty\` "${key.replace('*/', '*\\/')}".` ) } + if (schema.required) { + asts = asts.concat( + map(schema.required, key => { + return { + ast: {type: 'UNKNOWN'}, + isPatternProperty: false, + isRequired: true, + isUnreachableDefinition: false, + keyName: key, + } + }), + ) + } + if (options.unreachableDefinitions) { asts = asts.concat( map(schema.$defs, (value, key: string) => { diff --git a/src/typesOfSchema.ts b/src/typesOfSchema.ts index 7ba3f5d5..9c109eb0 100644 --- a/src/typesOfSchema.ts +++ b/src/typesOfSchema.ts @@ -140,8 +140,8 @@ const matchers: Record boolean> = { } return 'enum' in schema }, - UNNAMED_SCHEMA() { - return false // Explicitly handled as the default case + UNNAMED_SCHEMA(schema) { + return !('$id' in schema) && ('patternProperties' in schema || 'properties' in schema || 'required' in schema) }, UNTYPED_ARRAY(schema) { return schema.type === 'array' && !('items' in schema) diff --git a/test/__snapshots__/test/test.ts.md b/test/__snapshots__/test/test.ts.md index 43fcff5a..7fe6b7ae 100644 --- a/test/__snapshots__/test/test.ts.md +++ b/test/__snapshots__/test/test.ts.md @@ -188,17 +188,52 @@ Generated by [AVA](https://avajs.dev). */␊ ␊ export interface AllOf {␊ - foo: Foo & Bar;␊ + foo: (Foo & Bar) & {␊ + [k: string]: unknown;␊ + };␊ + foo: unknown;␊ + bar: unknown;␊ }␊ export interface Foo {␊ a: string;␊ b: number;␊ + a: unknown;␊ + b: unknown;␊ }␊ export interface Bar {␊ a: string;␊ + a: unknown;␊ + b: unknown;␊ }␊ ` +## allOf.properties.js + +> Expected output to match snapshot for e2e test: allOf.properties.js + + `/* eslint-disable */␊ + /**␊ + * This file was automatically generated by json-schema-to-typescript.␊ + * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,␊ + * and run json-schema-to-typescript to regenerate this file.␊ + */␊ + ␊ + export type AllOf = ({␊ + a: unknown;␊ + } & (␊ + | {␊ + b: unknown;␊ + }␊ + | {␊ + c: unknown;␊ + }␊ + )) & {␊ + a?: string;␊ + b?: string;␊ + c?: string;␊ + };␊ + ` + ## anyOf.js > Expected output to match snapshot for e2e test: anyOf.js @@ -211,11 +246,15 @@ Generated by [AVA](https://avajs.dev). */␊ ␊ export interface AnyOf {␊ - foo: Foo | Bar | Baz;␊ + foo: (Foo | Bar | Baz) & {␊ + [k: string]: unknown;␊ + };␊ + foo: unknown;␊ }␊ export interface Foo {␊ a: string;␊ b?: number;␊ + a: unknown;␊ }␊ export interface Bar {␊ a?: "a" | "b" | "c";␊ @@ -244,6 +283,7 @@ Generated by [AVA](https://avajs.dev). export interface Foo {␊ a: string;␊ b?: number;␊ + a: unknown;␊ }␊ export interface Bar {␊ a?: "a" | "b" | "c";␊ @@ -365,6 +405,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ export interface ExampleSchema1 {␊ @@ -377,10 +419,13 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ export interface ExampleSchema2 {␊ isConflict: boolean;␊ + isConflict: unknown;␊ }␊ /**␊ * Title matches definition key for kicks␊ @@ -578,6 +623,7 @@ Generated by [AVA](https://avajs.dev). export interface ArrayOfEnum {␊ namedEnum: NamedEnum[];␊ tuples?: [] | [string] | [string, NamedEnum2];␊ + namedEnum: unknown;␊ }␊ ␊ export const enum NamedEnum {␊ @@ -614,13 +660,22 @@ Generated by [AVA](https://avajs.dev). description: string;␊ data: unknown;␊ valid: boolean;␊ + description: unknown;␊ + data: unknown;␊ + valid: unknown;␊ },␊ ...{␊ description: string;␊ data: unknown;␊ valid: boolean;␊ + description: unknown;␊ + data: unknown;␊ + valid: unknown;␊ }[]␊ ];␊ + description: unknown;␊ + schema: unknown;␊ + tests: unknown;␊ }[];␊ ` @@ -638,6 +693,8 @@ Generated by [AVA](https://avajs.dev). export type Countries = {␊ id: string;␊ name: string;␊ + id: unknown;␊ + name: unknown;␊ [k: string]: unknown;␊ }[];␊ ␊ @@ -709,6 +766,8 @@ Generated by [AVA](https://avajs.dev). height?: Height;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -787,7 +846,7 @@ Generated by [AVA](https://avajs.dev). */␊ ␊ export interface Deep {␊ - foo:␊ + foo: (␊ | (␊ | number␊ | Foo␊ @@ -797,14 +856,22 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown;␊ }␊ )␊ - | Bar;␊ + | Bar␊ + ) & {␊ + [k: string]: unknown;␊ + };␊ + foo: unknown;␊ }␊ export interface Foo {␊ a: string;␊ b: number;␊ + a: unknown;␊ + b: unknown;␊ }␊ export interface Bar {␊ a: string;␊ + a: unknown;␊ + b: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -839,6 +906,7 @@ Generated by [AVA](https://avajs.dev). */␊ lastName?: string;␊ description?: string;␊ + firstName: unknown;␊ }␊ ` @@ -860,11 +928,24 @@ Generated by [AVA](https://avajs.dev). value: number | string;␊ anotherValue?: null | string;␊ nullableStringEnum?: null | ("foo" | "bar");␊ - nullableObj?: null | {␊ + nullableObj?: (␊ + | (null & {␊ + foo: string;␊ + foo: unknown;␊ + [k: string]: unknown;␊ + })␊ + | {␊ + foo: string;␊ + foo: unknown;␊ + [k: string]: unknown;␊ + }␊ + ) & {␊ foo: string;␊ + foo: unknown;␊ [k: string]: unknown;␊ };␊ nullableArrayEnums?: null | ("foo" | "bar")[];␊ + value: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -950,6 +1031,7 @@ Generated by [AVA](https://avajs.dev). EntityDataCategory: {␊ APorpertyName?: EntityDataCategory;␊ };␊ + EntityDataCategory: unknown;␊ [k: string]: unknown;␊ }␊ ␊ @@ -1034,6 +1116,15 @@ Generated by [AVA](https://avajs.dev). enumThatComesFromADefinition?: EnumFromDefinition;␊ [k: string]: unknown;␊ };␊ + stringEnum: unknown;␊ + impliedStringEnum: unknown;␊ + booleanEnum: unknown;␊ + impliedBooleanEnum: unknown;␊ + integerEnum: unknown;␊ + impliedIntegerEnum: unknown;␊ + impliedNamedIntegerEnum: unknown;␊ + namedIntegerEnumTitle: unknown;␊ + impliedNamedIntegerEnumTitle: unknown;␊ }␊ ␊ export const enum NamedIntegerEnum {␊ @@ -1094,10 +1185,13 @@ Generated by [AVA](https://avajs.dev). ␊ export interface Extends extends Base1 {␊ foo: string;␊ + foo: unknown;␊ }␊ export interface Base1 {␊ firstName: string;␊ lastName: string;␊ + firstName: unknown;␊ + lastName: unknown;␊ }␊ ` @@ -1114,6 +1208,7 @@ Generated by [AVA](https://avajs.dev). ␊ export interface Extends extends Base1 {␊ foo: string;␊ + foo: unknown;␊ }␊ ` @@ -1130,13 +1225,17 @@ Generated by [AVA](https://avajs.dev). ␊ export interface Extends extends Base1, Base2 {␊ foo: string;␊ + foo: unknown;␊ }␊ export interface Base1 {␊ firstName: string;␊ lastName: string;␊ + firstName: unknown;␊ + lastName: unknown;␊ }␊ export interface Base2 {␊ age: number;␊ + age: unknown;␊ }␊ ` @@ -1153,6 +1252,7 @@ Generated by [AVA](https://avajs.dev). ␊ export interface Extends extends Base1, Base2 {␊ foo: string;␊ + foo: unknown;␊ }␊ ` @@ -1178,6 +1278,8 @@ Generated by [AVA](https://avajs.dev). export interface Circle extends Shape {␊ type: "circle";␊ radius: number;␊ + type: unknown;␊ + radius: unknown;␊ }␊ /**␊ * A Shape␊ @@ -1185,6 +1287,8 @@ Generated by [AVA](https://avajs.dev). export interface Shape {␊ type: string;␊ id: string;␊ + type: unknown;␊ + id: unknown;␊ }␊ /**␊ * A Square␊ @@ -1193,6 +1297,9 @@ Generated by [AVA](https://avajs.dev). type: "square";␊ height: number;␊ width: number;␊ + type: unknown;␊ + height: unknown;␊ + width: unknown;␊ }␊ ` @@ -1210,19 +1317,25 @@ Generated by [AVA](https://avajs.dev). export type Intersection = {␊ a: A;␊ b: B;␊ + a: unknown;␊ + b: unknown;␊ } & (C | D);␊ ␊ export interface A {␊ a: string;␊ + a: unknown;␊ }␊ export interface B {␊ b: string;␊ + b: unknown;␊ }␊ export interface C {␊ c: string;␊ + c: unknown;␊ }␊ export interface D {␊ d: string;␊ + d: unknown;␊ }␊ ` @@ -1245,15 +1358,15 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + c: unknown;␊ + d: unknown;␊ };␊ ␊ export interface A {␊ a?: string;␊ - [k: string]: unknown;␊ }␊ export interface B {␊ b?: string;␊ - [k: string]: unknown;␊ }␊ ` @@ -1289,16 +1402,25 @@ Generated by [AVA](https://avajs.dev). /**␊ * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Parameter2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + name: unknown;␊ + in: unknown;␊ };␊ export type Parameter1 = ExampleXORExamples & SchemaXORContent & ParameterLocation;␊ /**␊ * Schema and content are mutually exclusive, at least one is required␊ */␊ - export type SchemaXORContent = {␊ - [k: string]: unknown;␊ - };␊ + export type SchemaXORContent =␊ + | {␊ + schema: unknown;␊ + }␊ + | ({} & {␊ + content: unknown;␊ + });␊ /**␊ * Parameter location␊ */␊ @@ -1307,22 +1429,19 @@ Generated by [AVA](https://avajs.dev). in?: "path";␊ style?: "matrix" | "label" | "simple";␊ required: true;␊ - [k: string]: unknown;␊ + required: unknown;␊ }␊ | {␊ in?: "query";␊ style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject";␊ - [k: string]: unknown;␊ }␊ | {␊ in?: "header";␊ style?: "simple";␊ - [k: string]: unknown;␊ }␊ | {␊ in?: "cookie";␊ style?: "form";␊ - [k: string]: unknown;␊ };␊ export type MediaType = MediaType1 & {␊ schema?: Schema | Reference;␊ @@ -1334,6 +1453,9 @@ Generated by [AVA](https://avajs.dev). [k: string]: Encoding;␊ };␊ /**␊ + * This interface was referenced by \`MediaType2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^x-".␊ */␊ @@ -1350,7 +1472,7 @@ Generated by [AVA](https://avajs.dev). allowReserved?: boolean;␊ schema?: Schema | Reference;␊ content?: {␊ - [k: string]: MediaType1;␊ + [k: string]: MediaType1 & MediaType2;␊ };␊ example?: unknown;␊ examples?: {␊ @@ -1359,6 +1481,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Header2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ };␊ @@ -1378,17 +1503,17 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + scheme: unknown;␊ + type: unknown;␊ } & HTTPSecurityScheme1;␊ export type HTTPSecurityScheme1 =␊ | {␊ scheme?: "bearer";␊ - [k: string]: unknown;␊ }␊ | {␊ scheme?: {␊ [k: string]: unknown;␊ };␊ - [k: string]: unknown;␊ };␊ ␊ /**␊ @@ -1408,6 +1533,9 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + openapi: unknown;␊ + info: unknown;␊ + paths: unknown;␊ }␊ export interface Info {␊ title: string;␊ @@ -1421,6 +1549,8 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + title: unknown;␊ + version: unknown;␊ }␊ export interface Contact {␊ name?: string;␊ @@ -1440,6 +1570,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + name: unknown;␊ }␊ export interface ExternalDocumentation {␊ description?: string;␊ @@ -1449,6 +1580,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + url: unknown;␊ }␊ export interface Server {␊ url: string;␊ @@ -1461,6 +1593,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + url: unknown;␊ }␊ export interface ServerVariable {␊ enum?: string[];␊ @@ -1471,6 +1604,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + default: unknown;␊ }␊ export interface SecurityRequirement {␊ [k: string]: string[];␊ @@ -1484,6 +1618,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + name: unknown;␊ }␊ export interface Paths {}␊ /**␊ @@ -1500,9 +1635,7 @@ Generated by [AVA](https://avajs.dev). /**␊ * Example and examples are mutually exclusive␊ */␊ - export interface ExampleXORExamples {␊ - [k: string]: unknown;␊ - }␊ + export interface ExampleXORExamples {}␊ export interface Schema {␊ title?: string;␊ multipleOf?: number;␊ @@ -1559,12 +1692,14 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^\\$ref$".␊ */␊ [k: string]: string;␊ + $ref: unknown;␊ }␊ export interface Discriminator {␊ propertyName: string;␊ mapping?: {␊ [k: string]: string;␊ };␊ + propertyName: unknown;␊ [k: string]: unknown;␊ }␊ export interface XML {␊ @@ -1599,6 +1734,24 @@ Generated by [AVA](https://avajs.dev). explode?: boolean;␊ allowReserved?: boolean;␊ }␊ + export interface MediaType2 {␊ + schema?: Schema | Reference;␊ + example?: unknown;␊ + examples?: {␊ + [k: string]: Example | Reference;␊ + };␊ + encoding?: {␊ + [k: string]: Encoding;␊ + };␊ + /**␊ + * This interface was referenced by \`MediaType2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + */␊ + [k: string]: unknown;␊ + }␊ /**␊ * This interface was referenced by \`PathItem\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^(get|put|post|delete|options|head|patch|trace)$".␊ @@ -1609,7 +1762,7 @@ Generated by [AVA](https://avajs.dev). description?: string;␊ externalDocs?: ExternalDocumentation;␊ operationId?: string;␊ - parameters?: (Parameter1 | Reference)[];␊ + parameters?: ((Parameter1 & Parameter2) | Reference)[];␊ requestBody?: RequestBody | Reference;␊ responses: Responses;␊ callbacks?: {␊ @@ -1623,11 +1776,41 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + responses: unknown;␊ + }␊ + export interface Parameter2 {␊ + name: string;␊ + in: string;␊ + description?: string;␊ + required?: boolean;␊ + deprecated?: boolean;␊ + allowEmptyValue?: boolean;␊ + style?: string;␊ + explode?: boolean;␊ + allowReserved?: boolean;␊ + schema?: Schema | Reference;␊ + content?: {␊ + [k: string]: MediaType;␊ + };␊ + example?: unknown;␊ + examples?: {␊ + [k: string]: Example | Reference;␊ + };␊ + /**␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Parameter2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + */␊ + [k: string]: unknown;␊ + name: unknown;␊ + in: unknown;␊ }␊ export interface RequestBody {␊ description?: string;␊ content: {␊ - [k: string]: MediaType1;␊ + [k: string]: MediaType1 & MediaType2;␊ };␊ required?: boolean;␊ /**␊ @@ -1635,6 +1818,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + content: unknown;␊ }␊ export interface Responses {␊ default?: Response | Reference;␊ @@ -1642,10 +1826,10 @@ Generated by [AVA](https://avajs.dev). export interface Response {␊ description: string;␊ headers?: {␊ - [k: string]: Header1 | Reference;␊ + [k: string]: (Header1 & Header2) | Reference;␊ };␊ content?: {␊ - [k: string]: MediaType1;␊ + [k: string]: MediaType1 & MediaType2;␊ };␊ links?: {␊ [k: string]: Link | Reference;␊ @@ -1655,6 +1839,32 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + description: unknown;␊ + }␊ + export interface Header2 {␊ + description?: string;␊ + required?: boolean;␊ + deprecated?: boolean;␊ + allowEmptyValue?: boolean;␊ + style?: "simple";␊ + explode?: boolean;␊ + allowReserved?: boolean;␊ + schema?: Schema | Reference;␊ + content?: {␊ + [k: string]: MediaType1 & MediaType2;␊ + };␊ + example?: unknown;␊ + examples?: {␊ + [k: string]: Example | Reference;␊ + };␊ + /**␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Header2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + */␊ + [k: string]: unknown;␊ }␊ export interface Link {␊ operationId?: string;␊ @@ -1694,7 +1904,7 @@ Generated by [AVA](https://avajs.dev). * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^[a-zA-Z0-9\\.\\-_]+$".␊ */␊ - [k: string]: Reference | Parameter1;␊ + [k: string]: Reference | (Parameter1 & Parameter2);␊ };␊ examples?: {␊ /**␊ @@ -1715,7 +1925,7 @@ Generated by [AVA](https://avajs.dev). * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^[a-zA-Z0-9\\.\\-_]+$".␊ */␊ - [k: string]: Reference | Header1;␊ + [k: string]: Reference | (Header1 & Header2);␊ };␊ securitySchemes?: {␊ /**␊ @@ -1754,6 +1964,9 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + type: unknown;␊ + name: unknown;␊ + in: unknown;␊ }␊ export interface OAuth2SecurityScheme {␊ type: "oauth2";␊ @@ -1764,6 +1977,8 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + type: unknown;␊ + flows: unknown;␊ }␊ export interface OAuthFlows {␊ implicit?: ImplicitOAuthFlow;␊ @@ -1787,6 +2002,8 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + authorizationUrl: unknown;␊ + scopes: unknown;␊ }␊ export interface PasswordOAuthFlow {␊ tokenUrl: string;␊ @@ -1799,6 +2016,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + tokenUrl: unknown;␊ }␊ export interface ClientCredentialsFlow {␊ tokenUrl: string;␊ @@ -1811,6 +2029,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + tokenUrl: unknown;␊ }␊ export interface AuthorizationCodeOAuthFlow {␊ authorizationUrl: string;␊ @@ -1824,6 +2043,8 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + authorizationUrl: unknown;␊ + tokenUrl: unknown;␊ }␊ export interface OpenIdConnectSecurityScheme {␊ type: "openIdConnect";␊ @@ -1834,6 +2055,8 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + type: unknown;␊ + openIdConnectUrl: unknown;␊ }␊ ` @@ -1880,6 +2103,8 @@ Generated by [AVA](https://avajs.dev). * Age in years␊ */␊ age?: number;␊ + firstName: unknown;␊ + lastName: unknown;␊ }␊ ` @@ -1895,11 +2120,15 @@ Generated by [AVA](https://avajs.dev). */␊ ␊ export interface OneOf {␊ - foo: Foo | Bar | Baz;␊ + foo: (Foo | Bar | Baz) & {␊ + [k: string]: unknown;␊ + };␊ + foo: unknown;␊ }␊ export interface Foo {␊ a: string;␊ b?: number;␊ + a: unknown;␊ }␊ export interface Bar {␊ a?: "a" | "b" | "c";␊ @@ -1967,6 +2196,11 @@ Generated by [AVA](https://avajs.dev). e: {␊ [k: string]: unknown;␊ };␊ + a: unknown;␊ + b: unknown;␊ + c: unknown;␊ + d: unknown;␊ + e: unknown;␊ }␊ export interface B {␊ [k: string]: unknown;␊ @@ -1991,6 +2225,9 @@ Generated by [AVA](https://avajs.dev). bar: string | number;␊ foo: unknown;␊ fooBar: A | B;␊ + bar: unknown;␊ + foo: unknown;␊ + fooBar: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -2139,6 +2376,18 @@ Generated by [AVA](https://avajs.dev). oneOfNamedEnum: IntegerOneOfNamedEnum | StringOneOfNamedEnum;␊ anyOfNamedEnum: IntegerAnyOfNamedEnum | StringAnyOfNamedEnum;␊ allOfNamedEnum: IntegerAllOfNamedEnum & StringAllOfNamedEnum;␊ + stringEnum: unknown;␊ + impliedStringEnum: unknown;␊ + booleanEnum: unknown;␊ + impliedBooleanEnum: unknown;␊ + integerEnum: unknown;␊ + impliedIntegerEnum: unknown;␊ + impliedNamedIntegerEnum: unknown;␊ + namedIntegerEnumTitle: unknown;␊ + impliedNamedIntegerEnumTitle: unknown;␊ + oneOfNamedEnum: unknown;␊ + anyOfNamedEnum: unknown;␊ + allOfNamedEnum: unknown;␊ }␊ ␊ export const enum NamedIntegerEnum {␊ @@ -2209,6 +2458,8 @@ Generated by [AVA](https://avajs.dev). export interface ExampleSchema {␊ firstName: string␊ lastName: LastName␊ + firstName: unknown␊ + lastName: unknown␊ [k: string]: unknown␊ }␊ ` @@ -2254,6 +2505,8 @@ Generated by [AVA](https://avajs.dev). export interface ExampleSchema {␊ firstName: string␊ lastName: LastName␊ + firstName: unknown␊ + lastName: unknown␊ [k: string]: unknown␊ }␊ ` @@ -2653,6 +2906,8 @@ Generated by [AVA](https://avajs.dev). *

A display name for the hierarchy.

␊ */␊ Name: string;␊ + Columns: unknown;␊ + Name: unknown;␊ [k: string]: unknown;␊ }␊ export interface ColumnLevelPermissionRule {␊ @@ -2708,6 +2963,8 @@ Generated by [AVA](https://avajs.dev). */␊ DataTransforms?: [TransformOperation, ...TransformOperation[]];␊ Source: LogicalTableSource;␊ + Alias: unknown;␊ + Source: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -2844,6 +3101,8 @@ Generated by [AVA](https://avajs.dev). ColumnTag,␊ ColumnTag␊ ];␊ + ColumnName: unknown;␊ + Tags: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -2875,6 +3134,7 @@ Generated by [AVA](https://avajs.dev). * evaluates to true are kept in the dataset.

␊ */␊ ConditionExpression: string;␊ + ConditionExpression: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -2891,6 +3151,8 @@ Generated by [AVA](https://avajs.dev). */␊ Format?: string;␊ NewColumnType: ColumnDataType;␊ + ColumnName: unknown;␊ + NewColumnType: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -2905,6 +3167,7 @@ Generated by [AVA](https://avajs.dev). * @maxItems 128␊ */␊ Columns: [CalculatedColumn, ...CalculatedColumn[]];␊ + Columns: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -2925,6 +3188,9 @@ Generated by [AVA](https://avajs.dev). *

An expression that defines the calculated column.

␊ */␊ Expression: string;␊ + ColumnId: unknown;␊ + ColumnName: unknown;␊ + Expression: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -2939,6 +3205,8 @@ Generated by [AVA](https://avajs.dev). *

The name of the column to be renamed.

␊ */␊ ColumnName: string;␊ + ColumnName: unknown;␊ + NewColumnName: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -2953,6 +3221,7 @@ Generated by [AVA](https://avajs.dev). * @maxItems 2000␊ */␊ ProjectedColumns: [string, ...string[]];␊ + ProjectedColumns: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -2986,6 +3255,10 @@ Generated by [AVA](https://avajs.dev). */␊ RightOperand: string;␊ RightJoinKeyProperties?: JoinKeyProperties;␊ + LeftOperand: unknown;␊ + OnClause: unknown;␊ + RightOperand: unknown;␊ + Type: unknown;␊ [k: string]: unknown;␊ }␊ export interface JoinKeyProperties {␊ @@ -3085,6 +3358,8 @@ Generated by [AVA](https://avajs.dev). * ␊ */␊ Principal: string;␊ + Actions: unknown;␊ + Principal: unknown;␊ [k: string]: unknown;␊ }␊ export interface PhysicalTableMap {␊ @@ -3131,6 +3406,9 @@ Generated by [AVA](https://avajs.dev). *

The name of the relational table.

␊ */␊ Name: string;␊ + DataSourceArn: unknown;␊ + InputColumns: unknown;␊ + Name: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -3142,6 +3420,8 @@ Generated by [AVA](https://avajs.dev). *

The name of this column in the underlying data source.

␊ */␊ Name: string;␊ + Name: unknown;␊ + Type: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -3167,6 +3447,10 @@ Generated by [AVA](https://avajs.dev). *

A display name for the SQL query result.

␊ */␊ Name: string;␊ + Columns: unknown;␊ + DataSourceArn: unknown;␊ + Name: unknown;␊ + SqlQuery: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -3185,6 +3469,8 @@ Generated by [AVA](https://avajs.dev). */␊ InputColumns: [InputColumn, ...InputColumn[]];␊ UploadSettings?: UploadSettings;␊ + DataSourceArn: unknown;␊ + InputColumns: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -3221,6 +3507,8 @@ Generated by [AVA](https://avajs.dev). Namespace?: string;␊ PermissionPolicy: RowLevelPermissionPolicy;␊ FormatVersion?: RowLevelPermissionFormatVersion;␊ + Arn: unknown;␊ + PermissionPolicy: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -3236,6 +3524,8 @@ Generated by [AVA](https://avajs.dev). *

Tag key.

␊ */␊ Key: string;␊ + Key: unknown;␊ + Value: unknown;␊ [k: string]: unknown;␊ }␊ /**␊ @@ -3270,19 +3560,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * Default value to be used if one is not provided␊ */␊ - export type ParameterValueTypes = (string | boolean | number | {␊ + export type ParameterValueTypes = ((string & {␊ + [k: string]: unknown␊ + }) | (boolean & {␊ + [k: string]: unknown␊ + }) | (number & {␊ + [k: string]: unknown␊ + }) | {␊ + [k: string]: unknown␊ + } | ({␊ + [k: string]: unknown␊ + } & unknown[]) | (null & {␊ [k: string]: unknown␊ - } | unknown[] | null)␊ + }))␊ /**␊ * Value assigned for function output␊ */␊ - export type ParameterValueTypes1 = (string | boolean | number | number | {␊ + export type ParameterValueTypes1 = ((string & {␊ + [k: string]: unknown␊ + }) | (boolean & {␊ + [k: string]: unknown␊ + }) | (number & {␊ + [k: string]: unknown␊ + }) | (number & {␊ + [k: string]: unknown␊ + }) | {␊ [k: string]: unknown␊ - } | unknown[] | null)␊ + } | ({␊ + [k: string]: unknown␊ + } & unknown[]) | (null & {␊ + [k: string]: unknown␊ + }))␊ /**␊ * Collection of resource schemas␊ */␊ - export type Resource = ((ResourceBase & (Services | ConfigurationStores | Services1 | Accounts | FrontDoorWebApplicationFirewallPolicies | FrontDoors | FrontDoors1 | FrontDoorWebApplicationFirewallPolicies1 | NetworkExperimentProfiles | NetworkExperimentProfiles_Experiments | FrontDoors2 | FrontDoorsRulesEngines | Redis | RedisFirewallRules | RedisLinkedServers | RedisPatchSchedules | SearchServices | Servers | Servers1 | Vaults | Vaults1 | VaultsCertificates | VaultsExtendedInformation | DatabaseAccounts | DatabaseAccountsApisDatabases | DatabaseAccountsApisDatabasesCollections | DatabaseAccountsApisDatabasesContainers | DatabaseAccountsApisDatabasesGraphs | DatabaseAccountsApisKeyspaces | DatabaseAccountsApisKeyspacesTables | DatabaseAccountsApisTables | DatabaseAccountsApisDatabasesCollectionsSettings | DatabaseAccountsApisDatabasesContainersSettings | DatabaseAccountsApisDatabasesGraphsSettings | DatabaseAccountsApisKeyspacesSettings | DatabaseAccountsApisKeyspacesTablesSettings | DatabaseAccountsApisTablesSettings | VaultsSecrets | Vaults2 | Vaults3 | VaultsAccessPolicies | VaultsSecrets1 | Vaults4 | VaultsAccessPolicies1 | VaultsPrivateEndpointConnections | VaultsSecrets2 | Vaults5 | VaultsAccessPolicies2 | VaultsSecrets3 | Vaults6 | VaultsAccessPolicies3 | VaultsKeys | VaultsPrivateEndpointConnections1 | VaultsSecrets4 | ManagedHSMs | Vaults7 | VaultsAccessPolicies4 | VaultsPrivateEndpointConnections2 | VaultsSecrets5 | Labs | LabsArtifactsources | LabsCustomimages | LabsFormulas | LabsPolicysetsPolicies | LabsSchedules | LabsVirtualmachines | LabsVirtualnetworks | LabsCosts | LabsNotificationchannels | LabsServicerunners | LabsUsers | LabsVirtualmachinesSchedules | LabsUsersDisks | LabsUsersEnvironments | LabsUsersSecrets | VaultsReplicationAlertSettings | VaultsReplicationFabrics | VaultsReplicationFabricsReplicationNetworksReplicationNetworkMappings | VaultsReplicationFabricsReplicationProtectionContainers | VaultsReplicationFabricsReplicationProtectionContainersReplicationMigrationItems | VaultsReplicationFabricsReplicationProtectionContainersReplicationProtectedItems | VaultsReplicationFabricsReplicationProtectionContainersReplicationProtectionContainerMappings | VaultsReplicationFabricsReplicationRecoveryServicesProviders | VaultsReplicationFabricsReplicationStorageClassificationsReplicationStorageClassificationMappings | VaultsReplicationFabricsReplicationvCenters | VaultsReplicationPolicies | VaultsReplicationRecoveryPlans | DigitalTwinsInstances | DigitalTwinsInstancesEndpoints | Labs1 | LabsVirtualmachines1 | Clusters | ClustersDatabases | Clusters1 | ClustersDatabases1 | Clusters2 | ClustersDatabases2 | ClustersDatabasesDataConnections | Clusters3 | ClustersDatabases3 | ClustersDatabasesDataConnections1 | Clusters4 | ClustersDatabases4 | ClustersDatabasesDataConnections2 | ClustersAttachedDatabaseConfigurations | Clusters5 | ClustersDatabases5 | ClustersDatabasesDataConnections3 | ClustersAttachedDatabaseConfigurations1 | ClustersDataConnections | ClustersPrincipalAssignments | ClustersDatabasesPrincipalAssignments | Clusters6 | ClustersDatabases6 | ClustersDatabasesDataConnections4 | ClustersAttachedDatabaseConfigurations2 | ClustersDataConnections1 | ClustersPrincipalAssignments1 | ClustersDatabasesPrincipalAssignments1 | Clusters7 | ClustersDatabases7 | ClustersDatabasesDataConnections5 | ClustersAttachedDatabaseConfigurations3 | ClustersDataConnections2 | ClustersPrincipalAssignments2 | ClustersDatabasesPrincipalAssignments2 | Clusters8 | ClustersDatabases8 | ClustersDatabasesDataConnections6 | ClustersAttachedDatabaseConfigurations4 | ClustersDataConnections3 | ClustersPrincipalAssignments3 | ClustersDatabasesPrincipalAssignments3 | Redis1 | NamespacesNotificationHubs | NamespacesNotificationHubs_AuthorizationRules | Redis2 | TrafficManagerProfiles | TrafficManagerProfiles1 | TrafficManagerProfiles2 | TrafficManagerProfiles3 | StorageAccounts | StorageAccounts1 | StorageAccounts2 | StorageAccounts3 | StorageAccounts4 | StorageAccountsBlobServicesContainers | StorageAccountsBlobServicesContainersImmutabilityPolicies | StorageAccounts5 | StorageAccountsManagementPolicies | StorageAccountsBlobServicesContainers1 | StorageAccountsBlobServicesContainersImmutabilityPolicies1 | StorageAccounts6 | StorageAccountsBlobServices | StorageAccountsBlobServicesContainers2 | StorageAccountsBlobServicesContainersImmutabilityPolicies2 | StorageAccounts7 | StorageAccountsBlobServices1 | StorageAccountsBlobServicesContainers3 | StorageAccountsBlobServicesContainersImmutabilityPolicies3 | StorageAccountsManagementPolicies1 | StorageAccounts8 | StorageAccountsBlobServices2 | StorageAccountsBlobServicesContainers4 | StorageAccountsBlobServicesContainersImmutabilityPolicies4 | StorageAccountsManagementPolicies2 | StorageAccountsFileServices | StorageAccountsFileServicesShares | StorageAccounts9 | StorageAccountsBlobServices3 | StorageAccountsBlobServicesContainers5 | StorageAccountsBlobServicesContainersImmutabilityPolicies5 | StorageAccountsFileServices1 | StorageAccountsFileServicesShares1 | StorageAccountsManagementPolicies3 | StorageAccountsPrivateEndpointConnections | StorageAccountsEncryptionScopes | StorageAccountsObjectReplicationPolicies | StorageAccountsQueueServices | StorageAccountsQueueServicesQueues | StorageAccountsTableServices | StorageAccountsTableServicesTables | StorageAccountsInventoryPolicies | DedicatedCloudNodes | DedicatedCloudServices | VirtualMachines | AvailabilitySets | Extensions | VirtualMachineScaleSets | JobCollections | VirtualMachines1 | Accounts1 | Accounts2 | AccountsFirewallRules | AccountsTrustedIdProviders | AccountsVirtualNetworkRules | Accounts3 | Accounts4 | AccountsDataLakeStoreAccounts | AccountsStorageAccounts | AccountsFirewallRules1 | AccountsComputePolicies | Accounts5 | Accounts6 | AccountsPrivateEndpointConnections | WorkspaceCollections | Capacities | Catalogs | ContainerServices | Dnszones | Dnszones_A | Dnszones_AAAA | Dnszones_CNAME | Dnszones_MX | Dnszones_NS | Dnszones_PTR | Dnszones_SOA | Dnszones_SRV | Dnszones_TXT | Dnszones1 | Dnszones_A1 | Dnszones_AAAA1 | Dnszones_CNAME1 | Dnszones_MX1 | Dnszones_NS1 | Dnszones_PTR1 | Dnszones_SOA1 | Dnszones_SRV1 | Dnszones_TXT1 | Profiles | ProfilesEndpoints | ProfilesEndpointsCustomDomains | ProfilesEndpointsOrigins | Profiles1 | ProfilesEndpoints1 | ProfilesEndpointsCustomDomains1 | ProfilesEndpointsOrigins1 | BatchAccounts | BatchAccountsApplications | BatchAccountsApplicationsVersions | BatchAccounts1 | BatchAccountsApplications1 | BatchAccountsApplicationsVersions1 | BatchAccountsCertificates | BatchAccountsPools | Redis3 | RedisFirewallRules1 | RedisPatchSchedules1 | Workflows | Workflows1 | IntegrationAccounts | IntegrationAccountsAgreements | IntegrationAccountsCertificates | IntegrationAccountsMaps | IntegrationAccountsPartners | IntegrationAccountsSchemas | IntegrationAccountsAssemblies | IntegrationAccountsBatchConfigurations | Workflows2 | Workflows3 | JobCollections1 | JobCollectionsJobs | WebServices | CommitmentPlans | Workspaces | Workspaces1 | WorkspacesComputes | Accounts7 | AccountsWorkspaces | AccountsWorkspacesProjects | Workspaces2 | AutomationAccounts | AutomationAccountsRunbooks | AutomationAccountsModules | AutomationAccountsCertificates | AutomationAccountsConnections | AutomationAccountsVariables | AutomationAccountsSchedules | AutomationAccountsJobs | AutomationAccountsConnectionTypes | AutomationAccountsCompilationjobs | AutomationAccountsConfigurations | AutomationAccountsJobSchedules | AutomationAccountsNodeConfigurations | AutomationAccountsWebhooks | AutomationAccountsCredentials | AutomationAccountsWatchers | AutomationAccountsSoftwareUpdateConfigurations | AutomationAccountsJobs1 | AutomationAccountsSourceControls | AutomationAccountsSourceControlsSourceControlSyncJobs | AutomationAccountsCompilationjobs1 | AutomationAccountsNodeConfigurations1 | AutomationAccountsPython2Packages | AutomationAccountsRunbooks1 | Mediaservices | Mediaservices1 | MediaServicesAccountFilters | MediaServicesAssets | MediaServicesAssetsAssetFilters | MediaServicesContentKeyPolicies | MediaServicesStreamingLocators | MediaServicesStreamingPolicies | MediaServicesTransforms | MediaServicesTransformsJobs | IotHubs | IotHubs1 | IotHubsCertificates | IotHubs2 | IotHubsCertificates1 | IotHubs3 | IotHubsCertificates2 | IotHubsEventHubEndpoints_ConsumerGroups | IotHubsEventHubEndpoints_ConsumerGroups1 | ProvisioningServices | ProvisioningServices1 | ProvisioningServicesCertificates | Clusters9 | Clusters10 | Clusters11 | ClustersApplications | ClustersApplicationsServices | ClustersApplicationTypes | ClustersApplicationTypesVersions | Clusters12 | Clusters13 | ClustersApplications1 | ClustersApplicationsServices1 | ClustersApplicationTypes1 | ClustersApplicationTypesVersions1 | Managers | ManagersAccessControlRecords | ManagersBandwidthSettings | ManagersDevicesAlertSettings | ManagersDevicesBackupPolicies | ManagersDevicesBackupPoliciesSchedules | ManagersDevicesTimeSettings | ManagersDevicesVolumeContainers | ManagersDevicesVolumeContainersVolumes | ManagersExtendedInformation | ManagersStorageAccountCredentials | Deployments | Deployments1 | ApplianceDefinitions | Appliances | Service | ServiceApis | ServiceSubscriptions | ServiceProducts | ServiceGroups | ServiceCertificates | ServiceUsers | ServiceAuthorizationServers | ServiceLoggers | ServiceProperties | ServiceOpenidConnectProviders | ServiceBackends | ServiceIdentityProviders | ServiceApisOperations | ServiceGroupsUsers | ServiceProductsApis | ServiceProductsGroups | Service1 | ServiceApis1 | ServiceApisOperations1 | ServiceApisOperationsPolicies | ServiceApisOperationsTags | ServiceApisPolicies | ServiceApisReleases | ServiceApisSchemas | ServiceApisTagDescriptions | ServiceApisTags | ServiceAuthorizationServers1 | ServiceBackends1 | ServiceCertificates1 | ServiceDiagnostics | ServiceDiagnosticsLoggers | ServiceGroups1 | ServiceGroupsUsers1 | ServiceIdentityProviders1 | ServiceLoggers1 | ServiceNotifications | ServiceNotificationsRecipientEmails | ServiceNotificationsRecipientUsers | ServiceOpenidConnectProviders1 | ServicePolicies | ServiceProducts1 | ServiceProductsApis1 | ServiceProductsGroups1 | ServiceProductsPolicies | ServiceProductsTags | ServiceProperties1 | ServiceSubscriptions1 | ServiceTags | ServiceTemplates | ServiceUsers1 | ServiceApisDiagnostics | ServiceApisIssues | ServiceApiVersionSets | ServiceApisDiagnosticsLoggers | ServiceApisIssuesAttachments | ServiceApisIssuesComments | Service2 | ServiceApis2 | ServiceApisOperations2 | ServiceApisOperationsPolicies1 | ServiceApisOperationsTags1 | ServiceApisPolicies1 | ServiceApisReleases1 | ServiceApisSchemas1 | ServiceApisTagDescriptions1 | ServiceApisTags1 | ServiceAuthorizationServers2 | ServiceBackends2 | ServiceCertificates2 | ServiceDiagnostics1 | ServiceDiagnosticsLoggers1 | ServiceGroups2 | ServiceGroupsUsers2 | ServiceIdentityProviders2 | ServiceLoggers2 | ServiceNotifications1 | ServiceNotificationsRecipientEmails1 | ServiceNotificationsRecipientUsers1 | ServiceOpenidConnectProviders2 | ServicePolicies1 | ServiceProducts2 | ServiceProductsApis2 | ServiceProductsGroups2 | ServiceProductsPolicies1 | ServiceProductsTags1 | ServiceProperties2 | ServiceSubscriptions2 | ServiceTags1 | ServiceTemplates1 | ServiceUsers2 | ServiceApisDiagnostics1 | ServiceApisIssues1 | ServiceApiVersionSets1 | ServiceApisDiagnosticsLoggers1 | ServiceApisIssuesAttachments1 | ServiceApisIssuesComments1 | Service3 | ServiceApis3 | ServiceApisDiagnostics2 | ServiceApisOperations3 | ServiceApisOperationsPolicies2 | ServiceApisOperationsTags2 | ServiceApisPolicies2 | ServiceApisReleases2 | ServiceApisSchemas2 | ServiceApisTagDescriptions2 | ServiceApisTags2 | ServiceApiVersionSets2 | ServiceAuthorizationServers3 | ServiceBackends3 | ServiceCertificates3 | ServiceDiagnostics2 | ServiceGroups3 | ServiceGroupsUsers3 | ServiceIdentityProviders3 | ServiceLoggers3 | ServiceNotifications2 | ServiceNotificationsRecipientEmails2 | ServiceNotificationsRecipientUsers2 | ServiceOpenidConnectProviders3 | ServicePolicies2 | ServiceProducts3 | ServiceProductsApis3 | ServiceProductsGroups3 | ServiceProductsPolicies2 | ServiceProductsTags2 | ServiceProperties3 | ServiceSubscriptions3 | ServiceTags2 | ServiceTemplates2 | ServiceUsers3 | Service4 | ServiceApis4 | ServiceApisDiagnostics3 | ServiceApisOperations4 | ServiceApisOperationsPolicies3 | ServiceApisOperationsTags3 | ServiceApisPolicies3 | ServiceApisReleases3 | ServiceApisSchemas3 | ServiceApisTagDescriptions3 | ServiceApisTags3 | ServiceApisIssues2 | ServiceApiVersionSets3 | ServiceAuthorizationServers4 | ServiceBackends4 | ServiceCaches | ServiceCertificates4 | ServiceDiagnostics3 | ServiceGroups4 | ServiceGroupsUsers4 | ServiceIdentityProviders4 | ServiceLoggers4 | ServiceNotifications3 | ServiceNotificationsRecipientEmails3 | ServiceNotificationsRecipientUsers3 | ServiceOpenidConnectProviders4 | ServicePolicies3 | ServiceProducts4 | ServiceProductsApis4 | ServiceProductsGroups4 | ServiceProductsPolicies3 | ServiceProductsTags3 | ServiceProperties4 | ServiceSubscriptions4 | ServiceTags3 | ServiceTemplates3 | ServiceUsers4 | ServiceApisIssuesAttachments2 | ServiceApisIssuesComments2 | Namespaces | Namespaces_AuthorizationRules | NamespacesNotificationHubs1 | NamespacesNotificationHubs_AuthorizationRules1 | Namespaces1 | Namespaces_AuthorizationRules1 | NamespacesNotificationHubs2 | NamespacesNotificationHubs_AuthorizationRules2 | Namespaces2 | Namespaces_AuthorizationRules2 | Disks | Snapshots | Images | AvailabilitySets1 | VirtualMachines2 | VirtualMachineScaleSets1 | VirtualMachinesExtensions | Registries | Registries1 | Registries2 | RegistriesReplications | RegistriesWebhooks | Registries3 | RegistriesReplications1 | RegistriesWebhooks1 | RegistriesBuildTasks | RegistriesBuildTasksSteps | RegistriesTasks | PublicIPAddresses | VirtualNetworks | LoadBalancers | NetworkSecurityGroups | NetworkInterfaces1 | RouteTables | PublicIPAddresses1 | VirtualNetworks1 | LoadBalancers1 | NetworkSecurityGroups1 | NetworkInterfaces2 | RouteTables1 | PublicIPAddresses2 | VirtualNetworks2 | LoadBalancers2 | NetworkSecurityGroups2 | NetworkInterfaces3 | RouteTables2 | PublicIPAddresses3 | VirtualNetworks3 | LoadBalancers3 | NetworkSecurityGroups3 | NetworkInterfaces4 | RouteTables3 | PublicIPAddresses4 | VirtualNetworks4 | LoadBalancers4 | NetworkSecurityGroups4 | NetworkInterfaces5 | RouteTables4 | PublicIPAddresses5 | VirtualNetworks5 | LoadBalancers5 | NetworkSecurityGroups5 | NetworkInterfaces6 | RouteTables5 | PublicIPAddresses6 | VirtualNetworks6 | LoadBalancers6 | NetworkSecurityGroups6 | NetworkInterfaces7 | RouteTables6 | PublicIPAddresses7 | VirtualNetworks7 | LoadBalancers7 | NetworkSecurityGroups7 | NetworkInterfaces8 | RouteTables7 | PublicIPAddresses8 | VirtualNetworks8 | LoadBalancers8 | NetworkSecurityGroups8 | NetworkInterfaces9 | RouteTables8 | ApplicationGateways | Connections | LocalNetworkGateways | VirtualNetworkGateways | VirtualNetworksSubnets | VirtualNetworksVirtualNetworkPeerings | NetworkSecurityGroupsSecurityRules | RouteTablesRoutes | Disks1 | Snapshots1 | Images1 | AvailabilitySets2 | VirtualMachines3 | VirtualMachineScaleSets2 | VirtualMachinesExtensions1 | Servers2 | ServersAdvisors | ServersAdministrators | ServersAuditingPolicies | ServersCommunicationLinks | ServersConnectionPolicies | ServersDatabases | ServersDatabasesAdvisors | ServersDatabasesAuditingPolicies | ServersDatabasesConnectionPolicies | ServersDatabasesDataMaskingPolicies | ServersDatabasesDataMaskingPoliciesRules | ServersDatabasesExtensions | ServersDatabasesGeoBackupPolicies | ServersDatabasesSecurityAlertPolicies | ServersDatabasesTransparentDataEncryption | ServersDisasterRecoveryConfiguration | ServersElasticPools | ServersFirewallRules | ManagedInstances | Servers3 | ServersDatabasesAuditingSettings | ServersDatabasesSyncGroups | ServersDatabasesSyncGroupsSyncMembers | ServersEncryptionProtector | ServersFailoverGroups | ServersFirewallRules1 | ServersKeys | ServersSyncAgents | ServersVirtualNetworkRules | ManagedInstancesDatabases | ServersAuditingSettings | ServersDatabases1 | ServersDatabasesAuditingSettings1 | ServersDatabasesBackupLongTermRetentionPolicies | ServersDatabasesExtendedAuditingSettings | ServersDatabasesSecurityAlertPolicies1 | ServersSecurityAlertPolicies | ManagedInstancesDatabasesSecurityAlertPolicies | ManagedInstancesSecurityAlertPolicies | ServersDatabasesVulnerabilityAssessmentsRulesBaselines | ServersDatabasesVulnerabilityAssessments | ManagedInstancesDatabasesVulnerabilityAssessmentsRulesBaselines | ManagedInstancesDatabasesVulnerabilityAssessments | ServersVulnerabilityAssessments | ManagedInstancesVulnerabilityAssessments | ServersDnsAliases | ServersExtendedAuditingSettings | ServersJobAgents | ServersJobAgentsCredentials | ServersJobAgentsJobs | ServersJobAgentsJobsExecutions | ServersJobAgentsJobsSteps | ServersJobAgentsTargetGroups | WebServices1 | Workspaces3 | Streamingjobs | StreamingjobsFunctions | StreamingjobsInputs | StreamingjobsOutputs | StreamingjobsTransformations | Environments | EnvironmentsEventSources | EnvironmentsReferenceDataSets | EnvironmentsAccessPolicies | Environments1 | EnvironmentsEventSources1 | EnvironmentsReferenceDataSets1 | EnvironmentsAccessPolicies1 | WorkspacesComputes1 | Workspaces4 | WorkspacesComputes2 | Workspaces5 | WorkspacesComputes3 | Workspaces6 | WorkspacesComputes4 | Workspaces7 | WorkspacesComputes5 | WorkspacesPrivateEndpointConnections | PublicIPAddresses9 | VirtualNetworks9 | LoadBalancers9 | NetworkSecurityGroups9 | NetworkInterfaces10 | RouteTables9 | ApplicationGateways1 | Connections1 | LocalNetworkGateways1 | VirtualNetworkGateways1 | VirtualNetworksSubnets1 | VirtualNetworksVirtualNetworkPeerings1 | LoadBalancersInboundNatRules | NetworkSecurityGroupsSecurityRules1 | RouteTablesRoutes1 | PublicIPAddresses10 | VirtualNetworks10 | LoadBalancers10 | NetworkSecurityGroups10 | NetworkInterfaces11 | RouteTables10 | ApplicationGateways2 | LoadBalancersInboundNatRules1 | NetworkSecurityGroupsSecurityRules2 | RouteTablesRoutes2 | PublicIPAddresses11 | VirtualNetworks11 | LoadBalancers11 | NetworkSecurityGroups11 | NetworkInterfaces12 | RouteTables11 | ApplicationGateways3 | LoadBalancersInboundNatRules2 | NetworkSecurityGroupsSecurityRules3 | RouteTablesRoutes3 | Jobs | DnsZones | DnsZones_A | DnsZones_AAAA | DnsZones_CAA | DnsZones_CNAME | DnsZones_MX | DnsZones_NS | DnsZones_PTR | DnsZones_SOA | DnsZones_SRV | DnsZones_TXT | Connections2 | LocalNetworkGateways2 | VirtualNetworkGateways2 | VirtualNetworksSubnets2 | VirtualNetworksVirtualNetworkPeerings2 | DnsZones1 | DnsZones_A1 | DnsZones_AAAA1 | DnsZones_CAA1 | DnsZones_CNAME1 | DnsZones_MX1 | DnsZones_NS1 | DnsZones_PTR1 | DnsZones_SOA1 | DnsZones_SRV1 | DnsZones_TXT1 | Connections3 | LocalNetworkGateways3 | VirtualNetworkGateways3 | VirtualNetworksSubnets3 | VirtualNetworksVirtualNetworkPeerings3 | Registrations | RegistrationsCustomerSubscriptions | PublicIPAddresses12 | VirtualNetworks12 | LoadBalancers12 | NetworkSecurityGroups12 | NetworkInterfaces13 | RouteTables12 | ApplicationGateways4 | Connections4 | LocalNetworkGateways4 | VirtualNetworkGateways4 | VirtualNetworksSubnets4 | VirtualNetworksVirtualNetworkPeerings4 | LoadBalancersInboundNatRules3 | NetworkSecurityGroupsSecurityRules4 | RouteTablesRoutes4 | Images2 | AvailabilitySets3 | VirtualMachines4 | VirtualMachineScaleSets3 | VirtualMachinesExtensions2 | VirtualMachineScaleSetsExtensions | Servers4 | ServersConfigurations | ServersDatabases2 | ServersFirewallRules2 | ServersVirtualNetworkRules1 | ServersSecurityAlertPolicies1 | ServersPrivateEndpointConnections | Servers5 | ServersConfigurations1 | ServersDatabases3 | ServersFirewallRules3 | ServersVirtualNetworkRules2 | ServersSecurityAlertPolicies2 | ServersAdministrators1 | Servers6 | ServersConfigurations2 | ServersDatabases4 | ServersFirewallRules4 | ServersVirtualNetworkRules3 | ServersSecurityAlertPolicies3 | ServersAdministrators2 | Servers7 | ServersConfigurations3 | ServersDatabases5 | ServersFirewallRules5 | Servers8 | ServersConfigurations4 | ServersDatabases6 | ServersFirewallRules6 | ApplicationGateways5 | Connections5 | ExpressRouteCircuitsAuthorizations | ExpressRouteCircuitsPeerings | LoadBalancers13 | LocalNetworkGateways5 | NetworkInterfaces14 | NetworkSecurityGroups13 | NetworkSecurityGroupsSecurityRules5 | PublicIPAddresses13 | RouteTables13 | RouteTablesRoutes5 | VirtualNetworkGateways5 | VirtualNetworks13 | VirtualNetworksSubnets5 | ApplicationGateways6 | Connections6 | ExpressRouteCircuits | ExpressRouteCircuitsAuthorizations1 | ExpressRouteCircuitsPeerings1 | LoadBalancers14 | LocalNetworkGateways6 | NetworkInterfaces15 | NetworkSecurityGroups14 | NetworkSecurityGroupsSecurityRules6 | PublicIPAddresses14 | RouteTables14 | RouteTablesRoutes6 | VirtualNetworkGateways6 | VirtualNetworks14 | VirtualNetworksSubnets6 | ApplicationGateways7 | Connections7 | ExpressRouteCircuits1 | ExpressRouteCircuitsAuthorizations2 | ExpressRouteCircuitsPeerings2 | LoadBalancers15 | LocalNetworkGateways7 | NetworkInterfaces16 | NetworkSecurityGroups15 | NetworkSecurityGroupsSecurityRules7 | PublicIPAddresses15 | RouteTables15 | RouteTablesRoutes7 | VirtualNetworkGateways7 | VirtualNetworks15 | VirtualNetworksSubnets7 | ApplicationSecurityGroups | ApplicationSecurityGroups1 | ApplicationSecurityGroups2 | ApplicationSecurityGroups3 | PublicIPAddresses16 | VirtualNetworks16 | LoadBalancers16 | NetworkSecurityGroups16 | NetworkInterfaces17 | RouteTables16 | ApplicationGateways8 | Connections8 | LocalNetworkGateways8 | VirtualNetworkGateways8 | VirtualNetworksSubnets8 | VirtualNetworksVirtualNetworkPeerings5 | LoadBalancersInboundNatRules4 | NetworkSecurityGroupsSecurityRules8 | RouteTablesRoutes8 | ApplicationSecurityGroups4 | DdosProtectionPlans | ExpressRouteCircuits2 | ExpressRouteCrossConnections | PublicIPAddresses17 | VirtualNetworks17 | LoadBalancers17 | NetworkSecurityGroups17 | NetworkInterfaces18 | RouteTables17 | LoadBalancersInboundNatRules5 | NetworkSecurityGroupsSecurityRules9 | RouteTablesRoutes9 | ExpressRouteCircuitsAuthorizations3 | ExpressRouteCircuitsPeerings3 | ExpressRouteCrossConnectionsPeerings | ExpressRouteCircuitsPeeringsConnections | ApplicationGateways9 | ApplicationSecurityGroups5 | AzureFirewalls | Connections9 | DdosProtectionPlans1 | ExpressRouteCircuits3 | ExpressRouteCircuitsAuthorizations4 | ExpressRouteCircuitsPeerings4 | ExpressRouteCircuitsPeeringsConnections1 | ExpressRouteCrossConnections1 | ExpressRouteCrossConnectionsPeerings1 | LoadBalancers18 | LoadBalancersInboundNatRules6 | LocalNetworkGateways9 | NetworkInterfaces19 | NetworkSecurityGroups18 | NetworkSecurityGroupsSecurityRules10 | NetworkWatchers | NetworkWatchersConnectionMonitors | NetworkWatchersPacketCaptures | PublicIPAddresses18 | RouteFilters | RouteFiltersRouteFilterRules | RouteTables18 | RouteTablesRoutes10 | VirtualHubs | VirtualNetworkGateways9 | VirtualNetworks18 | VirtualNetworksSubnets9 | VirtualNetworksVirtualNetworkPeerings6 | VirtualWans | VpnGateways | VpnGatewaysVpnConnections | VpnSites | ApplicationGateways10 | ApplicationSecurityGroups6 | AzureFirewalls1 | Connections10 | DdosProtectionPlans2 | ExpressRouteCircuits4 | ExpressRouteCircuitsAuthorizations5 | ExpressRouteCircuitsPeerings5 | ExpressRouteCircuitsPeeringsConnections2 | ExpressRouteCrossConnections2 | ExpressRouteCrossConnectionsPeerings2 | LoadBalancers19 | LoadBalancersInboundNatRules7 | LocalNetworkGateways10 | NetworkInterfaces20 | NetworkSecurityGroups19 | NetworkSecurityGroupsSecurityRules11 | NetworkWatchers1 | NetworkWatchersConnectionMonitors1 | NetworkWatchersPacketCaptures1 | PublicIPAddresses19 | RouteFilters1 | RouteFiltersRouteFilterRules1 | RouteTables19 | RouteTablesRoutes11 | VirtualHubs1 | VirtualNetworkGateways10 | VirtualNetworks19 | VirtualNetworksSubnets10 | VirtualNetworksVirtualNetworkPeerings7 | VirtualWans1 | VpnGateways1 | VpnGatewaysVpnConnections1 | VpnSites1 | ApplicationGateways11 | ApplicationSecurityGroups7 | AzureFirewalls2 | Connections11 | DdosProtectionPlans3 | ExpressRouteCircuits5 | ExpressRouteCircuitsAuthorizations6 | ExpressRouteCircuitsPeerings6 | ExpressRouteCircuitsPeeringsConnections3 | ExpressRouteCrossConnections3 | ExpressRouteCrossConnectionsPeerings3 | LoadBalancers20 | LoadBalancersInboundNatRules8 | LocalNetworkGateways11 | NetworkInterfaces21 | NetworkSecurityGroups20 | NetworkSecurityGroupsSecurityRules12 | NetworkWatchers2 | NetworkWatchersConnectionMonitors2 | NetworkWatchersPacketCaptures2 | PublicIPAddresses20 | PublicIPPrefixes | RouteFilters2 | RouteFiltersRouteFilterRules2 | RouteTables20 | RouteTablesRoutes12 | ServiceEndpointPolicies | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions | VirtualHubs2 | VirtualNetworkGateways11 | VirtualNetworks20 | VirtualNetworksSubnets11 | VirtualNetworksVirtualNetworkPeerings8 | VirtualWans2 | VpnGateways2 | VpnGatewaysVpnConnections2 | VpnSites2 | ApplicationSecurityGroups8 | DdosProtectionPlans4 | ExpressRouteCircuits6 | ExpressRouteCrossConnections4 | PublicIPAddresses21 | VirtualNetworks21 | LoadBalancers21 | NetworkSecurityGroups21 | NetworkInterfaces22 | RouteTables21 | ApplicationGateways12 | ExpressRouteCircuitsAuthorizations7 | ExpressRoutePorts | Connections12 | LocalNetworkGateways12 | VirtualNetworkGateways12 | VirtualNetworksSubnets12 | VirtualNetworksVirtualNetworkPeerings9 | ExpressRouteCircuitsPeerings7 | ExpressRouteCrossConnectionsPeerings4 | LoadBalancersInboundNatRules9 | NetworkInterfacesTapConfigurations | NetworkSecurityGroupsSecurityRules13 | RouteTablesRoutes13 | ExpressRouteCircuitsPeeringsConnections4 | ApplicationSecurityGroups9 | DdosProtectionPlans5 | ExpressRouteCircuits7 | ExpressRouteCrossConnections5 | PublicIPAddresses22 | VirtualNetworks22 | LoadBalancers22 | NetworkSecurityGroups22 | NetworkInterfaces23 | RouteTables22 | ApplicationGateways13 | ExpressRouteCircuitsAuthorizations8 | ExpressRouteCircuitsPeeringsConnections5 | ApplicationSecurityGroups10 | ApplicationSecurityGroups11 | DdosProtectionPlans6 | ExpressRouteCircuits8 | ExpressRouteCrossConnections6 | PublicIPAddresses23 | VirtualNetworks23 | LoadBalancers23 | NetworkSecurityGroups23 | NetworkInterfaces24 | RouteTables23 | ApplicationGateways14 | ExpressRouteCircuitsAuthorizations9 | ExpressRouteCircuitsPeerings8 | ExpressRouteCrossConnectionsPeerings5 | LoadBalancersInboundNatRules10 | NetworkInterfacesTapConfigurations1 | NetworkSecurityGroupsSecurityRules14 | RouteTablesRoutes14 | ExpressRoutePorts1 | ExpressRouteCircuitsPeeringsConnections6 | ApplicationSecurityGroups12 | DdosProtectionPlans7 | ExpressRouteCircuits9 | ExpressRouteCrossConnections7 | PublicIPAddresses24 | VirtualNetworks24 | LoadBalancers24 | NetworkSecurityGroups24 | NetworkInterfaces25 | RouteTables24 | ApplicationGateways15 | ExpressRouteCircuitsAuthorizations10 | ExpressRoutePorts2 | ApplicationGatewayWebApplicationFirewallPolicies | ExpressRouteCircuitsPeerings9 | ExpressRouteCrossConnectionsPeerings6 | LoadBalancersInboundNatRules11 | NetworkInterfacesTapConfigurations2 | NetworkSecurityGroupsSecurityRules15 | RouteTablesRoutes15 | ExpressRouteCircuitsPeeringsConnections7 | ApplicationGateways16 | ApplicationGatewayWebApplicationFirewallPolicies1 | ApplicationSecurityGroups13 | AzureFirewalls3 | BastionHosts | Connections13 | DdosCustomPolicies | DdosProtectionPlans8 | ExpressRouteCircuits10 | ExpressRouteCircuitsAuthorizations11 | ExpressRouteCircuitsPeerings10 | ExpressRouteCircuitsPeeringsConnections8 | ExpressRouteCrossConnections8 | ExpressRouteCrossConnectionsPeerings7 | ExpressRouteGateways | ExpressRouteGatewaysExpressRouteConnections | ExpressRoutePorts3 | LoadBalancers25 | LoadBalancersInboundNatRules12 | LocalNetworkGateways13 | NatGateways | NetworkInterfaces26 | NetworkInterfacesTapConfigurations3 | NetworkProfiles | NetworkSecurityGroups25 | NetworkSecurityGroupsSecurityRules16 | NetworkWatchers3 | NetworkWatchersConnectionMonitors3 | NetworkWatchersPacketCaptures3 | P2SvpnGateways | PrivateEndpoints | PrivateLinkServices | PrivateLinkServicesPrivateEndpointConnections | PublicIPAddresses25 | PublicIPPrefixes1 | RouteFilters3 | RouteFiltersRouteFilterRules3 | RouteTables25 | RouteTablesRoutes16 | ServiceEndpointPolicies1 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions1 | VirtualHubs3 | VirtualNetworkGateways13 | VirtualNetworks25 | VirtualNetworksSubnets13 | VirtualNetworksVirtualNetworkPeerings10 | VirtualNetworkTaps | VirtualWans3 | VirtualWansP2SVpnServerConfigurations | VpnGateways3 | VpnGatewaysVpnConnections3 | VpnSites3 | ApplicationGateways17 | ApplicationGatewayWebApplicationFirewallPolicies2 | ApplicationSecurityGroups14 | AzureFirewalls4 | BastionHosts1 | Connections14 | DdosCustomPolicies1 | DdosProtectionPlans9 | ExpressRouteCircuits11 | ExpressRouteCircuitsAuthorizations12 | ExpressRouteCircuitsPeerings11 | ExpressRouteCircuitsPeeringsConnections9 | ExpressRouteCrossConnections9 | ExpressRouteCrossConnectionsPeerings8 | ExpressRouteGateways1 | ExpressRouteGatewaysExpressRouteConnections1 | ExpressRoutePorts4 | FirewallPolicies | FirewallPoliciesRuleGroups | LoadBalancers26 | LoadBalancersInboundNatRules13 | LocalNetworkGateways14 | NatGateways1 | NetworkInterfaces27 | NetworkInterfacesTapConfigurations4 | NetworkProfiles1 | NetworkSecurityGroups26 | NetworkSecurityGroupsSecurityRules17 | NetworkWatchers4 | NetworkWatchersConnectionMonitors4 | NetworkWatchersPacketCaptures4 | P2SvpnGateways1 | PrivateEndpoints1 | PrivateLinkServices1 | PrivateLinkServicesPrivateEndpointConnections1 | PublicIPAddresses26 | PublicIPPrefixes2 | RouteFilters4 | RouteFiltersRouteFilterRules4 | RouteTables26 | RouteTablesRoutes17 | ServiceEndpointPolicies2 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions2 | VirtualHubs4 | VirtualNetworkGateways14 | VirtualNetworks26 | VirtualNetworksSubnets14 | VirtualNetworksVirtualNetworkPeerings11 | VirtualNetworkTaps1 | VirtualWans4 | VirtualWansP2SVpnServerConfigurations1 | VpnGateways4 | VpnGatewaysVpnConnections4 | VpnSites4 | ApplicationGateways18 | ApplicationGatewayWebApplicationFirewallPolicies3 | ApplicationSecurityGroups15 | AzureFirewalls5 | BastionHosts2 | Connections15 | DdosCustomPolicies2 | DdosProtectionPlans10 | ExpressRouteCircuits12 | ExpressRouteCircuitsAuthorizations13 | ExpressRouteCircuitsPeerings12 | ExpressRouteCircuitsPeeringsConnections10 | ExpressRouteCrossConnections10 | ExpressRouteCrossConnectionsPeerings9 | ExpressRouteGateways2 | ExpressRouteGatewaysExpressRouteConnections2 | ExpressRoutePorts5 | FirewallPolicies1 | FirewallPoliciesRuleGroups1 | LoadBalancers27 | LoadBalancersInboundNatRules14 | LocalNetworkGateways15 | NatGateways2 | NetworkInterfaces28 | NetworkInterfacesTapConfigurations5 | NetworkProfiles2 | NetworkSecurityGroups27 | NetworkSecurityGroupsSecurityRules18 | NetworkWatchers5 | NetworkWatchersPacketCaptures5 | P2SvpnGateways2 | PrivateEndpoints2 | PrivateLinkServices2 | PrivateLinkServicesPrivateEndpointConnections2 | PublicIPAddresses27 | PublicIPPrefixes3 | RouteFilters5 | RouteFiltersRouteFilterRules5 | RouteTables27 | RouteTablesRoutes18 | ServiceEndpointPolicies3 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions3 | VirtualHubs5 | VirtualNetworkGateways15 | VirtualNetworks27 | VirtualNetworksSubnets15 | VirtualNetworksVirtualNetworkPeerings12 | VirtualNetworkTaps2 | VirtualRouters | VirtualRoutersPeerings | VirtualWans5 | VirtualWansP2SVpnServerConfigurations2 | VpnGateways5 | VpnGatewaysVpnConnections5 | VpnSites5 | ApplicationGateways19 | ApplicationGatewayWebApplicationFirewallPolicies4 | ApplicationSecurityGroups16 | AzureFirewalls6 | BastionHosts3 | Connections16 | DdosCustomPolicies3 | DdosProtectionPlans11 | ExpressRouteCircuits13 | ExpressRouteCircuitsAuthorizations14 | ExpressRouteCircuitsPeerings13 | ExpressRouteCircuitsPeeringsConnections11 | ExpressRouteCrossConnections11 | ExpressRouteCrossConnectionsPeerings10 | ExpressRouteGateways3 | ExpressRouteGatewaysExpressRouteConnections3 | ExpressRoutePorts6 | FirewallPolicies2 | FirewallPoliciesRuleGroups2 | LoadBalancers28 | LoadBalancersInboundNatRules15 | LocalNetworkGateways16 | NatGateways3 | NetworkInterfaces29 | NetworkInterfacesTapConfigurations6 | NetworkProfiles3 | NetworkSecurityGroups28 | NetworkSecurityGroupsSecurityRules19 | NetworkWatchers6 | NetworkWatchersPacketCaptures6 | P2SvpnGateways3 | PrivateEndpoints3 | PrivateLinkServices3 | PrivateLinkServicesPrivateEndpointConnections3 | PublicIPAddresses28 | PublicIPPrefixes4 | RouteFilters6 | RouteFiltersRouteFilterRules6 | RouteTables28 | RouteTablesRoutes19 | ServiceEndpointPolicies4 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions4 | VirtualHubs6 | VirtualNetworkGateways16 | VirtualNetworks28 | VirtualNetworksSubnets16 | VirtualNetworksVirtualNetworkPeerings13 | VirtualNetworkTaps3 | VirtualRouters1 | VirtualRoutersPeerings1 | VirtualWans6 | VpnGateways6 | VpnGatewaysVpnConnections6 | VpnServerConfigurations | VpnSites6 | ApplicationGateways20 | ApplicationGatewayWebApplicationFirewallPolicies5 | ApplicationSecurityGroups17 | AzureFirewalls7 | BastionHosts4 | Connections17 | DdosCustomPolicies4 | DdosProtectionPlans12 | ExpressRouteCircuits14 | ExpressRouteCircuitsAuthorizations15 | ExpressRouteCircuitsPeerings14 | ExpressRouteCircuitsPeeringsConnections12 | ExpressRouteCrossConnections12 | ExpressRouteCrossConnectionsPeerings11 | ExpressRouteGateways4 | ExpressRouteGatewaysExpressRouteConnections4 | ExpressRoutePorts7 | FirewallPolicies3 | FirewallPoliciesRuleGroups3 | IpGroups | LoadBalancers29 | LoadBalancersInboundNatRules16 | LocalNetworkGateways17 | NatGateways4 | NetworkInterfaces30 | NetworkInterfacesTapConfigurations7 | NetworkProfiles4 | NetworkSecurityGroups29 | NetworkSecurityGroupsSecurityRules20 | NetworkWatchers7 | NetworkWatchersPacketCaptures7 | P2SvpnGateways4 | PrivateEndpoints4 | PrivateLinkServices4 | PrivateLinkServicesPrivateEndpointConnections4 | PublicIPAddresses29 | PublicIPPrefixes5 | RouteFilters7 | RouteFiltersRouteFilterRules7 | RouteTables29 | RouteTablesRoutes20 | ServiceEndpointPolicies5 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions5 | VirtualHubs7 | VirtualHubsRouteTables | VirtualNetworkGateways17 | VirtualNetworks29 | VirtualNetworksSubnets17 | VirtualNetworksVirtualNetworkPeerings14 | VirtualNetworkTaps4 | VirtualRouters2 | VirtualRoutersPeerings2 | VirtualWans7 | VpnGateways7 | VpnGatewaysVpnConnections7 | VpnServerConfigurations1 | VpnSites7 | NatGateways5 | Connections18 | LocalNetworkGateways18 | VirtualNetworkGateways18 | VirtualNetworksSubnets18 | VirtualNetworksVirtualNetworkPeerings15 | ApplicationGatewayWebApplicationFirewallPolicies6 | Connections19 | LocalNetworkGateways19 | VirtualNetworkGateways19 | VirtualNetworksSubnets19 | VirtualNetworksVirtualNetworkPeerings16 | DdosProtectionPlans13 | ExpressRouteCircuits15 | ExpressRouteCrossConnections13 | PublicIPAddresses30 | VirtualNetworks30 | LoadBalancers30 | NetworkSecurityGroups30 | NetworkInterfaces31 | RouteTables30 | ApplicationGateways21 | ExpressRouteCircuitsAuthorizations16 | ExpressRoutePorts8 | Connections20 | LocalNetworkGateways20 | VirtualNetworkGateways20 | VirtualNetworksSubnets20 | VirtualNetworksVirtualNetworkPeerings17 | ExpressRouteCircuitsPeerings15 | ExpressRouteCrossConnectionsPeerings12 | LoadBalancersInboundNatRules17 | NetworkInterfacesTapConfigurations8 | NetworkSecurityGroupsSecurityRules21 | RouteTablesRoutes21 | ExpressRouteCircuitsPeeringsConnections13 | ExpressRoutePorts9 | Connections21 | LocalNetworkGateways21 | VirtualNetworkGateways21 | VirtualNetworksSubnets21 | VirtualNetworksVirtualNetworkPeerings18 | ExpressRouteCircuitsPeerings16 | ExpressRouteCrossConnectionsPeerings13 | LoadBalancersInboundNatRules18 | NetworkInterfacesTapConfigurations9 | NetworkSecurityGroupsSecurityRules22 | RouteTablesRoutes22 | ApplicationGateways22 | Connections22 | LocalNetworkGateways22 | VirtualNetworkGateways22 | VirtualNetworksSubnets22 | VirtualNetworksVirtualNetworkPeerings19 | DnsZones2 | DnsZones_A2 | DnsZones_AAAA2 | DnsZones_CAA2 | DnsZones_CNAME2 | DnsZones_MX2 | DnsZones_NS2 | DnsZones_PTR2 | DnsZones_SOA2 | DnsZones_SRV2 | DnsZones_TXT2 | PrivateDnsZones | PrivateDnsZonesVirtualNetworkLinks | PrivateDnsZones_A | PrivateDnsZones_AAAA | PrivateDnsZones_CNAME | PrivateDnsZones_MX | PrivateDnsZones_PTR | PrivateDnsZones_SOA | PrivateDnsZones_SRV | PrivateDnsZones_TXT | ApplicationGateways23 | ApplicationGatewayWebApplicationFirewallPolicies7 | ApplicationSecurityGroups18 | AzureFirewalls8 | BastionHosts5 | Connections23 | DdosCustomPolicies5 | DdosProtectionPlans14 | ExpressRouteCircuits16 | ExpressRouteCircuitsAuthorizations17 | ExpressRouteCircuitsPeerings17 | ExpressRouteCircuitsPeeringsConnections14 | ExpressRouteCrossConnections14 | ExpressRouteCrossConnectionsPeerings14 | ExpressRouteGateways5 | ExpressRouteGatewaysExpressRouteConnections5 | ExpressRoutePorts10 | FirewallPolicies4 | FirewallPoliciesRuleGroups4 | IpGroups1 | LoadBalancers31 | LoadBalancersInboundNatRules19 | LocalNetworkGateways23 | NatGateways6 | NetworkInterfaces32 | NetworkInterfacesTapConfigurations10 | NetworkProfiles5 | NetworkSecurityGroups31 | NetworkSecurityGroupsSecurityRules23 | NetworkWatchers8 | NetworkWatchersPacketCaptures8 | P2SvpnGateways5 | PrivateEndpoints5 | PrivateLinkServices5 | PrivateLinkServicesPrivateEndpointConnections5 | PublicIPAddresses31 | PublicIPPrefixes6 | RouteFilters8 | RouteFiltersRouteFilterRules8 | RouteTables31 | RouteTablesRoutes23 | ServiceEndpointPolicies6 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions6 | VirtualHubs8 | VirtualHubsRouteTables1 | VirtualNetworkGateways23 | VirtualNetworks31 | VirtualNetworksSubnets23 | VirtualNetworksVirtualNetworkPeerings20 | VirtualNetworkTaps5 | VirtualRouters3 | VirtualRoutersPeerings3 | VirtualWans8 | VpnGateways8 | VpnGatewaysVpnConnections8 | VpnServerConfigurations2 | VpnSites8 | NetworkWatchersConnectionMonitors5 | NetworkWatchersFlowLogs | ApplicationGateways24 | ApplicationGatewayWebApplicationFirewallPolicies8 | ApplicationSecurityGroups19 | AzureFirewalls9 | BastionHosts6 | Connections24 | ConnectionsSharedkey | DdosCustomPolicies6 | DdosProtectionPlans15 | ExpressRouteCircuits17 | ExpressRouteCircuitsAuthorizations18 | ExpressRouteCircuitsPeerings18 | ExpressRouteCircuitsPeeringsConnections15 | ExpressRouteCrossConnections15 | ExpressRouteCrossConnectionsPeerings15 | ExpressRouteGateways6 | ExpressRouteGatewaysExpressRouteConnections6 | ExpressRoutePorts11 | FirewallPolicies5 | FirewallPoliciesRuleGroups5 | IpGroups2 | LoadBalancers32 | LoadBalancersInboundNatRules20 | LocalNetworkGateways24 | NatGateways7 | NetworkInterfaces33 | NetworkInterfacesTapConfigurations11 | NetworkProfiles6 | NetworkSecurityGroups32 | NetworkSecurityGroupsSecurityRules24 | NetworkVirtualAppliances | NetworkWatchers9 | NetworkWatchersConnectionMonitors6 | NetworkWatchersFlowLogs1 | NetworkWatchersPacketCaptures9 | P2SvpnGateways6 | PrivateEndpoints6 | PrivateLinkServices6 | PrivateLinkServicesPrivateEndpointConnections6 | PublicIPAddresses32 | PublicIPPrefixes7 | RouteFilters9 | RouteFiltersRouteFilterRules9 | RouteTables32 | RouteTablesRoutes24 | ServiceEndpointPolicies7 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions7 | VirtualHubs9 | VirtualHubsRouteTables2 | VirtualNetworkGateways24 | VirtualNetworks32 | VirtualNetworksSubnets24 | VirtualNetworksVirtualNetworkPeerings21 | VirtualNetworkTaps6 | VirtualRouters4 | VirtualRoutersPeerings4 | VirtualWans9 | VpnGateways9 | VpnGatewaysVpnConnections9 | VpnServerConfigurations3 | VpnSites9 | ApplicationGateways25 | ApplicationGatewayWebApplicationFirewallPolicies9 | ApplicationSecurityGroups20 | AzureFirewalls10 | BastionHosts7 | Connections25 | DdosCustomPolicies7 | DdosProtectionPlans16 | ExpressRouteCircuits18 | ExpressRouteCircuitsAuthorizations19 | ExpressRouteCircuitsPeerings19 | ExpressRouteCircuitsPeeringsConnections16 | ExpressRouteCrossConnections16 | ExpressRouteCrossConnectionsPeerings16 | ExpressRouteGateways7 | ExpressRouteGatewaysExpressRouteConnections7 | ExpressRoutePorts12 | FirewallPolicies6 | FirewallPoliciesRuleGroups6 | IpAllocations | IpGroups3 | LoadBalancers33 | LoadBalancersInboundNatRules21 | LocalNetworkGateways25 | NatGateways8 | NetworkInterfaces34 | NetworkInterfacesTapConfigurations12 | NetworkProfiles7 | NetworkSecurityGroups33 | NetworkSecurityGroupsSecurityRules25 | NetworkVirtualAppliances1 | NetworkWatchers10 | NetworkWatchersConnectionMonitors7 | NetworkWatchersFlowLogs2 | NetworkWatchersPacketCaptures10 | P2SvpnGateways7 | PrivateEndpoints7 | PrivateEndpointsPrivateDnsZoneGroups | PrivateLinkServices7 | PrivateLinkServicesPrivateEndpointConnections7 | PublicIPAddresses33 | PublicIPPrefixes8 | RouteFilters10 | RouteFiltersRouteFilterRules10 | RouteTables33 | RouteTablesRoutes25 | SecurityPartnerProviders | ServiceEndpointPolicies8 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions8 | VirtualHubs10 | VirtualHubsRouteTables3 | VirtualNetworkGateways25 | VirtualNetworks33 | VirtualNetworksSubnets25 | VirtualNetworksVirtualNetworkPeerings22 | VirtualNetworkTaps7 | VirtualRouters5 | VirtualRoutersPeerings5 | VirtualWans10 | VpnGateways10 | VpnGatewaysVpnConnections10 | VpnServerConfigurations4 | VpnSites10 | ApplicationGateways26 | ApplicationGatewayWebApplicationFirewallPolicies10 | ApplicationSecurityGroups21 | AzureFirewalls11 | BastionHosts8 | Connections26 | DdosCustomPolicies8 | DdosProtectionPlans17 | ExpressRouteCircuits19 | ExpressRouteCircuitsAuthorizations20 | ExpressRouteCircuitsPeerings20 | ExpressRouteCircuitsPeeringsConnections17 | ExpressRouteCrossConnections17 | ExpressRouteCrossConnectionsPeerings17 | ExpressRouteGateways8 | ExpressRouteGatewaysExpressRouteConnections8 | ExpressRoutePorts13 | FirewallPolicies7 | FirewallPoliciesRuleGroups7 | IpAllocations1 | IpGroups4 | LoadBalancers34 | LoadBalancersBackendAddressPools | LoadBalancersInboundNatRules22 | LocalNetworkGateways26 | NatGateways9 | NetworkInterfaces35 | NetworkInterfacesTapConfigurations13 | NetworkProfiles8 | NetworkSecurityGroups34 | NetworkSecurityGroupsSecurityRules26 | NetworkVirtualAppliances2 | NetworkWatchers11 | NetworkWatchersConnectionMonitors8 | NetworkWatchersFlowLogs3 | NetworkWatchersPacketCaptures11 | P2SvpnGateways8 | PrivateEndpoints8 | PrivateEndpointsPrivateDnsZoneGroups1 | PrivateLinkServices8 | PrivateLinkServicesPrivateEndpointConnections8 | PublicIPAddresses34 | PublicIPPrefixes9 | RouteFilters11 | RouteFiltersRouteFilterRules11 | RouteTables34 | RouteTablesRoutes26 | SecurityPartnerProviders1 | ServiceEndpointPolicies9 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions9 | VirtualHubs11 | VirtualHubsHubRouteTables | VirtualHubsRouteTables4 | VirtualNetworkGateways26 | VirtualNetworks34 | VirtualNetworksSubnets26 | VirtualNetworksVirtualNetworkPeerings23 | VirtualNetworkTaps8 | VirtualRouters6 | VirtualRoutersPeerings6 | VirtualWans11 | VpnGateways11 | VpnGatewaysVpnConnections11 | VpnServerConfigurations5 | VpnSites11 | ApplicationGateways27 | ApplicationGatewaysPrivateEndpointConnections | ApplicationGatewayWebApplicationFirewallPolicies11 | ApplicationSecurityGroups22 | AzureFirewalls12 | BastionHosts9 | Connections27 | DdosCustomPolicies9 | DdosProtectionPlans18 | ExpressRouteCircuits20 | ExpressRouteCircuitsAuthorizations21 | ExpressRouteCircuitsPeerings21 | ExpressRouteCircuitsPeeringsConnections18 | ExpressRouteCrossConnections18 | ExpressRouteCrossConnectionsPeerings18 | ExpressRouteGateways9 | ExpressRouteGatewaysExpressRouteConnections9 | ExpressRoutePorts14 | FirewallPolicies8 | FirewallPoliciesRuleCollectionGroups | IpAllocations2 | IpGroups5 | LoadBalancers35 | LoadBalancersBackendAddressPools1 | LoadBalancersInboundNatRules23 | LocalNetworkGateways27 | NatGateways10 | NetworkInterfaces36 | NetworkInterfacesTapConfigurations14 | NetworkProfiles9 | NetworkSecurityGroups35 | NetworkSecurityGroupsSecurityRules27 | NetworkVirtualAppliances3 | NetworkVirtualAppliancesVirtualApplianceSites | NetworkWatchers12 | NetworkWatchersConnectionMonitors9 | NetworkWatchersFlowLogs4 | NetworkWatchersPacketCaptures12 | P2SvpnGateways9 | PrivateEndpoints9 | PrivateEndpointsPrivateDnsZoneGroups2 | PrivateLinkServices9 | PrivateLinkServicesPrivateEndpointConnections9 | PublicIPAddresses35 | PublicIPPrefixes10 | RouteFilters12 | RouteFiltersRouteFilterRules12 | RouteTables35 | RouteTablesRoutes27 | SecurityPartnerProviders2 | ServiceEndpointPolicies10 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions10 | VirtualHubs12 | VirtualHubsBgpConnections | VirtualHubsHubRouteTables1 | VirtualHubsHubVirtualNetworkConnections | VirtualHubsIpConfigurations | VirtualHubsRouteTables5 | VirtualNetworkGateways27 | VirtualNetworks35 | VirtualNetworksSubnets27 | VirtualNetworksVirtualNetworkPeerings24 | VirtualNetworkTaps9 | VirtualRouters7 | VirtualRoutersPeerings7 | VirtualWans12 | VpnGateways12 | VpnGatewaysVpnConnections12 | VpnServerConfigurations6 | VpnSites12 | Services2 | ServicesProjects | Services3 | ServicesProjects1 | Budgets | Clusters14 | FileServers | Jobs1 | VaultsBackupFabricsProtectionContainersProtectedItems | VaultsBackupPolicies | VaultsBackupFabricsBackupProtectionIntent | VaultsBackupFabricsProtectionContainers | VaultsBackupstorageconfig | Disks2 | Snapshots2 | ContainerGroups | ContainerGroups1 | Galleries | GalleriesImages | GalleriesImagesVersions | Images3 | AvailabilitySets4 | VirtualMachines5 | VirtualMachineScaleSets4 | Disks3 | Snapshots3 | VirtualMachineScaleSetsVirtualmachines | VirtualMachinesExtensions3 | VirtualMachineScaleSetsExtensions1 | Images4 | AvailabilitySets5 | VirtualMachines6 | VirtualMachineScaleSets5 | VirtualMachineScaleSetsVirtualmachines1 | VirtualMachinesExtensions4 | VirtualMachineScaleSetsExtensions2 | AvailabilitySets6 | HostGroups | HostGroupsHosts | Images5 | ProximityPlacementGroups | VirtualMachines7 | VirtualMachineScaleSets6 | VirtualMachineScaleSetsVirtualmachines2 | VirtualMachinesExtensions5 | VirtualMachineScaleSetsExtensions3 | Galleries1 | GalleriesImages1 | GalleriesImagesVersions1 | IotApps | Accounts8 | Workspaces8 | WorkspacesClusters | WorkspacesExperiments | WorkspacesExperimentsJobs | WorkspacesFileServers | ContainerServices1 | ManagedClusters | WorkspacesSavedSearches | WorkspacesStorageInsightConfigs | Workspaces9 | WorkspacesDataSources | WorkspacesLinkedServices | Clusters15 | ManagementConfigurations | Solutions | Peerings | PeeringServices | PeeringServicesPrefixes | Peerings1 | PeeringServices1 | PeeringServicesPrefixes1 | Peerings2 | PeeringsRegisteredAsns | PeeringsRegisteredPrefixes | PeeringServices2 | PeeringServicesPrefixes2 | DomainServices | DomainServices1 | DomainServicesOuContainer | SignalR | NetAppAccounts | NetAppAccountsCapacityPools | NetAppAccountsCapacityPoolsVolumes | NetAppAccountsCapacityPoolsVolumesSnapshots | NetAppAccounts1 | NetAppAccountsCapacityPools1 | NetAppAccountsCapacityPoolsVolumes1 | NetAppAccountsCapacityPoolsVolumesSnapshots1 | Managers1 | ManagersAccessControlRecords1 | ManagersCertificates | ManagersDevicesAlertSettings1 | ManagersDevicesBackupScheduleGroups | ManagersDevicesChapSettings | ManagersDevicesFileservers | ManagersDevicesFileserversShares | ManagersDevicesIscsiservers | ManagersDevicesIscsiserversDisks | ManagersExtendedInformation1 | ManagersStorageAccountCredentials1 | ManagersStorageDomains | Accounts9 | Accounts10 | AccountsPrivateAtlases | UserAssignedIdentities | UserAssignedIdentities1 | Clusters16 | ClustersApplications2 | ClustersExtensions | Clusters17 | ClustersApplications3 | ClustersExtensions1 | LocationsJitNetworkAccessPolicies | IotSecuritySolutions | Pricings | AdvancedThreatProtectionSettings | DeviceSecurityGroups | AdvancedThreatProtectionSettings1 | Automations | Assessments | IotSecuritySolutions1 | DeviceSecurityGroups1 | LocationsJitNetworkAccessPolicies1 | Assessments1 | AssessmentProjects | AssessmentProjectsGroups | AssessmentProjectsGroupsAssessments | AssessmentProjectsHypervcollectors | AssessmentProjectsVmwarecollectors | RegistrationAssignments | RegistrationDefinitions | RegistrationAssignments1 | RegistrationDefinitions1 | CrayServers | ManagedClusters1 | ManagedClustersAgentPools | MigrateProjects | MigrateProjectsSolutions | Namespaces3 | Namespaces_AuthorizationRules3 | NamespacesQueues | NamespacesQueuesAuthorizationRules | NamespacesTopics | NamespacesTopicsAuthorizationRules | NamespacesTopicsSubscriptions | Namespaces4 | Namespaces_AuthorizationRules4 | NamespacesDisasterRecoveryConfigs | NamespacesMigrationConfigurations | NamespacesNetworkRuleSets | NamespacesQueues1 | NamespacesQueuesAuthorizationRules1 | NamespacesTopics1 | NamespacesTopicsAuthorizationRules1 | NamespacesTopicsSubscriptions1 | NamespacesTopicsSubscriptionsRules | Namespaces5 | NamespacesIpfilterrules | NamespacesNetworkRuleSets1 | NamespacesVirtualnetworkrules | NamespacesPrivateEndpointConnections | NamespacesQueues2 | NamespacesQueuesAuthorizationRules2 | NamespacesTopics2 | NamespacesTopicsAuthorizationRules2 | NamespacesTopicsSubscriptions2 | NamespacesTopicsSubscriptionsRules1 | NamespacesDisasterRecoveryConfigs1 | NamespacesMigrationConfigurations1 | Namespaces_AuthorizationRules5 | Account | AccountExtension | AccountProject | Namespaces6 | Namespaces_AuthorizationRules6 | NamespacesEventhubs | NamespacesEventhubsAuthorizationRules | NamespacesEventhubsConsumergroups | Namespaces7 | Namespaces_AuthorizationRules7 | NamespacesEventhubs1 | NamespacesEventhubsAuthorizationRules1 | NamespacesEventhubsConsumergroups1 | Namespaces8 | NamespacesAuthorizationRules | NamespacesDisasterRecoveryConfigs2 | NamespacesEventhubs2 | NamespacesEventhubsAuthorizationRules2 | NamespacesEventhubsConsumergroups2 | NamespacesNetworkRuleSets2 | Clusters18 | Namespaces9 | NamespacesIpfilterrules1 | NamespacesNetworkRuleSets3 | NamespacesVirtualnetworkrules1 | Namespaces10 | Namespaces_AuthorizationRules8 | Namespaces_HybridConnections | Namespaces_HybridConnectionsAuthorizationRules | Namespaces_WcfRelays | Namespaces_WcfRelaysAuthorizationRules | Namespaces11 | NamespacesAuthorizationRules1 | NamespacesHybridConnections | NamespacesHybridConnectionsAuthorizationRules | NamespacesWcfRelays | NamespacesWcfRelaysAuthorizationRules | Factories | FactoriesDatasets | FactoriesIntegrationRuntimes | FactoriesLinkedservices | FactoriesPipelines | FactoriesTriggers | Factories1 | FactoriesDataflows | FactoriesDatasets1 | FactoriesIntegrationRuntimes1 | FactoriesLinkedservices1 | FactoriesPipelines1 | FactoriesTriggers1 | FactoriesManagedVirtualNetworks | FactoriesManagedVirtualNetworksManagedPrivateEndpoints | Topics | EventSubscriptions | Topics1 | EventSubscriptions1 | Topics2 | EventSubscriptions2 | Topics3 | EventSubscriptions3 | Domains | Topics4 | EventSubscriptions4 | Topics5 | EventSubscriptions5 | Domains1 | DomainsTopics | Topics6 | EventSubscriptions6 | Domains2 | DomainsTopics1 | Topics7 | EventSubscriptions7 | AvailabilitySets7 | DiskEncryptionSets | Disks4 | HostGroups1 | HostGroupsHosts1 | Images6 | ProximityPlacementGroups1 | Snapshots4 | VirtualMachines8 | VirtualMachineScaleSets7 | VirtualMachineScaleSetsVirtualmachines3 | VirtualMachineScaleSetsVirtualMachinesExtensions | VirtualMachinesExtensions6 | VirtualMachineScaleSetsExtensions4 | MultipleActivationKeys | JobCollectionsJobs1 | JobCollections2 | JobCollectionsJobs2 | SearchServices1 | SearchServices2 | SearchServicesPrivateEndpointConnections | Workspaces10 | WorkspacesAdministrators | WorkspacesBigDataPools | WorkspacesFirewallRules | WorkspacesManagedIdentitySqlControlSettings | WorkspacesSqlPools | WorkspacesSqlPoolsAuditingSettings | WorkspacesSqlPoolsMetadataSync | WorkspacesSqlPoolsSchemasTablesColumnsSensitivityLabels | WorkspacesSqlPoolsSecurityAlertPolicies | WorkspacesSqlPoolsTransparentDataEncryption | WorkspacesSqlPoolsVulnerabilityAssessments | WorkspacesSqlPoolsVulnerabilityAssessmentsRulesBaselines | Queries | CommunicationServices | Alertrules | Components | Webtests | Autoscalesettings | Components1 | ComponentsAnalyticsItems | Components_Annotations | ComponentsCurrentbillingfeatures | ComponentsFavorites | ComponentsMyanalyticsItems | Components_ProactiveDetectionConfigs | MyWorkbooks | Webtests1 | Workbooks | ComponentsExportconfiguration | ComponentsPricingPlans | Components2 | Components_ProactiveDetectionConfigs1 | Workbooks1 | Workbooktemplates | Components3 | ComponentsLinkedStorageAccounts | Autoscalesettings1 | Alertrules1 | ActivityLogAlerts | ActionGroups | ActivityLogAlerts1 | ActionGroups1 | MetricAlerts | ScheduledQueryRules | GuestDiagnosticSettings | ActionGroups2 | ActionGroups3 | ActionGroups4 | PrivateLinkScopes | PrivateLinkScopesPrivateEndpointConnections | PrivateLinkScopesScopedResources | DataCollectionRules | ScheduledQueryRules1 | Workspaces11 | Locks | Policyassignments | Policyassignments1 | Locks1 | PolicyAssignments | PolicyAssignments1 | PolicyAssignments2 | PolicyAssignments3 | PolicyAssignments4 | PolicyAssignments5 | PolicyAssignments6 | PolicyAssignments7 | PolicyExemptions | PolicyAssignments8 | CertificateOrders | CertificateOrdersCertificates | CertificateOrders1 | CertificateOrdersCertificates1 | CertificateOrders2 | CertificateOrdersCertificates2 | CertificateOrders3 | CertificateOrdersCertificates3 | CertificateOrders4 | CertificateOrdersCertificates4 | CertificateOrders5 | CertificateOrdersCertificates5 | CertificateOrders6 | CertificateOrdersCertificates6 | Domains3 | DomainsDomainOwnershipIdentifiers | Domains4 | DomainsDomainOwnershipIdentifiers1 | Domains5 | DomainsDomainOwnershipIdentifiers2 | Domains6 | DomainsDomainOwnershipIdentifiers3 | Domains7 | DomainsDomainOwnershipIdentifiers4 | Domains8 | DomainsDomainOwnershipIdentifiers5 | Domains9 | DomainsDomainOwnershipIdentifiers6 | Certificates | Csrs | HostingEnvironments | HostingEnvironmentsMultiRolePools | HostingEnvironmentsWorkerPools | ManagedHostingEnvironments | Serverfarms | ServerfarmsVirtualNetworkConnectionsGateways | ServerfarmsVirtualNetworkConnectionsRoutes | Sites | SitesBackups | SitesConfig | SitesDeployments | SitesHostNameBindings | SitesHybridconnection | SitesInstancesDeployments | SitesPremieraddons | SitesSlots | SitesSlotsBackups | SitesSlotsConfig | SitesSlotsDeployments | SitesSlotsHostNameBindings | SitesSlotsHybridconnection | SitesSlotsInstancesDeployments | SitesSlotsPremieraddons | SitesSlotsSnapshots | SitesSlotsSourcecontrols | SitesSlotsVirtualNetworkConnections | SitesSlotsVirtualNetworkConnectionsGateways | SitesSnapshots | SitesSourcecontrols | SitesVirtualNetworkConnections | SitesVirtualNetworkConnectionsGateways | Connections28 | Certificates1 | ConnectionGateways | Connections29 | CustomApis | Sites1 | SitesBackups1 | SitesConfig1 | SitesDeployments1 | SitesDomainOwnershipIdentifiers | SitesExtensions | SitesFunctions | SitesHostNameBindings1 | SitesHybridconnection1 | SitesHybridConnectionNamespacesRelays | SitesInstancesExtensions | SitesMigrate | SitesPremieraddons1 | SitesPublicCertificates | SitesSiteextensions | SitesSlots1 | SitesSlotsBackups1 | SitesSlotsConfig1 | SitesSlotsDeployments1 | SitesSlotsDomainOwnershipIdentifiers | SitesSlotsExtensions | SitesSlotsFunctions | SitesSlotsHostNameBindings1 | SitesSlotsHybridconnection1 | SitesSlotsHybridConnectionNamespacesRelays | SitesSlotsInstancesExtensions | SitesSlotsPremieraddons1 | SitesSlotsPublicCertificates | SitesSlotsSiteextensions | SitesSlotsSourcecontrols1 | SitesSlotsVirtualNetworkConnections1 | SitesSlotsVirtualNetworkConnectionsGateways1 | SitesSourcecontrols1 | SitesVirtualNetworkConnections1 | SitesVirtualNetworkConnectionsGateways1 | HostingEnvironments1 | HostingEnvironmentsMultiRolePools1 | HostingEnvironmentsWorkerPools1 | Serverfarms1 | ServerfarmsVirtualNetworkConnectionsGateways1 | ServerfarmsVirtualNetworkConnectionsRoutes1 | Certificates2 | HostingEnvironments2 | HostingEnvironmentsMultiRolePools2 | HostingEnvironmentsWorkerPools2 | Serverfarms2 | ServerfarmsVirtualNetworkConnectionsGateways2 | ServerfarmsVirtualNetworkConnectionsRoutes2 | Sites2 | SitesConfig2 | SitesDeployments2 | SitesDomainOwnershipIdentifiers1 | SitesExtensions1 | SitesFunctions1 | SitesFunctionsKeys | SitesHostNameBindings2 | SitesHybridconnection2 | SitesHybridConnectionNamespacesRelays1 | SitesInstancesExtensions1 | SitesMigrate1 | SitesNetworkConfig | SitesPremieraddons2 | SitesPrivateAccess | SitesPublicCertificates1 | SitesSiteextensions1 | SitesSlots2 | SitesSlotsConfig2 | SitesSlotsDeployments2 | SitesSlotsDomainOwnershipIdentifiers1 | SitesSlotsExtensions1 | SitesSlotsFunctions1 | SitesSlotsFunctionsKeys | SitesSlotsHostNameBindings2 | SitesSlotsHybridconnection2 | SitesSlotsHybridConnectionNamespacesRelays1 | SitesSlotsInstancesExtensions1 | SitesSlotsNetworkConfig | SitesSlotsPremieraddons2 | SitesSlotsPrivateAccess | SitesSlotsPublicCertificates1 | SitesSlotsSiteextensions1 | SitesSlotsSourcecontrols2 | SitesSlotsVirtualNetworkConnections2 | SitesSlotsVirtualNetworkConnectionsGateways2 | SitesSourcecontrols2 | SitesVirtualNetworkConnections2 | SitesVirtualNetworkConnectionsGateways2 | Certificates3 | Sites3 | SitesConfig3 | SitesDeployments3 | SitesDomainOwnershipIdentifiers2 | SitesExtensions2 | SitesFunctions2 | SitesHostNameBindings3 | SitesHybridconnection3 | SitesHybridConnectionNamespacesRelays2 | SitesInstancesExtensions2 | SitesMigrate2 | SitesNetworkConfig1 | SitesPremieraddons3 | SitesPrivateAccess1 | SitesPublicCertificates2 | SitesSiteextensions2 | SitesSlots3 | SitesSlotsConfig3 | SitesSlotsDeployments3 | SitesSlotsDomainOwnershipIdentifiers2 | SitesSlotsExtensions2 | SitesSlotsFunctions2 | SitesSlotsHostNameBindings3 | SitesSlotsHybridconnection3 | SitesSlotsHybridConnectionNamespacesRelays2 | SitesSlotsInstancesExtensions2 | SitesSlotsNetworkConfig1 | SitesSlotsPremieraddons3 | SitesSlotsPrivateAccess1 | SitesSlotsPublicCertificates2 | SitesSlotsSiteextensions2 | SitesSlotsSourcecontrols3 | SitesSlotsVirtualNetworkConnections3 | SitesSlotsVirtualNetworkConnectionsGateways3 | SitesSourcecontrols3 | SitesVirtualNetworkConnections3 | SitesVirtualNetworkConnectionsGateways3 | Certificates4 | HostingEnvironments3 | HostingEnvironmentsMultiRolePools3 | HostingEnvironmentsWorkerPools3 | Serverfarms3 | ServerfarmsVirtualNetworkConnectionsGateways3 | ServerfarmsVirtualNetworkConnectionsRoutes3 | Sites4 | SitesBasicPublishingCredentialsPolicies | SitesConfig4 | SitesDeployments4 | SitesDomainOwnershipIdentifiers3 | SitesExtensions3 | SitesFunctions3 | SitesFunctionsKeys1 | SitesHostNameBindings4 | SitesHybridconnection4 | SitesHybridConnectionNamespacesRelays3 | SitesInstancesExtensions3 | SitesMigrate3 | SitesNetworkConfig2 | SitesPremieraddons4 | SitesPrivateAccess2 | SitesPrivateEndpointConnections | SitesPublicCertificates3 | SitesSiteextensions3 | SitesSlots4 | SitesSlotsConfig4 | SitesSlotsDeployments4 | SitesSlotsDomainOwnershipIdentifiers3 | SitesSlotsExtensions3 | SitesSlotsFunctions3 | SitesSlotsFunctionsKeys1 | SitesSlotsHostNameBindings4 | SitesSlotsHybridconnection4 | SitesSlotsHybridConnectionNamespacesRelays3 | SitesSlotsInstancesExtensions3 | SitesSlotsNetworkConfig2 | SitesSlotsPremieraddons4 | SitesSlotsPrivateAccess2 | SitesSlotsPublicCertificates3 | SitesSlotsSiteextensions3 | SitesSlotsSourcecontrols4 | SitesSlotsVirtualNetworkConnections4 | SitesSlotsVirtualNetworkConnectionsGateways4 | SitesSourcecontrols4 | SitesVirtualNetworkConnections4 | SitesVirtualNetworkConnectionsGateways4 | StaticSites | StaticSitesBuildsConfig | StaticSitesConfig | StaticSitesCustomDomains | Certificates5 | HostingEnvironments4 | HostingEnvironmentsMultiRolePools4 | HostingEnvironmentsWorkerPools4 | Serverfarms4 | ServerfarmsVirtualNetworkConnectionsGateways4 | ServerfarmsVirtualNetworkConnectionsRoutes4 | Sites5 | SitesBasicPublishingCredentialsPolicies1 | SitesConfig5 | SitesDeployments5 | SitesDomainOwnershipIdentifiers4 | SitesExtensions4 | SitesFunctions4 | SitesFunctionsKeys2 | SitesHostNameBindings5 | SitesHybridconnection5 | SitesHybridConnectionNamespacesRelays4 | SitesInstancesExtensions4 | SitesMigrate4 | SitesNetworkConfig3 | SitesPremieraddons5 | SitesPrivateAccess3 | SitesPrivateEndpointConnections1 | SitesPublicCertificates4 | SitesSiteextensions4 | SitesSlots5 | SitesSlotsConfig5 | SitesSlotsDeployments5 | SitesSlotsDomainOwnershipIdentifiers4 | SitesSlotsExtensions4 | SitesSlotsFunctions4 | SitesSlotsFunctionsKeys2 | SitesSlotsHostNameBindings5 | SitesSlotsHybridconnection5 | SitesSlotsHybridConnectionNamespacesRelays4 | SitesSlotsInstancesExtensions4 | SitesSlotsNetworkConfig3 | SitesSlotsPremieraddons5 | SitesSlotsPrivateAccess3 | SitesSlotsPublicCertificates4 | SitesSlotsSiteextensions4 | SitesSlotsSourcecontrols5 | SitesSlotsVirtualNetworkConnections5 | SitesSlotsVirtualNetworkConnectionsGateways5 | SitesSourcecontrols5 | SitesVirtualNetworkConnections5 | SitesVirtualNetworkConnectionsGateways5 | StaticSites1 | StaticSitesBuildsConfig1 | StaticSitesConfig1 | StaticSitesCustomDomains1 | Certificates6 | HostingEnvironments5 | HostingEnvironmentsMultiRolePools5 | HostingEnvironmentsWorkerPools5 | Serverfarms5 | ServerfarmsVirtualNetworkConnectionsGateways5 | ServerfarmsVirtualNetworkConnectionsRoutes5 | Sites6 | SitesBasicPublishingCredentialsPolicies2 | SitesConfig6 | SitesDeployments6 | SitesDomainOwnershipIdentifiers5 | SitesExtensions5 | SitesFunctions5 | SitesFunctionsKeys3 | SitesHostNameBindings6 | SitesHybridconnection6 | SitesHybridConnectionNamespacesRelays5 | SitesInstancesExtensions5 | SitesMigrate5 | SitesNetworkConfig4 | SitesPremieraddons6 | SitesPrivateAccess4 | SitesPrivateEndpointConnections2 | SitesPublicCertificates5 | SitesSiteextensions5 | SitesSlots6 | SitesSlotsConfig6 | SitesSlotsDeployments6 | SitesSlotsDomainOwnershipIdentifiers5 | SitesSlotsExtensions5 | SitesSlotsFunctions5 | SitesSlotsFunctionsKeys3 | SitesSlotsHostNameBindings6 | SitesSlotsHybridconnection6 | SitesSlotsHybridConnectionNamespacesRelays5 | SitesSlotsInstancesExtensions5 | SitesSlotsNetworkConfig4 | SitesSlotsPremieraddons6 | SitesSlotsPrivateAccess4 | SitesSlotsPublicCertificates5 | SitesSlotsSiteextensions5 | SitesSlotsSourcecontrols6 | SitesSlotsVirtualNetworkConnections6 | SitesSlotsVirtualNetworkConnectionsGateways6 | SitesSourcecontrols6 | SitesVirtualNetworkConnections6 | SitesVirtualNetworkConnectionsGateways6 | StaticSites2 | StaticSitesBuildsConfig2 | StaticSitesConfig2 | StaticSitesCustomDomains2 | Certificates7 | HostingEnvironments6 | HostingEnvironmentsMultiRolePools6 | HostingEnvironmentsWorkerPools6 | Serverfarms6 | ServerfarmsVirtualNetworkConnectionsGateways6 | ServerfarmsVirtualNetworkConnectionsRoutes6 | Sites7 | SitesBasicPublishingCredentialsPolicies3 | SitesConfig7 | SitesDeployments7 | SitesDomainOwnershipIdentifiers6 | SitesExtensions6 | SitesFunctions6 | SitesFunctionsKeys4 | SitesHostNameBindings7 | SitesHybridconnection7 | SitesHybridConnectionNamespacesRelays6 | SitesInstancesExtensions6 | SitesMigrate6 | SitesNetworkConfig5 | SitesPremieraddons7 | SitesPrivateAccess5 | SitesPrivateEndpointConnections3 | SitesPublicCertificates6 | SitesSiteextensions6 | SitesSlots7 | SitesSlotsConfig7 | SitesSlotsDeployments7 | SitesSlotsDomainOwnershipIdentifiers6 | SitesSlotsExtensions6 | SitesSlotsFunctions6 | SitesSlotsFunctionsKeys4 | SitesSlotsHostNameBindings7 | SitesSlotsHybridconnection7 | SitesSlotsHybridConnectionNamespacesRelays6 | SitesSlotsInstancesExtensions6 | SitesSlotsNetworkConfig5 | SitesSlotsPremieraddons7 | SitesSlotsPrivateAccess5 | SitesSlotsPublicCertificates6 | SitesSlotsSiteextensions6 | SitesSlotsSourcecontrols7 | SitesSlotsVirtualNetworkConnections7 | SitesSlotsVirtualNetworkConnectionsGateways7 | SitesSourcecontrols7 | SitesVirtualNetworkConnections7 | SitesVirtualNetworkConnectionsGateways7 | StaticSites3 | StaticSitesBuildsConfig3 | StaticSitesConfig3 | StaticSitesCustomDomains3 | Certificates8 | HostingEnvironments7 | HostingEnvironmentsConfigurations | HostingEnvironmentsMultiRolePools7 | HostingEnvironmentsPrivateEndpointConnections | HostingEnvironmentsWorkerPools7 | Serverfarms7 | ServerfarmsVirtualNetworkConnectionsGateways7 | ServerfarmsVirtualNetworkConnectionsRoutes7 | Sites8 | SitesBasicPublishingCredentialsPolicies4 | SitesConfig8 | SitesDeployments8 | SitesDomainOwnershipIdentifiers7 | SitesExtensions7 | SitesFunctions7 | SitesFunctionsKeys5 | SitesHostNameBindings8 | SitesHybridconnection8 | SitesHybridConnectionNamespacesRelays7 | SitesInstancesExtensions7 | SitesMigrate7 | SitesNetworkConfig6 | SitesPremieraddons8 | SitesPrivateAccess6 | SitesPrivateEndpointConnections4 | SitesPublicCertificates7 | SitesSiteextensions7 | SitesSlots8 | SitesSlotsBasicPublishingCredentialsPolicies | SitesSlotsConfig8 | SitesSlotsDeployments8 | SitesSlotsDomainOwnershipIdentifiers7 | SitesSlotsExtensions7 | SitesSlotsFunctions7 | SitesSlotsFunctionsKeys5 | SitesSlotsHostNameBindings8 | SitesSlotsHybridconnection8 | SitesSlotsHybridConnectionNamespacesRelays7 | SitesSlotsInstancesExtensions7 | SitesSlotsPremieraddons8 | SitesSlotsPrivateAccess6 | SitesSlotsPrivateEndpointConnections | SitesSlotsPublicCertificates7 | SitesSlotsSiteextensions7 | SitesSlotsSourcecontrols8 | SitesSlotsVirtualNetworkConnections8 | SitesSlotsVirtualNetworkConnectionsGateways8 | SitesSourcecontrols8 | SitesVirtualNetworkConnections8 | SitesVirtualNetworkConnectionsGateways8 | StaticSites4 | StaticSitesBuildsConfig4 | StaticSitesBuildsUserProvidedFunctionApps | StaticSitesConfig4 | StaticSitesCustomDomains4 | StaticSitesPrivateEndpointConnections | StaticSitesUserProvidedFunctionApps)) | ((ARMResourceBase & {␊ + export type Resource = ((ResourceBase & (Services | ConfigurationStores | Services1 | Accounts | FrontDoorWebApplicationFirewallPolicies | FrontDoors | FrontDoors1 | FrontDoorWebApplicationFirewallPolicies1 | NetworkExperimentProfiles | NetworkExperimentProfiles_Experiments | FrontDoors2 | FrontDoorsRulesEngines | Redis | RedisFirewallRules | RedisLinkedServers | RedisPatchSchedules | SearchServices | Servers | Servers1 | Vaults | Vaults1 | VaultsCertificates | VaultsExtendedInformation | DatabaseAccounts | DatabaseAccountsApisDatabases | DatabaseAccountsApisDatabasesCollections | DatabaseAccountsApisDatabasesContainers | DatabaseAccountsApisDatabasesGraphs | DatabaseAccountsApisKeyspaces | DatabaseAccountsApisKeyspacesTables | DatabaseAccountsApisTables | DatabaseAccountsApisDatabasesCollectionsSettings | DatabaseAccountsApisDatabasesContainersSettings | DatabaseAccountsApisDatabasesGraphsSettings | DatabaseAccountsApisKeyspacesSettings | DatabaseAccountsApisKeyspacesTablesSettings | DatabaseAccountsApisTablesSettings | VaultsSecrets | Vaults2 | Vaults3 | VaultsAccessPolicies | VaultsSecrets1 | Vaults4 | VaultsAccessPolicies1 | VaultsPrivateEndpointConnections | VaultsSecrets2 | Vaults5 | VaultsAccessPolicies2 | VaultsSecrets3 | Vaults6 | VaultsAccessPolicies3 | VaultsKeys | VaultsPrivateEndpointConnections1 | VaultsSecrets4 | ManagedHSMs | Vaults7 | VaultsAccessPolicies4 | VaultsPrivateEndpointConnections2 | VaultsSecrets5 | Labs | LabsArtifactsources | LabsCustomimages | LabsFormulas | LabsPolicysetsPolicies | LabsSchedules | LabsVirtualmachines | LabsVirtualnetworks | LabsCosts | LabsNotificationchannels | LabsServicerunners | LabsUsers | LabsVirtualmachinesSchedules | LabsUsersDisks | LabsUsersEnvironments | LabsUsersSecrets | VaultsReplicationAlertSettings | VaultsReplicationFabrics | VaultsReplicationFabricsReplicationNetworksReplicationNetworkMappings | VaultsReplicationFabricsReplicationProtectionContainers | VaultsReplicationFabricsReplicationProtectionContainersReplicationMigrationItems | VaultsReplicationFabricsReplicationProtectionContainersReplicationProtectedItems | VaultsReplicationFabricsReplicationProtectionContainersReplicationProtectionContainerMappings | VaultsReplicationFabricsReplicationRecoveryServicesProviders | VaultsReplicationFabricsReplicationStorageClassificationsReplicationStorageClassificationMappings | VaultsReplicationFabricsReplicationvCenters | VaultsReplicationPolicies | VaultsReplicationRecoveryPlans | DigitalTwinsInstances | DigitalTwinsInstancesEndpoints | Labs1 | LabsVirtualmachines1 | Clusters | ClustersDatabases | Clusters1 | ClustersDatabases1 | Clusters2 | ClustersDatabases2 | ClustersDatabasesDataConnections | Clusters3 | ClustersDatabases3 | ClustersDatabasesDataConnections1 | Clusters4 | ClustersDatabases4 | ClustersDatabasesDataConnections2 | ClustersAttachedDatabaseConfigurations | Clusters5 | ClustersDatabases5 | ClustersDatabasesDataConnections3 | ClustersAttachedDatabaseConfigurations1 | ClustersDataConnections | ClustersPrincipalAssignments | ClustersDatabasesPrincipalAssignments | Clusters6 | ClustersDatabases6 | ClustersDatabasesDataConnections4 | ClustersAttachedDatabaseConfigurations2 | ClustersDataConnections1 | ClustersPrincipalAssignments1 | ClustersDatabasesPrincipalAssignments1 | Clusters7 | ClustersDatabases7 | ClustersDatabasesDataConnections5 | ClustersAttachedDatabaseConfigurations3 | ClustersDataConnections2 | ClustersPrincipalAssignments2 | ClustersDatabasesPrincipalAssignments2 | Clusters8 | ClustersDatabases8 | ClustersDatabasesDataConnections6 | ClustersAttachedDatabaseConfigurations4 | ClustersDataConnections3 | ClustersPrincipalAssignments3 | ClustersDatabasesPrincipalAssignments3 | Redis1 | NamespacesNotificationHubs | NamespacesNotificationHubs_AuthorizationRules | Redis2 | TrafficManagerProfiles | TrafficManagerProfiles1 | TrafficManagerProfiles2 | TrafficManagerProfiles3 | StorageAccounts | StorageAccounts1 | StorageAccounts2 | StorageAccounts3 | StorageAccounts4 | StorageAccountsBlobServicesContainers | StorageAccountsBlobServicesContainersImmutabilityPolicies | StorageAccounts5 | StorageAccountsManagementPolicies | StorageAccountsBlobServicesContainers1 | StorageAccountsBlobServicesContainersImmutabilityPolicies1 | StorageAccounts6 | StorageAccountsBlobServices | StorageAccountsBlobServicesContainers2 | StorageAccountsBlobServicesContainersImmutabilityPolicies2 | StorageAccounts7 | StorageAccountsBlobServices1 | StorageAccountsBlobServicesContainers3 | StorageAccountsBlobServicesContainersImmutabilityPolicies3 | StorageAccountsManagementPolicies1 | StorageAccounts8 | StorageAccountsBlobServices2 | StorageAccountsBlobServicesContainers4 | StorageAccountsBlobServicesContainersImmutabilityPolicies4 | StorageAccountsManagementPolicies2 | StorageAccountsFileServices | StorageAccountsFileServicesShares | StorageAccounts9 | StorageAccountsBlobServices3 | StorageAccountsBlobServicesContainers5 | StorageAccountsBlobServicesContainersImmutabilityPolicies5 | StorageAccountsFileServices1 | StorageAccountsFileServicesShares1 | StorageAccountsManagementPolicies3 | StorageAccountsPrivateEndpointConnections | StorageAccountsEncryptionScopes | StorageAccountsObjectReplicationPolicies | StorageAccountsQueueServices | StorageAccountsQueueServicesQueues | StorageAccountsTableServices | StorageAccountsTableServicesTables | StorageAccountsInventoryPolicies | DedicatedCloudNodes | DedicatedCloudServices | VirtualMachines | AvailabilitySets | Extensions | VirtualMachineScaleSets | JobCollections | VirtualMachines1 | Accounts1 | Accounts2 | AccountsFirewallRules | AccountsTrustedIdProviders | AccountsVirtualNetworkRules | Accounts3 | Accounts4 | AccountsDataLakeStoreAccounts | AccountsStorageAccounts | AccountsFirewallRules1 | AccountsComputePolicies | Accounts5 | Accounts6 | AccountsPrivateEndpointConnections | WorkspaceCollections | Capacities | Catalogs | ContainerServices | Dnszones | Dnszones_A | Dnszones_AAAA | Dnszones_CNAME | Dnszones_MX | Dnszones_NS | Dnszones_PTR | Dnszones_SOA | Dnszones_SRV | Dnszones_TXT | Dnszones1 | Dnszones_A1 | Dnszones_AAAA1 | Dnszones_CNAME1 | Dnszones_MX1 | Dnszones_NS1 | Dnszones_PTR1 | Dnszones_SOA1 | Dnszones_SRV1 | Dnszones_TXT1 | Profiles | ProfilesEndpoints | ProfilesEndpointsCustomDomains | ProfilesEndpointsOrigins | Profiles1 | ProfilesEndpoints1 | ProfilesEndpointsCustomDomains1 | ProfilesEndpointsOrigins1 | BatchAccounts | BatchAccountsApplications | BatchAccountsApplicationsVersions | BatchAccounts1 | BatchAccountsApplications1 | BatchAccountsApplicationsVersions1 | BatchAccountsCertificates | BatchAccountsPools | Redis3 | RedisFirewallRules1 | RedisPatchSchedules1 | Workflows | Workflows1 | IntegrationAccounts | IntegrationAccountsAgreements | IntegrationAccountsCertificates | IntegrationAccountsMaps | IntegrationAccountsPartners | IntegrationAccountsSchemas | IntegrationAccountsAssemblies | IntegrationAccountsBatchConfigurations | Workflows2 | Workflows3 | JobCollections1 | JobCollectionsJobs | WebServices | CommitmentPlans | Workspaces | Workspaces1 | WorkspacesComputes | Accounts7 | AccountsWorkspaces | AccountsWorkspacesProjects | Workspaces2 | AutomationAccounts | AutomationAccountsRunbooks | AutomationAccountsModules | AutomationAccountsCertificates | AutomationAccountsConnections | AutomationAccountsVariables | AutomationAccountsSchedules | AutomationAccountsJobs | AutomationAccountsConnectionTypes | AutomationAccountsCompilationjobs | AutomationAccountsConfigurations | AutomationAccountsJobSchedules | AutomationAccountsNodeConfigurations | AutomationAccountsWebhooks | AutomationAccountsCredentials | AutomationAccountsWatchers | AutomationAccountsSoftwareUpdateConfigurations | AutomationAccountsJobs1 | AutomationAccountsSourceControls | AutomationAccountsSourceControlsSourceControlSyncJobs | AutomationAccountsCompilationjobs1 | AutomationAccountsNodeConfigurations1 | AutomationAccountsPython2Packages | AutomationAccountsRunbooks1 | Mediaservices | Mediaservices1 | MediaServicesAccountFilters | MediaServicesAssets | MediaServicesAssetsAssetFilters | MediaServicesContentKeyPolicies | MediaServicesStreamingLocators | MediaServicesStreamingPolicies | MediaServicesTransforms | MediaServicesTransformsJobs | IotHubs | IotHubs1 | IotHubsCertificates | IotHubs2 | IotHubsCertificates1 | IotHubs3 | IotHubsCertificates2 | IotHubsEventHubEndpoints_ConsumerGroups | IotHubsEventHubEndpoints_ConsumerGroups1 | ProvisioningServices | ProvisioningServices1 | ProvisioningServicesCertificates | Clusters9 | Clusters10 | Clusters11 | ClustersApplications | ClustersApplicationsServices | ClustersApplicationTypes | ClustersApplicationTypesVersions | Clusters12 | Clusters13 | ClustersApplications1 | ClustersApplicationsServices1 | ClustersApplicationTypes1 | ClustersApplicationTypesVersions1 | Managers | ManagersAccessControlRecords | ManagersBandwidthSettings | ManagersDevicesAlertSettings | ManagersDevicesBackupPolicies | ManagersDevicesBackupPoliciesSchedules | ManagersDevicesTimeSettings | ManagersDevicesVolumeContainers | ManagersDevicesVolumeContainersVolumes | ManagersExtendedInformation | ManagersStorageAccountCredentials | Deployments | Deployments1 | ApplianceDefinitions | Appliances | Service | ServiceApis | ServiceSubscriptions | ServiceProducts | ServiceGroups | ServiceCertificates | ServiceUsers | ServiceAuthorizationServers | ServiceLoggers | ServiceProperties | ServiceOpenidConnectProviders | ServiceBackends | ServiceIdentityProviders | ServiceApisOperations | ServiceGroupsUsers | ServiceProductsApis | ServiceProductsGroups | Service1 | ServiceApis1 | ServiceApisOperations1 | ServiceApisOperationsPolicies | ServiceApisOperationsTags | ServiceApisPolicies | ServiceApisReleases | ServiceApisSchemas | ServiceApisTagDescriptions | ServiceApisTags | ServiceAuthorizationServers1 | ServiceBackends1 | ServiceCertificates1 | ServiceDiagnostics | ServiceDiagnosticsLoggers | ServiceGroups1 | ServiceGroupsUsers1 | ServiceIdentityProviders1 | ServiceLoggers1 | ServiceNotifications | ServiceNotificationsRecipientEmails | ServiceNotificationsRecipientUsers | ServiceOpenidConnectProviders1 | ServicePolicies | ServiceProducts1 | ServiceProductsApis1 | ServiceProductsGroups1 | ServiceProductsPolicies | ServiceProductsTags | ServiceProperties1 | ServiceSubscriptions1 | ServiceTags | ServiceTemplates | ServiceUsers1 | ServiceApisDiagnostics | ServiceApisIssues | ServiceApiVersionSets | ServiceApisDiagnosticsLoggers | ServiceApisIssuesAttachments | ServiceApisIssuesComments | Service2 | ServiceApis2 | ServiceApisOperations2 | ServiceApisOperationsPolicies1 | ServiceApisOperationsTags1 | ServiceApisPolicies1 | ServiceApisReleases1 | ServiceApisSchemas1 | ServiceApisTagDescriptions1 | ServiceApisTags1 | ServiceAuthorizationServers2 | ServiceBackends2 | ServiceCertificates2 | ServiceDiagnostics1 | ServiceDiagnosticsLoggers1 | ServiceGroups2 | ServiceGroupsUsers2 | ServiceIdentityProviders2 | ServiceLoggers2 | ServiceNotifications1 | ServiceNotificationsRecipientEmails1 | ServiceNotificationsRecipientUsers1 | ServiceOpenidConnectProviders2 | ServicePolicies1 | ServiceProducts2 | ServiceProductsApis2 | ServiceProductsGroups2 | ServiceProductsPolicies1 | ServiceProductsTags1 | ServiceProperties2 | ServiceSubscriptions2 | ServiceTags1 | ServiceTemplates1 | ServiceUsers2 | ServiceApisDiagnostics1 | ServiceApisIssues1 | ServiceApiVersionSets1 | ServiceApisDiagnosticsLoggers1 | ServiceApisIssuesAttachments1 | ServiceApisIssuesComments1 | Service3 | ServiceApis3 | ServiceApisDiagnostics2 | ServiceApisOperations3 | ServiceApisOperationsPolicies2 | ServiceApisOperationsTags2 | ServiceApisPolicies2 | ServiceApisReleases2 | ServiceApisSchemas2 | ServiceApisTagDescriptions2 | ServiceApisTags2 | ServiceApiVersionSets2 | ServiceAuthorizationServers3 | ServiceBackends3 | ServiceCertificates3 | ServiceDiagnostics2 | ServiceGroups3 | ServiceGroupsUsers3 | ServiceIdentityProviders3 | ServiceLoggers3 | ServiceNotifications2 | ServiceNotificationsRecipientEmails2 | ServiceNotificationsRecipientUsers2 | ServiceOpenidConnectProviders3 | ServicePolicies2 | ServiceProducts3 | ServiceProductsApis3 | ServiceProductsGroups3 | ServiceProductsPolicies2 | ServiceProductsTags2 | ServiceProperties3 | ServiceSubscriptions3 | ServiceTags2 | ServiceTemplates2 | ServiceUsers3 | Service4 | ServiceApis4 | ServiceApisDiagnostics3 | ServiceApisOperations4 | ServiceApisOperationsPolicies3 | ServiceApisOperationsTags3 | ServiceApisPolicies3 | ServiceApisReleases3 | ServiceApisSchemas3 | ServiceApisTagDescriptions3 | ServiceApisTags3 | ServiceApisIssues2 | ServiceApiVersionSets3 | ServiceAuthorizationServers4 | ServiceBackends4 | ServiceCaches | ServiceCertificates4 | ServiceDiagnostics3 | ServiceGroups4 | ServiceGroupsUsers4 | ServiceIdentityProviders4 | ServiceLoggers4 | ServiceNotifications3 | ServiceNotificationsRecipientEmails3 | ServiceNotificationsRecipientUsers3 | ServiceOpenidConnectProviders4 | ServicePolicies3 | ServiceProducts4 | ServiceProductsApis4 | ServiceProductsGroups4 | ServiceProductsPolicies3 | ServiceProductsTags3 | ServiceProperties4 | ServiceSubscriptions4 | ServiceTags3 | ServiceTemplates3 | ServiceUsers4 | ServiceApisIssuesAttachments2 | ServiceApisIssuesComments2 | Namespaces | Namespaces_AuthorizationRules | NamespacesNotificationHubs1 | NamespacesNotificationHubs_AuthorizationRules1 | Namespaces1 | Namespaces_AuthorizationRules1 | NamespacesNotificationHubs2 | NamespacesNotificationHubs_AuthorizationRules2 | Namespaces2 | Namespaces_AuthorizationRules2 | Disks | Snapshots | Images | AvailabilitySets1 | VirtualMachines2 | VirtualMachineScaleSets1 | VirtualMachinesExtensions | Registries | Registries1 | Registries2 | RegistriesReplications | RegistriesWebhooks | Registries3 | RegistriesReplications1 | RegistriesWebhooks1 | RegistriesBuildTasks | RegistriesBuildTasksSteps | RegistriesTasks | PublicIPAddresses | VirtualNetworks | LoadBalancers | NetworkSecurityGroups | NetworkInterfaces1 | RouteTables | PublicIPAddresses1 | VirtualNetworks1 | LoadBalancers1 | NetworkSecurityGroups1 | NetworkInterfaces2 | RouteTables1 | PublicIPAddresses2 | VirtualNetworks2 | LoadBalancers2 | NetworkSecurityGroups2 | NetworkInterfaces3 | RouteTables2 | PublicIPAddresses3 | VirtualNetworks3 | LoadBalancers3 | NetworkSecurityGroups3 | NetworkInterfaces4 | RouteTables3 | PublicIPAddresses4 | VirtualNetworks4 | LoadBalancers4 | NetworkSecurityGroups4 | NetworkInterfaces5 | RouteTables4 | PublicIPAddresses5 | VirtualNetworks5 | LoadBalancers5 | NetworkSecurityGroups5 | NetworkInterfaces6 | RouteTables5 | PublicIPAddresses6 | VirtualNetworks6 | LoadBalancers6 | NetworkSecurityGroups6 | NetworkInterfaces7 | RouteTables6 | PublicIPAddresses7 | VirtualNetworks7 | LoadBalancers7 | NetworkSecurityGroups7 | NetworkInterfaces8 | RouteTables7 | PublicIPAddresses8 | VirtualNetworks8 | LoadBalancers8 | NetworkSecurityGroups8 | NetworkInterfaces9 | RouteTables8 | ApplicationGateways | Connections | LocalNetworkGateways | VirtualNetworkGateways | VirtualNetworksSubnets | VirtualNetworksVirtualNetworkPeerings | NetworkSecurityGroupsSecurityRules | RouteTablesRoutes | Disks1 | Snapshots1 | Images1 | AvailabilitySets2 | VirtualMachines3 | VirtualMachineScaleSets2 | VirtualMachinesExtensions1 | Servers2 | ServersAdvisors | ServersAdministrators | ServersAuditingPolicies | ServersCommunicationLinks | ServersConnectionPolicies | ServersDatabases | ServersDatabasesAdvisors | ServersDatabasesAuditingPolicies | ServersDatabasesConnectionPolicies | ServersDatabasesDataMaskingPolicies | ServersDatabasesDataMaskingPoliciesRules | ServersDatabasesExtensions | ServersDatabasesGeoBackupPolicies | ServersDatabasesSecurityAlertPolicies | ServersDatabasesTransparentDataEncryption | ServersDisasterRecoveryConfiguration | ServersElasticPools | ServersFirewallRules | ManagedInstances | Servers3 | ServersDatabasesAuditingSettings | ServersDatabasesSyncGroups | ServersDatabasesSyncGroupsSyncMembers | ServersEncryptionProtector | ServersFailoverGroups | ServersFirewallRules1 | ServersKeys | ServersSyncAgents | ServersVirtualNetworkRules | ManagedInstancesDatabases | ServersAuditingSettings | ServersDatabases1 | ServersDatabasesAuditingSettings1 | ServersDatabasesBackupLongTermRetentionPolicies | ServersDatabasesExtendedAuditingSettings | ServersDatabasesSecurityAlertPolicies1 | ServersSecurityAlertPolicies | ManagedInstancesDatabasesSecurityAlertPolicies | ManagedInstancesSecurityAlertPolicies | ServersDatabasesVulnerabilityAssessmentsRulesBaselines | ServersDatabasesVulnerabilityAssessments | ManagedInstancesDatabasesVulnerabilityAssessmentsRulesBaselines | ManagedInstancesDatabasesVulnerabilityAssessments | ServersVulnerabilityAssessments | ManagedInstancesVulnerabilityAssessments | ServersDnsAliases | ServersExtendedAuditingSettings | ServersJobAgents | ServersJobAgentsCredentials | ServersJobAgentsJobs | ServersJobAgentsJobsExecutions | ServersJobAgentsJobsSteps | ServersJobAgentsTargetGroups | WebServices1 | Workspaces3 | Streamingjobs | StreamingjobsFunctions | StreamingjobsInputs | StreamingjobsOutputs | StreamingjobsTransformations | Environments | EnvironmentsEventSources | EnvironmentsReferenceDataSets | EnvironmentsAccessPolicies | Environments1 | EnvironmentsEventSources1 | EnvironmentsReferenceDataSets1 | EnvironmentsAccessPolicies1 | WorkspacesComputes1 | Workspaces4 | WorkspacesComputes2 | Workspaces5 | WorkspacesComputes3 | Workspaces6 | WorkspacesComputes4 | Workspaces7 | WorkspacesComputes5 | WorkspacesPrivateEndpointConnections | PublicIPAddresses9 | VirtualNetworks9 | LoadBalancers9 | NetworkSecurityGroups9 | NetworkInterfaces10 | RouteTables9 | ApplicationGateways1 | Connections1 | LocalNetworkGateways1 | VirtualNetworkGateways1 | VirtualNetworksSubnets1 | VirtualNetworksVirtualNetworkPeerings1 | LoadBalancersInboundNatRules | NetworkSecurityGroupsSecurityRules1 | RouteTablesRoutes1 | PublicIPAddresses10 | VirtualNetworks10 | LoadBalancers10 | NetworkSecurityGroups10 | NetworkInterfaces11 | RouteTables10 | ApplicationGateways2 | LoadBalancersInboundNatRules1 | NetworkSecurityGroupsSecurityRules2 | RouteTablesRoutes2 | PublicIPAddresses11 | VirtualNetworks11 | LoadBalancers11 | NetworkSecurityGroups11 | NetworkInterfaces12 | RouteTables11 | ApplicationGateways3 | LoadBalancersInboundNatRules2 | NetworkSecurityGroupsSecurityRules3 | RouteTablesRoutes3 | Jobs | DnsZones | DnsZones_A | DnsZones_AAAA | DnsZones_CAA | DnsZones_CNAME | DnsZones_MX | DnsZones_NS | DnsZones_PTR | DnsZones_SOA | DnsZones_SRV | DnsZones_TXT | Connections2 | LocalNetworkGateways2 | VirtualNetworkGateways2 | VirtualNetworksSubnets2 | VirtualNetworksVirtualNetworkPeerings2 | DnsZones1 | DnsZones_A1 | DnsZones_AAAA1 | DnsZones_CAA1 | DnsZones_CNAME1 | DnsZones_MX1 | DnsZones_NS1 | DnsZones_PTR1 | DnsZones_SOA1 | DnsZones_SRV1 | DnsZones_TXT1 | Connections3 | LocalNetworkGateways3 | VirtualNetworkGateways3 | VirtualNetworksSubnets3 | VirtualNetworksVirtualNetworkPeerings3 | Registrations | RegistrationsCustomerSubscriptions | PublicIPAddresses12 | VirtualNetworks12 | LoadBalancers12 | NetworkSecurityGroups12 | NetworkInterfaces13 | RouteTables12 | ApplicationGateways4 | Connections4 | LocalNetworkGateways4 | VirtualNetworkGateways4 | VirtualNetworksSubnets4 | VirtualNetworksVirtualNetworkPeerings4 | LoadBalancersInboundNatRules3 | NetworkSecurityGroupsSecurityRules4 | RouteTablesRoutes4 | Images2 | AvailabilitySets3 | VirtualMachines4 | VirtualMachineScaleSets3 | VirtualMachinesExtensions2 | VirtualMachineScaleSetsExtensions | Servers4 | ServersConfigurations | ServersDatabases2 | ServersFirewallRules2 | ServersVirtualNetworkRules1 | ServersSecurityAlertPolicies1 | ServersPrivateEndpointConnections | Servers5 | ServersConfigurations1 | ServersDatabases3 | ServersFirewallRules3 | ServersVirtualNetworkRules2 | ServersSecurityAlertPolicies2 | ServersAdministrators1 | Servers6 | ServersConfigurations2 | ServersDatabases4 | ServersFirewallRules4 | ServersVirtualNetworkRules3 | ServersSecurityAlertPolicies3 | ServersAdministrators2 | Servers7 | ServersConfigurations3 | ServersDatabases5 | ServersFirewallRules5 | Servers8 | ServersConfigurations4 | ServersDatabases6 | ServersFirewallRules6 | ApplicationGateways5 | Connections5 | ExpressRouteCircuitsAuthorizations | ExpressRouteCircuitsPeerings | LoadBalancers13 | LocalNetworkGateways5 | NetworkInterfaces14 | NetworkSecurityGroups13 | NetworkSecurityGroupsSecurityRules5 | PublicIPAddresses13 | RouteTables13 | RouteTablesRoutes5 | VirtualNetworkGateways5 | VirtualNetworks13 | VirtualNetworksSubnets5 | ApplicationGateways6 | Connections6 | ExpressRouteCircuits | ExpressRouteCircuitsAuthorizations1 | ExpressRouteCircuitsPeerings1 | LoadBalancers14 | LocalNetworkGateways6 | NetworkInterfaces15 | NetworkSecurityGroups14 | NetworkSecurityGroupsSecurityRules6 | PublicIPAddresses14 | RouteTables14 | RouteTablesRoutes6 | VirtualNetworkGateways6 | VirtualNetworks14 | VirtualNetworksSubnets6 | ApplicationGateways7 | Connections7 | ExpressRouteCircuits1 | ExpressRouteCircuitsAuthorizations2 | ExpressRouteCircuitsPeerings2 | LoadBalancers15 | LocalNetworkGateways7 | NetworkInterfaces16 | NetworkSecurityGroups15 | NetworkSecurityGroupsSecurityRules7 | PublicIPAddresses15 | RouteTables15 | RouteTablesRoutes7 | VirtualNetworkGateways7 | VirtualNetworks15 | VirtualNetworksSubnets7 | ApplicationSecurityGroups | ApplicationSecurityGroups1 | ApplicationSecurityGroups2 | ApplicationSecurityGroups3 | PublicIPAddresses16 | VirtualNetworks16 | LoadBalancers16 | NetworkSecurityGroups16 | NetworkInterfaces17 | RouteTables16 | ApplicationGateways8 | Connections8 | LocalNetworkGateways8 | VirtualNetworkGateways8 | VirtualNetworksSubnets8 | VirtualNetworksVirtualNetworkPeerings5 | LoadBalancersInboundNatRules4 | NetworkSecurityGroupsSecurityRules8 | RouteTablesRoutes8 | ApplicationSecurityGroups4 | DdosProtectionPlans | ExpressRouteCircuits2 | ExpressRouteCrossConnections | PublicIPAddresses17 | VirtualNetworks17 | LoadBalancers17 | NetworkSecurityGroups17 | NetworkInterfaces18 | RouteTables17 | LoadBalancersInboundNatRules5 | NetworkSecurityGroupsSecurityRules9 | RouteTablesRoutes9 | ExpressRouteCircuitsAuthorizations3 | ExpressRouteCircuitsPeerings3 | ExpressRouteCrossConnectionsPeerings | ExpressRouteCircuitsPeeringsConnections | ApplicationGateways9 | ApplicationSecurityGroups5 | AzureFirewalls | Connections9 | DdosProtectionPlans1 | ExpressRouteCircuits3 | ExpressRouteCircuitsAuthorizations4 | ExpressRouteCircuitsPeerings4 | ExpressRouteCircuitsPeeringsConnections1 | ExpressRouteCrossConnections1 | ExpressRouteCrossConnectionsPeerings1 | LoadBalancers18 | LoadBalancersInboundNatRules6 | LocalNetworkGateways9 | NetworkInterfaces19 | NetworkSecurityGroups18 | NetworkSecurityGroupsSecurityRules10 | NetworkWatchers | NetworkWatchersConnectionMonitors | NetworkWatchersPacketCaptures | PublicIPAddresses18 | RouteFilters | RouteFiltersRouteFilterRules | RouteTables18 | RouteTablesRoutes10 | VirtualHubs | VirtualNetworkGateways9 | VirtualNetworks18 | VirtualNetworksSubnets9 | VirtualNetworksVirtualNetworkPeerings6 | VirtualWans | VpnGateways | VpnGatewaysVpnConnections | VpnSites | ApplicationGateways10 | ApplicationSecurityGroups6 | AzureFirewalls1 | Connections10 | DdosProtectionPlans2 | ExpressRouteCircuits4 | ExpressRouteCircuitsAuthorizations5 | ExpressRouteCircuitsPeerings5 | ExpressRouteCircuitsPeeringsConnections2 | ExpressRouteCrossConnections2 | ExpressRouteCrossConnectionsPeerings2 | LoadBalancers19 | LoadBalancersInboundNatRules7 | LocalNetworkGateways10 | NetworkInterfaces20 | NetworkSecurityGroups19 | NetworkSecurityGroupsSecurityRules11 | NetworkWatchers1 | NetworkWatchersConnectionMonitors1 | NetworkWatchersPacketCaptures1 | PublicIPAddresses19 | RouteFilters1 | RouteFiltersRouteFilterRules1 | RouteTables19 | RouteTablesRoutes11 | VirtualHubs1 | VirtualNetworkGateways10 | VirtualNetworks19 | VirtualNetworksSubnets10 | VirtualNetworksVirtualNetworkPeerings7 | VirtualWans1 | VpnGateways1 | VpnGatewaysVpnConnections1 | VpnSites1 | ApplicationGateways11 | ApplicationSecurityGroups7 | AzureFirewalls2 | Connections11 | DdosProtectionPlans3 | ExpressRouteCircuits5 | ExpressRouteCircuitsAuthorizations6 | ExpressRouteCircuitsPeerings6 | ExpressRouteCircuitsPeeringsConnections3 | ExpressRouteCrossConnections3 | ExpressRouteCrossConnectionsPeerings3 | LoadBalancers20 | LoadBalancersInboundNatRules8 | LocalNetworkGateways11 | NetworkInterfaces21 | NetworkSecurityGroups20 | NetworkSecurityGroupsSecurityRules12 | NetworkWatchers2 | NetworkWatchersConnectionMonitors2 | NetworkWatchersPacketCaptures2 | PublicIPAddresses20 | PublicIPPrefixes | RouteFilters2 | RouteFiltersRouteFilterRules2 | RouteTables20 | RouteTablesRoutes12 | ServiceEndpointPolicies | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions | VirtualHubs2 | VirtualNetworkGateways11 | VirtualNetworks20 | VirtualNetworksSubnets11 | VirtualNetworksVirtualNetworkPeerings8 | VirtualWans2 | VpnGateways2 | VpnGatewaysVpnConnections2 | VpnSites2 | ApplicationSecurityGroups8 | DdosProtectionPlans4 | ExpressRouteCircuits6 | ExpressRouteCrossConnections4 | PublicIPAddresses21 | VirtualNetworks21 | LoadBalancers21 | NetworkSecurityGroups21 | NetworkInterfaces22 | RouteTables21 | ApplicationGateways12 | ExpressRouteCircuitsAuthorizations7 | ExpressRoutePorts | Connections12 | LocalNetworkGateways12 | VirtualNetworkGateways12 | VirtualNetworksSubnets12 | VirtualNetworksVirtualNetworkPeerings9 | ExpressRouteCircuitsPeerings7 | ExpressRouteCrossConnectionsPeerings4 | LoadBalancersInboundNatRules9 | NetworkInterfacesTapConfigurations | NetworkSecurityGroupsSecurityRules13 | RouteTablesRoutes13 | ExpressRouteCircuitsPeeringsConnections4 | ApplicationSecurityGroups9 | DdosProtectionPlans5 | ExpressRouteCircuits7 | ExpressRouteCrossConnections5 | PublicIPAddresses22 | VirtualNetworks22 | LoadBalancers22 | NetworkSecurityGroups22 | NetworkInterfaces23 | RouteTables22 | ApplicationGateways13 | ExpressRouteCircuitsAuthorizations8 | ExpressRouteCircuitsPeeringsConnections5 | ApplicationSecurityGroups10 | ApplicationSecurityGroups11 | DdosProtectionPlans6 | ExpressRouteCircuits8 | ExpressRouteCrossConnections6 | PublicIPAddresses23 | VirtualNetworks23 | LoadBalancers23 | NetworkSecurityGroups23 | NetworkInterfaces24 | RouteTables23 | ApplicationGateways14 | ExpressRouteCircuitsAuthorizations9 | ExpressRouteCircuitsPeerings8 | ExpressRouteCrossConnectionsPeerings5 | LoadBalancersInboundNatRules10 | NetworkInterfacesTapConfigurations1 | NetworkSecurityGroupsSecurityRules14 | RouteTablesRoutes14 | ExpressRoutePorts1 | ExpressRouteCircuitsPeeringsConnections6 | ApplicationSecurityGroups12 | DdosProtectionPlans7 | ExpressRouteCircuits9 | ExpressRouteCrossConnections7 | PublicIPAddresses24 | VirtualNetworks24 | LoadBalancers24 | NetworkSecurityGroups24 | NetworkInterfaces25 | RouteTables24 | ApplicationGateways15 | ExpressRouteCircuitsAuthorizations10 | ExpressRoutePorts2 | ApplicationGatewayWebApplicationFirewallPolicies | ExpressRouteCircuitsPeerings9 | ExpressRouteCrossConnectionsPeerings6 | LoadBalancersInboundNatRules11 | NetworkInterfacesTapConfigurations2 | NetworkSecurityGroupsSecurityRules15 | RouteTablesRoutes15 | ExpressRouteCircuitsPeeringsConnections7 | ApplicationGateways16 | ApplicationGatewayWebApplicationFirewallPolicies1 | ApplicationSecurityGroups13 | AzureFirewalls3 | BastionHosts | Connections13 | DdosCustomPolicies | DdosProtectionPlans8 | ExpressRouteCircuits10 | ExpressRouteCircuitsAuthorizations11 | ExpressRouteCircuitsPeerings10 | ExpressRouteCircuitsPeeringsConnections8 | ExpressRouteCrossConnections8 | ExpressRouteCrossConnectionsPeerings7 | ExpressRouteGateways | ExpressRouteGatewaysExpressRouteConnections | ExpressRoutePorts3 | LoadBalancers25 | LoadBalancersInboundNatRules12 | LocalNetworkGateways13 | NatGateways | NetworkInterfaces26 | NetworkInterfacesTapConfigurations3 | NetworkProfiles | NetworkSecurityGroups25 | NetworkSecurityGroupsSecurityRules16 | NetworkWatchers3 | NetworkWatchersConnectionMonitors3 | NetworkWatchersPacketCaptures3 | P2SvpnGateways | PrivateEndpoints | PrivateLinkServices | PrivateLinkServicesPrivateEndpointConnections | PublicIPAddresses25 | PublicIPPrefixes1 | RouteFilters3 | RouteFiltersRouteFilterRules3 | RouteTables25 | RouteTablesRoutes16 | ServiceEndpointPolicies1 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions1 | VirtualHubs3 | VirtualNetworkGateways13 | VirtualNetworks25 | VirtualNetworksSubnets13 | VirtualNetworksVirtualNetworkPeerings10 | VirtualNetworkTaps | VirtualWans3 | VirtualWansP2SVpnServerConfigurations | VpnGateways3 | VpnGatewaysVpnConnections3 | VpnSites3 | ApplicationGateways17 | ApplicationGatewayWebApplicationFirewallPolicies2 | ApplicationSecurityGroups14 | AzureFirewalls4 | BastionHosts1 | Connections14 | DdosCustomPolicies1 | DdosProtectionPlans9 | ExpressRouteCircuits11 | ExpressRouteCircuitsAuthorizations12 | ExpressRouteCircuitsPeerings11 | ExpressRouteCircuitsPeeringsConnections9 | ExpressRouteCrossConnections9 | ExpressRouteCrossConnectionsPeerings8 | ExpressRouteGateways1 | ExpressRouteGatewaysExpressRouteConnections1 | ExpressRoutePorts4 | FirewallPolicies | FirewallPoliciesRuleGroups | LoadBalancers26 | LoadBalancersInboundNatRules13 | LocalNetworkGateways14 | NatGateways1 | NetworkInterfaces27 | NetworkInterfacesTapConfigurations4 | NetworkProfiles1 | NetworkSecurityGroups26 | NetworkSecurityGroupsSecurityRules17 | NetworkWatchers4 | NetworkWatchersConnectionMonitors4 | NetworkWatchersPacketCaptures4 | P2SvpnGateways1 | PrivateEndpoints1 | PrivateLinkServices1 | PrivateLinkServicesPrivateEndpointConnections1 | PublicIPAddresses26 | PublicIPPrefixes2 | RouteFilters4 | RouteFiltersRouteFilterRules4 | RouteTables26 | RouteTablesRoutes17 | ServiceEndpointPolicies2 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions2 | VirtualHubs4 | VirtualNetworkGateways14 | VirtualNetworks26 | VirtualNetworksSubnets14 | VirtualNetworksVirtualNetworkPeerings11 | VirtualNetworkTaps1 | VirtualWans4 | VirtualWansP2SVpnServerConfigurations1 | VpnGateways4 | VpnGatewaysVpnConnections4 | VpnSites4 | ApplicationGateways18 | ApplicationGatewayWebApplicationFirewallPolicies3 | ApplicationSecurityGroups15 | AzureFirewalls5 | BastionHosts2 | Connections15 | DdosCustomPolicies2 | DdosProtectionPlans10 | ExpressRouteCircuits12 | ExpressRouteCircuitsAuthorizations13 | ExpressRouteCircuitsPeerings12 | ExpressRouteCircuitsPeeringsConnections10 | ExpressRouteCrossConnections10 | ExpressRouteCrossConnectionsPeerings9 | ExpressRouteGateways2 | ExpressRouteGatewaysExpressRouteConnections2 | ExpressRoutePorts5 | FirewallPolicies1 | FirewallPoliciesRuleGroups1 | LoadBalancers27 | LoadBalancersInboundNatRules14 | LocalNetworkGateways15 | NatGateways2 | NetworkInterfaces28 | NetworkInterfacesTapConfigurations5 | NetworkProfiles2 | NetworkSecurityGroups27 | NetworkSecurityGroupsSecurityRules18 | NetworkWatchers5 | NetworkWatchersPacketCaptures5 | P2SvpnGateways2 | PrivateEndpoints2 | PrivateLinkServices2 | PrivateLinkServicesPrivateEndpointConnections2 | PublicIPAddresses27 | PublicIPPrefixes3 | RouteFilters5 | RouteFiltersRouteFilterRules5 | RouteTables27 | RouteTablesRoutes18 | ServiceEndpointPolicies3 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions3 | VirtualHubs5 | VirtualNetworkGateways15 | VirtualNetworks27 | VirtualNetworksSubnets15 | VirtualNetworksVirtualNetworkPeerings12 | VirtualNetworkTaps2 | VirtualRouters | VirtualRoutersPeerings | VirtualWans5 | VirtualWansP2SVpnServerConfigurations2 | VpnGateways5 | VpnGatewaysVpnConnections5 | VpnSites5 | ApplicationGateways19 | ApplicationGatewayWebApplicationFirewallPolicies4 | ApplicationSecurityGroups16 | AzureFirewalls6 | BastionHosts3 | Connections16 | DdosCustomPolicies3 | DdosProtectionPlans11 | ExpressRouteCircuits13 | ExpressRouteCircuitsAuthorizations14 | ExpressRouteCircuitsPeerings13 | ExpressRouteCircuitsPeeringsConnections11 | ExpressRouteCrossConnections11 | ExpressRouteCrossConnectionsPeerings10 | ExpressRouteGateways3 | ExpressRouteGatewaysExpressRouteConnections3 | ExpressRoutePorts6 | FirewallPolicies2 | FirewallPoliciesRuleGroups2 | LoadBalancers28 | LoadBalancersInboundNatRules15 | LocalNetworkGateways16 | NatGateways3 | NetworkInterfaces29 | NetworkInterfacesTapConfigurations6 | NetworkProfiles3 | NetworkSecurityGroups28 | NetworkSecurityGroupsSecurityRules19 | NetworkWatchers6 | NetworkWatchersPacketCaptures6 | P2SvpnGateways3 | PrivateEndpoints3 | PrivateLinkServices3 | PrivateLinkServicesPrivateEndpointConnections3 | PublicIPAddresses28 | PublicIPPrefixes4 | RouteFilters6 | RouteFiltersRouteFilterRules6 | RouteTables28 | RouteTablesRoutes19 | ServiceEndpointPolicies4 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions4 | VirtualHubs6 | VirtualNetworkGateways16 | VirtualNetworks28 | VirtualNetworksSubnets16 | VirtualNetworksVirtualNetworkPeerings13 | VirtualNetworkTaps3 | VirtualRouters1 | VirtualRoutersPeerings1 | VirtualWans6 | VpnGateways6 | VpnGatewaysVpnConnections6 | VpnServerConfigurations | VpnSites6 | ApplicationGateways20 | ApplicationGatewayWebApplicationFirewallPolicies5 | ApplicationSecurityGroups17 | AzureFirewalls7 | BastionHosts4 | Connections17 | DdosCustomPolicies4 | DdosProtectionPlans12 | ExpressRouteCircuits14 | ExpressRouteCircuitsAuthorizations15 | ExpressRouteCircuitsPeerings14 | ExpressRouteCircuitsPeeringsConnections12 | ExpressRouteCrossConnections12 | ExpressRouteCrossConnectionsPeerings11 | ExpressRouteGateways4 | ExpressRouteGatewaysExpressRouteConnections4 | ExpressRoutePorts7 | FirewallPolicies3 | FirewallPoliciesRuleGroups3 | IpGroups | LoadBalancers29 | LoadBalancersInboundNatRules16 | LocalNetworkGateways17 | NatGateways4 | NetworkInterfaces30 | NetworkInterfacesTapConfigurations7 | NetworkProfiles4 | NetworkSecurityGroups29 | NetworkSecurityGroupsSecurityRules20 | NetworkWatchers7 | NetworkWatchersPacketCaptures7 | P2SvpnGateways4 | PrivateEndpoints4 | PrivateLinkServices4 | PrivateLinkServicesPrivateEndpointConnections4 | PublicIPAddresses29 | PublicIPPrefixes5 | RouteFilters7 | RouteFiltersRouteFilterRules7 | RouteTables29 | RouteTablesRoutes20 | ServiceEndpointPolicies5 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions5 | VirtualHubs7 | VirtualHubsRouteTables | VirtualNetworkGateways17 | VirtualNetworks29 | VirtualNetworksSubnets17 | VirtualNetworksVirtualNetworkPeerings14 | VirtualNetworkTaps4 | VirtualRouters2 | VirtualRoutersPeerings2 | VirtualWans7 | VpnGateways7 | VpnGatewaysVpnConnections7 | VpnServerConfigurations1 | VpnSites7 | NatGateways5 | Connections18 | LocalNetworkGateways18 | VirtualNetworkGateways18 | VirtualNetworksSubnets18 | VirtualNetworksVirtualNetworkPeerings15 | ApplicationGatewayWebApplicationFirewallPolicies6 | Connections19 | LocalNetworkGateways19 | VirtualNetworkGateways19 | VirtualNetworksSubnets19 | VirtualNetworksVirtualNetworkPeerings16 | DdosProtectionPlans13 | ExpressRouteCircuits15 | ExpressRouteCrossConnections13 | PublicIPAddresses30 | VirtualNetworks30 | LoadBalancers30 | NetworkSecurityGroups30 | NetworkInterfaces31 | RouteTables30 | ApplicationGateways21 | ExpressRouteCircuitsAuthorizations16 | ExpressRoutePorts8 | Connections20 | LocalNetworkGateways20 | VirtualNetworkGateways20 | VirtualNetworksSubnets20 | VirtualNetworksVirtualNetworkPeerings17 | ExpressRouteCircuitsPeerings15 | ExpressRouteCrossConnectionsPeerings12 | LoadBalancersInboundNatRules17 | NetworkInterfacesTapConfigurations8 | NetworkSecurityGroupsSecurityRules21 | RouteTablesRoutes21 | ExpressRouteCircuitsPeeringsConnections13 | ExpressRoutePorts9 | Connections21 | LocalNetworkGateways21 | VirtualNetworkGateways21 | VirtualNetworksSubnets21 | VirtualNetworksVirtualNetworkPeerings18 | ExpressRouteCircuitsPeerings16 | ExpressRouteCrossConnectionsPeerings13 | LoadBalancersInboundNatRules18 | NetworkInterfacesTapConfigurations9 | NetworkSecurityGroupsSecurityRules22 | RouteTablesRoutes22 | ApplicationGateways22 | Connections22 | LocalNetworkGateways22 | VirtualNetworkGateways22 | VirtualNetworksSubnets22 | VirtualNetworksVirtualNetworkPeerings19 | DnsZones2 | DnsZones_A2 | DnsZones_AAAA2 | DnsZones_CAA2 | DnsZones_CNAME2 | DnsZones_MX2 | DnsZones_NS2 | DnsZones_PTR2 | DnsZones_SOA2 | DnsZones_SRV2 | DnsZones_TXT2 | PrivateDnsZones | PrivateDnsZonesVirtualNetworkLinks | PrivateDnsZones_A | PrivateDnsZones_AAAA | PrivateDnsZones_CNAME | PrivateDnsZones_MX | PrivateDnsZones_PTR | PrivateDnsZones_SOA | PrivateDnsZones_SRV | PrivateDnsZones_TXT | ApplicationGateways23 | ApplicationGatewayWebApplicationFirewallPolicies7 | ApplicationSecurityGroups18 | AzureFirewalls8 | BastionHosts5 | Connections23 | DdosCustomPolicies5 | DdosProtectionPlans14 | ExpressRouteCircuits16 | ExpressRouteCircuitsAuthorizations17 | ExpressRouteCircuitsPeerings17 | ExpressRouteCircuitsPeeringsConnections14 | ExpressRouteCrossConnections14 | ExpressRouteCrossConnectionsPeerings14 | ExpressRouteGateways5 | ExpressRouteGatewaysExpressRouteConnections5 | ExpressRoutePorts10 | FirewallPolicies4 | FirewallPoliciesRuleGroups4 | IpGroups1 | LoadBalancers31 | LoadBalancersInboundNatRules19 | LocalNetworkGateways23 | NatGateways6 | NetworkInterfaces32 | NetworkInterfacesTapConfigurations10 | NetworkProfiles5 | NetworkSecurityGroups31 | NetworkSecurityGroupsSecurityRules23 | NetworkWatchers8 | NetworkWatchersPacketCaptures8 | P2SvpnGateways5 | PrivateEndpoints5 | PrivateLinkServices5 | PrivateLinkServicesPrivateEndpointConnections5 | PublicIPAddresses31 | PublicIPPrefixes6 | RouteFilters8 | RouteFiltersRouteFilterRules8 | RouteTables31 | RouteTablesRoutes23 | ServiceEndpointPolicies6 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions6 | VirtualHubs8 | VirtualHubsRouteTables1 | VirtualNetworkGateways23 | VirtualNetworks31 | VirtualNetworksSubnets23 | VirtualNetworksVirtualNetworkPeerings20 | VirtualNetworkTaps5 | VirtualRouters3 | VirtualRoutersPeerings3 | VirtualWans8 | VpnGateways8 | VpnGatewaysVpnConnections8 | VpnServerConfigurations2 | VpnSites8 | NetworkWatchersConnectionMonitors5 | NetworkWatchersFlowLogs | ApplicationGateways24 | ApplicationGatewayWebApplicationFirewallPolicies8 | ApplicationSecurityGroups19 | AzureFirewalls9 | BastionHosts6 | Connections24 | ConnectionsSharedkey | DdosCustomPolicies6 | DdosProtectionPlans15 | ExpressRouteCircuits17 | ExpressRouteCircuitsAuthorizations18 | ExpressRouteCircuitsPeerings18 | ExpressRouteCircuitsPeeringsConnections15 | ExpressRouteCrossConnections15 | ExpressRouteCrossConnectionsPeerings15 | ExpressRouteGateways6 | ExpressRouteGatewaysExpressRouteConnections6 | ExpressRoutePorts11 | FirewallPolicies5 | FirewallPoliciesRuleGroups5 | IpGroups2 | LoadBalancers32 | LoadBalancersInboundNatRules20 | LocalNetworkGateways24 | NatGateways7 | NetworkInterfaces33 | NetworkInterfacesTapConfigurations11 | NetworkProfiles6 | NetworkSecurityGroups32 | NetworkSecurityGroupsSecurityRules24 | NetworkVirtualAppliances | NetworkWatchers9 | NetworkWatchersConnectionMonitors6 | NetworkWatchersFlowLogs1 | NetworkWatchersPacketCaptures9 | P2SvpnGateways6 | PrivateEndpoints6 | PrivateLinkServices6 | PrivateLinkServicesPrivateEndpointConnections6 | PublicIPAddresses32 | PublicIPPrefixes7 | RouteFilters9 | RouteFiltersRouteFilterRules9 | RouteTables32 | RouteTablesRoutes24 | ServiceEndpointPolicies7 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions7 | VirtualHubs9 | VirtualHubsRouteTables2 | VirtualNetworkGateways24 | VirtualNetworks32 | VirtualNetworksSubnets24 | VirtualNetworksVirtualNetworkPeerings21 | VirtualNetworkTaps6 | VirtualRouters4 | VirtualRoutersPeerings4 | VirtualWans9 | VpnGateways9 | VpnGatewaysVpnConnections9 | VpnServerConfigurations3 | VpnSites9 | ApplicationGateways25 | ApplicationGatewayWebApplicationFirewallPolicies9 | ApplicationSecurityGroups20 | AzureFirewalls10 | BastionHosts7 | Connections25 | DdosCustomPolicies7 | DdosProtectionPlans16 | ExpressRouteCircuits18 | ExpressRouteCircuitsAuthorizations19 | ExpressRouteCircuitsPeerings19 | ExpressRouteCircuitsPeeringsConnections16 | ExpressRouteCrossConnections16 | ExpressRouteCrossConnectionsPeerings16 | ExpressRouteGateways7 | ExpressRouteGatewaysExpressRouteConnections7 | ExpressRoutePorts12 | FirewallPolicies6 | FirewallPoliciesRuleGroups6 | IpAllocations | IpGroups3 | LoadBalancers33 | LoadBalancersInboundNatRules21 | LocalNetworkGateways25 | NatGateways8 | NetworkInterfaces34 | NetworkInterfacesTapConfigurations12 | NetworkProfiles7 | NetworkSecurityGroups33 | NetworkSecurityGroupsSecurityRules25 | NetworkVirtualAppliances1 | NetworkWatchers10 | NetworkWatchersConnectionMonitors7 | NetworkWatchersFlowLogs2 | NetworkWatchersPacketCaptures10 | P2SvpnGateways7 | PrivateEndpoints7 | PrivateEndpointsPrivateDnsZoneGroups | PrivateLinkServices7 | PrivateLinkServicesPrivateEndpointConnections7 | PublicIPAddresses33 | PublicIPPrefixes8 | RouteFilters10 | RouteFiltersRouteFilterRules10 | RouteTables33 | RouteTablesRoutes25 | SecurityPartnerProviders | ServiceEndpointPolicies8 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions8 | VirtualHubs10 | VirtualHubsRouteTables3 | VirtualNetworkGateways25 | VirtualNetworks33 | VirtualNetworksSubnets25 | VirtualNetworksVirtualNetworkPeerings22 | VirtualNetworkTaps7 | VirtualRouters5 | VirtualRoutersPeerings5 | VirtualWans10 | VpnGateways10 | VpnGatewaysVpnConnections10 | VpnServerConfigurations4 | VpnSites10 | ApplicationGateways26 | ApplicationGatewayWebApplicationFirewallPolicies10 | ApplicationSecurityGroups21 | AzureFirewalls11 | BastionHosts8 | Connections26 | DdosCustomPolicies8 | DdosProtectionPlans17 | ExpressRouteCircuits19 | ExpressRouteCircuitsAuthorizations20 | ExpressRouteCircuitsPeerings20 | ExpressRouteCircuitsPeeringsConnections17 | ExpressRouteCrossConnections17 | ExpressRouteCrossConnectionsPeerings17 | ExpressRouteGateways8 | ExpressRouteGatewaysExpressRouteConnections8 | ExpressRoutePorts13 | FirewallPolicies7 | FirewallPoliciesRuleGroups7 | IpAllocations1 | IpGroups4 | LoadBalancers34 | LoadBalancersBackendAddressPools | LoadBalancersInboundNatRules22 | LocalNetworkGateways26 | NatGateways9 | NetworkInterfaces35 | NetworkInterfacesTapConfigurations13 | NetworkProfiles8 | NetworkSecurityGroups34 | NetworkSecurityGroupsSecurityRules26 | NetworkVirtualAppliances2 | NetworkWatchers11 | NetworkWatchersConnectionMonitors8 | NetworkWatchersFlowLogs3 | NetworkWatchersPacketCaptures11 | P2SvpnGateways8 | PrivateEndpoints8 | PrivateEndpointsPrivateDnsZoneGroups1 | PrivateLinkServices8 | PrivateLinkServicesPrivateEndpointConnections8 | PublicIPAddresses34 | PublicIPPrefixes9 | RouteFilters11 | RouteFiltersRouteFilterRules11 | RouteTables34 | RouteTablesRoutes26 | SecurityPartnerProviders1 | ServiceEndpointPolicies9 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions9 | VirtualHubs11 | VirtualHubsHubRouteTables | VirtualHubsRouteTables4 | VirtualNetworkGateways26 | VirtualNetworks34 | VirtualNetworksSubnets26 | VirtualNetworksVirtualNetworkPeerings23 | VirtualNetworkTaps8 | VirtualRouters6 | VirtualRoutersPeerings6 | VirtualWans11 | VpnGateways11 | VpnGatewaysVpnConnections11 | VpnServerConfigurations5 | VpnSites11 | ApplicationGateways27 | ApplicationGatewaysPrivateEndpointConnections | ApplicationGatewayWebApplicationFirewallPolicies11 | ApplicationSecurityGroups22 | AzureFirewalls12 | BastionHosts9 | Connections27 | DdosCustomPolicies9 | DdosProtectionPlans18 | ExpressRouteCircuits20 | ExpressRouteCircuitsAuthorizations21 | ExpressRouteCircuitsPeerings21 | ExpressRouteCircuitsPeeringsConnections18 | ExpressRouteCrossConnections18 | ExpressRouteCrossConnectionsPeerings18 | ExpressRouteGateways9 | ExpressRouteGatewaysExpressRouteConnections9 | ExpressRoutePorts14 | FirewallPolicies8 | FirewallPoliciesRuleCollectionGroups | IpAllocations2 | IpGroups5 | LoadBalancers35 | LoadBalancersBackendAddressPools1 | LoadBalancersInboundNatRules23 | LocalNetworkGateways27 | NatGateways10 | NetworkInterfaces36 | NetworkInterfacesTapConfigurations14 | NetworkProfiles9 | NetworkSecurityGroups35 | NetworkSecurityGroupsSecurityRules27 | NetworkVirtualAppliances3 | NetworkVirtualAppliancesVirtualApplianceSites | NetworkWatchers12 | NetworkWatchersConnectionMonitors9 | NetworkWatchersFlowLogs4 | NetworkWatchersPacketCaptures12 | P2SvpnGateways9 | PrivateEndpoints9 | PrivateEndpointsPrivateDnsZoneGroups2 | PrivateLinkServices9 | PrivateLinkServicesPrivateEndpointConnections9 | PublicIPAddresses35 | PublicIPPrefixes10 | RouteFilters12 | RouteFiltersRouteFilterRules12 | RouteTables35 | RouteTablesRoutes27 | SecurityPartnerProviders2 | ServiceEndpointPolicies10 | ServiceEndpointPoliciesServiceEndpointPolicyDefinitions10 | VirtualHubs12 | VirtualHubsBgpConnections | VirtualHubsHubRouteTables1 | VirtualHubsHubVirtualNetworkConnections | VirtualHubsIpConfigurations | VirtualHubsRouteTables5 | VirtualNetworkGateways27 | VirtualNetworks35 | VirtualNetworksSubnets27 | VirtualNetworksVirtualNetworkPeerings24 | VirtualNetworkTaps9 | VirtualRouters7 | VirtualRoutersPeerings7 | VirtualWans12 | VpnGateways12 | VpnGatewaysVpnConnections12 | VpnServerConfigurations6 | VpnSites12 | Services2 | ServicesProjects | Services3 | ServicesProjects1 | Budgets | Clusters14 | FileServers | Jobs1 | VaultsBackupFabricsProtectionContainersProtectedItems | VaultsBackupPolicies | VaultsBackupFabricsBackupProtectionIntent | VaultsBackupFabricsProtectionContainers | VaultsBackupstorageconfig | Disks2 | Snapshots2 | ContainerGroups | ContainerGroups1 | Galleries | GalleriesImages | GalleriesImagesVersions | Images3 | AvailabilitySets4 | VirtualMachines5 | VirtualMachineScaleSets4 | Disks3 | Snapshots3 | VirtualMachineScaleSetsVirtualmachines | VirtualMachinesExtensions3 | VirtualMachineScaleSetsExtensions1 | Images4 | AvailabilitySets5 | VirtualMachines6 | VirtualMachineScaleSets5 | VirtualMachineScaleSetsVirtualmachines1 | VirtualMachinesExtensions4 | VirtualMachineScaleSetsExtensions2 | AvailabilitySets6 | HostGroups | HostGroupsHosts | Images5 | ProximityPlacementGroups | VirtualMachines7 | VirtualMachineScaleSets6 | VirtualMachineScaleSetsVirtualmachines2 | VirtualMachinesExtensions5 | VirtualMachineScaleSetsExtensions3 | Galleries1 | GalleriesImages1 | GalleriesImagesVersions1 | IotApps | Accounts8 | Workspaces8 | WorkspacesClusters | WorkspacesExperiments | WorkspacesExperimentsJobs | WorkspacesFileServers | ContainerServices1 | ManagedClusters | WorkspacesSavedSearches | WorkspacesStorageInsightConfigs | Workspaces9 | WorkspacesDataSources | WorkspacesLinkedServices | Clusters15 | ManagementConfigurations | Solutions | Peerings | PeeringServices | PeeringServicesPrefixes | Peerings1 | PeeringServices1 | PeeringServicesPrefixes1 | Peerings2 | PeeringsRegisteredAsns | PeeringsRegisteredPrefixes | PeeringServices2 | PeeringServicesPrefixes2 | DomainServices | DomainServices1 | DomainServicesOuContainer | SignalR | NetAppAccounts | NetAppAccountsCapacityPools | NetAppAccountsCapacityPoolsVolumes | NetAppAccountsCapacityPoolsVolumesSnapshots | NetAppAccounts1 | NetAppAccountsCapacityPools1 | NetAppAccountsCapacityPoolsVolumes1 | NetAppAccountsCapacityPoolsVolumesSnapshots1 | Managers1 | ManagersAccessControlRecords1 | ManagersCertificates | ManagersDevicesAlertSettings1 | ManagersDevicesBackupScheduleGroups | ManagersDevicesChapSettings | ManagersDevicesFileservers | ManagersDevicesFileserversShares | ManagersDevicesIscsiservers | ManagersDevicesIscsiserversDisks | ManagersExtendedInformation1 | ManagersStorageAccountCredentials1 | ManagersStorageDomains | Accounts9 | Accounts10 | AccountsPrivateAtlases | UserAssignedIdentities | UserAssignedIdentities1 | Clusters16 | ClustersApplications2 | ClustersExtensions | Clusters17 | ClustersApplications3 | ClustersExtensions1 | LocationsJitNetworkAccessPolicies | IotSecuritySolutions | Pricings | AdvancedThreatProtectionSettings | DeviceSecurityGroups | AdvancedThreatProtectionSettings1 | Automations | Assessments | IotSecuritySolutions1 | DeviceSecurityGroups1 | LocationsJitNetworkAccessPolicies1 | Assessments1 | AssessmentProjects | AssessmentProjectsGroups | AssessmentProjectsGroupsAssessments | AssessmentProjectsHypervcollectors | AssessmentProjectsVmwarecollectors | RegistrationAssignments | RegistrationDefinitions | RegistrationAssignments1 | RegistrationDefinitions1 | CrayServers | ManagedClusters1 | ManagedClustersAgentPools | MigrateProjects | MigrateProjectsSolutions | Namespaces3 | Namespaces_AuthorizationRules3 | NamespacesQueues | NamespacesQueuesAuthorizationRules | NamespacesTopics | NamespacesTopicsAuthorizationRules | NamespacesTopicsSubscriptions | Namespaces4 | Namespaces_AuthorizationRules4 | NamespacesDisasterRecoveryConfigs | NamespacesMigrationConfigurations | NamespacesNetworkRuleSets | NamespacesQueues1 | NamespacesQueuesAuthorizationRules1 | NamespacesTopics1 | NamespacesTopicsAuthorizationRules1 | NamespacesTopicsSubscriptions1 | NamespacesTopicsSubscriptionsRules | Namespaces5 | NamespacesIpfilterrules | NamespacesNetworkRuleSets1 | NamespacesVirtualnetworkrules | NamespacesPrivateEndpointConnections | NamespacesQueues2 | NamespacesQueuesAuthorizationRules2 | NamespacesTopics2 | NamespacesTopicsAuthorizationRules2 | NamespacesTopicsSubscriptions2 | NamespacesTopicsSubscriptionsRules1 | NamespacesDisasterRecoveryConfigs1 | NamespacesMigrationConfigurations1 | Namespaces_AuthorizationRules5 | Account | AccountExtension | AccountProject | Namespaces6 | Namespaces_AuthorizationRules6 | NamespacesEventhubs | NamespacesEventhubsAuthorizationRules | NamespacesEventhubsConsumergroups | Namespaces7 | Namespaces_AuthorizationRules7 | NamespacesEventhubs1 | NamespacesEventhubsAuthorizationRules1 | NamespacesEventhubsConsumergroups1 | Namespaces8 | NamespacesAuthorizationRules | NamespacesDisasterRecoveryConfigs2 | NamespacesEventhubs2 | NamespacesEventhubsAuthorizationRules2 | NamespacesEventhubsConsumergroups2 | NamespacesNetworkRuleSets2 | Clusters18 | Namespaces9 | NamespacesIpfilterrules1 | NamespacesNetworkRuleSets3 | NamespacesVirtualnetworkrules1 | Namespaces10 | Namespaces_AuthorizationRules8 | Namespaces_HybridConnections | Namespaces_HybridConnectionsAuthorizationRules | Namespaces_WcfRelays | Namespaces_WcfRelaysAuthorizationRules | Namespaces11 | NamespacesAuthorizationRules1 | NamespacesHybridConnections | NamespacesHybridConnectionsAuthorizationRules | NamespacesWcfRelays | NamespacesWcfRelaysAuthorizationRules | Factories | FactoriesDatasets | FactoriesIntegrationRuntimes | FactoriesLinkedservices | FactoriesPipelines | FactoriesTriggers | Factories1 | FactoriesDataflows | FactoriesDatasets1 | FactoriesIntegrationRuntimes1 | FactoriesLinkedservices1 | FactoriesPipelines1 | FactoriesTriggers1 | FactoriesManagedVirtualNetworks | FactoriesManagedVirtualNetworksManagedPrivateEndpoints | Topics | EventSubscriptions | Topics1 | EventSubscriptions1 | Topics2 | EventSubscriptions2 | Topics3 | EventSubscriptions3 | Domains | Topics4 | EventSubscriptions4 | Topics5 | EventSubscriptions5 | Domains1 | DomainsTopics | Topics6 | EventSubscriptions6 | Domains2 | DomainsTopics1 | Topics7 | EventSubscriptions7 | AvailabilitySets7 | DiskEncryptionSets | Disks4 | HostGroups1 | HostGroupsHosts1 | Images6 | ProximityPlacementGroups1 | Snapshots4 | VirtualMachines8 | VirtualMachineScaleSets7 | VirtualMachineScaleSetsVirtualmachines3 | VirtualMachineScaleSetsVirtualMachinesExtensions | VirtualMachinesExtensions6 | VirtualMachineScaleSetsExtensions4 | MultipleActivationKeys | JobCollectionsJobs1 | JobCollections2 | JobCollectionsJobs2 | SearchServices1 | SearchServices2 | SearchServicesPrivateEndpointConnections | Workspaces10 | WorkspacesAdministrators | WorkspacesBigDataPools | WorkspacesFirewallRules | WorkspacesManagedIdentitySqlControlSettings | WorkspacesSqlPools | WorkspacesSqlPoolsAuditingSettings | WorkspacesSqlPoolsMetadataSync | WorkspacesSqlPoolsSchemasTablesColumnsSensitivityLabels | WorkspacesSqlPoolsSecurityAlertPolicies | WorkspacesSqlPoolsTransparentDataEncryption | WorkspacesSqlPoolsVulnerabilityAssessments | WorkspacesSqlPoolsVulnerabilityAssessmentsRulesBaselines | Queries | CommunicationServices | Alertrules | Components | Webtests | Autoscalesettings | Components1 | ComponentsAnalyticsItems | Components_Annotations | ComponentsCurrentbillingfeatures | ComponentsFavorites | ComponentsMyanalyticsItems | Components_ProactiveDetectionConfigs | MyWorkbooks | Webtests1 | Workbooks | ComponentsExportconfiguration | ComponentsPricingPlans | Components2 | Components_ProactiveDetectionConfigs1 | Workbooks1 | Workbooktemplates | Components3 | ComponentsLinkedStorageAccounts | Autoscalesettings1 | Alertrules1 | ActivityLogAlerts | ActionGroups | ActivityLogAlerts1 | ActionGroups1 | MetricAlerts | ScheduledQueryRules | GuestDiagnosticSettings | ActionGroups2 | ActionGroups3 | ActionGroups4 | PrivateLinkScopes | PrivateLinkScopesPrivateEndpointConnections | PrivateLinkScopesScopedResources | DataCollectionRules | ScheduledQueryRules1 | Workspaces11 | Locks | Policyassignments | Policyassignments1 | Locks1 | PolicyAssignments | PolicyAssignments1 | PolicyAssignments2 | PolicyAssignments3 | PolicyAssignments4 | PolicyAssignments5 | PolicyAssignments6 | PolicyAssignments7 | PolicyExemptions | PolicyAssignments8 | CertificateOrders | CertificateOrdersCertificates | CertificateOrders1 | CertificateOrdersCertificates1 | CertificateOrders2 | CertificateOrdersCertificates2 | CertificateOrders3 | CertificateOrdersCertificates3 | CertificateOrders4 | CertificateOrdersCertificates4 | CertificateOrders5 | CertificateOrdersCertificates5 | CertificateOrders6 | CertificateOrdersCertificates6 | Domains3 | DomainsDomainOwnershipIdentifiers | Domains4 | DomainsDomainOwnershipIdentifiers1 | Domains5 | DomainsDomainOwnershipIdentifiers2 | Domains6 | DomainsDomainOwnershipIdentifiers3 | Domains7 | DomainsDomainOwnershipIdentifiers4 | Domains8 | DomainsDomainOwnershipIdentifiers5 | Domains9 | DomainsDomainOwnershipIdentifiers6 | Certificates | Csrs | HostingEnvironments | HostingEnvironmentsMultiRolePools | HostingEnvironmentsWorkerPools | ManagedHostingEnvironments | Serverfarms | ServerfarmsVirtualNetworkConnectionsGateways | ServerfarmsVirtualNetworkConnectionsRoutes | Sites | SitesBackups | SitesConfig | SitesDeployments | SitesHostNameBindings | SitesHybridconnection | SitesInstancesDeployments | SitesPremieraddons | SitesSlots | SitesSlotsBackups | SitesSlotsConfig | SitesSlotsDeployments | SitesSlotsHostNameBindings | SitesSlotsHybridconnection | SitesSlotsInstancesDeployments | SitesSlotsPremieraddons | SitesSlotsSnapshots | SitesSlotsSourcecontrols | SitesSlotsVirtualNetworkConnections | SitesSlotsVirtualNetworkConnectionsGateways | SitesSnapshots | SitesSourcecontrols | SitesVirtualNetworkConnections | SitesVirtualNetworkConnectionsGateways | Connections28 | Certificates1 | ConnectionGateways | Connections29 | CustomApis | Sites1 | SitesBackups1 | SitesConfig1 | SitesDeployments1 | SitesDomainOwnershipIdentifiers | SitesExtensions | SitesFunctions | SitesHostNameBindings1 | SitesHybridconnection1 | SitesHybridConnectionNamespacesRelays | SitesInstancesExtensions | SitesMigrate | SitesPremieraddons1 | SitesPublicCertificates | SitesSiteextensions | SitesSlots1 | SitesSlotsBackups1 | SitesSlotsConfig1 | SitesSlotsDeployments1 | SitesSlotsDomainOwnershipIdentifiers | SitesSlotsExtensions | SitesSlotsFunctions | SitesSlotsHostNameBindings1 | SitesSlotsHybridconnection1 | SitesSlotsHybridConnectionNamespacesRelays | SitesSlotsInstancesExtensions | SitesSlotsPremieraddons1 | SitesSlotsPublicCertificates | SitesSlotsSiteextensions | SitesSlotsSourcecontrols1 | SitesSlotsVirtualNetworkConnections1 | SitesSlotsVirtualNetworkConnectionsGateways1 | SitesSourcecontrols1 | SitesVirtualNetworkConnections1 | SitesVirtualNetworkConnectionsGateways1 | HostingEnvironments1 | HostingEnvironmentsMultiRolePools1 | HostingEnvironmentsWorkerPools1 | Serverfarms1 | ServerfarmsVirtualNetworkConnectionsGateways1 | ServerfarmsVirtualNetworkConnectionsRoutes1 | Certificates2 | HostingEnvironments2 | HostingEnvironmentsMultiRolePools2 | HostingEnvironmentsWorkerPools2 | Serverfarms2 | ServerfarmsVirtualNetworkConnectionsGateways2 | ServerfarmsVirtualNetworkConnectionsRoutes2 | Sites2 | SitesConfig2 | SitesDeployments2 | SitesDomainOwnershipIdentifiers1 | SitesExtensions1 | SitesFunctions1 | SitesFunctionsKeys | SitesHostNameBindings2 | SitesHybridconnection2 | SitesHybridConnectionNamespacesRelays1 | SitesInstancesExtensions1 | SitesMigrate1 | SitesNetworkConfig | SitesPremieraddons2 | SitesPrivateAccess | SitesPublicCertificates1 | SitesSiteextensions1 | SitesSlots2 | SitesSlotsConfig2 | SitesSlotsDeployments2 | SitesSlotsDomainOwnershipIdentifiers1 | SitesSlotsExtensions1 | SitesSlotsFunctions1 | SitesSlotsFunctionsKeys | SitesSlotsHostNameBindings2 | SitesSlotsHybridconnection2 | SitesSlotsHybridConnectionNamespacesRelays1 | SitesSlotsInstancesExtensions1 | SitesSlotsNetworkConfig | SitesSlotsPremieraddons2 | SitesSlotsPrivateAccess | SitesSlotsPublicCertificates1 | SitesSlotsSiteextensions1 | SitesSlotsSourcecontrols2 | SitesSlotsVirtualNetworkConnections2 | SitesSlotsVirtualNetworkConnectionsGateways2 | SitesSourcecontrols2 | SitesVirtualNetworkConnections2 | SitesVirtualNetworkConnectionsGateways2 | Certificates3 | Sites3 | SitesConfig3 | SitesDeployments3 | SitesDomainOwnershipIdentifiers2 | SitesExtensions2 | SitesFunctions2 | SitesHostNameBindings3 | SitesHybridconnection3 | SitesHybridConnectionNamespacesRelays2 | SitesInstancesExtensions2 | SitesMigrate2 | SitesNetworkConfig1 | SitesPremieraddons3 | SitesPrivateAccess1 | SitesPublicCertificates2 | SitesSiteextensions2 | SitesSlots3 | SitesSlotsConfig3 | SitesSlotsDeployments3 | SitesSlotsDomainOwnershipIdentifiers2 | SitesSlotsExtensions2 | SitesSlotsFunctions2 | SitesSlotsHostNameBindings3 | SitesSlotsHybridconnection3 | SitesSlotsHybridConnectionNamespacesRelays2 | SitesSlotsInstancesExtensions2 | SitesSlotsNetworkConfig1 | SitesSlotsPremieraddons3 | SitesSlotsPrivateAccess1 | SitesSlotsPublicCertificates2 | SitesSlotsSiteextensions2 | SitesSlotsSourcecontrols3 | SitesSlotsVirtualNetworkConnections3 | SitesSlotsVirtualNetworkConnectionsGateways3 | SitesSourcecontrols3 | SitesVirtualNetworkConnections3 | SitesVirtualNetworkConnectionsGateways3 | Certificates4 | HostingEnvironments3 | HostingEnvironmentsMultiRolePools3 | HostingEnvironmentsWorkerPools3 | Serverfarms3 | ServerfarmsVirtualNetworkConnectionsGateways3 | ServerfarmsVirtualNetworkConnectionsRoutes3 | Sites4 | SitesBasicPublishingCredentialsPolicies | SitesConfig4 | SitesDeployments4 | SitesDomainOwnershipIdentifiers3 | SitesExtensions3 | SitesFunctions3 | SitesFunctionsKeys1 | SitesHostNameBindings4 | SitesHybridconnection4 | SitesHybridConnectionNamespacesRelays3 | SitesInstancesExtensions3 | SitesMigrate3 | SitesNetworkConfig2 | SitesPremieraddons4 | SitesPrivateAccess2 | SitesPrivateEndpointConnections | SitesPublicCertificates3 | SitesSiteextensions3 | SitesSlots4 | SitesSlotsConfig4 | SitesSlotsDeployments4 | SitesSlotsDomainOwnershipIdentifiers3 | SitesSlotsExtensions3 | SitesSlotsFunctions3 | SitesSlotsFunctionsKeys1 | SitesSlotsHostNameBindings4 | SitesSlotsHybridconnection4 | SitesSlotsHybridConnectionNamespacesRelays3 | SitesSlotsInstancesExtensions3 | SitesSlotsNetworkConfig2 | SitesSlotsPremieraddons4 | SitesSlotsPrivateAccess2 | SitesSlotsPublicCertificates3 | SitesSlotsSiteextensions3 | SitesSlotsSourcecontrols4 | SitesSlotsVirtualNetworkConnections4 | SitesSlotsVirtualNetworkConnectionsGateways4 | SitesSourcecontrols4 | SitesVirtualNetworkConnections4 | SitesVirtualNetworkConnectionsGateways4 | StaticSites | StaticSitesBuildsConfig | StaticSitesConfig | StaticSitesCustomDomains | Certificates5 | HostingEnvironments4 | HostingEnvironmentsMultiRolePools4 | HostingEnvironmentsWorkerPools4 | Serverfarms4 | ServerfarmsVirtualNetworkConnectionsGateways4 | ServerfarmsVirtualNetworkConnectionsRoutes4 | Sites5 | SitesBasicPublishingCredentialsPolicies1 | SitesConfig5 | SitesDeployments5 | SitesDomainOwnershipIdentifiers4 | SitesExtensions4 | SitesFunctions4 | SitesFunctionsKeys2 | SitesHostNameBindings5 | SitesHybridconnection5 | SitesHybridConnectionNamespacesRelays4 | SitesInstancesExtensions4 | SitesMigrate4 | SitesNetworkConfig3 | SitesPremieraddons5 | SitesPrivateAccess3 | SitesPrivateEndpointConnections1 | SitesPublicCertificates4 | SitesSiteextensions4 | SitesSlots5 | SitesSlotsConfig5 | SitesSlotsDeployments5 | SitesSlotsDomainOwnershipIdentifiers4 | SitesSlotsExtensions4 | SitesSlotsFunctions4 | SitesSlotsFunctionsKeys2 | SitesSlotsHostNameBindings5 | SitesSlotsHybridconnection5 | SitesSlotsHybridConnectionNamespacesRelays4 | SitesSlotsInstancesExtensions4 | SitesSlotsNetworkConfig3 | SitesSlotsPremieraddons5 | SitesSlotsPrivateAccess3 | SitesSlotsPublicCertificates4 | SitesSlotsSiteextensions4 | SitesSlotsSourcecontrols5 | SitesSlotsVirtualNetworkConnections5 | SitesSlotsVirtualNetworkConnectionsGateways5 | SitesSourcecontrols5 | SitesVirtualNetworkConnections5 | SitesVirtualNetworkConnectionsGateways5 | StaticSites1 | StaticSitesBuildsConfig1 | StaticSitesConfig1 | StaticSitesCustomDomains1 | Certificates6 | HostingEnvironments5 | HostingEnvironmentsMultiRolePools5 | HostingEnvironmentsWorkerPools5 | Serverfarms5 | ServerfarmsVirtualNetworkConnectionsGateways5 | ServerfarmsVirtualNetworkConnectionsRoutes5 | Sites6 | SitesBasicPublishingCredentialsPolicies2 | SitesConfig6 | SitesDeployments6 | SitesDomainOwnershipIdentifiers5 | SitesExtensions5 | SitesFunctions5 | SitesFunctionsKeys3 | SitesHostNameBindings6 | SitesHybridconnection6 | SitesHybridConnectionNamespacesRelays5 | SitesInstancesExtensions5 | SitesMigrate5 | SitesNetworkConfig4 | SitesPremieraddons6 | SitesPrivateAccess4 | SitesPrivateEndpointConnections2 | SitesPublicCertificates5 | SitesSiteextensions5 | SitesSlots6 | SitesSlotsConfig6 | SitesSlotsDeployments6 | SitesSlotsDomainOwnershipIdentifiers5 | SitesSlotsExtensions5 | SitesSlotsFunctions5 | SitesSlotsFunctionsKeys3 | SitesSlotsHostNameBindings6 | SitesSlotsHybridconnection6 | SitesSlotsHybridConnectionNamespacesRelays5 | SitesSlotsInstancesExtensions5 | SitesSlotsNetworkConfig4 | SitesSlotsPremieraddons6 | SitesSlotsPrivateAccess4 | SitesSlotsPublicCertificates5 | SitesSlotsSiteextensions5 | SitesSlotsSourcecontrols6 | SitesSlotsVirtualNetworkConnections6 | SitesSlotsVirtualNetworkConnectionsGateways6 | SitesSourcecontrols6 | SitesVirtualNetworkConnections6 | SitesVirtualNetworkConnectionsGateways6 | StaticSites2 | StaticSitesBuildsConfig2 | StaticSitesConfig2 | StaticSitesCustomDomains2 | Certificates7 | HostingEnvironments6 | HostingEnvironmentsMultiRolePools6 | HostingEnvironmentsWorkerPools6 | Serverfarms6 | ServerfarmsVirtualNetworkConnectionsGateways6 | ServerfarmsVirtualNetworkConnectionsRoutes6 | Sites7 | SitesBasicPublishingCredentialsPolicies3 | SitesConfig7 | SitesDeployments7 | SitesDomainOwnershipIdentifiers6 | SitesExtensions6 | SitesFunctions6 | SitesFunctionsKeys4 | SitesHostNameBindings7 | SitesHybridconnection7 | SitesHybridConnectionNamespacesRelays6 | SitesInstancesExtensions6 | SitesMigrate6 | SitesNetworkConfig5 | SitesPremieraddons7 | SitesPrivateAccess5 | SitesPrivateEndpointConnections3 | SitesPublicCertificates6 | SitesSiteextensions6 | SitesSlots7 | SitesSlotsConfig7 | SitesSlotsDeployments7 | SitesSlotsDomainOwnershipIdentifiers6 | SitesSlotsExtensions6 | SitesSlotsFunctions6 | SitesSlotsFunctionsKeys4 | SitesSlotsHostNameBindings7 | SitesSlotsHybridconnection7 | SitesSlotsHybridConnectionNamespacesRelays6 | SitesSlotsInstancesExtensions6 | SitesSlotsNetworkConfig5 | SitesSlotsPremieraddons7 | SitesSlotsPrivateAccess5 | SitesSlotsPublicCertificates6 | SitesSlotsSiteextensions6 | SitesSlotsSourcecontrols7 | SitesSlotsVirtualNetworkConnections7 | SitesSlotsVirtualNetworkConnectionsGateways7 | SitesSourcecontrols7 | SitesVirtualNetworkConnections7 | SitesVirtualNetworkConnectionsGateways7 | StaticSites3 | StaticSitesBuildsConfig3 | StaticSitesConfig3 | StaticSitesCustomDomains3 | Certificates8 | HostingEnvironments7 | HostingEnvironmentsConfigurations | HostingEnvironmentsMultiRolePools7 | HostingEnvironmentsPrivateEndpointConnections | HostingEnvironmentsWorkerPools7 | Serverfarms7 | ServerfarmsVirtualNetworkConnectionsGateways7 | ServerfarmsVirtualNetworkConnectionsRoutes7 | Sites8 | SitesBasicPublishingCredentialsPolicies4 | SitesConfig8 | SitesDeployments8 | SitesDomainOwnershipIdentifiers7 | SitesExtensions7 | SitesFunctions7 | SitesFunctionsKeys5 | SitesHostNameBindings8 | SitesHybridconnection8 | SitesHybridConnectionNamespacesRelays7 | SitesInstancesExtensions7 | SitesMigrate7 | SitesNetworkConfig6 | SitesPremieraddons8 | SitesPrivateAccess6 | SitesPrivateEndpointConnections4 | SitesPublicCertificates7 | SitesSiteextensions7 | SitesSlots8 | SitesSlotsBasicPublishingCredentialsPolicies | SitesSlotsConfig8 | SitesSlotsDeployments8 | SitesSlotsDomainOwnershipIdentifiers7 | SitesSlotsExtensions7 | SitesSlotsFunctions7 | SitesSlotsFunctionsKeys5 | SitesSlotsHostNameBindings8 | SitesSlotsHybridconnection8 | SitesSlotsHybridConnectionNamespacesRelays7 | SitesSlotsInstancesExtensions7 | SitesSlotsPremieraddons8 | SitesSlotsPrivateAccess6 | SitesSlotsPrivateEndpointConnections | SitesSlotsPublicCertificates7 | SitesSlotsSiteextensions7 | SitesSlotsSourcecontrols8 | SitesSlotsVirtualNetworkConnections8 | SitesSlotsVirtualNetworkConnectionsGateways8 | SitesSourcecontrols8 | SitesVirtualNetworkConnections8 | SitesVirtualNetworkConnectionsGateways8 | StaticSites4 | StaticSitesBuildsConfig4 | StaticSitesBuildsUserProvidedFunctionApps | StaticSitesConfig4 | StaticSitesCustomDomains4 | StaticSitesPrivateEndpointConnections | StaticSitesUserProvidedFunctionApps)) | (((ARMResourceBase & {␊ /**␊ * Location to deploy resource to␊ */␊ @@ -3300,6 +3612,9 @@ Generated by [AVA](https://avajs.dev). scope?: string␊ comments?: string␊ [k: string]: unknown␊ + }) & {␊ + plan: unknown␊ + [k: string]: unknown␊ }) & Accounts11) | (ARMResourceBase & (Deployments2 | Deployments3 | Deployments4 | Deployments5 | Links)))␊ export type ResourceBase = (ARMResourceBase & {␊ /**␊ @@ -3344,6 +3659,8 @@ Generated by [AVA](https://avajs.dev). export type DatabaseAccountsApisDatabasesSettingsChildResource = ({␊ apiVersion: "2015-04-08"␊ type: "settings"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ name: "throughput"␊ @@ -3351,6 +3668,8 @@ Generated by [AVA](https://avajs.dev). * Properties to update Azure Cosmos DB resource throughput.␊ */␊ properties: (ThroughputUpdateProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ name: "throughput"␊ @@ -3358,6 +3677,8 @@ Generated by [AVA](https://avajs.dev). * Properties to update Azure Cosmos DB resource throughput.␊ */␊ properties: (ThroughputUpdateProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ name: "throughput"␊ @@ -3365,6 +3686,8 @@ Generated by [AVA](https://avajs.dev). * Properties to update Azure Cosmos DB resource throughput.␊ */␊ properties: (ThroughputUpdateProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -3441,6 +3764,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection | EventGridDataConnection))␊ /**␊ @@ -3457,6 +3783,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Kusto/clusters/databases/dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection | EventGridDataConnection))␊ /**␊ @@ -3473,6 +3802,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection1 | IotHubDataConnection | EventGridDataConnection1))␊ /**␊ @@ -3489,6 +3821,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Kusto/clusters/databases/dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection1 | IotHubDataConnection | EventGridDataConnection1))␊ /**␊ @@ -3505,6 +3840,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "databases"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (ReadWriteDatabase | ReadOnlyFollowingDatabase))␊ /**␊ @@ -3522,6 +3860,9 @@ Generated by [AVA](https://avajs.dev). name: string␊ resources?: ClustersDatabasesDataConnectionsChildResource2[]␊ type: "Microsoft.Kusto/clusters/databases"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (ReadWriteDatabase | ReadOnlyFollowingDatabase))␊ /**␊ @@ -3538,6 +3879,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection2 | IotHubDataConnection1 | EventGridDataConnection2))␊ /**␊ @@ -3554,6 +3898,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Kusto/clusters/databases/dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection2 | IotHubDataConnection1 | EventGridDataConnection2))␊ /**␊ @@ -3570,6 +3917,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "databases"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (ReadWriteDatabase1 | ReadOnlyFollowingDatabase1))␊ /**␊ @@ -3582,6 +3932,9 @@ Generated by [AVA](https://avajs.dev). name?: string␊ type: "Microsoft.Kusto/clusters/dataconnections"␊ apiVersion: "2019-11-09"␊ + apiVersion: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (GenevaDataConnection | GenevaLegacyDataConnection))␊ /**␊ @@ -3599,6 +3952,9 @@ Generated by [AVA](https://avajs.dev). name: string␊ resources?: (ClustersDatabasesPrincipalAssignmentsChildResource | ClustersDatabasesDataConnectionsChildResource3)[]␊ type: "Microsoft.Kusto/clusters/databases"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (ReadWriteDatabase1 | ReadOnlyFollowingDatabase1))␊ /**␊ @@ -3615,6 +3971,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection3 | IotHubDataConnection2 | EventGridDataConnection3))␊ /**␊ @@ -3631,6 +3990,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Kusto/clusters/databases/dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection3 | IotHubDataConnection2 | EventGridDataConnection3))␊ /**␊ @@ -3643,6 +4005,9 @@ Generated by [AVA](https://avajs.dev). name?: string␊ type: "Microsoft.Kusto/clusters/dataconnections"␊ apiVersion: "2019-11-09"␊ + apiVersion: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (GenevaDataConnection | GenevaLegacyDataConnection))␊ /**␊ @@ -3659,6 +4024,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "databases"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (ReadWriteDatabase2 | ReadOnlyFollowingDatabase2))␊ /**␊ @@ -3671,6 +4039,9 @@ Generated by [AVA](https://avajs.dev). name?: string␊ type: "Microsoft.Kusto/clusters/dataconnections"␊ apiVersion: "2020-02-15"␊ + apiVersion: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (GenevaDataConnection1 | GenevaLegacyDataConnection1))␊ /**␊ @@ -3688,6 +4059,9 @@ Generated by [AVA](https://avajs.dev). name: string␊ resources?: (ClustersDatabasesPrincipalAssignmentsChildResource1 | ClustersDatabasesDataConnectionsChildResource4)[]␊ type: "Microsoft.Kusto/clusters/databases"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (ReadWriteDatabase2 | ReadOnlyFollowingDatabase2))␊ /**␊ @@ -3704,6 +4078,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection4 | IotHubDataConnection3 | EventGridDataConnection4))␊ /**␊ @@ -3720,6 +4097,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Kusto/clusters/databases/dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection4 | IotHubDataConnection3 | EventGridDataConnection4))␊ /**␊ @@ -3732,6 +4112,9 @@ Generated by [AVA](https://avajs.dev). name?: string␊ type: "Microsoft.Kusto/clusters/dataconnections"␊ apiVersion: "2020-02-15"␊ + apiVersion: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (GenevaDataConnection1 | GenevaLegacyDataConnection1))␊ /**␊ @@ -3748,6 +4131,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "databases"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (ReadWriteDatabase3 | ReadOnlyFollowingDatabase3))␊ /**␊ @@ -3760,6 +4146,9 @@ Generated by [AVA](https://avajs.dev). name?: string␊ type: "Microsoft.Kusto/clusters/dataconnections"␊ apiVersion: "2020-06-14"␊ + apiVersion: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (GenevaDataConnection2 | GenevaLegacyDataConnection2))␊ /**␊ @@ -3777,6 +4166,9 @@ Generated by [AVA](https://avajs.dev). name: string␊ resources?: (ClustersDatabasesPrincipalAssignmentsChildResource2 | ClustersDatabasesDataConnectionsChildResource5)[]␊ type: "Microsoft.Kusto/clusters/databases"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (ReadWriteDatabase3 | ReadOnlyFollowingDatabase3))␊ /**␊ @@ -3793,6 +4185,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection5 | IotHubDataConnection4 | EventGridDataConnection5))␊ /**␊ @@ -3809,6 +4204,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Kusto/clusters/databases/dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection5 | IotHubDataConnection4 | EventGridDataConnection5))␊ /**␊ @@ -3821,6 +4219,9 @@ Generated by [AVA](https://avajs.dev). name?: string␊ type: "Microsoft.Kusto/clusters/dataconnections"␊ apiVersion: "2020-06-14"␊ + apiVersion: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (GenevaDataConnection2 | GenevaLegacyDataConnection2))␊ /**␊ @@ -3837,6 +4238,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "databases"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (ReadWriteDatabase4 | ReadOnlyFollowingDatabase4))␊ /**␊ @@ -3849,6 +4253,9 @@ Generated by [AVA](https://avajs.dev). name?: string␊ type: "Microsoft.Kusto/clusters/dataconnections"␊ apiVersion: "2020-09-18"␊ + apiVersion: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (GenevaDataConnection3 | GenevaLegacyDataConnection3))␊ /**␊ @@ -3866,6 +4273,9 @@ Generated by [AVA](https://avajs.dev). name: string␊ resources?: (ClustersDatabasesPrincipalAssignmentsChildResource3 | ClustersDatabasesDataConnectionsChildResource6)[]␊ type: "Microsoft.Kusto/clusters/databases"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (ReadWriteDatabase4 | ReadOnlyFollowingDatabase4))␊ /**␊ @@ -3882,6 +4292,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection6 | IotHubDataConnection5 | EventGridDataConnection6))␊ /**␊ @@ -3898,6 +4311,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Kusto/clusters/databases/dataConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubDataConnection6 | IotHubDataConnection5 | EventGridDataConnection6))␊ /**␊ @@ -3910,6 +4326,9 @@ Generated by [AVA](https://avajs.dev). name?: string␊ type: "Microsoft.Kusto/clusters/dataconnections"␊ apiVersion: "2020-09-18"␊ + apiVersion: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (GenevaDataConnection3 | GenevaLegacyDataConnection3))␊ export type HttpAuthentication1 = ({␊ @@ -4027,9 +4446,12 @@ Generated by [AVA](https://avajs.dev). export type AutomationAccountsRunbooksDraftChildResource = ({␊ apiVersion: "2015-10-31"␊ type: "draft"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ name: "content"␊ + name: unknown␊ [k: string]: unknown␊ } | {␊ name: "testJob"␊ @@ -4043,6 +4465,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the runOn which specifies the group name where the job is to be executed.␊ */␊ runOn?: string␊ + name: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -4051,9 +4474,12 @@ Generated by [AVA](https://avajs.dev). export type AutomationAccountsRunbooksDraftChildResource1 = ({␊ apiVersion: "2018-06-30"␊ type: "draft"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ name: "content"␊ + name: unknown␊ [k: string]: unknown␊ } | {␊ name: "testJob"␊ @@ -4067,6 +4493,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the runOn which specifies the group name where the job is to be executed.␊ */␊ runOn?: string␊ + name: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -4108,6 +4535,7 @@ Generated by [AVA](https://avajs.dev). * The language for the audio payload in the input using the BCP-47 format of 'language tag-region' (e.g: 'en-US'). The list of supported languages are English ('en-US' and 'en-GB'), Spanish ('es-ES' and 'es-MX'), French ('fr-FR'), Italian ('it-IT'), Japanese ('ja-JP'), Portuguese ('pt-BR'), Chinese ('zh-CN'), German ('de-DE'), Arabic ('ar-EG' and 'ar-SY'), Russian ('ru-RU'), Hindi ('hi-IN'), and Korean ('ko-KR'). If you know the language of your content, it is recommended that you specify it. If the language isn't specified or set to null, automatic language detection will choose the first language detected and process with the selected language for the duration of the file. This language detection feature currently supports English, Chinese, French, German, Italian, Japanese, Spanish, Russian, and Portuguese. It does not currently support dynamically switching between languages after the first language is detected. The automatic detection works best with audio recordings with clearly discernable speech. If automatic detection fails to find the language, transcription would fallback to 'en-US'."␊ */␊ audioLanguage?: string␊ + "@odata.type": unknown␊ [k: string]: unknown␊ } & VideoAnalyzerPreset)␊ /**␊ @@ -4137,6 +4565,7 @@ Generated by [AVA](https://avajs.dev). * The sampling rate to use for encoding in hertz.␊ */␊ samplingRate?: (number | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ } & AacAudio)␊ /**␊ @@ -4152,6 +4581,7 @@ Generated by [AVA](https://avajs.dev). * The resizing mode - how the input video will be resized to fit the desired output resolution(s). Default is AutoSize.␊ */␊ stretchMode?: (("None" | "AutoSize" | "AutoFit") | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ } & (Image | H264Video))␊ /**␊ @@ -4171,6 +4601,8 @@ Generated by [AVA](https://avajs.dev). * The intervals at which thumbnails are generated. The value can be in absolute timestamp (ISO 8601, e.g: PT05S for one image every 5 seconds), or a frame count (For example, 30 for every 30 frames), or a relative value (For example, 1%).␊ */␊ step?: string␊ + "@odata.type": unknown␊ + start: unknown␊ [k: string]: unknown␊ } & (JpgImage | PngImage))␊ /**␊ @@ -4201,6 +4633,7 @@ Generated by [AVA](https://avajs.dev). * The start position, with reference to the input video, at which the overlay starts. The value should be in ISO 8601 format. For example, PT05S to start the overlay at 5 seconds in to the input video. If not specified the overlay starts from the beginning of the input video.␊ */␊ start?: string␊ + inputLabel: unknown␊ [k: string]: unknown␊ } & (AudioOverlay | VideoOverlay))␊ /**␊ @@ -4211,6 +4644,7 @@ Generated by [AVA](https://avajs.dev). * The pattern of the file names for the generated output files. The following macros are supported in the file name: {Basename} - The base name of the input video {Extension} - The appropriate extension for this format. {Label} - The label assigned to the codec/layer. {Index} - A unique index for thumbnails. Only applicable to thumbnails. {Bitrate} - The audio/video bitrate. Not applicable to thumbnails. {Codec} - The type of the audio/video codec. Any unsubstituted macros will be collapsed and removed from the filename.␊ */␊ filenamePattern: string␊ + filenamePattern: unknown␊ [k: string]: unknown␊ } & (ImageFormat | MultiBitrateFormat))␊ /**␊ @@ -4218,6 +4652,7 @@ Generated by [AVA](https://avajs.dev). */␊ export type ImageFormat = ({␊ "@odata.type": "#Microsoft.Media.ImageFormat"␊ + "@odata.type": unknown␊ [k: string]: unknown␊ } & (JpgFormat | PngFormat))␊ /**␊ @@ -4229,6 +4664,7 @@ Generated by [AVA](https://avajs.dev). * The list of output files to produce. Each entry in the list is a set of audio and video layer labels to be muxed together .␊ */␊ outputFiles?: (OutputFile[] | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ } & (Mp4Format | TransportStreamFormat))␊ /**␊ @@ -4257,7 +4693,10 @@ Generated by [AVA](https://avajs.dev). /**␊ * Base class for specifying a clip time. Use sub classes of this class to specify the time position in the media.␊ */␊ - start?: (AbsoluteClipTime | string)␊ + start?: ((AbsoluteClipTime & {␊ + [k: string]: unknown␊ + }) | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ } & (JobInputAsset | JobInputHttp))␊ /**␊ @@ -4366,6 +4805,8 @@ Generated by [AVA](https://avajs.dev). export type ServicePortalsettingsChildResource = ({␊ apiVersion: "2017-03-01"␊ type: "portalsettings"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ name: "signin"␊ @@ -4373,6 +4814,8 @@ Generated by [AVA](https://avajs.dev). * Sign-in settings contract properties.␊ */␊ properties: (PortalSigninSettingProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ name: "signup"␊ @@ -4380,6 +4823,8 @@ Generated by [AVA](https://avajs.dev). * Sign-up settings contract properties.␊ */␊ properties: (PortalSignupSettingsProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ name: "delegation"␊ @@ -4387,6 +4832,8 @@ Generated by [AVA](https://avajs.dev). * Delegation settings contract properties.␊ */␊ properties: (PortalDelegationSettingsProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -4395,6 +4842,8 @@ Generated by [AVA](https://avajs.dev). export type ServicePortalsettingsChildResource1 = ({␊ apiVersion: "2018-01-01"␊ type: "portalsettings"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ name: "signin"␊ @@ -4402,6 +4851,8 @@ Generated by [AVA](https://avajs.dev). * Sign-in settings contract properties.␊ */␊ properties: (PortalSigninSettingProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ name: "signup"␊ @@ -4409,6 +4860,8 @@ Generated by [AVA](https://avajs.dev). * Sign-up settings contract properties.␊ */␊ properties: (PortalSignupSettingsProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ name: "delegation"␊ @@ -4416,6 +4869,8 @@ Generated by [AVA](https://avajs.dev). * Delegation settings contract properties.␊ */␊ properties: (PortalDelegationSettingsProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -4424,6 +4879,8 @@ Generated by [AVA](https://avajs.dev). export type ServicePortalsettingsChildResource2 = ({␊ apiVersion: "2018-06-01-preview"␊ type: "portalsettings"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ name: "signin"␊ @@ -4431,6 +4888,8 @@ Generated by [AVA](https://avajs.dev). * Sign-in settings contract properties.␊ */␊ properties: (PortalSigninSettingProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ name: "signup"␊ @@ -4438,6 +4897,8 @@ Generated by [AVA](https://avajs.dev). * Sign-up settings contract properties.␊ */␊ properties: (PortalSignupSettingsProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ name: "delegation"␊ @@ -4445,6 +4906,8 @@ Generated by [AVA](https://avajs.dev). * Delegation settings contract properties.␊ */␊ properties: (PortalDelegationSettingsProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -4453,6 +4916,8 @@ Generated by [AVA](https://avajs.dev). export type ServicePortalsettingsChildResource3 = ({␊ apiVersion: "2019-01-01"␊ type: "portalsettings"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ name: "signin"␊ @@ -4460,6 +4925,8 @@ Generated by [AVA](https://avajs.dev). * Sign-in settings contract properties.␊ */␊ properties: (PortalSigninSettingProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ name: "signup"␊ @@ -4467,6 +4934,8 @@ Generated by [AVA](https://avajs.dev). * Sign-up settings contract properties.␊ */␊ properties: (PortalSignupSettingsProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ name: "delegation"␊ @@ -4474,6 +4943,8 @@ Generated by [AVA](https://avajs.dev). * Delegation settings contract properties.␊ */␊ properties: (PortalDelegationSettingsProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -4640,6 +5111,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "eventSources"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubEventSourceCreateOrUpdateParameters | IoTHubEventSourceCreateOrUpdateParameters))␊ /**␊ @@ -4662,6 +5137,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.TimeSeriesInsights/environments/eventSources"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubEventSourceCreateOrUpdateParameters | IoTHubEventSourceCreateOrUpdateParameters))␊ /**␊ @@ -4689,6 +5168,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.TimeSeriesInsights/environments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (StandardEnvironmentCreateOrUpdateParameters | LongTermEnvironmentCreateOrUpdateParameters))␊ /**␊ @@ -4715,6 +5199,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "eventSources"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubEventSourceCreateOrUpdateParameters1 | IoTHubEventSourceCreateOrUpdateParameters1))␊ /**␊ @@ -4741,6 +5229,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.TimeSeriesInsights/environments/eventSources"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & (EventHubEventSourceCreateOrUpdateParameters1 | IoTHubEventSourceCreateOrUpdateParameters1))␊ /**␊ @@ -4958,11 +5450,18 @@ Generated by [AVA](https://avajs.dev). */␊ priority?: (number | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule | FirewallPolicyFilterRule))␊ + } | (FirewallPolicyNatRule & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule␊ */␊ @@ -4984,6 +5483,7 @@ Generated by [AVA](https://avajs.dev). */␊ ruleCondition?: (FirewallPolicyRuleCondition | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyNatRule" | string)␊ @@ -5002,11 +5502,18 @@ Generated by [AVA](https://avajs.dev). */␊ description?: string␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition | NetworkRuleCondition))␊ + } | (ApplicationRuleCondition & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5032,6 +5539,7 @@ Generated by [AVA](https://avajs.dev). */␊ fqdnTags?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("ApplicationRuleCondition" | string)␊ @@ -5058,6 +5566,7 @@ Generated by [AVA](https://avajs.dev). */␊ destinationPorts?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("NetworkRuleCondition" | string)␊ @@ -5074,11 +5583,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition | NetworkRuleCondition)[] | string)␊ + } | (ApplicationRuleCondition & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + ruleConditionType: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyFilterRule" | string)␊ @@ -5097,11 +5625,18 @@ Generated by [AVA](https://avajs.dev). */␊ priority?: (number | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule1 | FirewallPolicyFilterRule1))␊ + } | (FirewallPolicyNatRule1 & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule1 & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule.␊ */␊ @@ -5123,6 +5658,7 @@ Generated by [AVA](https://avajs.dev). */␊ ruleCondition?: (FirewallPolicyRuleCondition1 | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyNatRule" | string)␊ @@ -5141,11 +5677,18 @@ Generated by [AVA](https://avajs.dev). */␊ description?: string␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition1 | NetworkRuleCondition1))␊ + } | (ApplicationRuleCondition1 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition1 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5171,6 +5714,7 @@ Generated by [AVA](https://avajs.dev). */␊ fqdnTags?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("ApplicationRuleCondition" | string)␊ @@ -5197,6 +5741,7 @@ Generated by [AVA](https://avajs.dev). */␊ destinationPorts?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("NetworkRuleCondition" | string)␊ @@ -5213,11 +5758,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition1 | NetworkRuleCondition1)[] | string)␊ + } | (ApplicationRuleCondition1 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition1 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + ruleConditionType: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyFilterRule" | string)␊ @@ -5236,11 +5800,18 @@ Generated by [AVA](https://avajs.dev). */␊ priority?: (number | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule2 | FirewallPolicyFilterRule2))␊ + } | (FirewallPolicyNatRule2 & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule2 & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule.␊ */␊ @@ -5262,6 +5833,7 @@ Generated by [AVA](https://avajs.dev). */␊ ruleCondition?: (FirewallPolicyRuleCondition2 | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyNatRule" | string)␊ @@ -5280,11 +5852,18 @@ Generated by [AVA](https://avajs.dev). */␊ description?: string␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition2 | NetworkRuleCondition2))␊ + } | (ApplicationRuleCondition2 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition2 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5310,6 +5889,7 @@ Generated by [AVA](https://avajs.dev). */␊ fqdnTags?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("ApplicationRuleCondition" | string)␊ @@ -5336,6 +5916,7 @@ Generated by [AVA](https://avajs.dev). */␊ destinationPorts?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("NetworkRuleCondition" | string)␊ @@ -5352,11 +5933,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition2 | NetworkRuleCondition2)[] | string)␊ + } | (ApplicationRuleCondition2 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition2 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + ruleConditionType: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyFilterRule" | string)␊ @@ -5375,11 +5975,18 @@ Generated by [AVA](https://avajs.dev). */␊ priority?: (number | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule3 | FirewallPolicyFilterRule3))␊ + } | (FirewallPolicyNatRule3 & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule3 & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule.␊ */␊ @@ -5401,6 +6008,7 @@ Generated by [AVA](https://avajs.dev). */␊ ruleCondition?: (FirewallPolicyRuleCondition3 | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyNatRule" | string)␊ @@ -5419,11 +6027,18 @@ Generated by [AVA](https://avajs.dev). */␊ description?: string␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition3 | NetworkRuleCondition3))␊ + } | (ApplicationRuleCondition3 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition3 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5449,6 +6064,7 @@ Generated by [AVA](https://avajs.dev). */␊ fqdnTags?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("ApplicationRuleCondition" | string)␊ @@ -5475,6 +6091,7 @@ Generated by [AVA](https://avajs.dev). */␊ destinationPorts?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("NetworkRuleCondition" | string)␊ @@ -5491,11 +6108,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition3 | NetworkRuleCondition3)[] | string)␊ + } | (ApplicationRuleCondition3 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition3 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + ruleConditionType: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyFilterRule" | string)␊ @@ -5514,11 +6150,18 @@ Generated by [AVA](https://avajs.dev). */␊ priority?: (number | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule4 | FirewallPolicyFilterRule4))␊ + } | (FirewallPolicyNatRule4 & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule4 & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule.␊ */␊ @@ -5540,6 +6183,7 @@ Generated by [AVA](https://avajs.dev). */␊ ruleCondition?: (FirewallPolicyRuleCondition4 | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyNatRule" | string)␊ @@ -5558,11 +6202,18 @@ Generated by [AVA](https://avajs.dev). */␊ description?: string␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition4 | NetworkRuleCondition4))␊ + } | (ApplicationRuleCondition4 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition4 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5588,6 +6239,7 @@ Generated by [AVA](https://avajs.dev). */␊ fqdnTags?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("ApplicationRuleCondition" | string)␊ @@ -5614,6 +6266,7 @@ Generated by [AVA](https://avajs.dev). */␊ destinationPorts?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("NetworkRuleCondition" | string)␊ @@ -5630,11 +6283,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition4 | NetworkRuleCondition4)[] | string)␊ + } | (ApplicationRuleCondition4 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition4 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + ruleConditionType: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyFilterRule" | string)␊ @@ -5681,11 +6353,18 @@ Generated by [AVA](https://avajs.dev). */␊ priority?: (number | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule6 | FirewallPolicyFilterRule6))␊ + } | (FirewallPolicyNatRule6 & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule6 & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule.␊ */␊ @@ -5707,6 +6386,7 @@ Generated by [AVA](https://avajs.dev). */␊ ruleCondition?: (FirewallPolicyRuleCondition6 | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyNatRule" | string)␊ @@ -5725,11 +6405,21 @@ Generated by [AVA](https://avajs.dev). */␊ description?: string␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition6 | NatRuleCondition1 | NetworkRuleCondition6))␊ + } | (ApplicationRuleCondition6 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NatRuleCondition1 & {␊ + ruleConditionType?: ("NatRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition6 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5759,6 +6449,7 @@ Generated by [AVA](https://avajs.dev). */␊ sourceIpGroups?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("ApplicationRuleCondition" | string)␊ @@ -5789,6 +6480,7 @@ Generated by [AVA](https://avajs.dev). */␊ sourceIpGroups?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("NatRuleCondition" | string)␊ @@ -5823,6 +6515,7 @@ Generated by [AVA](https://avajs.dev). */␊ destinationIpGroups?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("NetworkRuleCondition" | string)␊ @@ -5839,11 +6532,33 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition6 | NatRuleCondition1 | NetworkRuleCondition6)[] | string)␊ + } | (ApplicationRuleCondition6 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NatRuleCondition1 & {␊ + ruleConditionType?: ("NatRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition6 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + ruleConditionType: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyFilterRule" | string)␊ @@ -5862,11 +6577,18 @@ Generated by [AVA](https://avajs.dev). */␊ priority?: (number | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRule7 | FirewallPolicyFilterRule7))␊ + } | (FirewallPolicyNatRule7 & {␊ + ruleType?: ("FirewallPolicyNatRule" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRule7 & {␊ + ruleType?: ("FirewallPolicyFilterRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule.␊ */␊ @@ -5888,6 +6610,7 @@ Generated by [AVA](https://avajs.dev). */␊ ruleCondition?: (FirewallPolicyRuleCondition7 | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyNatRule" | string)␊ @@ -5906,11 +6629,21 @@ Generated by [AVA](https://avajs.dev). */␊ description?: string␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition7 | NatRuleCondition2 | NetworkRuleCondition7))␊ + } | (ApplicationRuleCondition7 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NatRuleCondition2 & {␊ + ruleConditionType?: ("NatRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition7 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule condition of type application.␊ */␊ @@ -5944,6 +6677,7 @@ Generated by [AVA](https://avajs.dev). */␊ sourceIpGroups?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("ApplicationRuleCondition" | string)␊ @@ -5978,6 +6712,7 @@ Generated by [AVA](https://avajs.dev). */␊ terminateTLS?: (boolean | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("NatRuleCondition" | string)␊ @@ -6012,6 +6747,7 @@ Generated by [AVA](https://avajs.dev). */␊ destinationIpGroups?: (string[] | string)␊ ruleConditionType: string␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleConditionType?: ("NetworkRuleCondition" | string)␊ @@ -6028,11 +6764,33 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: (({␊ + ruleConditions?: ((({␊ ruleConditionType?: ("FirewallPolicyRuleCondition" | string)␊ [k: string]: unknown␊ - } | ApplicationRuleCondition7 | NatRuleCondition2 | NetworkRuleCondition7)[] | string)␊ + } | (ApplicationRuleCondition7 & {␊ + ruleConditionType?: ("ApplicationRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NatRuleCondition2 & {␊ + ruleConditionType?: ("NatRuleCondition" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRuleCondition7 & {␊ + ruleConditionType?: ("NetworkRuleCondition" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + ruleConditionType: string␊ + ruleConditionType: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("FirewallPolicyFilterRule" | string)␊ @@ -6051,11 +6809,18 @@ Generated by [AVA](https://avajs.dev). */␊ priority?: (number | string)␊ ruleCollectionType: string␊ + ruleCollectionType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleCollectionType?: ("FirewallPolicyRuleCollection" | string)␊ [k: string]: unknown␊ - } | FirewallPolicyNatRuleCollection | FirewallPolicyFilterRuleCollection))␊ + } | (FirewallPolicyNatRuleCollection & {␊ + ruleCollectionType?: ("FirewallPolicyNatRuleCollection" | string)␊ + [k: string]: unknown␊ + }) | (FirewallPolicyFilterRuleCollection & {␊ + ruleCollectionType?: ("FirewallPolicyFilterRuleCollection" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Firewall Policy NAT Rule Collection.␊ */␊ @@ -6069,6 +6834,7 @@ Generated by [AVA](https://avajs.dev). */␊ rules?: (FirewallPolicyRule8[] | string)␊ ruleCollectionType: string␊ + ruleCollectionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleCollectionType?: ("FirewallPolicyNatRuleCollection" | string)␊ @@ -6087,11 +6853,21 @@ Generated by [AVA](https://avajs.dev). */␊ description?: string␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & ({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | ApplicationRule | NatRule | NetworkRule))␊ + } | (ApplicationRule & {␊ + ruleType?: ("ApplicationRule" | string)␊ + [k: string]: unknown␊ + }) | (NatRule & {␊ + ruleType?: ("NatRule" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRule & {␊ + ruleType?: ("NetworkRule" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Rule of type application.␊ */␊ @@ -6129,6 +6905,7 @@ Generated by [AVA](https://avajs.dev). */␊ terminateTLS?: (boolean | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("ApplicationRule" | string)␊ @@ -6167,6 +6944,7 @@ Generated by [AVA](https://avajs.dev). */␊ sourceIpGroups?: (string[] | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("NatRule" | string)␊ @@ -6205,6 +6983,7 @@ Generated by [AVA](https://avajs.dev). */␊ destinationFqdns?: (string[] | string)␊ ruleType: string␊ + ruleType: unknown␊ [k: string]: unknown␊ } & {␊ ruleType?: ("NetworkRule" | string)␊ @@ -6221,11 +7000,33 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of rules included in a rule collection.␊ */␊ - rules?: (({␊ + rules?: ((({␊ ruleType?: ("FirewallPolicyRule" | string)␊ [k: string]: unknown␊ - } | ApplicationRule | NatRule | NetworkRule)[] | string)␊ + } | (ApplicationRule & {␊ + ruleType?: ("ApplicationRule" | string)␊ + [k: string]: unknown␊ + }) | (NatRule & {␊ + ruleType?: ("NatRule" | string)␊ + [k: string]: unknown␊ + }) | (NetworkRule & {␊ + ruleType?: ("NetworkRule" | string)␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * Name of the rule.␊ + */␊ + name?: string␊ + /**␊ + * Description of the rule.␊ + */␊ + description?: string␊ + ruleType: string␊ + ruleType: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ ruleCollectionType: string␊ + ruleCollectionType: unknown␊ [k: string]: unknown␊ } & {␊ ruleCollectionType?: ("FirewallPolicyFilterRuleCollection" | string)␊ @@ -6264,11 +7065,21 @@ Generated by [AVA](https://avajs.dev). */␊ password?: string␊ type: string␊ + type: unknown␊ + [k: string]: unknown␊ + } & ((OracleConnectionInfo & {␊ + type?: "OracleConnectionInfo"␊ + [k: string]: unknown␊ + }) | (MySqlConnectionInfo & {␊ + type?: "MySqlConnectionInfo"␊ [k: string]: unknown␊ - } & (OracleConnectionInfo | MySqlConnectionInfo | {␊ + }) | {␊ type?: "Unknown"␊ [k: string]: unknown␊ - } | SqlConnectionInfo1))␊ + } | (SqlConnectionInfo1 & {␊ + type?: "SqlConnectionInfo"␊ + [k: string]: unknown␊ + })))␊ /**␊ * Information for connecting to Oracle source␊ */␊ @@ -6302,6 +7113,7 @@ Generated by [AVA](https://avajs.dev). */␊ customConnectionString?: string␊ type: string␊ + type: unknown␊ [k: string]: unknown␊ } & {␊ type?: "OracleConnectionInfo"␊ @@ -6328,6 +7140,9 @@ Generated by [AVA](https://avajs.dev). */␊ port: (number | string)␊ type: string␊ + serverName: unknown␊ + port: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & {␊ type?: "MySqlConnectionInfo"␊ @@ -6366,6 +7181,8 @@ Generated by [AVA](https://avajs.dev). */␊ trustServerCertificate?: (boolean | string)␊ type: string␊ + dataSource: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & {␊ type?: "SqlConnectionInfo"␊ @@ -6376,11 +7193,60 @@ Generated by [AVA](https://avajs.dev). */␊ export type ProjectTaskProperties1 = ({␊ taskType: string␊ + taskType: unknown␊ + [k: string]: unknown␊ + } & ((ValidateMigrationInputSqlServerSqlServerTaskProperties & {␊ + taskType?: ("ValidateMigrationInput_SqlServer_SqlServer" | string)␊ + [k: string]: unknown␊ + }) | (ValidateMigrationInputSqlServerCloudDbTaskProperties & {␊ + taskType?: ("ValidateMigrationInput_SqlServer_CloudDb" | string)␊ + [k: string]: unknown␊ + }) | (MigrateSqlServerSqlServerTaskProperties & {␊ + taskType?: ("Migrate_SqlServer_SqlServer" | string)␊ + [k: string]: unknown␊ + }) | (MigrateSqlServerSqlDbTaskProperties1 & {␊ + taskType?: ("Migrate_SqlServer_SqlDb" | string)␊ + [k: string]: unknown␊ + }) | (MigrateSqlServerCloudDbTaskProperties & {␊ + taskType?: ("Migrate_SqlServer_CloudDb" | string)␊ + [k: string]: unknown␊ + }) | (GetProjectDetailsOracleSqlTaskProperties & {␊ + taskType?: ("GetProjectDetails_Oracle_Sql" | string)␊ + [k: string]: unknown␊ + }) | (GetProjectDetailsMySqlSqlTaskProperties & {␊ + taskType?: ("GetProjectDetails_MySql_Sql" | string)␊ + [k: string]: unknown␊ + }) | (ConnectToTargetSqlServerTaskProperties & {␊ + taskType?: ("ConnectToTarget_SqlServer" | string)␊ + [k: string]: unknown␊ + }) | (ConnectToTargetCloudDbTaskProperties & {␊ + taskType?: ("ConnectToTarget_CloudDb" | string)␊ + [k: string]: unknown␊ + }) | (GetUserTablesSqlTaskProperties1 & {␊ + taskType?: ("GetUserTables_Sql" | string)␊ + [k: string]: unknown␊ + }) | (ConnectToTargetSqlDbTaskProperties1 & {␊ + taskType?: ("ConnectToTarget_SqlDb" | string)␊ + [k: string]: unknown␊ + }) | (ConnectToSourceSqlServerTaskProperties1 & {␊ + taskType?: ("ConnectToSource_SqlServer" | string)␊ [k: string]: unknown␊ - } & (ValidateMigrationInputSqlServerSqlServerTaskProperties | ValidateMigrationInputSqlServerCloudDbTaskProperties | MigrateSqlServerSqlServerTaskProperties | MigrateSqlServerSqlDbTaskProperties1 | MigrateSqlServerCloudDbTaskProperties | GetProjectDetailsOracleSqlTaskProperties | GetProjectDetailsMySqlSqlTaskProperties | ConnectToTargetSqlServerTaskProperties | ConnectToTargetCloudDbTaskProperties | GetUserTablesSqlTaskProperties1 | ConnectToTargetSqlDbTaskProperties1 | ConnectToSourceSqlServerTaskProperties1 | {␊ + }) | {␊ taskType?: ("Unknown" | string)␊ [k: string]: unknown␊ - } | ConnectToSourceMySqlTaskProperties | ConnectToSourceOracleTaskProperties | MigrateMySqlSqlTaskProperties | MigrateOracleSqlTaskProperties))␊ + } | (ConnectToSourceMySqlTaskProperties & {␊ + taskType?: ("ConnectToSource_MySql" | string)␊ + [k: string]: unknown␊ + }) | (ConnectToSourceOracleTaskProperties & {␊ + taskType?: ("ConnectToSource_Oracle" | string)␊ + [k: string]: unknown␊ + }) | (MigrateMySqlSqlTaskProperties & {␊ + taskType?: ("Migrate_MySql_Sql" | string)␊ + [k: string]: unknown␊ + }) | (MigrateOracleSqlTaskProperties & {␊ + taskType?: ("Migrate_Oracle_Sql" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Properties for task that validates migration input for SQL to SQL on VM migrations␊ */␊ @@ -6390,6 +7256,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (ValidateMigrationInputSqlServerSqlServerTaskInput | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("ValidateMigrationInput_SqlServer_SqlServer" | string)␊ @@ -6404,6 +7271,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (ValidateMigrationInputSqlServerCloudDbTaskInput | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("ValidateMigrationInput_SqlServer_CloudDb" | string)␊ @@ -6418,6 +7286,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (MigrateSqlServerSqlServerTaskInput | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("Migrate_SqlServer_SqlServer" | string)␊ @@ -6432,6 +7301,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (MigrateSqlServerSqlDbTaskInput1 | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("Migrate_SqlServer_SqlDb" | string)␊ @@ -6446,6 +7316,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (MigrateSqlServerCloudDbTaskInput | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("Migrate_SqlServer_CloudDb" | string)␊ @@ -6460,6 +7331,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (GetProjectDetailsNonSqlTaskInput | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("GetProjectDetails_Oracle_Sql" | string)␊ @@ -6474,6 +7346,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (GetProjectDetailsNonSqlTaskInput | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("GetProjectDetails_MySql_Sql" | string)␊ @@ -6488,6 +7361,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (ConnectToTargetSqlServerTaskInput | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("ConnectToTarget_SqlServer" | string)␊ @@ -6502,6 +7376,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (ConnectToTargetCloudDbTaskInput | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("ConnectToTarget_CloudDb" | string)␊ @@ -6516,6 +7391,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (GetUserTablesSqlTaskInput1 | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("GetUserTables_Sql" | string)␊ @@ -6530,6 +7406,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (ConnectToTargetSqlDbTaskInput1 | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("ConnectToTarget_SqlDb" | string)␊ @@ -6544,6 +7421,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (ConnectToSourceSqlServerTaskInput1 | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("ConnectToSource_SqlServer" | string)␊ @@ -6558,6 +7436,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (ConnectToSourceMySqlTaskInput | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("ConnectToSource_MySql" | string)␊ @@ -6572,6 +7451,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (ConnectToSourceOracleTaskInput | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("ConnectToSource_Oracle" | string)␊ @@ -6586,6 +7466,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (MigrateMySqlSqlTaskInput | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("Migrate_MySql_Sql" | string)␊ @@ -6600,6 +7481,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (MigrateOracleSqlTaskInput | string)␊ taskType: string␊ + taskType: unknown␊ [k: string]: unknown␊ } & {␊ taskType?: ("Migrate_Oracle_Sql" | string)␊ @@ -6642,8 +7524,30 @@ Generated by [AVA](https://avajs.dev). */␊ createMode?: (("Invalid" | "Default" | "Recover") | string)␊ protectedItemType: string␊ + protectedItemType: unknown␊ [k: string]: unknown␊ - } & (AzureFileshareProtectedItem | AzureIaaSVMProtectedItem | AzureSqlProtectedItem | AzureVmWorkloadProtectedItem | DPMProtectedItem | GenericProtectedItem | MabFileFolderProtectedItem | {␊ + } & ((AzureFileshareProtectedItem & {␊ + protectedItemType?: ("AzureFileShareProtectedItem" | string)␊ + [k: string]: unknown␊ + }) | (AzureIaaSVMProtectedItem & {␊ + protectedItemType?: ("AzureIaaSVMProtectedItem" | string)␊ + [k: string]: unknown␊ + }) | (AzureSqlProtectedItem & {␊ + protectedItemType?: ("Microsoft.Sql/servers/databases" | string)␊ + [k: string]: unknown␊ + }) | (AzureVmWorkloadProtectedItem & {␊ + protectedItemType?: ("AzureVmWorkloadProtectedItem" | string)␊ + [k: string]: unknown␊ + }) | (DPMProtectedItem & {␊ + protectedItemType?: ("DPMProtectedItem" | string)␊ + [k: string]: unknown␊ + }) | (GenericProtectedItem & {␊ + protectedItemType?: ("GenericProtectedItem" | string)␊ + [k: string]: unknown␊ + }) | (MabFileFolderProtectedItem & {␊ + protectedItemType?: ("MabFileFolderProtectedItem" | string)␊ + [k: string]: unknown␊ + }) | {␊ protectedItemType?: ("ProtectedItem" | string)␊ [k: string]: unknown␊ }))␊ @@ -6680,6 +7584,7 @@ Generated by [AVA](https://avajs.dev). */␊ extendedInfo?: (AzureFileshareProtectedItemExtendedInfo | string)␊ protectedItemType: string␊ + protectedItemType: unknown␊ [k: string]: unknown␊ } & {␊ protectedItemType?: ("AzureFileShareProtectedItem" | string)␊ @@ -6730,8 +7635,15 @@ Generated by [AVA](https://avajs.dev). */␊ extendedInfo?: (AzureIaaSVMProtectedItemExtendedInfo | string)␊ protectedItemType: string␊ + protectedItemType: unknown␊ [k: string]: unknown␊ - } & (AzureIaaSClassicComputeVMProtectedItem | AzureIaaSComputeVMProtectedItem | {␊ + } & ((AzureIaaSClassicComputeVMProtectedItem & {␊ + protectedItemType?: ("Microsoft.ClassicCompute/virtualMachines" | string)␊ + [k: string]: unknown␊ + }) | (AzureIaaSComputeVMProtectedItem & {␊ + protectedItemType?: ("Microsoft.Compute/virtualMachines" | string)␊ + [k: string]: unknown␊ + }) | {␊ protectedItemType?: ("AzureIaaSVMProtectedItem" | string)␊ [k: string]: unknown␊ }))␊ @@ -6740,6 +7652,7 @@ Generated by [AVA](https://avajs.dev). */␊ export type AzureIaaSClassicComputeVMProtectedItem = ({␊ protectedItemType: string␊ + protectedItemType: unknown␊ [k: string]: unknown␊ } & {␊ protectedItemType?: ("Microsoft.ClassicCompute/virtualMachines" | string)␊ @@ -6750,6 +7663,7 @@ Generated by [AVA](https://avajs.dev). */␊ export type AzureIaaSComputeVMProtectedItem = ({␊ protectedItemType: string␊ + protectedItemType: unknown␊ [k: string]: unknown␊ } & {␊ protectedItemType?: ("Microsoft.Compute/virtualMachines" | string)␊ @@ -6772,6 +7686,7 @@ Generated by [AVA](https://avajs.dev). */␊ extendedInfo?: (AzureSqlProtectedItemExtendedInfo | string)␊ protectedItemType: string␊ + protectedItemType: unknown␊ [k: string]: unknown␊ } & {␊ protectedItemType?: ("Microsoft.Sql/servers/databases" | string)␊ @@ -6830,16 +7745,27 @@ Generated by [AVA](https://avajs.dev). */␊ extendedInfo?: (AzureVmWorkloadProtectedItemExtendedInfo | string)␊ protectedItemType: string␊ + protectedItemType: unknown␊ [k: string]: unknown␊ } & ({␊ protectedItemType?: ("AzureVmWorkloadProtectedItem" | string)␊ [k: string]: unknown␊ - } | AzureVmWorkloadSAPAseDatabaseProtectedItem | AzureVmWorkloadSAPHanaDatabaseProtectedItem | AzureVmWorkloadSQLDatabaseProtectedItem))␊ + } | (AzureVmWorkloadSAPAseDatabaseProtectedItem & {␊ + protectedItemType?: ("AzureVmWorkloadSAPAseDatabase" | string)␊ + [k: string]: unknown␊ + }) | (AzureVmWorkloadSAPHanaDatabaseProtectedItem & {␊ + protectedItemType?: ("AzureVmWorkloadSAPHanaDatabase" | string)␊ + [k: string]: unknown␊ + }) | (AzureVmWorkloadSQLDatabaseProtectedItem & {␊ + protectedItemType?: ("AzureVmWorkloadSQLDatabase" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Azure VM workload-specific protected item representing SAP ASE Database.␊ */␊ export type AzureVmWorkloadSAPAseDatabaseProtectedItem = ({␊ protectedItemType: string␊ + protectedItemType: unknown␊ [k: string]: unknown␊ } & {␊ protectedItemType?: ("AzureVmWorkloadSAPAseDatabase" | string)␊ @@ -6850,6 +7776,7 @@ Generated by [AVA](https://avajs.dev). */␊ export type AzureVmWorkloadSAPHanaDatabaseProtectedItem = ({␊ protectedItemType: string␊ + protectedItemType: unknown␊ [k: string]: unknown␊ } & {␊ protectedItemType?: ("AzureVmWorkloadSAPHanaDatabase" | string)␊ @@ -6860,6 +7787,7 @@ Generated by [AVA](https://avajs.dev). */␊ export type AzureVmWorkloadSQLDatabaseProtectedItem = ({␊ protectedItemType: string␊ + protectedItemType: unknown␊ [k: string]: unknown␊ } & {␊ protectedItemType?: ("AzureVmWorkloadSQLDatabase" | string)␊ @@ -6890,6 +7818,7 @@ Generated by [AVA](https://avajs.dev). */␊ extendedInfo?: (DPMProtectedItemExtendedInfo | string)␊ protectedItemType: string␊ + protectedItemType: unknown␊ [k: string]: unknown␊ } & {␊ protectedItemType?: ("DPMProtectedItem" | string)␊ @@ -6926,6 +7855,7 @@ Generated by [AVA](https://avajs.dev). */␊ fabricName?: string␊ protectedItemType: string␊ + protectedItemType: unknown␊ [k: string]: unknown␊ } & {␊ protectedItemType?: ("GenericProtectedItem" | string)␊ @@ -6964,6 +7894,7 @@ Generated by [AVA](https://avajs.dev). */␊ extendedInfo?: (MabFileFolderProtectedItemExtendedInfo | string)␊ protectedItemType: string␊ + protectedItemType: unknown␊ [k: string]: unknown␊ } & {␊ protectedItemType?: ("MabFileFolderProtectedItem" | string)␊ @@ -6978,8 +7909,27 @@ Generated by [AVA](https://avajs.dev). */␊ protectedItemsCount?: (number | string)␊ backupManagementType: string␊ + backupManagementType: unknown␊ + [k: string]: unknown␊ + } & ((AzureFileShareProtectionPolicy & {␊ + backupManagementType?: ("AzureStorage" | string)␊ + [k: string]: unknown␊ + }) | (AzureIaaSVMProtectionPolicy & {␊ + backupManagementType?: ("AzureIaasVM" | string)␊ + [k: string]: unknown␊ + }) | (AzureSqlProtectionPolicy & {␊ + backupManagementType?: ("AzureSql" | string)␊ + [k: string]: unknown␊ + }) | (AzureVmWorkloadProtectionPolicy & {␊ + backupManagementType?: ("AzureWorkload" | string)␊ + [k: string]: unknown␊ + }) | (GenericProtectionPolicy & {␊ + backupManagementType?: ("GenericProtectionPolicy" | string)␊ + [k: string]: unknown␊ + }) | (MabProtectionPolicy & {␊ + backupManagementType?: ("MAB" | string)␊ [k: string]: unknown␊ - } & (AzureFileShareProtectionPolicy | AzureIaaSVMProtectionPolicy | AzureSqlProtectionPolicy | AzureVmWorkloadProtectionPolicy | GenericProtectionPolicy | MabProtectionPolicy | {␊ + }) | {␊ backupManagementType?: ("ProtectionPolicy" | string)␊ [k: string]: unknown␊ }))␊ @@ -7004,6 +7954,7 @@ Generated by [AVA](https://avajs.dev). */␊ timeZone?: string␊ backupManagementType: string␊ + backupManagementType: unknown␊ [k: string]: unknown␊ } & {␊ backupManagementType?: ("AzureStorage" | string)␊ @@ -7014,11 +7965,21 @@ Generated by [AVA](https://avajs.dev). */␊ export type SchedulePolicy = ({␊ schedulePolicyType: string␊ + schedulePolicyType: unknown␊ [k: string]: unknown␊ } & ({␊ schedulePolicyType?: ("SchedulePolicy" | string)␊ [k: string]: unknown␊ - } | LogSchedulePolicy | LongTermSchedulePolicy | SimpleSchedulePolicy))␊ + } | (LogSchedulePolicy & {␊ + schedulePolicyType?: ("LogSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (LongTermSchedulePolicy & {␊ + schedulePolicyType?: ("LongTermSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleSchedulePolicy & {␊ + schedulePolicyType?: ("SimpleSchedulePolicy" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Log policy schedule.␊ */␊ @@ -7028,6 +7989,7 @@ Generated by [AVA](https://avajs.dev). */␊ scheduleFrequencyInMins?: (number | string)␊ schedulePolicyType: string␊ + schedulePolicyType: unknown␊ [k: string]: unknown␊ } & {␊ schedulePolicyType?: ("LogSchedulePolicy" | string)␊ @@ -7038,6 +8000,7 @@ Generated by [AVA](https://avajs.dev). */␊ export type LongTermSchedulePolicy = ({␊ schedulePolicyType: string␊ + schedulePolicyType: unknown␊ [k: string]: unknown␊ } & {␊ schedulePolicyType?: ("LongTermSchedulePolicy" | string)␊ @@ -7064,6 +8027,7 @@ Generated by [AVA](https://avajs.dev). */␊ scheduleWeeklyFrequency?: (number | string)␊ schedulePolicyType: string␊ + schedulePolicyType: unknown␊ [k: string]: unknown␊ } & {␊ schedulePolicyType?: ("SimpleSchedulePolicy" | string)␊ @@ -7074,11 +8038,18 @@ Generated by [AVA](https://avajs.dev). */␊ export type RetentionPolicy = ({␊ retentionPolicyType: string␊ + retentionPolicyType: unknown␊ [k: string]: unknown␊ } & ({␊ retentionPolicyType?: ("RetentionPolicy" | string)␊ [k: string]: unknown␊ - } | LongTermRetentionPolicy | SimpleRetentionPolicy))␊ + } | (LongTermRetentionPolicy & {␊ + retentionPolicyType?: ("LongTermRetentionPolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleRetentionPolicy & {␊ + retentionPolicyType?: ("SimpleRetentionPolicy" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Long term retention policy.␊ */␊ @@ -7100,6 +8071,7 @@ Generated by [AVA](https://avajs.dev). */␊ yearlySchedule?: (YearlyRetentionSchedule | string)␊ retentionPolicyType: string␊ + retentionPolicyType: unknown␊ [k: string]: unknown␊ } & {␊ retentionPolicyType?: ("LongTermRetentionPolicy" | string)␊ @@ -7114,6 +8086,7 @@ Generated by [AVA](https://avajs.dev). */␊ retentionDuration?: (RetentionDuration | string)␊ retentionPolicyType: string␊ + retentionPolicyType: unknown␊ [k: string]: unknown␊ } & {␊ retentionPolicyType?: ("SimpleRetentionPolicy" | string)␊ @@ -7126,17 +8099,40 @@ Generated by [AVA](https://avajs.dev). /**␊ * Backup schedule specified as part of backup policy.␊ */␊ - schedulePolicy?: (({␊ + schedulePolicy?: ((({␊ schedulePolicyType?: ("SchedulePolicy" | string)␊ [k: string]: unknown␊ - } | LogSchedulePolicy | LongTermSchedulePolicy | SimpleSchedulePolicy) | string)␊ + } | (LogSchedulePolicy & {␊ + schedulePolicyType?: ("LogSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (LongTermSchedulePolicy & {␊ + schedulePolicyType?: ("LongTermSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleSchedulePolicy & {␊ + schedulePolicyType?: ("SimpleSchedulePolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + schedulePolicyType: string␊ + schedulePolicyType: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Retention policy with the details on backup copy retention ranges.␊ */␊ - retentionPolicy?: (({␊ + retentionPolicy?: ((({␊ retentionPolicyType?: ("RetentionPolicy" | string)␊ [k: string]: unknown␊ - } | LongTermRetentionPolicy | SimpleRetentionPolicy) | string)␊ + } | (LongTermRetentionPolicy & {␊ + retentionPolicyType?: ("LongTermRetentionPolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleRetentionPolicy & {␊ + retentionPolicyType?: ("SimpleRetentionPolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + retentionPolicyType: string␊ + retentionPolicyType: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Instant RP retention policy range in days␊ */␊ @@ -7146,6 +8142,7 @@ Generated by [AVA](https://avajs.dev). */␊ timeZone?: string␊ backupManagementType: string␊ + backupManagementType: unknown␊ [k: string]: unknown␊ } & {␊ backupManagementType?: ("AzureIaasVM" | string)␊ @@ -7158,11 +8155,22 @@ Generated by [AVA](https://avajs.dev). /**␊ * Retention policy details.␊ */␊ - retentionPolicy?: (({␊ + retentionPolicy?: ((({␊ retentionPolicyType?: ("RetentionPolicy" | string)␊ [k: string]: unknown␊ - } | LongTermRetentionPolicy | SimpleRetentionPolicy) | string)␊ + } | (LongTermRetentionPolicy & {␊ + retentionPolicyType?: ("LongTermRetentionPolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleRetentionPolicy & {␊ + retentionPolicyType?: ("SimpleRetentionPolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + retentionPolicyType: string␊ + retentionPolicyType: unknown␊ + [k: string]: unknown␊ + }) | string)␊ backupManagementType: string␊ + backupManagementType: unknown␊ [k: string]: unknown␊ } & {␊ backupManagementType?: ("AzureSql" | string)␊ @@ -7185,6 +8193,7 @@ Generated by [AVA](https://avajs.dev). */␊ subProtectionPolicy?: (SubProtectionPolicy[] | string)␊ backupManagementType: string␊ + backupManagementType: unknown␊ [k: string]: unknown␊ } & {␊ backupManagementType?: ("AzureWorkload" | string)␊ @@ -7207,6 +8216,7 @@ Generated by [AVA](https://avajs.dev). */␊ fabricName?: string␊ backupManagementType: string␊ + backupManagementType: unknown␊ [k: string]: unknown␊ } & {␊ backupManagementType?: ("GenericProtectionPolicy" | string)␊ @@ -7219,18 +8229,42 @@ Generated by [AVA](https://avajs.dev). /**␊ * Backup schedule of backup policy.␊ */␊ - schedulePolicy?: (({␊ + schedulePolicy?: ((({␊ schedulePolicyType?: ("SchedulePolicy" | string)␊ [k: string]: unknown␊ - } | LogSchedulePolicy | LongTermSchedulePolicy | SimpleSchedulePolicy) | string)␊ + } | (LogSchedulePolicy & {␊ + schedulePolicyType?: ("LogSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (LongTermSchedulePolicy & {␊ + schedulePolicyType?: ("LongTermSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleSchedulePolicy & {␊ + schedulePolicyType?: ("SimpleSchedulePolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + schedulePolicyType: string␊ + schedulePolicyType: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Retention policy details.␊ */␊ - retentionPolicy?: (({␊ + retentionPolicy?: ((({␊ retentionPolicyType?: ("RetentionPolicy" | string)␊ [k: string]: unknown␊ - } | LongTermRetentionPolicy | SimpleRetentionPolicy) | string)␊ + } | (LongTermRetentionPolicy & {␊ + retentionPolicyType?: ("LongTermRetentionPolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleRetentionPolicy & {␊ + retentionPolicyType?: ("SimpleRetentionPolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + retentionPolicyType: string␊ + retentionPolicyType: unknown␊ + [k: string]: unknown␊ + }) | string)␊ backupManagementType: string␊ + backupManagementType: unknown␊ [k: string]: unknown␊ } & {␊ backupManagementType?: ("MAB" | string)␊ @@ -7261,8 +8295,15 @@ Generated by [AVA](https://avajs.dev). */␊ protectionState?: (("Invalid" | "NotProtected" | "Protecting" | "Protected" | "ProtectionFailed") | string)␊ protectionIntentItemType: string␊ + protectionIntentItemType: unknown␊ + [k: string]: unknown␊ + } & ((AzureRecoveryServiceVaultProtectionIntent & {␊ + protectionIntentItemType?: ("RecoveryServiceVaultItem" | string)␊ + [k: string]: unknown␊ + }) | (AzureResourceProtectionIntent & {␊ + protectionIntentItemType?: ("AzureResourceItem" | string)␊ [k: string]: unknown␊ - } & (AzureRecoveryServiceVaultProtectionIntent | AzureResourceProtectionIntent | {␊ + }) | {␊ protectionIntentItemType?: ("ProtectionIntent" | string)␊ [k: string]: unknown␊ }))␊ @@ -7271,21 +8312,29 @@ Generated by [AVA](https://avajs.dev). */␊ export type AzureRecoveryServiceVaultProtectionIntent = ({␊ protectionIntentItemType: string␊ + protectionIntentItemType: unknown␊ [k: string]: unknown␊ } & ({␊ protectionIntentItemType?: ("RecoveryServiceVaultItem" | string)␊ [k: string]: unknown␊ - } | AzureWorkloadAutoProtectionIntent))␊ + } | (AzureWorkloadAutoProtectionIntent & {␊ + protectionIntentItemType?: ("AzureWorkloadAutoProtectionIntent" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Azure Recovery Services Vault specific protection intent item.␊ */␊ export type AzureWorkloadAutoProtectionIntent = ({␊ protectionIntentItemType: string␊ + protectionIntentItemType: unknown␊ [k: string]: unknown␊ } & ({␊ protectionIntentItemType?: ("AzureWorkloadAutoProtectionIntent" | string)␊ [k: string]: unknown␊ - } | AzureWorkloadSQLAutoProtectionIntent))␊ + } | (AzureWorkloadSQLAutoProtectionIntent & {␊ + protectionIntentItemType?: ("AzureWorkloadSQLAutoProtectionIntent" | string)␊ + [k: string]: unknown␊ + })))␊ /**␊ * Azure Workload SQL Auto Protection intent item.␊ */␊ @@ -7295,6 +8344,7 @@ Generated by [AVA](https://avajs.dev). */␊ workloadItemType?: (("Invalid" | "SQLInstance" | "SQLDataBase" | "SAPHanaSystem" | "SAPHanaDatabase" | "SAPAseSystem" | "SAPAseDatabase") | string)␊ protectionIntentItemType: string␊ + protectionIntentItemType: unknown␊ [k: string]: unknown␊ } & {␊ protectionIntentItemType?: ("AzureWorkloadSQLAutoProtectionIntent" | string)␊ @@ -7309,6 +8359,7 @@ Generated by [AVA](https://avajs.dev). */␊ friendlyName?: string␊ protectionIntentItemType: string␊ + protectionIntentItemType: unknown␊ [k: string]: unknown␊ } & {␊ protectionIntentItemType?: ("AzureResourceItem" | string)␊ @@ -7361,6 +8412,7 @@ Generated by [AVA](https://avajs.dev). * Workload type for which registration was sent.␊ */␊ workloadType?: (("Invalid" | "VM" | "FileFolder" | "AzureSqlDb" | "SQLDB" | "Exchange" | "Sharepoint" | "VMwareVM" | "SystemState" | "Client" | "GenericDataSource" | "SQLDataBase" | "AzureFileShare" | "SAPHanaDatabase" | "SAPAseDatabase") | string)␊ + containerType: unknown␊ [k: string]: unknown␊ } & (AzureSQLAGWorkloadContainerProtectionContainer | AzureVMAppContainerProtectionContainer))␊ /**␊ @@ -7400,6 +8452,7 @@ Generated by [AVA](https://avajs.dev). * To check if upgrade available␊ */␊ upgradeAvailable?: (boolean | string)␊ + containerType: unknown␊ [k: string]: unknown␊ } & AzureBackupServerContainer)␊ /**␊ @@ -7419,6 +8472,7 @@ Generated by [AVA](https://avajs.dev). * Specifies whether the container represents a Classic or an Azure Resource Manager VM.␊ */␊ virtualMachineVersion?: string␊ + containerType: unknown␊ [k: string]: unknown␊ } & (AzureIaaSClassicComputeVMContainer | AzureIaaSComputeVMContainer))␊ /**␊ @@ -7427,6 +8481,8 @@ Generated by [AVA](https://avajs.dev). export type ClustersExtensionsChildResource = ({␊ apiVersion: "2015-03-01-preview"␊ type: "extensions"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ name: "clustermonitoring"␊ @@ -7438,6 +8494,7 @@ Generated by [AVA](https://avajs.dev). * The cluster monitor workspace ID.␊ */␊ workspaceId?: string␊ + name: unknown␊ [k: string]: unknown␊ } | {␊ name: "azureMonitor"␊ @@ -7453,6 +8510,7 @@ Generated by [AVA](https://avajs.dev). * The Log Analytics workspace ID.␊ */␊ workspaceId?: string␊ + name: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -7461,6 +8519,8 @@ Generated by [AVA](https://avajs.dev). export type ClustersExtensions = ({␊ apiVersion: "2015-03-01-preview"␊ type: "Microsoft.HDInsight/clusters/extensions"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ name: string␊ @@ -7472,6 +8532,7 @@ Generated by [AVA](https://avajs.dev). * The cluster monitor workspace ID.␊ */␊ workspaceId?: string␊ + name: unknown␊ [k: string]: unknown␊ } | {␊ name: string␊ @@ -7487,6 +8548,7 @@ Generated by [AVA](https://avajs.dev). * The Log Analytics workspace ID.␊ */␊ workspaceId?: string␊ + name: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -7495,6 +8557,8 @@ Generated by [AVA](https://avajs.dev). export type ClustersExtensionsChildResource1 = ({␊ apiVersion: "2018-06-01-preview"␊ type: "extensions"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ name: "clustermonitoring"␊ @@ -7506,6 +8570,7 @@ Generated by [AVA](https://avajs.dev). * The cluster monitor workspace ID.␊ */␊ workspaceId?: string␊ + name: unknown␊ [k: string]: unknown␊ } | {␊ name: "azureMonitor"␊ @@ -7521,6 +8586,7 @@ Generated by [AVA](https://avajs.dev). * The Log Analytics workspace ID.␊ */␊ workspaceId?: string␊ + name: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -7529,6 +8595,8 @@ Generated by [AVA](https://avajs.dev). export type ClustersExtensions1 = ({␊ apiVersion: "2018-06-01-preview"␊ type: "Microsoft.HDInsight/clusters/extensions"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ name: string␊ @@ -7540,6 +8608,7 @@ Generated by [AVA](https://avajs.dev). * The cluster monitor workspace ID.␊ */␊ workspaceId?: string␊ + name: unknown␊ [k: string]: unknown␊ } | {␊ name: string␊ @@ -7555,6 +8624,7 @@ Generated by [AVA](https://avajs.dev). * The Log Analytics workspace ID.␊ */␊ workspaceId?: string␊ + name: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -7569,6 +8639,8 @@ Generated by [AVA](https://avajs.dev). * Status of the custom alert.␊ */␊ isEnabled: (boolean | string)␊ + allowlistValues: unknown␊ + isEnabled: unknown␊ [k: string]: unknown␊ } & (ConnectionToIpNotAllowed | LocalUserNotAllowed | ProcessNotAllowed))␊ /**␊ @@ -7587,6 +8659,9 @@ Generated by [AVA](https://avajs.dev). * The minimum threshold.␊ */␊ minThreshold: (number | string)␊ + isEnabled: unknown␊ + maxThreshold: unknown␊ + minThreshold: unknown␊ [k: string]: unknown␊ } & TimeWindowCustomAlertRule)␊ /**␊ @@ -7598,6 +8673,8 @@ Generated by [AVA](https://avajs.dev). * The time window size in iso8601 format.␊ */␊ timeWindowSize: string␊ + ruleType: unknown␊ + timeWindowSize: unknown␊ [k: string]: unknown␊ } & (ActiveConnectionsNotInAllowedRange | AmqpC2DMessagesNotInAllowedRange | MqttC2DMessagesNotInAllowedRange | HttpC2DMessagesNotInAllowedRange | AmqpC2DRejectedMessagesNotInAllowedRange | MqttC2DRejectedMessagesNotInAllowedRange | HttpC2DRejectedMessagesNotInAllowedRange | AmqpD2CMessagesNotInAllowedRange | MqttD2CMessagesNotInAllowedRange | HttpD2CMessagesNotInAllowedRange | DirectMethodInvokesNotInAllowedRange | FailedLocalLoginsNotInAllowedRange | FileUploadsNotInAllowedRange | QueuePurgesNotInAllowedRange | TwinUpdatesNotInAllowedRange | UnauthorizedOperationsNotInAllowedRange))␊ /**␊ @@ -7633,6 +8710,11 @@ Generated by [AVA](https://avajs.dev). * Azure resource Id of the workspace the machine is attached to␊ */␊ workspaceId: string␊ + machineName: unknown␊ + source: unknown␊ + sourceComputerId: unknown␊ + vmuuid: unknown␊ + workspaceId: unknown␊ [k: string]: unknown␊ } & OnPremiseSqlResourceDetails)␊ /**␊ @@ -7647,6 +8729,8 @@ Generated by [AVA](https://avajs.dev). * Status of the custom alert.␊ */␊ isEnabled: (boolean | string)␊ + allowlistValues: unknown␊ + isEnabled: unknown␊ [k: string]: unknown␊ } & (ConnectionToIpNotAllowed1 | ConnectionFromIpNotAllowed | LocalUserNotAllowed1 | ProcessNotAllowed1))␊ /**␊ @@ -7665,6 +8749,9 @@ Generated by [AVA](https://avajs.dev). * The minimum threshold.␊ */␊ minThreshold: (number | string)␊ + isEnabled: unknown␊ + maxThreshold: unknown␊ + minThreshold: unknown␊ [k: string]: unknown␊ } & TimeWindowCustomAlertRule1)␊ /**␊ @@ -7676,6 +8763,8 @@ Generated by [AVA](https://avajs.dev). * The time window size in iso8601 format.␊ */␊ timeWindowSize: string␊ + ruleType: unknown␊ + timeWindowSize: unknown␊ [k: string]: unknown␊ } & (ActiveConnectionsNotInAllowedRange1 | AmqpC2DMessagesNotInAllowedRange1 | MqttC2DMessagesNotInAllowedRange1 | HttpC2DMessagesNotInAllowedRange1 | AmqpC2DRejectedMessagesNotInAllowedRange1 | MqttC2DRejectedMessagesNotInAllowedRange1 | HttpC2DRejectedMessagesNotInAllowedRange1 | AmqpD2CMessagesNotInAllowedRange1 | MqttD2CMessagesNotInAllowedRange1 | HttpD2CMessagesNotInAllowedRange1 | DirectMethodInvokesNotInAllowedRange1 | FailedLocalLoginsNotInAllowedRange1 | FileUploadsNotInAllowedRange1 | QueuePurgesNotInAllowedRange1 | TwinUpdatesNotInAllowedRange1 | UnauthorizedOperationsNotInAllowedRange1))␊ /**␊ @@ -7705,6 +8794,11 @@ Generated by [AVA](https://avajs.dev). * Azure resource Id of the workspace the machine is attached to␊ */␊ workspaceId: string␊ + machineName: unknown␊ + source: unknown␊ + sourceComputerId: unknown␊ + vmuuid: unknown␊ + workspaceId: unknown␊ [k: string]: unknown␊ } & OnPremiseSqlResourceDetails1)␊ /**␊ @@ -7787,6 +8881,7 @@ Generated by [AVA](https://avajs.dev). url: {␊ [k: string]: unknown␊ }␊ + url: unknown␊ [k: string]: unknown␊ } & (WebAnonymousAuthentication | WebBasicAuthentication | WebClientCertificateAuthentication))␊ /**␊ @@ -7827,6 +8922,7 @@ Generated by [AVA](https://avajs.dev). structure?: {␊ [k: string]: unknown␊ }␊ + linkedServiceName: unknown␊ [k: string]: unknown␊ } & (AmazonS3Dataset | AzureBlobDataset | AzureTableDataset | AzureSqlTableDataset | AzureSqlDWTableDataset | CassandraTableDataset | DocumentDbCollectionDataset | DynamicsEntityDataset | AzureDataLakeStoreDataset | FileShareDataset | MongoDbCollectionDataset | ODataResourceDataset | OracleTableDataset | AzureMySqlTableDataset | RelationalTableDataset | SalesforceObjectDataset | SapCloudForCustomerResourceDataset | SapEccResourceDataset | SqlServerTableDataset | WebTableDataset | AzureSearchIndexDataset | HttpDataset | AmazonMWSObjectDataset | AzurePostgreSqlTableDataset | ConcurObjectDataset | CouchbaseTableDataset | DrillTableDataset | EloquaObjectDataset | GoogleBigQueryObjectDataset | GreenplumTableDataset | HBaseObjectDataset | HiveObjectDataset | HubspotObjectDataset | ImpalaObjectDataset | JiraObjectDataset | MagentoObjectDataset | MariaDBTableDataset | MarketoObjectDataset | PaypalObjectDataset | PhoenixObjectDataset | PrestoObjectDataset | QuickBooksObjectDataset | ServiceNowObjectDataset | ShopifyObjectDataset | SparkObjectDataset | SquareObjectDataset | XeroObjectDataset | ZohoObjectDataset | NetezzaTableDataset | VerticaTableDataset | SalesforceMarketingCloudObjectDataset | ResponsysObjectDataset))␊ /**␊ @@ -7867,6 +8963,7 @@ Generated by [AVA](https://avajs.dev). * Activity name.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ } & (ControlActivity | ExecutionActivity))␊ /**␊ @@ -7874,6 +8971,7 @@ Generated by [AVA](https://avajs.dev). */␊ export type ControlActivity = ({␊ type: "Container"␊ + type: unknown␊ [k: string]: unknown␊ } & (ExecutePipelineActivity | IfConditionActivity | ForEachActivity | WaitActivity | UntilActivity | FilterActivity))␊ /**␊ @@ -7889,6 +8987,7 @@ Generated by [AVA](https://avajs.dev). */␊ policy?: (ActivityPolicy | string)␊ type: "Execution"␊ + type: unknown␊ [k: string]: unknown␊ } & (CopyActivity | HDInsightHiveActivity | HDInsightPigActivity | HDInsightMapReduceActivity | HDInsightStreamingActivity | HDInsightSparkActivity | ExecuteSSISPackageActivity | CustomActivity | SqlServerStoredProcedureActivity | LookupActivity | WebActivity | GetMetadataActivity | AzureMLBatchExecutionActivity | AzureMLUpdateResourceActivity | DataLakeAnalyticsUSQLActivity | DatabricksNotebookActivity))␊ /**␊ @@ -7933,6 +9032,10 @@ Generated by [AVA](https://avajs.dev). * Root folder.␊ */␊ rootFolder: string␊ + accountName: unknown␊ + collaborationBranch: unknown␊ + repositoryName: unknown␊ + rootFolder: unknown␊ [k: string]: unknown␊ } & (FactoryVSTSConfiguration1 | FactoryGitHubConfiguration))␊ /**␊ @@ -8015,6 +9118,7 @@ Generated by [AVA](https://avajs.dev). url: {␊ [k: string]: unknown␊ }␊ + url: unknown␊ [k: string]: unknown␊ } & (WebAnonymousAuthentication1 | WebBasicAuthentication1 | WebClientCertificateAuthentication1))␊ /**␊ @@ -8065,6 +9169,7 @@ Generated by [AVA](https://avajs.dev). structure?: {␊ [k: string]: unknown␊ }␊ + linkedServiceName: unknown␊ [k: string]: unknown␊ } & (AmazonS3Dataset1 | AvroDataset | ExcelDataset | ParquetDataset | DelimitedTextDataset | JsonDataset | XmlDataset | OrcDataset | BinaryDataset | AzureBlobDataset1 | AzureTableDataset1 | AzureSqlTableDataset1 | AzureSqlMITableDataset | AzureSqlDWTableDataset1 | CassandraTableDataset1 | CustomDataset | CosmosDbSqlApiCollectionDataset | DocumentDbCollectionDataset1 | DynamicsEntityDataset1 | DynamicsCrmEntityDataset | CommonDataServiceForAppsEntityDataset | AzureDataLakeStoreDataset1 | AzureBlobFSDataset | Office365Dataset | FileShareDataset1 | MongoDbCollectionDataset1 | MongoDbAtlasCollectionDataset | MongoDbV2CollectionDataset | CosmosDbMongoDbApiCollectionDataset | ODataResourceDataset1 | OracleTableDataset1 | AmazonRdsForOracleTableDataset | TeradataTableDataset | AzureMySqlTableDataset1 | AmazonRedshiftTableDataset | Db2TableDataset | RelationalTableDataset1 | InformixTableDataset | OdbcTableDataset | MySqlTableDataset | PostgreSqlTableDataset | MicrosoftAccessTableDataset | SalesforceObjectDataset1 | SalesforceServiceCloudObjectDataset | SybaseTableDataset | SapBwCubeDataset | SapCloudForCustomerResourceDataset1 | SapEccResourceDataset1 | SapHanaTableDataset | SapOpenHubTableDataset | SqlServerTableDataset1 | AmazonRdsForSqlServerTableDataset | RestResourceDataset | SapTableResourceDataset | SapOdpResourceDataset | WebTableDataset1 | AzureSearchIndexDataset1 | HttpDataset1 | AmazonMWSObjectDataset1 | AzurePostgreSqlTableDataset1 | ConcurObjectDataset1 | CouchbaseTableDataset1 | DrillTableDataset1 | EloquaObjectDataset1 | GoogleBigQueryObjectDataset1 | GreenplumTableDataset1 | HBaseObjectDataset1 | HiveObjectDataset1 | HubspotObjectDataset1 | ImpalaObjectDataset1 | JiraObjectDataset1 | MagentoObjectDataset1 | MariaDBTableDataset1 | AzureMariaDBTableDataset | MarketoObjectDataset1 | PaypalObjectDataset1 | PhoenixObjectDataset1 | PrestoObjectDataset1 | QuickBooksObjectDataset1 | ServiceNowObjectDataset1 | ShopifyObjectDataset1 | SparkObjectDataset1 | SquareObjectDataset1 | XeroObjectDataset1 | ZohoObjectDataset1 | NetezzaTableDataset1 | VerticaTableDataset1 | SalesforceMarketingCloudObjectDataset1 | ResponsysObjectDataset1 | DynamicsAXResourceDataset | OracleServiceCloudObjectDataset | AzureDataExplorerTableDataset | GoogleAdWordsObjectDataset | SnowflakeDataset | SharePointOnlineListResourceDataset | AzureDatabricksDeltaLakeDataset))␊ /**␊ @@ -8147,6 +9252,7 @@ Generated by [AVA](https://avajs.dev). * Activity user properties.␊ */␊ userProperties?: (UserProperty[] | string)␊ + name: unknown␊ [k: string]: unknown␊ } & (ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity))␊ /**␊ @@ -8154,6 +9260,7 @@ Generated by [AVA](https://avajs.dev). */␊ export type ControlActivity1 = ({␊ type: "Container"␊ + type: unknown␊ [k: string]: unknown␊ } & (ExecutePipelineActivity1 | IfConditionActivity1 | SwitchActivity | ForEachActivity1 | WaitActivity1 | FailActivity | UntilActivity1 | ValidationActivity | FilterActivity1 | SetVariableActivity | AppendVariableActivity | WebHookActivity))␊ /**␊ @@ -8169,6 +9276,7 @@ Generated by [AVA](https://avajs.dev). */␊ policy?: (ActivityPolicy1 | string)␊ type: "Execution"␊ + type: unknown␊ [k: string]: unknown␊ } & (CopyActivity1 | HDInsightHiveActivity1 | HDInsightPigActivity1 | HDInsightMapReduceActivity1 | HDInsightStreamingActivity1 | HDInsightSparkActivity1 | ExecuteSSISPackageActivity1 | CustomActivity1 | SqlServerStoredProcedureActivity1 | DeleteActivity | AzureDataExplorerCommandActivity | LookupActivity1 | WebActivity1 | GetMetadataActivity1 | AzureMLBatchExecutionActivity1 | AzureMLUpdateResourceActivity1 | AzureMLExecutePipelineActivity | DataLakeAnalyticsUSQLActivity1 | DatabricksNotebookActivity1 | DatabricksSparkJarActivity | DatabricksSparkPythonActivity | AzureFunctionActivity | ExecuteDataFlowActivity | ScriptActivity))␊ /**␊ @@ -8348,6 +9456,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "TabularSource"␊ + type: unknown␊ [k: string]: unknown␊ } & (AzureTableSource | InformixSource | Db2Source | OdbcSource | MySqlSource | PostgreSqlSource | SybaseSource | SapBwSource | SalesforceSource | SapCloudForCustomerSource | SapEccSource | SapHanaSource | SapOpenHubSource | SapOdpSource | SapTableSource | SqlSource | SqlServerSource | AmazonRdsForSqlServerSource | AzureSqlSource | SqlMISource | SqlDWSource | AzureMySqlSource | TeradataSource | CassandraSource | AmazonMWSSource | AzurePostgreSqlSource | ConcurSource | CouchbaseSource | DrillSource | EloquaSource | GoogleBigQuerySource | GreenplumSource | HBaseSource | HiveSource | HubspotSource | ImpalaSource | JiraSource | MagentoSource | MariaDBSource | AzureMariaDBSource | MarketoSource | PaypalSource | PhoenixSource | PrestoSource | QuickBooksSource | ServiceNowSource | ShopifySource | SparkSource | SquareSource | XeroSource | ZohoSource | NetezzaSource | VerticaSource | SalesforceMarketingCloudSource | ResponsysSource | DynamicsAXSource | OracleServiceCloudSource | GoogleAdWordsSource | AmazonRedshiftSource))␊ /**␊ @@ -8397,6 +9506,7 @@ Generated by [AVA](https://avajs.dev). */␊ pipelines?: (TriggerPipelineReference1[] | string)␊ type: "MultiplePipelineTrigger"␊ + type: unknown␊ [k: string]: unknown␊ } & (ScheduleTrigger | BlobTrigger | BlobEventsTrigger | CustomEventsTrigger))␊ /**␊ @@ -8414,6 +9524,8 @@ Generated by [AVA](https://avajs.dev). */␊ referenceTrigger: (TriggerReference | string)␊ type: "TriggerDependencyReference"␊ + referenceTrigger: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & TumblingWindowTriggerDependencyReference)␊ /**␊ @@ -8718,6 +9830,9 @@ Generated by [AVA](https://avajs.dev). * the criteria time aggregation types.␊ */␊ timeAggregation: (("Average" | "Count" | "Minimum" | "Maximum" | "Total") | string)␊ + metricName: unknown␊ + name: unknown␊ + timeAggregation: unknown␊ [k: string]: unknown␊ } & (MetricCriteria | DynamicMetricCriteria))␊ /**␊ @@ -8732,6 +9847,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfigChildResource = ({␊ apiVersion: "2015-08-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -8758,6 +9875,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -8784,6 +9904,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -8815,6 +9938,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -8846,6 +9972,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ aadClientId?: string␊ @@ -8985,6 +10114,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the action to take when an unauthenticated client attempts to access the app.␊ */␊ unauthenticatedClientAction?: (("RedirectToLoginPage" | "AllowAnonymous") | string)␊ + name: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9016,6 +10146,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9042,6 +10175,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9068,6 +10204,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -9076,6 +10215,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfig = ({␊ apiVersion: "2015-08-01"␊ type: "Microsoft.Web/sites/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -9102,6 +10243,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9128,6 +10272,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9159,6 +10306,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9190,6 +10340,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ aadClientId?: string␊ @@ -9329,6 +10482,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the action to take when an unauthenticated client attempts to access the app.␊ */␊ unauthenticatedClientAction?: (("RedirectToLoginPage" | "AllowAnonymous") | string)␊ + name: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9355,6 +10509,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9381,6 +10538,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -9389,6 +10549,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfigChildResource = ({␊ apiVersion: "2015-08-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -9415,6 +10577,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9446,6 +10611,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9477,6 +10645,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ aadClientId?: string␊ @@ -9616,6 +10787,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the action to take when an unauthenticated client attempts to access the app.␊ */␊ unauthenticatedClientAction?: (("RedirectToLoginPage" | "AllowAnonymous") | string)␊ + name: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9647,6 +10819,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9673,6 +10848,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9699,6 +10877,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -9707,6 +10888,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfig = ({␊ apiVersion: "2015-08-01"␊ type: "Microsoft.Web/sites/slots/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -9733,6 +10916,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9764,6 +10950,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9795,6 +10984,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ aadClientId?: string␊ @@ -9934,6 +11126,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the action to take when an unauthenticated client attempts to access the app.␊ */␊ unauthenticatedClientAction?: (("RedirectToLoginPage" | "AllowAnonymous") | string)␊ + name: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9960,6 +11153,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -9986,6 +11182,9 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -9994,6 +11193,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfigChildResource1 = ({␊ apiVersion: "2016-08-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -10007,6 +11208,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10018,6 +11221,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10029,6 +11234,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10042,6 +11249,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair1␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10053,6 +11262,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10066,6 +11277,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10077,6 +11290,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10089,6 +11304,8 @@ Generated by [AVA](https://avajs.dev). * This is valid for all deployment slots in an app.␊ */␊ properties: (SlotConfigNames | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10100,6 +11317,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -10108,6 +11327,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfig1 = ({␊ apiVersion: "2016-08-01"␊ type: "Microsoft.Web/sites/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -10121,6 +11342,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10132,6 +11355,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10143,6 +11368,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10156,6 +11383,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair1␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10167,6 +11396,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10178,6 +11409,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10190,6 +11423,8 @@ Generated by [AVA](https://avajs.dev). * This is valid for all deployment slots in an app.␊ */␊ properties: (SlotConfigNames | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10201,6 +11436,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -10209,6 +11446,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfigChildResource1 = ({␊ apiVersion: "2016-08-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -10222,6 +11461,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10233,6 +11474,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10244,6 +11487,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10257,6 +11502,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair1␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10268,6 +11515,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10281,6 +11530,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10292,6 +11543,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10303,6 +11556,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -10311,6 +11566,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfig1 = ({␊ apiVersion: "2016-08-01"␊ type: "Microsoft.Web/sites/slots/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -10324,6 +11581,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10335,6 +11594,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10346,6 +11607,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10359,6 +11622,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair1␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10370,6 +11635,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10381,6 +11648,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10392,6 +11661,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -10400,6 +11671,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfigChildResource2 = ({␊ apiVersion: "2018-02-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -10413,6 +11686,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10424,6 +11699,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10437,6 +11714,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10448,6 +11727,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10461,6 +11742,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair2␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10472,6 +11755,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10485,6 +11770,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10496,6 +11783,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10509,6 +11798,8 @@ Generated by [AVA](https://avajs.dev). * This is valid for all deployment slots in an app.␊ */␊ properties: (SlotConfigNames1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10520,6 +11811,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -10528,6 +11821,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfig2 = ({␊ apiVersion: "2018-02-01"␊ type: "Microsoft.Web/sites/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -10541,6 +11836,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10552,6 +11849,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10565,6 +11864,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10576,6 +11877,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10589,6 +11892,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair2␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10600,6 +11905,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10611,6 +11918,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10624,6 +11933,8 @@ Generated by [AVA](https://avajs.dev). * This is valid for all deployment slots in an app.␊ */␊ properties: (SlotConfigNames1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10635,6 +11946,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -10643,6 +11956,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfigChildResource2 = ({␊ apiVersion: "2018-02-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -10656,6 +11971,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10667,6 +11984,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10680,6 +11999,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10691,6 +12012,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10704,6 +12027,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair2␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10715,6 +12040,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10728,6 +12055,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10739,6 +12068,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10750,6 +12081,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -10758,6 +12091,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfig2 = ({␊ apiVersion: "2018-02-01"␊ type: "Microsoft.Web/sites/slots/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -10771,6 +12106,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10782,6 +12119,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10795,6 +12134,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10806,6 +12147,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10819,6 +12162,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair2␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10830,6 +12175,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10841,6 +12188,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10852,6 +12201,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -10860,6 +12211,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfigChildResource3 = ({␊ apiVersion: "2018-11-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -10873,6 +12226,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10884,6 +12239,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10897,6 +12254,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue1␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10908,6 +12267,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10921,6 +12282,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair3␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10932,6 +12295,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10945,6 +12310,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10956,6 +12323,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10969,6 +12338,8 @@ Generated by [AVA](https://avajs.dev). * This is valid for all deployment slots in an app.␊ */␊ properties: (SlotConfigNames2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -10980,6 +12351,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -10988,6 +12361,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfig3 = ({␊ apiVersion: "2018-11-01"␊ type: "Microsoft.Web/sites/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -11001,6 +12376,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11012,6 +12389,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11025,6 +12404,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue1␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11036,6 +12417,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11049,6 +12432,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair3␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11060,6 +12445,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11071,6 +12458,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11084,6 +12473,8 @@ Generated by [AVA](https://avajs.dev). * This is valid for all deployment slots in an app.␊ */␊ properties: (SlotConfigNames2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11095,6 +12486,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -11103,6 +12496,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfigChildResource3 = ({␊ apiVersion: "2018-11-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -11116,6 +12511,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11127,6 +12524,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11140,6 +12539,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue1␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11151,6 +12552,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11164,6 +12567,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair3␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11175,6 +12580,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11188,6 +12595,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11199,6 +12608,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11210,6 +12621,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -11218,6 +12631,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfig3 = ({␊ apiVersion: "2018-11-01"␊ type: "Microsoft.Web/sites/slots/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -11231,6 +12646,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11242,6 +12659,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11255,6 +12674,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue1␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11266,6 +12687,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11279,6 +12702,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair3␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11290,6 +12715,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11301,6 +12728,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11312,6 +12741,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -11320,6 +12751,8 @@ Generated by [AVA](https://avajs.dev). export type SitesBasicPublishingCredentialsPoliciesChildResource = ({␊ apiVersion: "2019-08-01"␊ type: "basicPublishingCredentialsPolicies"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -11331,6 +12764,8 @@ Generated by [AVA](https://avajs.dev). * CsmPublishingCredentialsPoliciesEntity resource specific properties␊ */␊ properties: (CsmPublishingCredentialsPoliciesEntityProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11342,6 +12777,8 @@ Generated by [AVA](https://avajs.dev). * CsmPublishingCredentialsPoliciesEntity resource specific properties␊ */␊ properties: (CsmPublishingCredentialsPoliciesEntityProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -11350,6 +12787,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfigChildResource4 = ({␊ apiVersion: "2019-08-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -11363,6 +12802,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11374,6 +12815,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11387,6 +12830,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue2␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11398,6 +12843,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11411,6 +12858,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair4␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11422,6 +12871,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11435,6 +12886,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11446,6 +12899,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11459,6 +12914,8 @@ Generated by [AVA](https://avajs.dev). * This is valid for all deployment slots in an app.␊ */␊ properties: (SlotConfigNames3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11470,6 +12927,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -11478,6 +12937,8 @@ Generated by [AVA](https://avajs.dev). export type SitesBasicPublishingCredentialsPolicies = ({␊ apiVersion: "2019-08-01"␊ type: "Microsoft.Web/sites/basicPublishingCredentialsPolicies"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & {␊ /**␊ @@ -11489,6 +12950,8 @@ Generated by [AVA](https://avajs.dev). * CsmPublishingCredentialsPoliciesEntity resource specific properties␊ */␊ properties: (CsmPublishingCredentialsPoliciesEntityProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ })␊ /**␊ @@ -11497,6 +12960,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfig4 = ({␊ apiVersion: "2019-08-01"␊ type: "Microsoft.Web/sites/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -11510,6 +12975,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11521,6 +12988,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11534,6 +13003,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue2␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11545,6 +13016,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11558,6 +13031,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair4␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11569,6 +13044,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11580,6 +13057,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11593,6 +13072,8 @@ Generated by [AVA](https://avajs.dev). * This is valid for all deployment slots in an app.␊ */␊ properties: (SlotConfigNames3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11604,6 +13085,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -11612,6 +13095,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfigChildResource4 = ({␊ apiVersion: "2019-08-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -11625,6 +13110,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11636,6 +13123,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11649,6 +13138,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue2␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11660,6 +13151,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11673,6 +13166,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair4␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11684,6 +13179,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11697,6 +13194,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11708,6 +13207,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11719,6 +13220,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -11727,6 +13230,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfig4 = ({␊ apiVersion: "2019-08-01"␊ type: "Microsoft.Web/sites/slots/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -11740,6 +13245,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11751,6 +13258,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11764,6 +13273,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue2␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11775,6 +13286,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11788,6 +13301,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair4␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11799,6 +13314,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11810,6 +13327,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11821,6 +13340,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -11829,6 +13350,8 @@ Generated by [AVA](https://avajs.dev). export type SitesBasicPublishingCredentialsPoliciesChildResource1 = ({␊ apiVersion: "2020-06-01"␊ type: "basicPublishingCredentialsPolicies"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -11840,6 +13363,8 @@ Generated by [AVA](https://avajs.dev). * CsmPublishingCredentialsPoliciesEntity resource specific properties␊ */␊ properties: (CsmPublishingCredentialsPoliciesEntityProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11851,6 +13376,8 @@ Generated by [AVA](https://avajs.dev). * CsmPublishingCredentialsPoliciesEntity resource specific properties␊ */␊ properties: (CsmPublishingCredentialsPoliciesEntityProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -11859,6 +13386,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfigChildResource5 = ({␊ apiVersion: "2020-06-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -11872,6 +13401,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11883,6 +13414,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11894,6 +13427,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettingsV2 resource specific properties␊ */␊ properties: (SiteAuthSettingsV2Properties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11907,6 +13442,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue3␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11918,6 +13455,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11931,6 +13470,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair5␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11942,6 +13483,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11955,6 +13498,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11966,6 +13511,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11979,6 +13526,8 @@ Generated by [AVA](https://avajs.dev). * This is valid for all deployment slots in an app.␊ */␊ properties: (SlotConfigNames4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -11990,6 +13539,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -11998,6 +13549,8 @@ Generated by [AVA](https://avajs.dev). export type SitesBasicPublishingCredentialsPolicies1 = ({␊ apiVersion: "2020-06-01"␊ type: "Microsoft.Web/sites/basicPublishingCredentialsPolicies"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & {␊ /**␊ @@ -12009,6 +13562,8 @@ Generated by [AVA](https://avajs.dev). * CsmPublishingCredentialsPoliciesEntity resource specific properties␊ */␊ properties: (CsmPublishingCredentialsPoliciesEntityProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ })␊ /**␊ @@ -12017,6 +13572,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfig5 = ({␊ apiVersion: "2020-06-01"␊ type: "Microsoft.Web/sites/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -12030,6 +13587,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12041,6 +13600,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12052,6 +13613,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettingsV2 resource specific properties␊ */␊ properties: (SiteAuthSettingsV2Properties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12065,6 +13628,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue3␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12076,6 +13641,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12089,6 +13656,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair5␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12100,6 +13669,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12111,6 +13682,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12124,6 +13697,8 @@ Generated by [AVA](https://avajs.dev). * This is valid for all deployment slots in an app.␊ */␊ properties: (SlotConfigNames4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12135,6 +13710,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -12143,6 +13720,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfigChildResource5 = ({␊ apiVersion: "2020-06-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -12156,6 +13735,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12167,6 +13748,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12178,6 +13761,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettingsV2 resource specific properties␊ */␊ properties: (SiteAuthSettingsV2Properties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12191,6 +13776,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue3␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12202,6 +13789,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12215,6 +13804,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair5␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12226,6 +13817,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12239,6 +13832,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12250,6 +13845,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12261,6 +13858,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -12269,6 +13868,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfig5 = ({␊ apiVersion: "2020-06-01"␊ type: "Microsoft.Web/sites/slots/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -12282,6 +13883,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12293,6 +13896,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12304,6 +13909,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettingsV2 resource specific properties␊ */␊ properties: (SiteAuthSettingsV2Properties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12317,6 +13924,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue3␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12328,6 +13937,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12341,6 +13952,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair5␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12352,6 +13965,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12363,6 +13978,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12374,6 +13991,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -12382,6 +14001,8 @@ Generated by [AVA](https://avajs.dev). export type SitesBasicPublishingCredentialsPoliciesChildResource2 = ({␊ apiVersion: "2020-09-01"␊ type: "basicPublishingCredentialsPolicies"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -12397,6 +14018,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12412,6 +14035,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -12420,6 +14045,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfigChildResource6 = ({␊ apiVersion: "2020-09-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -12437,6 +14064,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12452,6 +14081,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12467,6 +14098,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12484,6 +14117,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12499,6 +14134,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12516,6 +14153,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12531,6 +14170,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12548,6 +14189,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12563,6 +14206,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12580,6 +14225,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12595,6 +14242,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -12603,6 +14252,8 @@ Generated by [AVA](https://avajs.dev). export type SitesBasicPublishingCredentialsPolicies2 = ({␊ apiVersion: "2020-09-01"␊ type: "Microsoft.Web/sites/basicPublishingCredentialsPolicies"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & {␊ /**␊ @@ -12618,6 +14269,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ })␊ /**␊ @@ -12626,6 +14279,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfig6 = ({␊ apiVersion: "2020-09-01"␊ type: "Microsoft.Web/sites/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -12643,6 +14298,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12658,6 +14315,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12673,6 +14332,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12690,6 +14351,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12705,6 +14368,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12722,6 +14387,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12737,6 +14404,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12752,6 +14421,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12769,6 +14440,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12784,6 +14457,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -12792,6 +14467,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfigChildResource6 = ({␊ apiVersion: "2020-09-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -12809,6 +14486,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12824,6 +14503,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12839,6 +14520,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12856,6 +14539,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12871,6 +14556,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12888,6 +14575,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12903,6 +14592,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12920,6 +14611,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12935,6 +14628,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12950,6 +14645,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -12958,6 +14655,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfig6 = ({␊ apiVersion: "2020-09-01"␊ type: "Microsoft.Web/sites/slots/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -12975,6 +14674,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -12990,6 +14691,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13005,6 +14708,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13022,6 +14727,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13037,6 +14744,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13054,6 +14763,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13069,6 +14780,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13084,6 +14797,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13099,6 +14814,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData5 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -13107,6 +14824,8 @@ Generated by [AVA](https://avajs.dev). export type SitesBasicPublishingCredentialsPoliciesChildResource3 = ({␊ apiVersion: "2020-10-01"␊ type: "basicPublishingCredentialsPolicies"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -13122,6 +14841,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13137,6 +14858,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -13145,6 +14868,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfigChildResource7 = ({␊ apiVersion: "2020-10-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -13162,6 +14887,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13177,6 +14904,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13192,6 +14921,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13209,6 +14940,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13224,6 +14957,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13241,6 +14976,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13256,6 +14993,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13273,6 +15012,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13288,6 +15029,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13305,6 +15048,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13320,6 +15065,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -13328,6 +15075,8 @@ Generated by [AVA](https://avajs.dev). export type SitesBasicPublishingCredentialsPolicies3 = ({␊ apiVersion: "2020-10-01"␊ type: "Microsoft.Web/sites/basicPublishingCredentialsPolicies"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & {␊ /**␊ @@ -13343,6 +15092,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ })␊ /**␊ @@ -13351,6 +15102,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfig7 = ({␊ apiVersion: "2020-10-01"␊ type: "Microsoft.Web/sites/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -13368,6 +15121,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13383,6 +15138,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13398,6 +15155,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13415,6 +15174,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13430,6 +15191,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13447,6 +15210,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13462,6 +15227,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13477,6 +15244,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13494,6 +15263,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13509,6 +15280,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -13517,6 +15290,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfigChildResource7 = ({␊ apiVersion: "2020-10-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -13534,6 +15309,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13549,6 +15326,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13564,6 +15343,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13581,6 +15362,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13596,6 +15379,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13613,6 +15398,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13628,6 +15415,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13645,6 +15434,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13660,6 +15451,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13675,6 +15468,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -13683,6 +15478,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfig7 = ({␊ apiVersion: "2020-10-01"␊ type: "Microsoft.Web/sites/slots/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -13700,6 +15497,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13715,6 +15514,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13730,6 +15531,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13747,6 +15550,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13762,6 +15567,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13779,6 +15586,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13794,6 +15603,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13809,6 +15620,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13824,6 +15637,8 @@ Generated by [AVA](https://avajs.dev). * Metadata pertaining to creation and last modification of the resource.␊ */␊ systemData?: (SystemData6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -13832,6 +15647,8 @@ Generated by [AVA](https://avajs.dev). export type SitesBasicPublishingCredentialsPoliciesChildResource4 = ({␊ apiVersion: "2020-12-01"␊ type: "basicPublishingCredentialsPolicies"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -13843,6 +15660,8 @@ Generated by [AVA](https://avajs.dev). * CsmPublishingCredentialsPoliciesEntity resource specific properties␊ */␊ properties: (CsmPublishingCredentialsPoliciesEntityProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13854,6 +15673,8 @@ Generated by [AVA](https://avajs.dev). * CsmPublishingCredentialsPoliciesEntity resource specific properties␊ */␊ properties: (CsmPublishingCredentialsPoliciesEntityProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -13862,6 +15683,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfigChildResource8 = ({␊ apiVersion: "2020-12-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -13875,6 +15698,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13886,6 +15711,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties7 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13897,6 +15724,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettingsV2 resource specific properties␊ */␊ properties: (SiteAuthSettingsV2Properties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13910,6 +15739,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue6␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13921,6 +15752,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties8 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13934,6 +15767,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair8␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13945,6 +15780,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties8 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13958,6 +15795,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13969,6 +15808,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties7 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13982,6 +15823,8 @@ Generated by [AVA](https://avajs.dev). * This is valid for all deployment slots in an app.␊ */␊ properties: (SlotConfigNames7 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -13993,6 +15836,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig8 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -14001,6 +15846,8 @@ Generated by [AVA](https://avajs.dev). export type SitesBasicPublishingCredentialsPolicies4 = ({␊ apiVersion: "2020-12-01"␊ type: "Microsoft.Web/sites/basicPublishingCredentialsPolicies"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & {␊ /**␊ @@ -14012,6 +15859,8 @@ Generated by [AVA](https://avajs.dev). * CsmPublishingCredentialsPoliciesEntity resource specific properties␊ */␊ properties: (CsmPublishingCredentialsPoliciesEntityProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ })␊ /**␊ @@ -14020,6 +15869,8 @@ Generated by [AVA](https://avajs.dev). export type SitesConfig8 = ({␊ apiVersion: "2020-12-01"␊ type: "Microsoft.Web/sites/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -14033,6 +15884,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14044,6 +15897,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties7 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14055,6 +15910,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettingsV2 resource specific properties␊ */␊ properties: (SiteAuthSettingsV2Properties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14068,6 +15925,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue6␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14079,6 +15938,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties8 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14092,6 +15953,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair8␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14103,6 +15966,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties8 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14114,6 +15979,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties7 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14127,6 +15994,8 @@ Generated by [AVA](https://avajs.dev). * This is valid for all deployment slots in an app.␊ */␊ properties: (SlotConfigNames7 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14138,6 +16007,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig8 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -14146,6 +16017,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsBasicPublishingCredentialsPoliciesChildResource = ({␊ apiVersion: "2020-12-01"␊ type: "basicPublishingCredentialsPolicies"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -14157,6 +16030,8 @@ Generated by [AVA](https://avajs.dev). * CsmPublishingCredentialsPoliciesEntity resource specific properties␊ */␊ properties: (CsmPublishingCredentialsPoliciesEntityProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14168,6 +16043,8 @@ Generated by [AVA](https://avajs.dev). * CsmPublishingCredentialsPoliciesEntity resource specific properties␊ */␊ properties: (CsmPublishingCredentialsPoliciesEntityProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -14176,6 +16053,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfigChildResource8 = ({␊ apiVersion: "2020-12-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -14189,6 +16068,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14200,6 +16081,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties7 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14211,6 +16094,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettingsV2 resource specific properties␊ */␊ properties: (SiteAuthSettingsV2Properties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14224,6 +16109,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue6␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14235,6 +16122,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties8 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14248,6 +16137,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair8␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14259,6 +16150,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties8 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14272,6 +16165,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14283,6 +16178,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties7 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14294,6 +16191,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig8 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -14302,6 +16201,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsBasicPublishingCredentialsPolicies = ({␊ apiVersion: "2020-12-01"␊ type: "Microsoft.Web/sites/slots/basicPublishingCredentialsPolicies"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & {␊ /**␊ @@ -14313,6 +16214,8 @@ Generated by [AVA](https://avajs.dev). * CsmPublishingCredentialsPoliciesEntity resource specific properties␊ */␊ properties: (CsmPublishingCredentialsPoliciesEntityProperties4 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ })␊ /**␊ @@ -14321,6 +16224,8 @@ Generated by [AVA](https://avajs.dev). export type SitesSlotsConfig8 = ({␊ apiVersion: "2020-12-01"␊ type: "Microsoft.Web/sites/slots/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -14334,6 +16239,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14345,6 +16252,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettings resource specific properties␊ */␊ properties: (SiteAuthSettingsProperties7 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14356,6 +16265,8 @@ Generated by [AVA](https://avajs.dev). * SiteAuthSettingsV2 resource specific properties␊ */␊ properties: (SiteAuthSettingsV2Properties3 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14369,6 +16280,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: AzureStorageInfoValue6␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14380,6 +16293,8 @@ Generated by [AVA](https://avajs.dev). * BackupRequest resource specific properties␊ */␊ properties: (BackupRequestProperties8 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14393,6 +16308,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: ConnStringValueTypePair8␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14404,6 +16321,8 @@ Generated by [AVA](https://avajs.dev). * SiteLogsConfig resource specific properties␊ */␊ properties: (SiteLogsConfigProperties8 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14415,6 +16334,8 @@ Generated by [AVA](https://avajs.dev). * PushSettings resource specific properties␊ */␊ properties: (PushSettingsProperties7 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14426,6 +16347,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of an App Service app.␊ */␊ properties: (SiteConfig8 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -14434,6 +16357,8 @@ Generated by [AVA](https://avajs.dev). export type StaticSitesConfigChildResource4 = ({␊ apiVersion: "2020-12-01"␊ type: "config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & ({␊ /**␊ @@ -14447,6 +16372,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ } | {␊ /**␊ @@ -14460,6 +16387,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }))␊ /**␊ @@ -14468,6 +16397,8 @@ Generated by [AVA](https://avajs.dev). export type StaticSitesBuildsConfig4 = ({␊ apiVersion: "2020-12-01"␊ type: "Microsoft.Web/staticSites/builds/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & {␊ /**␊ @@ -14481,6 +16412,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ })␊ /**␊ @@ -14489,6 +16422,8 @@ Generated by [AVA](https://avajs.dev). export type StaticSitesConfig4 = ({␊ apiVersion: "2020-12-01"␊ type: "Microsoft.Web/staticSites/config"␊ + apiVersion: unknown␊ + type: unknown␊ [k: string]: unknown␊ } & {␊ /**␊ @@ -14502,6 +16437,8 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ })␊ /**␊ @@ -14511,9 +16448,19 @@ Generated by [AVA](https://avajs.dev). /**␊ * Value assigned for output␊ */␊ - export type ParameterValueTypes2 = (string | boolean | number | {␊ + export type ParameterValueTypes2 = ((string & {␊ + [k: string]: unknown␊ + }) | (boolean & {␊ + [k: string]: unknown␊ + }) | (number & {␊ [k: string]: unknown␊ - } | unknown[] | null)␊ + }) | {␊ + [k: string]: unknown␊ + } | ({␊ + [k: string]: unknown␊ + } & unknown[]) | (null & {␊ + [k: string]: unknown␊ + }))␊ ␊ /**␊ * An Azure deployment template␊ @@ -14563,6 +16510,9 @@ Generated by [AVA](https://avajs.dev). outputs?: {␊ [k: string]: Output1␊ }␊ + $schema: unknown␊ + contentVersion: unknown␊ + resources: unknown␊ }␊ /**␊ * Input parameter definitions␊ @@ -14599,6 +16549,7 @@ Generated by [AVA](https://avajs.dev). * Maximum length for the string or array type parameter␊ */␊ maxLength?: number␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface FunctionNamespace {␊ @@ -14665,6 +16616,8 @@ Generated by [AVA](https://avajs.dev). * Collection of resources this resource depends on␊ */␊ dependsOn?: string[]␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface ResourceCopy {␊ @@ -14722,6 +16675,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.HealthcareApis/services"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -14768,6 +16727,7 @@ Generated by [AVA](https://avajs.dev). * An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.␊ */␊ objectId: (string | string)␊ + objectId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -14858,6 +16818,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.AppConfiguration/configurationStores"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -14902,6 +16867,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.HealthcareApis/services"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -14944,6 +16915,7 @@ Generated by [AVA](https://avajs.dev). * An object ID that is allowed access to the FHIR service.␊ */␊ objectId: (string | string)␊ + objectId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -15027,6 +16999,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -15057,6 +17034,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/FrontDoorWebApplicationFirewallPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -15123,6 +17104,10 @@ Generated by [AVA](https://avajs.dev). * Describes type of rule.␊ */␊ ruleType: (("MatchRule" | "RateLimitRule") | string)␊ + action: unknown␊ + matchConditions: unknown␊ + priority: unknown␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -15153,6 +17138,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms.␊ */␊ transforms?: (("Lowercase" | "Uppercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls")[] | string)␊ + matchValue: unknown␊ + matchVariable: unknown␊ + operator: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -15181,6 +17169,8 @@ Generated by [AVA](https://avajs.dev). * Defines the version of the rule set to use.␊ */␊ ruleSetVersion: string␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -15195,6 +17185,7 @@ Generated by [AVA](https://avajs.dev). * List of rules that will be disabled. If none specified, all rules in the group will be disabled.␊ */␊ rules?: (ManagedRuleOverride[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -15213,6 +17204,7 @@ Generated by [AVA](https://avajs.dev). * Identifier for the managed rule.␊ */␊ ruleId: string␊ + ruleId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -15265,6 +17257,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/frontDoors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -15606,6 +17602,7 @@ Generated by [AVA](https://avajs.dev). * Protocol this rule will use when forwarding traffic to backends.␊ */␊ forwardingProtocol?: (("HttpOnly" | "HttpsOnly" | "MatchRequest") | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -15651,6 +17648,7 @@ Generated by [AVA](https://avajs.dev). * The redirect type the rule will use when redirecting traffic.␊ */␊ redirectType?: (("Moved" | "Found" | "TemporaryRedirect" | "PermanentRedirect") | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -15677,6 +17675,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/frontDoors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16030,6 +18032,7 @@ Generated by [AVA](https://avajs.dev). * Protocol this rule will use when forwarding traffic to backends.␊ */␊ forwardingProtocol?: (("HttpOnly" | "HttpsOnly" | "MatchRequest") | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16075,6 +18078,7 @@ Generated by [AVA](https://avajs.dev). * The redirect type the rule will use when redirecting traffic.␊ */␊ redirectType?: (("Moved" | "Found" | "TemporaryRedirect" | "PermanentRedirect") | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16105,6 +18109,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/FrontDoorWebApplicationFirewallPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16171,6 +18179,10 @@ Generated by [AVA](https://avajs.dev). * Describes type of rule.␊ */␊ ruleType: (("MatchRule" | "RateLimitRule") | string)␊ + action: unknown␊ + matchConditions: unknown␊ + priority: unknown␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16201,6 +18213,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms.␊ */␊ transforms?: (("Lowercase" | "Uppercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls")[] | string)␊ + matchValue: unknown␊ + matchVariable: unknown␊ + operator: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16233,6 +18248,8 @@ Generated by [AVA](https://avajs.dev). * Defines the version of the rule set to use.␊ */␊ ruleSetVersion: string␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16251,6 +18268,9 @@ Generated by [AVA](https://avajs.dev). * Comparison operator to apply to the selector when specifying which elements in the collection this exclusion applies to.␊ */␊ selectorMatchOperator: (("Equals" | "Contains" | "StartsWith" | "EndsWith" | "EqualsAny") | string)␊ + matchVariable: unknown␊ + selector: unknown␊ + selectorMatchOperator: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16269,6 +18289,7 @@ Generated by [AVA](https://avajs.dev). * List of rules that will be disabled. If none specified, all rules in the group will be disabled.␊ */␊ rules?: (ManagedRuleOverride1[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16291,6 +18312,7 @@ Generated by [AVA](https://avajs.dev). * Identifier for the managed rule.␊ */␊ ruleId: string␊ + ruleId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16348,6 +18370,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/NetworkExperimentProfiles"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16388,6 +18414,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Experiments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16454,6 +18484,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/NetworkExperimentProfiles/Experiments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16481,6 +18515,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/frontDoors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16846,6 +18884,7 @@ Generated by [AVA](https://avajs.dev). * Protocol this rule will use when forwarding traffic to backends.␊ */␊ forwardingProtocol?: (("HttpOnly" | "HttpsOnly" | "MatchRequest") | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16899,6 +18938,7 @@ Generated by [AVA](https://avajs.dev). * The redirect type the rule will use when redirecting traffic.␊ */␊ redirectType?: (("Moved" | "Found" | "TemporaryRedirect" | "PermanentRedirect") | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16915,6 +18955,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RulesEngineProperties | string)␊ type: "rulesEngines"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16955,6 +18999,9 @@ Generated by [AVA](https://avajs.dev). * A priority assigned to this rule. ␊ */␊ priority: (number | string)␊ + action: unknown␊ + name: unknown␊ + priority: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -16972,7 +19019,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * Base class for all types of Route.␊ */␊ - routeConfigurationOverride?: ((ForwardingConfiguration2 | RedirectConfiguration2) | string)␊ + routeConfigurationOverride?: (((ForwardingConfiguration2 | RedirectConfiguration2) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -16991,6 +19040,8 @@ Generated by [AVA](https://avajs.dev). * The value to update the given header name with. This value is not used if the actionType is Delete.␊ */␊ value?: string␊ + headerActionType: unknown␊ + headerName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17021,6 +19072,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms␊ */␊ transforms?: (("Lowercase" | "Uppercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls")[] | string)␊ + rulesEngineMatchValue: unknown␊ + rulesEngineMatchVariable: unknown␊ + rulesEngineOperator: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17037,6 +19091,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RulesEngineProperties | string)␊ type: "Microsoft.Network/frontDoors/rulesEngines"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17068,6 +19126,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17106,6 +19169,7 @@ Generated by [AVA](https://avajs.dev). tenantSettings?: ({␊ [k: string]: string␊ } | string)␊ + sku: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17124,6 +19188,9 @@ Generated by [AVA](https://avajs.dev). * The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium).␊ */␊ name: (("Basic" | "Standard" | "Premium") | string)␊ + capacity: unknown␊ + family: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17140,6 +19207,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RedisFirewallRuleProperties | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17154,6 +19225,8 @@ Generated by [AVA](https://avajs.dev). * lowest IP address included in the range␊ */␊ startIP: string␊ + endIP: unknown␊ + startIP: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17170,6 +19243,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ScheduleEntries | string)␊ type: "patchSchedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17180,6 +19257,7 @@ Generated by [AVA](https://avajs.dev). * List of patch schedules for a Redis cache.␊ */␊ scheduleEntries: (ScheduleEntry[] | string)␊ + scheduleEntries: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17198,6 +19276,8 @@ Generated by [AVA](https://avajs.dev). * Start hour after which cache patching can start.␊ */␊ startHourUtc: (number | string)␊ + dayOfWeek: unknown␊ + startHourUtc: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17214,6 +19294,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RedisLinkedServerCreateProperties | string)␊ type: "linkedServers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17232,6 +19316,9 @@ Generated by [AVA](https://avajs.dev). * Role of the linked server.␊ */␊ serverRole: (("Primary" | "Secondary") | string)␊ + linkedRedisCacheId: unknown␊ + linkedRedisCacheLocation: unknown␊ + serverRole: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17248,6 +19335,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RedisFirewallRuleProperties | string)␊ type: "Microsoft.Cache/Redis/firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17264,6 +19355,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RedisLinkedServerCreateProperties | string)␊ type: "Microsoft.Cache/Redis/linkedServers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17280,6 +19375,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ScheduleEntries | string)␊ type: "Microsoft.Cache/Redis/patchSchedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17314,6 +19413,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Search/searchServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17324,6 +19427,7 @@ Generated by [AVA](https://avajs.dev). * The identity type.␊ */␊ type: (("None" | "SystemAssigned") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17382,6 +19486,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.AnalysisServices/servers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17432,6 +19542,7 @@ Generated by [AVA](https://avajs.dev). * The name of the Azure pricing tier to which the SKU applies.␊ */␊ tier?: (("Development" | "Basic" | "Standard") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17462,6 +19573,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.AnalysisServices/servers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17570,6 +19687,7 @@ Generated by [AVA](https://avajs.dev). * The name of the Azure pricing tier to which the SKU applies.␊ */␊ tier?: (("Development" | "Basic" | "Standard") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17609,6 +19727,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.RecoveryServices/vaults"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17619,6 +19742,7 @@ Generated by [AVA](https://avajs.dev). * The identity type.␊ */␊ type: (("SystemAssigned" | "None") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17651,6 +19775,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RawCertificateData | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17682,6 +19810,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VaultExtendedInfo | string)␊ type: "extendedInformation"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17714,6 +19846,7 @@ Generated by [AVA](https://avajs.dev). * The Sku name.␊ */␊ name: (("Standard" | "RS0") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17737,6 +19870,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (RecoveryServicesPropertiesCreateParameters | string)␊ + type: unknown␊ + apiVersion: unknown␊ + sku: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17751,6 +19889,8 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the sku tier. Required for vault creation, optional for update. Possible values include: 'Standard'␊ */␊ tier: ("Standard" | string)␊ + name: unknown␊ + tier: unknown␊ [k: string]: unknown␊ }␊ export interface RecoveryServicesPropertiesCreateParameters {␊ @@ -17770,6 +19910,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RawCertificateData | string)␊ type: "Microsoft.RecoveryServices/vaults/certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17787,6 +19931,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VaultExtendedInfo | string)␊ type: "Microsoft.RecoveryServices/vaults/extendedInformation"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17817,6 +19965,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DocumentDB/databaseAccounts"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17867,6 +20019,8 @@ Generated by [AVA](https://avajs.dev). * List of Virtual Network ACL rules configured for the Cosmos DB account.␊ */␊ virtualNetworkRules?: (VirtualNetworkRule[] | string)␊ + databaseAccountOfferType: unknown␊ + locations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17895,6 +20049,7 @@ Generated by [AVA](https://avajs.dev). * When used with the Bounded Staleness consistency level, this value represents the number of stale requests tolerated. Accepted range for this value is 1 – 2,147,483,647. Required when defaultConsistencyPolicy is set to 'BoundedStaleness'.␊ */␊ maxStalenessPrefix?: (number | string)␊ + defaultConsistencyLevel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17948,6 +20103,10 @@ Generated by [AVA](https://avajs.dev). properties: (SqlDatabaseCreateUpdateProperties | string)␊ resources?: (DatabaseAccountsApisDatabasesSettingsChildResource | DatabaseAccountsApisDatabasesContainersChildResource | DatabaseAccountsApisDatabasesCollectionsChildResource | DatabaseAccountsApisDatabasesGraphsChildResource)[]␊ type: "Microsoft.DocumentDB/databaseAccounts/apis/databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17964,6 +20123,8 @@ Generated by [AVA](https://avajs.dev). * Cosmos DB SQL database id object␊ */␊ resource: (SqlDatabaseResource | string)␊ + options: unknown␊ + resource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17974,6 +20135,7 @@ Generated by [AVA](https://avajs.dev). * Name of the Cosmos DB SQL database␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17984,6 +20146,7 @@ Generated by [AVA](https://avajs.dev). * Cosmos DB resource throughput object␊ */␊ resource: (ThroughputResource | string)␊ + resource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -17994,6 +20157,7 @@ Generated by [AVA](https://avajs.dev). * Value of the Cosmos DB resource throughput␊ */␊ throughput: (number | string)␊ + throughput: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18010,6 +20174,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SqlContainerCreateUpdateProperties | string)␊ type: "containers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18026,6 +20194,8 @@ Generated by [AVA](https://avajs.dev). * Cosmos DB SQL container resource object␊ */␊ resource: (SqlContainerResource | string)␊ + options: unknown␊ + resource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18056,6 +20226,7 @@ Generated by [AVA](https://avajs.dev). * The unique key policy configuration for specifying uniqueness constraints on documents in the collection in the Azure Cosmos DB service.␊ */␊ uniqueKeyPolicy?: (UniqueKeyPolicy | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18185,6 +20356,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MongoDBCollectionCreateUpdateProperties | string)␊ type: "collections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18201,6 +20376,8 @@ Generated by [AVA](https://avajs.dev). * Cosmos DB MongoDB collection resource object␊ */␊ resource: (MongoDBCollectionResource | string)␊ + options: unknown␊ + resource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18221,6 +20398,7 @@ Generated by [AVA](https://avajs.dev). shardKey?: ({␊ [k: string]: string␊ } | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18275,6 +20453,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (GremlinGraphCreateUpdateProperties | string)␊ type: "graphs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18291,6 +20473,8 @@ Generated by [AVA](https://avajs.dev). * Cosmos DB Gremlin graph resource object␊ */␊ resource: (GremlinGraphResource | string)␊ + options: unknown␊ + resource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18321,6 +20505,7 @@ Generated by [AVA](https://avajs.dev). * The unique key policy configuration for specifying uniqueness constraints on documents in the collection in the Azure Cosmos DB service.␊ */␊ uniqueKeyPolicy?: (UniqueKeyPolicy | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18338,6 +20523,10 @@ Generated by [AVA](https://avajs.dev). properties: (MongoDBCollectionCreateUpdateProperties | string)␊ resources?: DatabaseAccountsApisDatabasesCollectionsSettingsChildResource[]␊ type: "Microsoft.DocumentDB/databaseAccounts/apis/databases/collections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18351,6 +20540,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ThroughputUpdateProperties | string)␊ type: "settings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18368,6 +20561,10 @@ Generated by [AVA](https://avajs.dev). properties: (SqlContainerCreateUpdateProperties | string)␊ resources?: DatabaseAccountsApisDatabasesContainersSettingsChildResource[]␊ type: "Microsoft.DocumentDB/databaseAccounts/apis/databases/containers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18381,6 +20578,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ThroughputUpdateProperties | string)␊ type: "settings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18398,6 +20599,10 @@ Generated by [AVA](https://avajs.dev). properties: (GremlinGraphCreateUpdateProperties | string)␊ resources?: DatabaseAccountsApisDatabasesGraphsSettingsChildResource[]␊ type: "Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18411,6 +20616,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ThroughputUpdateProperties | string)␊ type: "settings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18428,6 +20637,10 @@ Generated by [AVA](https://avajs.dev). properties: (CassandraKeyspaceCreateUpdateProperties | string)␊ resources?: (DatabaseAccountsApisKeyspacesSettingsChildResource | DatabaseAccountsApisKeyspacesTablesChildResource)[]␊ type: "Microsoft.DocumentDB/databaseAccounts/apis/keyspaces"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18444,6 +20657,8 @@ Generated by [AVA](https://avajs.dev). * Cosmos DB Cassandra keyspace id object␊ */␊ resource: (CassandraKeyspaceResource | string)␊ + options: unknown␊ + resource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18454,6 +20669,7 @@ Generated by [AVA](https://avajs.dev). * Name of the Cosmos DB Cassandra keyspace␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18467,6 +20683,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ThroughputUpdateProperties | string)␊ type: "settings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18483,6 +20703,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CassandraTableCreateUpdateProperties | string)␊ type: "tables"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18499,6 +20723,8 @@ Generated by [AVA](https://avajs.dev). * Cosmos DB Cassandra table id object␊ */␊ resource: (CassandraTableResource | string)␊ + options: unknown␊ + resource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18517,6 +20743,7 @@ Generated by [AVA](https://avajs.dev). * Cosmos DB Cassandra table schema␊ */␊ schema?: (CassandraSchema | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18590,6 +20817,10 @@ Generated by [AVA](https://avajs.dev). properties: (CassandraTableCreateUpdateProperties | string)␊ resources?: DatabaseAccountsApisKeyspacesTablesSettingsChildResource[]␊ type: "Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18603,6 +20834,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ThroughputUpdateProperties | string)␊ type: "settings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18620,6 +20855,10 @@ Generated by [AVA](https://avajs.dev). properties: (TableCreateUpdateProperties | string)␊ resources?: DatabaseAccountsApisTablesSettingsChildResource[]␊ type: "Microsoft.DocumentDB/databaseAccounts/apis/tables"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18636,6 +20875,8 @@ Generated by [AVA](https://avajs.dev). * Cosmos DB table id object␊ */␊ resource: (TableResource | string)␊ + options: unknown␊ + resource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18646,6 +20887,7 @@ Generated by [AVA](https://avajs.dev). * Name of the Cosmos DB table␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18659,6 +20901,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ThroughputUpdateProperties | string)␊ type: "settings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18672,6 +20918,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ThroughputUpdateProperties | string)␊ type: "Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18685,6 +20935,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ThroughputUpdateProperties | string)␊ type: "Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18698,6 +20952,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ThroughputUpdateProperties | string)␊ type: "Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18711,6 +20969,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ThroughputUpdateProperties | string)␊ type: "Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18724,6 +20986,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ThroughputUpdateProperties | string)␊ type: "Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18737,6 +21003,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ThroughputUpdateProperties | string)␊ type: "Microsoft.DocumentDB/databaseAccounts/apis/tables/settings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18750,8 +21020,12 @@ Generated by [AVA](https://avajs.dev). * Secret value␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ + apiVersion: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18778,6 +21052,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.KeyVault/vaults"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18816,6 +21095,9 @@ Generated by [AVA](https://avajs.dev). * The URI of the vault for performing operations on keys and secrets.␊ */␊ vaultUri?: string␊ + accessPolicies: unknown␊ + sku: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18838,6 +21120,9 @@ Generated by [AVA](https://avajs.dev). * The Azure Active Directory tenant ID that should be used for authenticating requests to the key vault.␊ */␊ tenantId: (string | string)␊ + objectId: unknown␊ + permissions: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18870,6 +21155,8 @@ Generated by [AVA](https://avajs.dev). * SKU name to specify whether the key vault is a standard vault or a premium vault.␊ */␊ name: (("standard" | "premium") | string)␊ + family: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18897,6 +21184,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.KeyVault/vaults"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18943,6 +21235,8 @@ Generated by [AVA](https://avajs.dev). * The URI of the vault for performing operations on keys and secrets.␊ */␊ vaultUri?: string␊ + sku: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -18965,6 +21259,9 @@ Generated by [AVA](https://avajs.dev). * The Azure Active Directory tenant ID that should be used for authenticating requests to the key vault.␊ */␊ tenantId: (string | string)␊ + objectId: unknown␊ + permissions: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19001,6 +21298,8 @@ Generated by [AVA](https://avajs.dev). * SKU name to specify whether the key vault is a standard vault or a premium vault.␊ */␊ name: (("standard" | "premium") | string)␊ + family: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19017,6 +21316,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VaultAccessPolicyProperties | string)␊ type: "accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19027,6 +21330,7 @@ Generated by [AVA](https://avajs.dev). * An array of 0 to 16 identities that have access to the key vault. All identities in the array must use the same tenant ID as the key vault's tenant ID.␊ */␊ accessPolicies: (AccessPolicyEntry1[] | string)␊ + accessPolicies: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19049,6 +21353,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "secrets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19101,6 +21409,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VaultAccessPolicyProperties | string)␊ type: "Microsoft.KeyVault/vaults/accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19123,6 +21435,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.KeyVault/vaults/secrets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19150,6 +21466,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.KeyVault/vaults"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19200,6 +21521,8 @@ Generated by [AVA](https://avajs.dev). * The URI of the vault for performing operations on keys and secrets.␊ */␊ vaultUri?: string␊ + sku: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19222,6 +21545,9 @@ Generated by [AVA](https://avajs.dev). * The Azure Active Directory tenant ID that should be used for authenticating requests to the key vault.␊ */␊ tenantId: (string | string)␊ + objectId: unknown␊ + permissions: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19276,6 +21602,7 @@ Generated by [AVA](https://avajs.dev). * An IPv4 address range in CIDR notation, such as '124.56.78.91' (simple IP address) or '124.56.78.0/24' (all addresses that start with 124.56.78).␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19286,6 +21613,7 @@ Generated by [AVA](https://avajs.dev). * Full resource id of a vnet subnet, such as '/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/subnet1'.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19300,6 +21628,8 @@ Generated by [AVA](https://avajs.dev). * SKU name to specify whether the key vault is a standard vault or a premium vault.␊ */␊ name: (("standard" | "premium") | string)␊ + family: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19316,6 +21646,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VaultAccessPolicyProperties1 | string)␊ type: "accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19326,6 +21660,7 @@ Generated by [AVA](https://avajs.dev). * An array of 0 to 16 identities that have access to the key vault. All identities in the array must use the same tenant ID as the key vault's tenant ID.␊ */␊ accessPolicies: (AccessPolicyEntry2[] | string)␊ + accessPolicies: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19342,6 +21677,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19406,6 +21745,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "secrets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19458,6 +21801,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VaultAccessPolicyProperties1 | string)␊ type: "Microsoft.KeyVault/vaults/accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19474,6 +21821,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties | string)␊ type: "Microsoft.KeyVault/vaults/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19496,6 +21847,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.KeyVault/vaults/secrets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19523,6 +21878,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.KeyVault/vaults"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19573,6 +21933,8 @@ Generated by [AVA](https://avajs.dev). * The URI of the vault for performing operations on keys and secrets.␊ */␊ vaultUri?: string␊ + sku: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19595,6 +21957,9 @@ Generated by [AVA](https://avajs.dev). * The Azure Active Directory tenant ID that should be used for authenticating requests to the key vault.␊ */␊ tenantId: (string | string)␊ + objectId: unknown␊ + permissions: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19649,6 +22014,7 @@ Generated by [AVA](https://avajs.dev). * An IPv4 address range in CIDR notation, such as '124.56.78.91' (simple IP address) or '124.56.78.0/24' (all addresses that start with 124.56.78).␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19659,6 +22025,7 @@ Generated by [AVA](https://avajs.dev). * Full resource id of a vnet subnet, such as '/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/subnet1'.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19673,6 +22040,8 @@ Generated by [AVA](https://avajs.dev). * SKU name to specify whether the key vault is a standard vault or a premium vault.␊ */␊ name: (("standard" | "premium") | string)␊ + family: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19689,6 +22058,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VaultAccessPolicyProperties2 | string)␊ type: "accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19699,6 +22072,7 @@ Generated by [AVA](https://avajs.dev). * An array of 0 to 16 identities that have access to the key vault. All identities in the array must use the same tenant ID as the key vault's tenant ID.␊ */␊ accessPolicies: (AccessPolicyEntry3[] | string)␊ + accessPolicies: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19721,6 +22095,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "secrets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19773,6 +22151,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VaultAccessPolicyProperties2 | string)␊ type: "Microsoft.KeyVault/vaults/accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19795,6 +22177,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.KeyVault/vaults/secrets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19822,6 +22208,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.KeyVault/vaults"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19884,6 +22275,8 @@ Generated by [AVA](https://avajs.dev). * The URI of the vault for performing operations on keys and secrets. This property is readonly␊ */␊ vaultUri?: string␊ + sku: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19906,6 +22299,9 @@ Generated by [AVA](https://avajs.dev). * The Azure Active Directory tenant ID that should be used for authenticating requests to the key vault.␊ */␊ tenantId: (string | string)␊ + objectId: unknown␊ + permissions: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19960,6 +22356,7 @@ Generated by [AVA](https://avajs.dev). * An IPv4 address range in CIDR notation, such as '124.56.78.91' (simple IP address) or '124.56.78.0/24' (all addresses that start with 124.56.78).␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19974,6 +22371,7 @@ Generated by [AVA](https://avajs.dev). * Property to specify whether NRP will ignore the check if parent subnet has serviceEndpoints configured.␊ */␊ ignoreMissingVnetServiceEndpoint?: (boolean | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -19988,6 +22386,8 @@ Generated by [AVA](https://avajs.dev). * SKU name to specify whether the key vault is a standard vault or a premium vault.␊ */␊ name: (("standard" | "premium") | string)␊ + family: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20004,6 +22404,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VaultAccessPolicyProperties3 | string)␊ type: "accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20014,6 +22418,7 @@ Generated by [AVA](https://avajs.dev). * An array of 0 to 16 identities that have access to the key vault. All identities in the array must use the same tenant ID as the key vault's tenant ID.␊ */␊ accessPolicies: (AccessPolicyEntry4[] | string)␊ + accessPolicies: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20034,6 +22439,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties1 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20098,6 +22507,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "keys"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20161,6 +22574,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "secrets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20213,6 +22630,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VaultAccessPolicyProperties3 | string)␊ type: "Microsoft.KeyVault/vaults/accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20235,6 +22656,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.KeyVault/vaults/keys"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20255,6 +22680,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties1 | string)␊ type: "Microsoft.KeyVault/vaults/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20277,6 +22706,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.KeyVault/vaults/secrets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20307,6 +22740,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.KeyVault/managedHSMs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20351,6 +22788,8 @@ Generated by [AVA](https://avajs.dev). * SKU of the managed HSM Pool.␊ */␊ name: (("Standard_B1" | "Custom_B32") | string)␊ + family: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20378,6 +22817,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.KeyVault/vaults"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20440,6 +22884,8 @@ Generated by [AVA](https://avajs.dev). * The URI of the vault for performing operations on keys and secrets.␊ */␊ vaultUri?: string␊ + sku: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20462,6 +22908,9 @@ Generated by [AVA](https://avajs.dev). * The Azure Active Directory tenant ID that should be used for authenticating requests to the key vault.␊ */␊ tenantId: (string | string)␊ + objectId: unknown␊ + permissions: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20516,6 +22965,7 @@ Generated by [AVA](https://avajs.dev). * An IPv4 address range in CIDR notation, such as '124.56.78.91' (simple IP address) or '124.56.78.0/24' (all addresses that start with 124.56.78).␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20530,6 +22980,7 @@ Generated by [AVA](https://avajs.dev). * Property to specify whether NRP will ignore the check if parent subnet has serviceEndpoints configured.␊ */␊ ignoreMissingVnetServiceEndpoint?: (boolean | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20544,6 +22995,8 @@ Generated by [AVA](https://avajs.dev). * SKU name to specify whether the key vault is a standard vault or a premium vault.␊ */␊ name: (("standard" | "premium") | string)␊ + family: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20566,6 +23019,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "keys"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20623,6 +23080,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VaultAccessPolicyProperties4 | string)␊ type: "accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20633,6 +23094,7 @@ Generated by [AVA](https://avajs.dev). * An array of 0 to 16 identities that have access to the key vault. All identities in the array must use the same tenant ID as the key vault's tenant ID.␊ */␊ accessPolicies: (AccessPolicyEntry5[] | string)␊ + accessPolicies: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20653,6 +23115,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties2 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20717,6 +23183,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "secrets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20769,6 +23239,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VaultAccessPolicyProperties4 | string)␊ type: "Microsoft.KeyVault/vaults/accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20789,6 +23263,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties2 | string)␊ type: "Microsoft.KeyVault/vaults/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20811,6 +23289,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.KeyVault/vaults/secrets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20838,6 +23320,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20888,6 +23374,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "artifactsources"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -20960,6 +23450,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "costs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -21086,6 +23580,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "customimages"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -21138,6 +23636,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether sysprep has been run on the VHD.␊ */␊ sysPrep?: (boolean | string)␊ + osType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -21202,6 +23701,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "formulas"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -21410,6 +23913,7 @@ Generated by [AVA](https://avajs.dev). tags?: ({␊ [k: string]: string␊ } | string)␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -21444,6 +23948,7 @@ Generated by [AVA](https://avajs.dev). tags?: ({␊ [k: string]: string␊ } | string)␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -21820,6 +24325,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "notificationchannels"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -21882,6 +24391,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "schedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -21908,6 +24421,9 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "servicerunners"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -21956,6 +24472,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "users"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22044,6 +24564,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "virtualmachines"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22196,6 +24720,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "virtualnetworks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22342,6 +24870,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/artifactsources"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22368,6 +24900,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/customimages"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22394,6 +24930,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/formulas"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22420,6 +24960,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/policysets/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22484,6 +25028,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/schedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22511,6 +25059,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/virtualmachines"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22537,6 +25089,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "schedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22563,6 +25119,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/virtualnetworks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22589,6 +25149,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/costs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22615,6 +25179,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/notificationchannels"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22641,6 +25209,9 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/servicerunners"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22668,6 +25239,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/users"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22694,6 +25269,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "disks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22762,6 +25341,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "environments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22838,6 +25421,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "secrets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22882,6 +25469,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/virtualmachines/schedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22908,6 +25499,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/users/disks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22934,6 +25529,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/users/environments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22960,6 +25559,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/users/secrets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -22976,6 +25579,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConfigureAlertRequestProperties | string)␊ type: "Microsoft.RecoveryServices/vaults/replicationAlertSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23011,6 +25618,10 @@ Generated by [AVA](https://avajs.dev). properties: (FabricCreationInputProperties | string)␊ resources?: (VaultsReplicationFabricsReplicationProtectionContainersChildResource | VaultsReplicationFabricsReplicationRecoveryServicesProvidersChildResource | VaultsReplicationFabricsReplicationvCentersChildResource)[]␊ type: "Microsoft.RecoveryServices/vaults/replicationFabrics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23032,6 +25643,7 @@ Generated by [AVA](https://avajs.dev). * The Location.␊ */␊ location?: string␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23051,6 +25663,8 @@ Generated by [AVA](https://avajs.dev). * The ARM Id of the VMware site.␊ */␊ vmwareSiteId?: string␊ + instanceType: unknown␊ + migrationSolutionId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23067,6 +25681,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateProtectionContainerInputProperties | string)␊ type: "replicationProtectionContainers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23084,6 +25702,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface A2AContainerCreationInput {␊ instanceType: "A2A"␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23091,6 +25710,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface VMwareCbtContainerCreationInput {␊ instanceType: "VMwareCbt"␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23107,6 +25727,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AddRecoveryServicesProviderInputProperties | string)␊ type: "replicationRecoveryServicesProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23125,6 +25749,9 @@ Generated by [AVA](https://avajs.dev). * Identity provider input.␊ */␊ resourceAccessIdentityInput: (IdentityProviderInput | string)␊ + authenticationIdentityInput: unknown␊ + machineName: unknown␊ + resourceAccessIdentityInput: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23151,6 +25778,11 @@ Generated by [AVA](https://avajs.dev). * The tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.␊ */␊ tenantId: string␊ + aadAuthority: unknown␊ + applicationId: unknown␊ + audience: unknown␊ + objectId: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23167,6 +25799,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AddVCenterRequestProperties | string)␊ type: "replicationvCenters"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23209,6 +25845,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateNetworkMappingInputProperties | string)␊ type: "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23238,6 +25878,7 @@ Generated by [AVA](https://avajs.dev). * The primary azure vnet Id.␊ */␊ primaryNetworkId?: string␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23245,6 +25886,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface VmmToAzureCreateNetworkMappingInput {␊ instanceType: "VmmToAzure"␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23252,6 +25894,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface VmmToVmmCreateNetworkMappingInput {␊ instanceType: "VmmToVmm"␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23269,6 +25912,10 @@ Generated by [AVA](https://avajs.dev). properties: (CreateProtectionContainerInputProperties | string)␊ resources?: (VaultsReplicationFabricsReplicationProtectionContainersReplicationMigrationItemsChildResource | VaultsReplicationFabricsReplicationProtectionContainersReplicationProtectedItemsChildResource | VaultsReplicationFabricsReplicationProtectionContainersReplicationProtectionContainerMappingsChildResource)[]␊ type: "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23285,6 +25932,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EnableMigrationInputProperties | string)␊ type: "replicationMigrationItems"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23299,6 +25950,8 @@ Generated by [AVA](https://avajs.dev). * Enable migration provider specific input.␊ */␊ providerSpecificDetails: (EnableMigrationProviderSpecificInput | string)␊ + policyId: unknown␊ + providerSpecificDetails: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23362,6 +26015,13 @@ Generated by [AVA](https://avajs.dev). * The ARM Id of the VM discovered in VMware.␊ */␊ vmwareMachineId: string␊ + dataMoverRunAsAccountId: unknown␊ + disksToInclude: unknown␊ + instanceType: unknown␊ + snapshotRunAsAccountId: unknown␊ + targetNetworkId: unknown␊ + targetResourceGroupId: unknown␊ + vmwareMachineId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23392,6 +26052,10 @@ Generated by [AVA](https://avajs.dev). * The key vault secret name of the log storage account.␊ */␊ logStorageAccountSasSecretName: string␊ + diskId: unknown␊ + isOSDisk: unknown␊ + logStorageAccountId: unknown␊ + logStorageAccountSasSecretName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23408,6 +26072,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EnableProtectionInputProperties | string)␊ type: "replicationProtectedItems"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23473,6 +26141,7 @@ Generated by [AVA](https://avajs.dev). * The list of vm managed disk details.␊ */␊ vmManagedDisks?: (A2AVmManagedDiskInputDetails[] | string)␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23622,6 +26291,7 @@ Generated by [AVA](https://avajs.dev). * The Vm Name.␊ */␊ vmName?: string␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23689,6 +26359,8 @@ Generated by [AVA](https://avajs.dev). * A value indicating whether managed disks should be used during failover.␊ */␊ useManagedDisks?: string␊ + instanceType: unknown␊ + storageAccountId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23736,6 +26408,12 @@ Generated by [AVA](https://avajs.dev). * The Vm Name.␊ */␊ vmFriendlyName?: string␊ + instanceType: unknown␊ + masterTargetId: unknown␊ + multiVmGroupId: unknown␊ + multiVmGroupName: unknown␊ + processServerId: unknown␊ + retentionDrive: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23781,6 +26459,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface SanEnableProtectionInput {␊ instanceType: "San"␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23797,6 +26476,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateProtectionContainerMappingInputProperties | string)␊ type: "replicationProtectionContainerMappings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23830,6 +26513,7 @@ Generated by [AVA](https://avajs.dev). */␊ automationAccountArmId?: string␊ instanceType: "A2A"␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23861,6 +26545,13 @@ Generated by [AVA](https://avajs.dev). * The target location.␊ */␊ targetLocation: string␊ + instanceType: unknown␊ + keyVaultId: unknown␊ + keyVaultUri: unknown␊ + serviceBusConnectionStringSecretName: unknown␊ + storageAccountId: unknown␊ + storageAccountSasSecretName: unknown␊ + targetLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23877,6 +26568,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EnableMigrationInputProperties | string)␊ type: "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23893,6 +26588,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EnableProtectionInputProperties | string)␊ type: "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23909,6 +26608,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateProtectionContainerMappingInputProperties | string)␊ type: "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23925,6 +26628,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AddRecoveryServicesProviderInputProperties | string)␊ type: "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23941,6 +26648,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageMappingInputProperties | string)␊ type: "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23967,6 +26678,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AddVCenterRequestProperties | string)␊ type: "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -23983,6 +26698,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreatePolicyInputProperties | string)␊ type: "Microsoft.RecoveryServices/vaults/replicationPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24016,6 +26735,8 @@ Generated by [AVA](https://avajs.dev). * The duration in minutes until which the recovery points need to be stored.␊ */␊ recoveryPointHistory?: (number | string)␊ + instanceType: unknown␊ + multiVmSyncStatus: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24043,6 +26764,7 @@ Generated by [AVA](https://avajs.dev). * The list of storage accounts to which the VMs in the primary cloud can replicate to.␊ */␊ storageAccounts?: (string[] | string)␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24094,6 +26816,7 @@ Generated by [AVA](https://avajs.dev). * A value indicating the recovery HTTPS port.␊ */␊ replicationPort?: (number | string)␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24141,6 +26864,7 @@ Generated by [AVA](https://avajs.dev). * A value indicating the recovery HTTPS port.␊ */␊ replicationPort?: (number | string)␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24168,6 +26892,8 @@ Generated by [AVA](https://avajs.dev). * The recovery point threshold in minutes.␊ */␊ recoveryPointThresholdInMinutes?: (number | string)␊ + instanceType: unknown␊ + multiVmSyncStatus: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24191,6 +26917,8 @@ Generated by [AVA](https://avajs.dev). * The recovery point threshold in minutes.␊ */␊ recoveryPointThresholdInMinutes?: (number | string)␊ + instanceType: unknown␊ + multiVmSyncStatus: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24210,6 +26938,7 @@ Generated by [AVA](https://avajs.dev). * The duration in minutes until which the recovery points need to be stored.␊ */␊ recoveryPointHistoryInMinutes?: (number | string)␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24226,6 +26955,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateRecoveryPlanInputProperties | string)␊ type: "Microsoft.RecoveryServices/vaults/replicationRecoveryPlans"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24248,6 +26981,9 @@ Generated by [AVA](https://avajs.dev). * The recovery fabric Id.␊ */␊ recoveryFabricId: string␊ + groups: unknown␊ + primaryFabricId: unknown␊ + recoveryFabricId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24270,6 +27006,7 @@ Generated by [AVA](https://avajs.dev). * The start group actions.␊ */␊ startGroupActions?: (RecoveryPlanAction[] | string)␊ + groupType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24292,6 +27029,10 @@ Generated by [AVA](https://avajs.dev). * The list of failover types.␊ */␊ failoverTypes: (("ReverseReplicate" | "Commit" | "PlannedFailover" | "UnplannedFailover" | "DisableProtection" | "TestFailover" | "TestFailoverCleanup" | "Failback" | "FinalizeFailback" | "ChangePit" | "RepairReplication" | "SwitchProtection" | "CompleteMigration")[] | string)␊ + actionName: unknown␊ + customDetails: unknown␊ + failoverDirections: unknown␊ + failoverTypes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24311,6 +27052,8 @@ Generated by [AVA](https://avajs.dev). * The runbook timeout.␊ */␊ timeout?: string␊ + fabricLocation: unknown␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24322,6 +27065,7 @@ Generated by [AVA](https://avajs.dev). */␊ description?: string␊ instanceType: "ManualActionDetails"␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24341,6 +27085,9 @@ Generated by [AVA](https://avajs.dev). * The script timeout.␊ */␊ timeout?: string␊ + fabricLocation: unknown␊ + instanceType: unknown␊ + path: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24386,6 +27133,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DigitalTwins/digitalTwinsInstances"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24408,6 +27160,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DigitalTwinsEndpointResourceProperties | string)␊ type: "endpoints"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24423,6 +27179,9 @@ Generated by [AVA](https://avajs.dev). * SecondaryConnectionString of the endpoint. Will be obfuscated during read␊ */␊ secondaryConnectionString: string␊ + endpointType: unknown␊ + primaryConnectionString: unknown␊ + secondaryConnectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24438,6 +27197,9 @@ Generated by [AVA](https://avajs.dev). */␊ "connectionString-SecondaryKey": string␊ endpointType: "EventHub"␊ + "connectionString-PrimaryKey": unknown␊ + "connectionString-SecondaryKey": unknown␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24457,6 +27219,9 @@ Generated by [AVA](https://avajs.dev). * EventGrid Topic Endpoint␊ */␊ TopicEndpoint?: string␊ + accessKey1: unknown␊ + accessKey2: unknown␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24467,6 +27232,7 @@ Generated by [AVA](https://avajs.dev). * The name of the SKU.␊ */␊ name: ("F1" | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24481,8 +27247,20 @@ Generated by [AVA](https://avajs.dev). /**␊ * Properties related to Digital Twins Endpoint␊ */␊ - properties: ((ServiceBus | EventHub | EventGrid) | string)␊ + properties: (((ServiceBus | EventHub | EventGrid) & {␊ + /**␊ + * The resource tags.␊ + */␊ + tags?: ({␊ + [k: string]: string␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DigitalTwins/digitalTwinsInstances/endpoints"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24514,6 +27292,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24582,6 +27364,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "artifactsources"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24650,6 +27436,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "customimages"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -24770,6 +27560,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "formulas"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25034,6 +27828,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "schedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25129,6 +27927,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "virtualmachines"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25159,6 +27961,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "virtualnetworks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25243,6 +28049,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DevTestLab/labs/virtualmachines"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25270,6 +28080,11 @@ Generated by [AVA](https://avajs.dev). */␊ sku: ((AzureSku | string) | string)␊ resources?: ClustersDatabases[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + sku: unknown␊ [k: string]: unknown␊ }␊ export interface AzureSku {␊ @@ -25281,6 +28096,8 @@ Generated by [AVA](https://avajs.dev). * SKU tier␊ */␊ tier: "Standard"␊ + name: unknown␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25297,6 +28114,10 @@ Generated by [AVA](https://avajs.dev). * Properties supplied to the Database Create Or Update Kusto operation.␊ */␊ properties: (DatabaseProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25307,6 +28128,7 @@ Generated by [AVA](https://avajs.dev). * The number of days data should be kept before it stops being accessible to queries.␊ */␊ softDeletePeriodInDays: number␊ + softDeletePeriodInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25335,6 +28157,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Kusto/clusters"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25378,6 +28205,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "databases"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25392,6 +28224,7 @@ Generated by [AVA](https://avajs.dev). * The number of days data should be kept before it stops being accessible to queries.␊ */␊ softDeletePeriodInDays: (number | string)␊ + softDeletePeriodInDays: unknown␊ [k: string]: unknown␊ }␊ export interface AzureSku1 {␊ @@ -25407,6 +28240,8 @@ Generated by [AVA](https://avajs.dev). * SKU tier.␊ */␊ tier: ("Standard" | string)␊ + name: unknown␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25434,6 +28269,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Kusto/clusters/databases"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25454,6 +28294,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EventHubConnectionProperties | string)␊ type: "eventhubconnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25480,6 +28324,8 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + eventHubResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25511,6 +28357,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Kusto/clusters"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25551,6 +28402,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseProperties2 | string)␊ type: "databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25583,6 +28438,8 @@ Generated by [AVA](https://avajs.dev). * SKU tier.␊ */␊ tier: (("Basic" | "Standard") | string)␊ + name: unknown␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25604,6 +28461,10 @@ Generated by [AVA](https://avajs.dev). properties: (DatabaseProperties2 | string)␊ resources?: ClustersDatabasesDataConnectionsChildResource[]␊ type: "Microsoft.Kusto/clusters/databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25615,6 +28476,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event hub connection properties.␊ */␊ properties?: (EventHubConnectionProperties1 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25641,6 +28503,8 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + eventHubResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25652,6 +28516,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event grid connection properties.␊ */␊ properties?: (EventGridConnectionProperties | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25682,6 +28547,11 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName: string␊ + consumerGroup: unknown␊ + dataFormat: unknown␊ + eventHubResourceId: unknown␊ + storageAccountResourceId: unknown␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25717,6 +28587,11 @@ Generated by [AVA](https://avajs.dev). * An array represents the availability zones of the cluster.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25765,6 +28640,10 @@ Generated by [AVA](https://avajs.dev). * The version of the template defined, for instance 1.␊ */␊ version: (number | string)␊ + isEnabled: unknown␊ + maximum: unknown␊ + minimum: unknown␊ + version: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25793,6 +28672,9 @@ Generated by [AVA](https://avajs.dev). * The subnet resource id.␊ */␊ subnetId: string␊ + dataManagementPublicIpId: unknown␊ + enginePublicIpId: unknown␊ + subnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25813,6 +28695,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseProperties3 | string)␊ type: "databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25845,6 +28731,8 @@ Generated by [AVA](https://avajs.dev). * SKU tier.␊ */␊ tier: (("Basic" | "Standard") | string)␊ + name: unknown␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25866,6 +28754,10 @@ Generated by [AVA](https://avajs.dev). properties: (DatabaseProperties3 | string)␊ resources?: ClustersDatabasesDataConnectionsChildResource1[]␊ type: "Microsoft.Kusto/clusters/databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25877,6 +28769,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event hub connection properties.␊ */␊ properties?: (EventHubConnectionProperties2 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25907,6 +28800,8 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + eventHubResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25918,6 +28813,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto iot hub connection properties.␊ */␊ properties?: (IotHubConnectionProperties | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25952,6 +28848,9 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + iotHubResourceId: unknown␊ + sharedAccessPolicyName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25963,6 +28862,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event grid connection properties.␊ */␊ properties?: (EventGridConnectionProperties1 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -25993,6 +28893,11 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName: string␊ + consumerGroup: unknown␊ + dataFormat: unknown␊ + eventHubResourceId: unknown␊ + storageAccountResourceId: unknown␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26032,6 +28937,11 @@ Generated by [AVA](https://avajs.dev). * An array represents the availability zones of the cluster.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26048,6 +28958,7 @@ Generated by [AVA](https://avajs.dev). userAssignedIdentities?: ({␊ [k: string]: Componentssgqdofschemasidentitypropertiesuserassignedidentitiesadditionalproperties␊ } | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface Componentssgqdofschemasidentitypropertiesuserassignedidentitiesadditionalproperties {␊ @@ -26099,6 +29010,9 @@ Generated by [AVA](https://avajs.dev). * The version of the key vault key.␊ */␊ keyVersion: string␊ + keyName: unknown␊ + keyVaultUri: unknown␊ + keyVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26121,6 +29035,10 @@ Generated by [AVA](https://avajs.dev). * The version of the template defined, for instance 1.␊ */␊ version: (number | string)␊ + isEnabled: unknown␊ + maximum: unknown␊ + minimum: unknown␊ + version: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26149,6 +29067,9 @@ Generated by [AVA](https://avajs.dev). * The subnet resource id.␊ */␊ subnetId: string␊ + dataManagementPublicIpId: unknown␊ + enginePublicIpId: unknown␊ + subnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26160,6 +29081,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto database properties.␊ */␊ properties?: (ReadWriteDatabaseProperties | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26185,6 +29107,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto database properties.␊ */␊ properties?: (ReadOnlyFollowingDatabaseProperties | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26215,6 +29138,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AttachedDatabaseConfigurationProperties | string)␊ type: "attachedDatabaseConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26233,6 +29160,9 @@ Generated by [AVA](https://avajs.dev). * The default principals modification kind.␊ */␊ defaultPrincipalsModificationKind: (("Union" | "Replace" | "None") | string)␊ + clusterResourceId: unknown␊ + databaseName: unknown␊ + defaultPrincipalsModificationKind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26251,6 +29181,8 @@ Generated by [AVA](https://avajs.dev). * SKU tier.␊ */␊ tier: (("Basic" | "Standard") | string)␊ + name: unknown␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26262,6 +29194,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event hub connection properties.␊ */␊ properties?: (EventHubConnectionProperties3 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26292,6 +29225,8 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + eventHubResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26303,6 +29238,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto iot hub connection properties.␊ */␊ properties?: (IotHubConnectionProperties1 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26337,6 +29273,9 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + iotHubResourceId: unknown␊ + sharedAccessPolicyName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26348,6 +29287,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event grid connection properties.␊ */␊ properties?: (EventGridConnectionProperties2 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26378,6 +29318,11 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName: string␊ + consumerGroup: unknown␊ + dataFormat: unknown␊ + eventHubResourceId: unknown␊ + storageAccountResourceId: unknown␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26398,6 +29343,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AttachedDatabaseConfigurationProperties | string)␊ type: "Microsoft.Kusto/clusters/attachedDatabaseConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26437,6 +29386,11 @@ Generated by [AVA](https://avajs.dev). * An array represents the availability zones of the cluster.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26453,6 +29407,7 @@ Generated by [AVA](https://avajs.dev). userAssignedIdentities?: ({␊ [k: string]: Componentssgqdofschemasidentitypropertiesuserassignedidentitiesadditionalproperties1␊ } | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface Componentssgqdofschemasidentitypropertiesuserassignedidentitiesadditionalproperties1 {␊ @@ -26504,6 +29459,9 @@ Generated by [AVA](https://avajs.dev). * The version of the key vault key.␊ */␊ keyVersion: string␊ + keyName: unknown␊ + keyVaultUri: unknown␊ + keyVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26526,6 +29484,10 @@ Generated by [AVA](https://avajs.dev). * The version of the template defined, for instance 1.␊ */␊ version: (number | string)␊ + isEnabled: unknown␊ + maximum: unknown␊ + minimum: unknown␊ + version: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26554,6 +29516,9 @@ Generated by [AVA](https://avajs.dev). * The subnet resource id.␊ */␊ subnetId: string␊ + dataManagementPublicIpId: unknown␊ + enginePublicIpId: unknown␊ + subnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26570,6 +29535,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ClusterPrincipalProperties | string)␊ type: "principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26592,6 +29561,9 @@ Generated by [AVA](https://avajs.dev). * The tenant id of the principal␊ */␊ tenantId?: string␊ + principalId: unknown␊ + principalType: unknown␊ + role: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26603,6 +29575,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto database properties.␊ */␊ properties?: (ReadWriteDatabaseProperties1 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26628,6 +29601,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto database properties.␊ */␊ properties?: (ReadOnlyFollowingDatabaseProperties1 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26658,6 +29632,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AttachedDatabaseConfigurationProperties1 | string)␊ type: "attachedDatabaseConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26676,6 +29654,9 @@ Generated by [AVA](https://avajs.dev). * The default principals modification kind.␊ */␊ defaultPrincipalsModificationKind: (("Union" | "Replace" | "None") | string)␊ + clusterResourceId: unknown␊ + databaseName: unknown␊ + defaultPrincipalsModificationKind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26687,6 +29668,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (GenevaDataConnectionProperties | string)␊ kind: "Geneva"␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26697,6 +29679,7 @@ Generated by [AVA](https://avajs.dev). * The Geneva environment of the geneva data connection.␊ */␊ genevaEnvironment: string␊ + genevaEnvironment: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26708,6 +29691,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (GenevaLegacyDataConnectionProperties | string)␊ kind: "GenevaLegacy"␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26726,6 +29710,9 @@ Generated by [AVA](https://avajs.dev). * Indicates whether the data is scrubbed.␊ */␊ isScrubbed: boolean␊ + genevaEnvironment: unknown␊ + mdsAccounts: unknown␊ + isScrubbed: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26744,6 +29731,8 @@ Generated by [AVA](https://avajs.dev). * SKU tier.␊ */␊ tier: (("Basic" | "Standard") | string)␊ + name: unknown␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26760,6 +29749,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabasePrincipalProperties | string)␊ type: "principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26782,6 +29775,9 @@ Generated by [AVA](https://avajs.dev). * The tenant id of the principal␊ */␊ tenantId?: string␊ + principalId: unknown␊ + principalType: unknown␊ + role: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26793,6 +29789,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event hub connection properties.␊ */␊ properties?: (EventHubConnectionProperties4 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26827,6 +29824,8 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + eventHubResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26838,6 +29837,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto Iot hub connection properties.␊ */␊ properties?: (IotHubConnectionProperties2 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26872,6 +29872,9 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + iotHubResourceId: unknown␊ + sharedAccessPolicyName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26883,6 +29886,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event grid connection properties.␊ */␊ properties?: (EventGridConnectionProperties3 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26913,6 +29917,11 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName: string␊ + consumerGroup: unknown␊ + dataFormat: unknown␊ + eventHubResourceId: unknown␊ + storageAccountResourceId: unknown␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26933,6 +29942,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AttachedDatabaseConfigurationProperties1 | string)␊ type: "Microsoft.Kusto/clusters/attachedDatabaseConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26949,6 +29962,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ClusterPrincipalProperties | string)␊ type: "Microsoft.Kusto/clusters/principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -26965,6 +29982,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabasePrincipalProperties | string)␊ type: "Microsoft.Kusto/clusters/databases/principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27004,6 +30025,11 @@ Generated by [AVA](https://avajs.dev). * An array represents the availability zones of the cluster.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27020,6 +30046,7 @@ Generated by [AVA](https://avajs.dev). userAssignedIdentities?: ({␊ [k: string]: Componentssgqdofschemasidentitypropertiesuserassignedidentitiesadditionalproperties2␊ } | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface Componentssgqdofschemasidentitypropertiesuserassignedidentitiesadditionalproperties2 {␊ @@ -27079,6 +30106,9 @@ Generated by [AVA](https://avajs.dev). * The version of the key vault key.␊ */␊ keyVersion: string␊ + keyName: unknown␊ + keyVaultUri: unknown␊ + keyVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27121,6 +30151,10 @@ Generated by [AVA](https://avajs.dev). * The version of the template defined, for instance 1.␊ */␊ version: (number | string)␊ + isEnabled: unknown␊ + maximum: unknown␊ + minimum: unknown␊ + version: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27149,6 +30183,9 @@ Generated by [AVA](https://avajs.dev). * The subnet resource id.␊ */␊ subnetId: string␊ + dataManagementPublicIpId: unknown␊ + enginePublicIpId: unknown␊ + subnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27165,6 +30202,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ClusterPrincipalProperties1 | string)␊ type: "principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27187,6 +30228,9 @@ Generated by [AVA](https://avajs.dev). * The tenant id of the principal␊ */␊ tenantId?: string␊ + principalId: unknown␊ + principalType: unknown␊ + role: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27198,6 +30242,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto database properties.␊ */␊ properties?: (ReadWriteDatabaseProperties2 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27223,6 +30268,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto database properties.␊ */␊ properties?: (ReadOnlyFollowingDatabaseProperties2 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27253,6 +30299,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AttachedDatabaseConfigurationProperties2 | string)␊ type: "attachedDatabaseConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27271,6 +30321,9 @@ Generated by [AVA](https://avajs.dev). * The default principals modification kind.␊ */␊ defaultPrincipalsModificationKind: (("Union" | "Replace" | "None") | string)␊ + clusterResourceId: unknown␊ + databaseName: unknown␊ + defaultPrincipalsModificationKind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27282,6 +30335,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (GenevaDataConnectionProperties1 | string)␊ kind: "Geneva"␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27292,6 +30346,7 @@ Generated by [AVA](https://avajs.dev). * The Geneva environment of the geneva data connection.␊ */␊ genevaEnvironment: string␊ + genevaEnvironment: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27303,6 +30358,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (GenevaLegacyDataConnectionProperties1 | string)␊ kind: "GenevaLegacy"␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27321,6 +30377,9 @@ Generated by [AVA](https://avajs.dev). * Indicates whether the data is scrubbed.␊ */␊ isScrubbed: boolean␊ + genevaEnvironment: unknown␊ + mdsAccounts: unknown␊ + isScrubbed: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27339,6 +30398,8 @@ Generated by [AVA](https://avajs.dev). * SKU tier.␊ */␊ tier: (("Basic" | "Standard") | string)␊ + name: unknown␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27355,6 +30416,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabasePrincipalProperties1 | string)␊ type: "principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27377,6 +30442,9 @@ Generated by [AVA](https://avajs.dev). * The tenant id of the principal␊ */␊ tenantId?: string␊ + principalId: unknown␊ + principalType: unknown␊ + role: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27388,6 +30456,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event hub connection properties.␊ */␊ properties?: (EventHubConnectionProperties5 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27422,6 +30491,8 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + eventHubResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27433,6 +30504,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto Iot hub connection properties.␊ */␊ properties?: (IotHubConnectionProperties3 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27467,6 +30539,9 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + iotHubResourceId: unknown␊ + sharedAccessPolicyName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27478,6 +30553,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event grid connection properties.␊ */␊ properties?: (EventGridConnectionProperties4 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27508,6 +30584,11 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName: string␊ + consumerGroup: unknown␊ + dataFormat: unknown␊ + eventHubResourceId: unknown␊ + storageAccountResourceId: unknown␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27528,6 +30609,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AttachedDatabaseConfigurationProperties2 | string)␊ type: "Microsoft.Kusto/clusters/attachedDatabaseConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27544,6 +30629,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ClusterPrincipalProperties1 | string)␊ type: "Microsoft.Kusto/clusters/principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27560,6 +30649,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabasePrincipalProperties1 | string)␊ type: "Microsoft.Kusto/clusters/databases/principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27599,6 +30692,11 @@ Generated by [AVA](https://avajs.dev). * An array represents the availability zones of the cluster.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27615,6 +30713,7 @@ Generated by [AVA](https://avajs.dev). userAssignedIdentities?: ({␊ [k: string]: Componentssgqdofschemasidentitypropertiesuserassignedidentitiesadditionalproperties3␊ } | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface Componentssgqdofschemasidentitypropertiesuserassignedidentitiesadditionalproperties3 {␊ @@ -27674,6 +30773,9 @@ Generated by [AVA](https://avajs.dev). * The version of the key vault key.␊ */␊ keyVersion: string␊ + keyName: unknown␊ + keyVaultUri: unknown␊ + keyVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27696,6 +30798,10 @@ Generated by [AVA](https://avajs.dev). * The version of the template defined, for instance 1.␊ */␊ version: (number | string)␊ + isEnabled: unknown␊ + maximum: unknown␊ + minimum: unknown␊ + version: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27724,6 +30830,9 @@ Generated by [AVA](https://avajs.dev). * The subnet resource id.␊ */␊ subnetId: string␊ + dataManagementPublicIpId: unknown␊ + enginePublicIpId: unknown␊ + subnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27740,6 +30849,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ClusterPrincipalProperties2 | string)␊ type: "principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27762,6 +30875,9 @@ Generated by [AVA](https://avajs.dev). * The tenant id of the principal␊ */␊ tenantId?: string␊ + principalId: unknown␊ + principalType: unknown␊ + role: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27773,6 +30889,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto database properties.␊ */␊ properties?: (ReadWriteDatabaseProperties3 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27798,6 +30915,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto database properties.␊ */␊ properties?: (ReadOnlyFollowingDatabaseProperties3 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27828,6 +30946,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AttachedDatabaseConfigurationProperties3 | string)␊ type: "attachedDatabaseConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27846,6 +30968,9 @@ Generated by [AVA](https://avajs.dev). * The default principals modification kind.␊ */␊ defaultPrincipalsModificationKind: (("Union" | "Replace" | "None") | string)␊ + clusterResourceId: unknown␊ + databaseName: unknown␊ + defaultPrincipalsModificationKind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27857,6 +30982,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (GenevaDataConnectionProperties2 | string)␊ kind: "Geneva"␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27867,6 +30993,7 @@ Generated by [AVA](https://avajs.dev). * The Geneva environment of the geneva data connection.␊ */␊ genevaEnvironment: string␊ + genevaEnvironment: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27878,6 +31005,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (GenevaLegacyDataConnectionProperties2 | string)␊ kind: "GenevaLegacy"␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27896,6 +31024,9 @@ Generated by [AVA](https://avajs.dev). * Indicates whether the data is scrubbed.␊ */␊ isScrubbed: boolean␊ + genevaEnvironment: unknown␊ + mdsAccounts: unknown␊ + isScrubbed: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27914,6 +31045,8 @@ Generated by [AVA](https://avajs.dev). * SKU tier.␊ */␊ tier: (("Basic" | "Standard") | string)␊ + name: unknown␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27930,6 +31063,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabasePrincipalProperties2 | string)␊ type: "principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27952,6 +31089,9 @@ Generated by [AVA](https://avajs.dev). * The tenant id of the principal␊ */␊ tenantId?: string␊ + principalId: unknown␊ + principalType: unknown␊ + role: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27963,6 +31103,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event hub connection properties.␊ */␊ properties?: (EventHubConnectionProperties6 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -27997,6 +31138,8 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + eventHubResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28008,6 +31151,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto Iot hub connection properties.␊ */␊ properties?: (IotHubConnectionProperties4 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28042,6 +31186,9 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + iotHubResourceId: unknown␊ + sharedAccessPolicyName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28053,6 +31200,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event grid connection properties.␊ */␊ properties?: (EventGridConnectionProperties5 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28091,6 +31239,9 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + eventHubResourceId: unknown␊ + storageAccountResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28111,6 +31262,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AttachedDatabaseConfigurationProperties3 | string)␊ type: "Microsoft.Kusto/clusters/attachedDatabaseConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28127,6 +31282,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ClusterPrincipalProperties2 | string)␊ type: "Microsoft.Kusto/clusters/principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28143,6 +31302,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabasePrincipalProperties2 | string)␊ type: "Microsoft.Kusto/clusters/databases/principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28182,6 +31345,11 @@ Generated by [AVA](https://avajs.dev). * An array represents the availability zones of the cluster.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28198,6 +31366,7 @@ Generated by [AVA](https://avajs.dev). userAssignedIdentities?: ({␊ [k: string]: Componentssgqdofschemasidentitypropertiesuserassignedidentitiesadditionalproperties4␊ } | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface Componentssgqdofschemasidentitypropertiesuserassignedidentitiesadditionalproperties4 {␊ @@ -28265,6 +31434,8 @@ Generated by [AVA](https://avajs.dev). * The user assigned identity (ARM resource id) that has access to the key.␊ */␊ userIdentity?: string␊ + keyName: unknown␊ + keyVaultUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28287,6 +31458,10 @@ Generated by [AVA](https://avajs.dev). * The version of the template defined, for instance 1.␊ */␊ version: (number | string)␊ + isEnabled: unknown␊ + maximum: unknown␊ + minimum: unknown␊ + version: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28315,6 +31490,9 @@ Generated by [AVA](https://avajs.dev). * The subnet resource id.␊ */␊ subnetId: string␊ + dataManagementPublicIpId: unknown␊ + enginePublicIpId: unknown␊ + subnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28331,6 +31509,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ClusterPrincipalProperties3 | string)␊ type: "principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28353,6 +31535,9 @@ Generated by [AVA](https://avajs.dev). * The tenant id of the principal␊ */␊ tenantId?: string␊ + principalId: unknown␊ + principalType: unknown␊ + role: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28364,6 +31549,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto database properties.␊ */␊ properties?: (ReadWriteDatabaseProperties4 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28389,6 +31575,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto database properties.␊ */␊ properties?: (ReadOnlyFollowingDatabaseProperties4 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28419,6 +31606,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AttachedDatabaseConfigurationProperties4 | string)␊ type: "attachedDatabaseConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28437,6 +31628,9 @@ Generated by [AVA](https://avajs.dev). * The default principals modification kind.␊ */␊ defaultPrincipalsModificationKind: (("Union" | "Replace" | "None") | string)␊ + clusterResourceId: unknown␊ + databaseName: unknown␊ + defaultPrincipalsModificationKind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28448,6 +31642,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (GenevaDataConnectionProperties3 | string)␊ kind: "Geneva"␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28458,6 +31653,7 @@ Generated by [AVA](https://avajs.dev). * The Geneva environment of the geneva data connection.␊ */␊ genevaEnvironment: string␊ + genevaEnvironment: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28469,6 +31665,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (GenevaLegacyDataConnectionProperties3 | string)␊ kind: "GenevaLegacy"␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28487,6 +31684,9 @@ Generated by [AVA](https://avajs.dev). * Indicates whether the data is scrubbed.␊ */␊ isScrubbed: boolean␊ + genevaEnvironment: unknown␊ + mdsAccounts: unknown␊ + isScrubbed: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28505,6 +31705,8 @@ Generated by [AVA](https://avajs.dev). * SKU tier.␊ */␊ tier: (("Basic" | "Standard") | string)␊ + name: unknown␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28521,6 +31723,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabasePrincipalProperties3 | string)␊ type: "principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28543,6 +31749,9 @@ Generated by [AVA](https://avajs.dev). * The tenant id of the principal␊ */␊ tenantId?: string␊ + principalId: unknown␊ + principalType: unknown␊ + role: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28554,6 +31763,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event hub connection properties.␊ */␊ properties?: (EventHubConnectionProperties7 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28588,6 +31798,8 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + eventHubResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28599,6 +31811,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto Iot hub connection properties.␊ */␊ properties?: (IotHubConnectionProperties5 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28633,6 +31846,9 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + iotHubResourceId: unknown␊ + sharedAccessPolicyName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28644,6 +31860,7 @@ Generated by [AVA](https://avajs.dev). * Class representing the Kusto event grid connection properties.␊ */␊ properties?: (EventGridConnectionProperties6 | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28682,6 +31899,9 @@ Generated by [AVA](https://avajs.dev). * The table where the data should be ingested. Optionally the table information can be added to each message.␊ */␊ tableName?: string␊ + consumerGroup: unknown␊ + eventHubResourceId: unknown␊ + storageAccountResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28702,6 +31922,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AttachedDatabaseConfigurationProperties4 | string)␊ type: "Microsoft.Kusto/clusters/attachedDatabaseConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28718,6 +31942,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ClusterPrincipalProperties3 | string)␊ type: "Microsoft.Kusto/clusters/principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28734,6 +31962,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabasePrincipalProperties3 | string)␊ type: "Microsoft.Kusto/clusters/databases/principalAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28759,6 +31991,9 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Cache/Redis: sku/capacity␊ */␊ capacity: ((0 | 1 | 2 | 3 | 4 | 5 | 6) | string)␊ + name: unknown␊ + family: unknown␊ + capacity: unknown␊ [k: string]: unknown␊ } | string)␊ /**␊ @@ -28773,7 +32008,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Cache/Redis enableNonSslPort. Enables less secure direct access to redis on port 6379 WITHOUT SSL tunneling.␊ */␊ enableNonSslPort?: (boolean | string)␊ + sku: unknown␊ + redisVersion: unknown␊ }␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -28805,6 +32047,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.NotificationHubs/namespaces/notificationHubs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29057,6 +32303,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties | string)␊ type: "AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29083,6 +32333,7 @@ Generated by [AVA](https://avajs.dev). * The tier of particular sku␊ */␊ tier?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29099,6 +32350,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties | string)␊ type: "Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29125,6 +32380,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Cache/Redis"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29171,6 +32431,7 @@ Generated by [AVA](https://avajs.dev). * The exact ARM resource ID of the virtual network to deploy the Redis cache in. Example format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.ClassicNetwork/VirtualNetworks/vnet1␊ */␊ virtualNetwork?: string␊ + sku: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29189,6 +32450,9 @@ Generated by [AVA](https://avajs.dev). * What type of Redis cache to deploy. Valid values: (Basic, Standard, Premium).␊ */␊ name: (("Basic" | "Standard" | "Premium") | string)␊ + capacity: unknown␊ + family: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29217,6 +32481,8 @@ Generated by [AVA](https://avajs.dev). relativeName: string␊ ttl: (number | string)␊ fqdn?: string␊ + relativeName: unknown␊ + ttl: unknown␊ } | string)␊ /**␊ * Microsoft.Network/trafficManagerProfiles Configuration for monitoring (probing) of endpoints in this profile␊ @@ -29234,6 +32500,9 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/trafficManagerProfiles The path (relative to the hostname of the endpoint) to which Traffic Manager will send monitoring requests␊ */␊ path: string␊ + protocol: unknown␊ + port: unknown␊ + path: unknown␊ } | string)␊ /**␊ * The endpoints over which this profile will route traffic␊ @@ -29272,9 +32541,19 @@ Generated by [AVA](https://avajs.dev). minChildEndpoints?: (number | string)␊ [k: string]: unknown␊ }␊ + name: unknown␊ + type: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }[] | string)␊ + trafficRoutingMethod: unknown␊ + dnsConfig: unknown␊ + monitorConfig: unknown␊ }␊ + apiVersion: unknown␊ + type: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29303,6 +32582,8 @@ Generated by [AVA](https://avajs.dev). relativeName: string␊ ttl: (number | string)␊ fqdn?: string␊ + relativeName: unknown␊ + ttl: unknown␊ } | string)␊ /**␊ * Microsoft.Network/trafficManagerProfiles Configuration for monitoring (probing) of endpoints in this profile␊ @@ -29320,6 +32601,9 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/trafficManagerProfiles The path (relative to the hostname of the endpoint) to which Traffic Manager will send monitoring requests␊ */␊ path: string␊ + protocol: unknown␊ + port: unknown␊ + path: unknown␊ } | string)␊ /**␊ * The endpoints over which this profile will route traffic␊ @@ -29362,9 +32646,19 @@ Generated by [AVA](https://avajs.dev). geoMapping?: string[]␊ [k: string]: unknown␊ }␊ + name: unknown␊ + type: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }[] | string)␊ + trafficRoutingMethod: unknown␊ + dnsConfig: unknown␊ + monitorConfig: unknown␊ }␊ + apiVersion: unknown␊ + type: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29393,6 +32687,8 @@ Generated by [AVA](https://avajs.dev). relativeName: string␊ ttl: (number | string)␊ fqdn?: string␊ + relativeName: unknown␊ + ttl: unknown␊ } | string)␊ /**␊ * Microsoft.Network/trafficManagerProfiles Configuration for monitoring (probing) of endpoints in this profile␊ @@ -29422,6 +32718,8 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/trafficManagerProfiles The number of consecutive failed monitoring requests that Traffic Manager tolerates before declaring an endpoint in this profile Degraded after the next failed monitoring request␊ */␊ toleratedNumberOfFailures?: (number | string)␊ + protocol: unknown␊ + port: unknown␊ } | string)␊ /**␊ * The endpoints over which this profile will route traffic␊ @@ -29464,9 +32762,19 @@ Generated by [AVA](https://avajs.dev). geoMapping?: string[]␊ [k: string]: unknown␊ }␊ + name: unknown␊ + type: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }[] | string)␊ + trafficRoutingMethod: unknown␊ + dnsConfig: unknown␊ + monitorConfig: unknown␊ }␊ + apiVersion: unknown␊ + type: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29494,6 +32802,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Traffic Manager profile.␊ */␊ properties: (ProfileProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29729,8 +33041,13 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Storage/storageAccounts: The type of this account.␊ */␊ accountType: string␊ + accountType: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29762,6 +33079,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Storage/storageAccounts"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface StorageAccountPropertiesCreateParameters {␊ @@ -29791,6 +33114,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.␊ */␊ useSubDomainName?: (boolean | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29805,6 +33129,7 @@ Generated by [AVA](https://avajs.dev). * A list of services that support encryption.␊ */␊ services?: (EncryptionServices | string)␊ + keySource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29835,6 +33160,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the sku name. Required for account creation; optional for update. Note that in older versions, sku name was called accountType.␊ */␊ name: (("Standard_LRS" | "Standard_GRS" | "Standard_RAGRS" | "Standard_ZRS" | "Premium_LRS") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29873,6 +33199,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Storage/storageAccounts"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29883,6 +33215,7 @@ Generated by [AVA](https://avajs.dev). * The identity type.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29923,6 +33256,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.␊ */␊ useSubDomainName?: (boolean | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -29941,6 +33275,7 @@ Generated by [AVA](https://avajs.dev). * A list of services that support encryption.␊ */␊ services?: (EncryptionServices1 | string)␊ + keySource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30005,6 +33340,7 @@ Generated by [AVA](https://avajs.dev). * Sets the virtual network rules␊ */␊ virtualNetworkRules?: (VirtualNetworkRule5[] | string)␊ + defaultAction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30019,6 +33355,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30037,6 +33374,7 @@ Generated by [AVA](https://avajs.dev). * Gets the state of virtual network rule.␊ */␊ state?: (("provisioning" | "deprovisioning" | "succeeded" | "failed" | "networkSourceDeleted") | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30051,6 +33389,7 @@ Generated by [AVA](https://avajs.dev). * The restrictions because of which SKU cannot be used. This is empty if there are no restrictions.␊ */␊ restrictions?: (Restriction[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30099,6 +33438,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Storage/storageAccounts"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30109,6 +33454,7 @@ Generated by [AVA](https://avajs.dev). * The identity type.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30149,6 +33495,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.␊ */␊ useSubDomainName?: (boolean | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30167,6 +33514,7 @@ Generated by [AVA](https://avajs.dev). * A list of services that support encryption.␊ */␊ services?: (EncryptionServices2 | string)␊ + keySource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30231,6 +33579,7 @@ Generated by [AVA](https://avajs.dev). * Sets the virtual network rules␊ */␊ virtualNetworkRules?: (VirtualNetworkRule6[] | string)␊ + defaultAction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30245,6 +33594,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30263,6 +33613,7 @@ Generated by [AVA](https://avajs.dev). * Gets the state of virtual network rule.␊ */␊ state?: (("provisioning" | "deprovisioning" | "succeeded" | "failed" | "networkSourceDeleted") | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30277,6 +33628,7 @@ Generated by [AVA](https://avajs.dev). * The restrictions because of which SKU cannot be used. This is empty if there are no restrictions.␊ */␊ restrictions?: (Restriction1[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30325,6 +33677,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Storage/storageAccounts"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30335,6 +33693,7 @@ Generated by [AVA](https://avajs.dev). * The identity type.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30379,6 +33738,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.␊ */␊ useSubDomainName?: (boolean | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30397,6 +33757,7 @@ Generated by [AVA](https://avajs.dev). * A list of services that support encryption.␊ */␊ services?: (EncryptionServices3 | string)␊ + keySource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30461,6 +33822,7 @@ Generated by [AVA](https://avajs.dev). * Sets the virtual network rules␊ */␊ virtualNetworkRules?: (VirtualNetworkRule7[] | string)␊ + defaultAction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30475,6 +33837,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30493,6 +33856,7 @@ Generated by [AVA](https://avajs.dev). * Gets the state of virtual network rule.␊ */␊ state?: (("provisioning" | "deprovisioning" | "succeeded" | "failed" | "networkSourceDeleted") | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30507,6 +33871,7 @@ Generated by [AVA](https://avajs.dev). * The restrictions because of which SKU cannot be used. This is empty if there are no restrictions.␊ */␊ restrictions?: (Restriction2[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30534,6 +33899,9 @@ Generated by [AVA](https://avajs.dev). properties?: (ContainerProperties | string)␊ resources?: StorageAccountsBlobServicesContainersImmutabilityPoliciesChildResource[]␊ type: "Microsoft.Storage/storageAccounts/blobServices/containers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30566,6 +33934,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ImmutabilityPolicyProperty | string)␊ type: "immutabilityPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30576,6 +33948,7 @@ Generated by [AVA](https://avajs.dev). * The immutability period for the blobs in the container since the policy creation, in days.␊ */␊ immutabilityPeriodSinceCreationInDays: (number | string)␊ + immutabilityPeriodSinceCreationInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30592,6 +33965,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (ImmutabilityPolicyProperty | string)␊ type: "Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30631,6 +34007,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Storage/storageAccounts"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30641,6 +34023,7 @@ Generated by [AVA](https://avajs.dev). * The identity type.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30685,6 +34068,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.␊ */␊ useSubDomainName?: (boolean | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30703,6 +34087,7 @@ Generated by [AVA](https://avajs.dev). * A list of services that support encryption.␊ */␊ services?: (EncryptionServices4 | string)␊ + keySource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30767,6 +34152,7 @@ Generated by [AVA](https://avajs.dev). * Sets the virtual network rules␊ */␊ virtualNetworkRules?: (VirtualNetworkRule8[] | string)␊ + defaultAction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30781,6 +34167,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30799,6 +34186,7 @@ Generated by [AVA](https://avajs.dev). * Gets the state of virtual network rule.␊ */␊ state?: (("provisioning" | "deprovisioning" | "succeeded" | "failed" | "networkSourceDeleted") | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30815,6 +34203,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagementPoliciesRules | string)␊ type: "managementPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30841,6 +34233,7 @@ Generated by [AVA](https://avajs.dev). * The restrictions because of which SKU cannot be used. This is empty if there are no restrictions.␊ */␊ restrictions?: (Restriction3[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30867,6 +34260,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (ManagementPoliciesRules | string)␊ type: "Microsoft.Storage/storageAccounts/managementPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30884,6 +34280,9 @@ Generated by [AVA](https://avajs.dev). properties?: (ContainerProperties1 | string)␊ resources?: StorageAccountsBlobServicesContainersImmutabilityPoliciesChildResource1[]␊ type: "Microsoft.Storage/storageAccounts/blobServices/containers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30916,6 +34315,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ImmutabilityPolicyProperty1 | string)␊ type: "immutabilityPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30926,6 +34329,7 @@ Generated by [AVA](https://avajs.dev). * The immutability period for the blobs in the container since the policy creation, in days.␊ */␊ immutabilityPeriodSinceCreationInDays: (number | string)␊ + immutabilityPeriodSinceCreationInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30942,6 +34346,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (ImmutabilityPolicyProperty1 | string)␊ type: "Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30981,6 +34388,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Storage/storageAccounts"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -30991,6 +34404,7 @@ Generated by [AVA](https://avajs.dev). * The identity type.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31039,6 +34453,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.␊ */␊ useSubDomainName?: (boolean | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31057,6 +34472,7 @@ Generated by [AVA](https://avajs.dev). * A list of services that support encryption.␊ */␊ services?: (EncryptionServices5 | string)␊ + keySource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31121,6 +34537,7 @@ Generated by [AVA](https://avajs.dev). * Sets the virtual network rules␊ */␊ virtualNetworkRules?: (VirtualNetworkRule9[] | string)␊ + defaultAction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31135,6 +34552,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31153,6 +34571,7 @@ Generated by [AVA](https://avajs.dev). * Gets the state of virtual network rule.␊ */␊ state?: (("provisioning" | "deprovisioning" | "succeeded" | "failed" | "networkSourceDeleted") | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31169,6 +34588,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BlobServicePropertiesProperties | string)␊ type: "blobServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31223,6 +34646,11 @@ Generated by [AVA](https://avajs.dev). * Required if CorsRule element is present. The number of seconds that the client/browser should cache a preflight response.␊ */␊ maxAgeInSeconds: (number | string)␊ + allowedHeaders: unknown␊ + allowedMethods: unknown␊ + allowedOrigins: unknown␊ + exposedHeaders: unknown␊ + maxAgeInSeconds: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31251,6 +34679,7 @@ Generated by [AVA](https://avajs.dev). * The restrictions because of which SKU cannot be used. This is empty if there are no restrictions.␊ */␊ restrictions?: (Restriction4[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31278,6 +34707,9 @@ Generated by [AVA](https://avajs.dev). properties?: (BlobServicePropertiesProperties | string)␊ resources?: StorageAccountsBlobServicesContainersChildResource[]␊ type: "Microsoft.Storage/storageAccounts/blobServices"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31294,6 +34726,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ContainerProperties2 | string)␊ type: "containers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31327,6 +34763,9 @@ Generated by [AVA](https://avajs.dev). properties?: (ContainerProperties2 | string)␊ resources?: StorageAccountsBlobServicesContainersImmutabilityPoliciesChildResource2[]␊ type: "Microsoft.Storage/storageAccounts/blobServices/containers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31343,6 +34782,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ImmutabilityPolicyProperty2 | string)␊ type: "immutabilityPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31353,6 +34796,7 @@ Generated by [AVA](https://avajs.dev). * The immutability period for the blobs in the container since the policy creation, in days.␊ */␊ immutabilityPeriodSinceCreationInDays: (number | string)␊ + immutabilityPeriodSinceCreationInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31369,6 +34813,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (ImmutabilityPolicyProperty2 | string)␊ type: "Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31408,6 +34855,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Storage/storageAccounts"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31418,6 +34871,7 @@ Generated by [AVA](https://avajs.dev). * The identity type.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31466,6 +34920,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.␊ */␊ useSubDomainName?: (boolean | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31484,6 +34939,7 @@ Generated by [AVA](https://avajs.dev). * A list of services that support encryption.␊ */␊ services?: (EncryptionServices6 | string)␊ + keySource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31548,6 +35004,7 @@ Generated by [AVA](https://avajs.dev). * Sets the virtual network rules␊ */␊ virtualNetworkRules?: (VirtualNetworkRule10[] | string)␊ + defaultAction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31562,6 +35019,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31580,6 +35038,7 @@ Generated by [AVA](https://avajs.dev). * Gets the state of virtual network rule.␊ */␊ state?: (("provisioning" | "deprovisioning" | "succeeded" | "failed" | "networkSourceDeleted") | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31592,6 +35051,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: "default"␊ type: "managementPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31608,6 +35070,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BlobServicePropertiesProperties1 | string)␊ type: "blobServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31662,6 +35128,11 @@ Generated by [AVA](https://avajs.dev). * Required if CorsRule element is present. The number of seconds that the client/browser should cache a preflight response.␊ */␊ maxAgeInSeconds: (number | string)␊ + allowedHeaders: unknown␊ + allowedMethods: unknown␊ + allowedOrigins: unknown␊ + exposedHeaders: unknown␊ + maxAgeInSeconds: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31690,6 +35161,7 @@ Generated by [AVA](https://avajs.dev). * The restrictions because of which SKU cannot be used. This is empty if there are no restrictions.␊ */␊ restrictions?: (Restriction5[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31717,6 +35189,9 @@ Generated by [AVA](https://avajs.dev). properties?: (BlobServicePropertiesProperties1 | string)␊ resources?: StorageAccountsBlobServicesContainersChildResource1[]␊ type: "Microsoft.Storage/storageAccounts/blobServices"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31733,6 +35208,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ContainerProperties3 | string)␊ type: "containers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31766,6 +35245,9 @@ Generated by [AVA](https://avajs.dev). properties?: (ContainerProperties3 | string)␊ resources?: StorageAccountsBlobServicesContainersImmutabilityPoliciesChildResource3[]␊ type: "Microsoft.Storage/storageAccounts/blobServices/containers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31782,6 +35264,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ImmutabilityPolicyProperty3 | string)␊ type: "immutabilityPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31792,6 +35278,7 @@ Generated by [AVA](https://avajs.dev). * The immutability period for the blobs in the container since the policy creation, in days.␊ */␊ immutabilityPeriodSinceCreationInDays: (number | string)␊ + immutabilityPeriodSinceCreationInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31808,6 +35295,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (ImmutabilityPolicyProperty3 | string)␊ type: "Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31820,6 +35310,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Storage/storageAccounts/managementPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31859,6 +35352,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Storage/storageAccounts"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31869,6 +35368,7 @@ Generated by [AVA](https://avajs.dev). * The identity type.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31933,6 +35433,7 @@ Generated by [AVA](https://avajs.dev). * Indicates the directory service used.␊ */␊ directoryServiceOptions: (("None" | "AADDS" | "AD") | string)␊ + directoryServiceOptions: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31963,6 +35464,12 @@ Generated by [AVA](https://avajs.dev). * Specifies the NetBIOS domain name.␊ */␊ netBiosDomainName: string␊ + azureStorageSid: unknown␊ + domainGuid: unknown␊ + domainName: unknown␊ + domainSid: unknown␊ + forestName: unknown␊ + netBiosDomainName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31977,6 +35484,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.␊ */␊ useSubDomainName?: (boolean | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -31995,6 +35503,7 @@ Generated by [AVA](https://avajs.dev). * A list of services that support encryption.␊ */␊ services?: (EncryptionServices7 | string)␊ + keySource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32059,6 +35568,7 @@ Generated by [AVA](https://avajs.dev). * Sets the virtual network rules␊ */␊ virtualNetworkRules?: (VirtualNetworkRule11[] | string)␊ + defaultAction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32073,6 +35583,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32091,6 +35602,7 @@ Generated by [AVA](https://avajs.dev). * Gets the state of virtual network rule.␊ */␊ state?: (("provisioning" | "deprovisioning" | "succeeded" | "failed" | "networkSourceDeleted") | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32107,6 +35619,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagementPolicyProperties | string)␊ type: "managementPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32117,6 +35633,7 @@ Generated by [AVA](https://avajs.dev). * The Storage Account ManagementPolicies Rules. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts.␊ */␊ policy: (ManagementPolicySchema | string)␊ + policy: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32127,6 +35644,7 @@ Generated by [AVA](https://avajs.dev). * The Storage Account ManagementPolicies Rules. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts.␊ */␊ rules: (ManagementPolicyRule[] | string)␊ + rules: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32149,6 +35667,9 @@ Generated by [AVA](https://avajs.dev). * The valid value is Lifecycle␊ */␊ type: ("Lifecycle" | string)␊ + definition: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32163,6 +35684,7 @@ Generated by [AVA](https://avajs.dev). * Filters limit rule actions to a subset of blobs within the storage account. If multiple filters are defined, a logical AND is performed on all filters. ␊ */␊ filters?: (ManagementPolicyFilter | string)␊ + actions: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32205,6 +35727,7 @@ Generated by [AVA](https://avajs.dev). * Value indicating the age in days after last modification␊ */␊ daysAfterModificationGreaterThan: (number | string)␊ + daysAfterModificationGreaterThan: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32225,6 +35748,7 @@ Generated by [AVA](https://avajs.dev). * Value indicating the age in days after creation␊ */␊ daysAfterCreationGreaterThan: (number | string)␊ + daysAfterCreationGreaterThan: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32239,6 +35763,7 @@ Generated by [AVA](https://avajs.dev). * An array of strings for prefixes to be match.␊ */␊ prefixMatch?: (string[] | string)␊ + blobTypes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32255,6 +35780,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BlobServicePropertiesProperties2 | string)␊ type: "blobServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32327,6 +35856,11 @@ Generated by [AVA](https://avajs.dev). * Required if CorsRule element is present. The number of seconds that the client/browser should cache a preflight response.␊ */␊ maxAgeInSeconds: (number | string)␊ + allowedHeaders: unknown␊ + allowedMethods: unknown␊ + allowedOrigins: unknown␊ + exposedHeaders: unknown␊ + maxAgeInSeconds: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32357,6 +35891,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FileServicePropertiesProperties | string)␊ type: "fileServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32381,6 +35919,7 @@ Generated by [AVA](https://avajs.dev). * The restrictions because of which SKU cannot be used. This is empty if there are no restrictions.␊ */␊ restrictions?: (Restriction6[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32408,6 +35947,9 @@ Generated by [AVA](https://avajs.dev). properties?: (BlobServicePropertiesProperties2 | string)␊ resources?: StorageAccountsBlobServicesContainersChildResource2[]␊ type: "Microsoft.Storage/storageAccounts/blobServices"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32424,6 +35966,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ContainerProperties4 | string)␊ type: "containers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32457,6 +36003,9 @@ Generated by [AVA](https://avajs.dev). properties?: (ContainerProperties4 | string)␊ resources?: StorageAccountsBlobServicesContainersImmutabilityPoliciesChildResource4[]␊ type: "Microsoft.Storage/storageAccounts/blobServices/containers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32473,6 +36022,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ImmutabilityPolicyProperty4 | string)␊ type: "immutabilityPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32483,6 +36036,7 @@ Generated by [AVA](https://avajs.dev). * The immutability period for the blobs in the container since the policy creation, in days.␊ */␊ immutabilityPeriodSinceCreationInDays: (number | string)␊ + immutabilityPeriodSinceCreationInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32499,6 +36053,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (ImmutabilityPolicyProperty4 | string)␊ type: "Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32515,6 +36072,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (ManagementPolicyProperties | string)␊ type: "Microsoft.Storage/storageAccounts/managementPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32532,6 +36092,9 @@ Generated by [AVA](https://avajs.dev). properties?: (FileServicePropertiesProperties | string)␊ resources?: StorageAccountsFileServicesSharesChildResource[]␊ type: "Microsoft.Storage/storageAccounts/fileServices"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32548,6 +36111,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FileShareProperties | string)␊ type: "shares"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32580,6 +36147,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (FileShareProperties | string)␊ type: "Microsoft.Storage/storageAccounts/fileServices/shares"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32619,6 +36189,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Storage/storageAccounts"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32629,6 +36205,7 @@ Generated by [AVA](https://avajs.dev). * The identity type.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32697,6 +36274,7 @@ Generated by [AVA](https://avajs.dev). * Indicates the directory service used.␊ */␊ directoryServiceOptions: (("None" | "AADDS" | "AD") | string)␊ + directoryServiceOptions: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32727,6 +36305,12 @@ Generated by [AVA](https://avajs.dev). * Specifies the NetBIOS domain name.␊ */␊ netBiosDomainName: string␊ + azureStorageSid: unknown␊ + domainGuid: unknown␊ + domainName: unknown␊ + domainSid: unknown␊ + forestName: unknown␊ + netBiosDomainName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32741,6 +36325,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.␊ */␊ useSubDomainName?: (boolean | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32763,6 +36348,7 @@ Generated by [AVA](https://avajs.dev). * A list of services that support encryption.␊ */␊ services?: (EncryptionServices8 | string)␊ + keySource: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32839,6 +36425,7 @@ Generated by [AVA](https://avajs.dev). * Sets the virtual network rules␊ */␊ virtualNetworkRules?: (VirtualNetworkRule12[] | string)␊ + defaultAction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32853,6 +36440,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32871,6 +36459,7 @@ Generated by [AVA](https://avajs.dev). * Gets the state of virtual network rule.␊ */␊ state?: (("provisioning" | "deprovisioning" | "succeeded" | "failed" | "networkSourceDeleted") | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32905,6 +36494,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagementPolicyProperties1 | string)␊ type: "managementPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32915,6 +36508,7 @@ Generated by [AVA](https://avajs.dev). * The Storage Account ManagementPolicies Rules. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts.␊ */␊ policy: (ManagementPolicySchema1 | string)␊ + policy: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32925,6 +36519,7 @@ Generated by [AVA](https://avajs.dev). * The Storage Account ManagementPolicies Rules. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts.␊ */␊ rules: (ManagementPolicyRule1[] | string)␊ + rules: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32947,6 +36542,9 @@ Generated by [AVA](https://avajs.dev). * The valid value is Lifecycle␊ */␊ type: ("Lifecycle" | string)␊ + definition: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -32961,6 +36559,7 @@ Generated by [AVA](https://avajs.dev). * Filters limit rule actions to a subset of blobs within the storage account. If multiple filters are defined, a logical AND is performed on all filters. ␊ */␊ filters?: (ManagementPolicyFilter1 | string)␊ + actions: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33043,6 +36642,7 @@ Generated by [AVA](https://avajs.dev). * Value indicating the age in days after creation␊ */␊ daysAfterCreationGreaterThan: (number | string)␊ + daysAfterCreationGreaterThan: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33079,6 +36679,7 @@ Generated by [AVA](https://avajs.dev). * An array of strings for prefixes to be match.␊ */␊ prefixMatch?: (string[] | string)␊ + blobTypes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33097,6 +36698,9 @@ Generated by [AVA](https://avajs.dev). * This is the filter tag value field used for tag based filtering, it can have 0 - 256 characters␊ */␊ value: string␊ + name: unknown␊ + op: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33117,6 +36721,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData | string)␊ type: "inventoryPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33127,6 +36735,7 @@ Generated by [AVA](https://avajs.dev). * The storage account blob inventory policy rules.␊ */␊ policy: (BlobInventoryPolicySchema | string)␊ + policy: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33149,6 +36758,10 @@ Generated by [AVA](https://avajs.dev). * The valid value is Inventory␊ */␊ type: ("Inventory" | string)␊ + destination: unknown␊ + enabled: unknown␊ + rules: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33167,6 +36780,9 @@ Generated by [AVA](https://avajs.dev). * A rule name can contain any combination of alpha numeric characters. Rule name is case-sensitive. It must be unique within a policy.␊ */␊ name: string␊ + definition: unknown␊ + enabled: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33177,6 +36793,7 @@ Generated by [AVA](https://avajs.dev). * An object that defines the blob inventory rule filter conditions.␊ */␊ filters: (BlobInventoryPolicyFilter | string)␊ + filters: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33199,6 +36816,7 @@ Generated by [AVA](https://avajs.dev). * An array of strings for blob prefixes to be matched.␊ */␊ prefixMatch?: (string[] | string)␊ + blobTypes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33245,6 +36863,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties3 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33263,6 +36885,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the private endpoint connection resource.␊ */␊ provisioningState?: (("Succeeded" | "Creating" | "Deleting" | "Failed") | string)␊ + privateLinkServiceConnectionState: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33303,6 +36926,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ObjectReplicationPolicyProperties | string)␊ type: "objectReplicationPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33321,6 +36948,8 @@ Generated by [AVA](https://avajs.dev). * Required. Source account name.␊ */␊ sourceAccount: string␊ + destinationAccount: unknown␊ + sourceAccount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33343,6 +36972,8 @@ Generated by [AVA](https://avajs.dev). * Required. Source container name.␊ */␊ sourceContainer: string␊ + destinationContainer: unknown␊ + sourceContainer: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33373,6 +37004,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EncryptionScopeProperties | string)␊ type: "encryptionScopes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33417,6 +37052,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BlobServicePropertiesProperties3 | string)␊ type: "blobServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33523,6 +37162,11 @@ Generated by [AVA](https://avajs.dev). * Required if CorsRule element is present. The number of seconds that the client/browser should cache a preflight response.␊ */␊ maxAgeInSeconds: (number | string)␊ + allowedHeaders: unknown␊ + allowedMethods: unknown␊ + allowedOrigins: unknown␊ + exposedHeaders: unknown␊ + maxAgeInSeconds: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33545,6 +37189,7 @@ Generated by [AVA](https://avajs.dev). * The field specifies blob object tracking granularity in days, typically how often the blob object should be tracked.This field is currently read only with value as 1␊ */␊ trackingGranularityInDays?: (number | string)␊ + enable: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33559,6 +37204,7 @@ Generated by [AVA](https://avajs.dev). * Blob restore is enabled if set to true.␊ */␊ enabled: (boolean | string)␊ + enabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33575,6 +37221,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FileServicePropertiesProperties1 | string)␊ type: "fileServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33605,6 +37255,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (QueueServicePropertiesProperties | string)␊ type: "queueServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33631,6 +37285,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TableServicePropertiesProperties | string)␊ type: "tableServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33649,6 +37307,7 @@ Generated by [AVA](https://avajs.dev). export interface Sku20 {␊ name: (("Standard_LRS" | "Standard_GRS" | "Standard_RAGRS" | "Standard_ZRS" | "Premium_LRS" | "Premium_ZRS" | "Standard_GZRS" | "Standard_RAGZRS") | string)␊ tier?: (("Standard" | "Premium") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33666,6 +37325,9 @@ Generated by [AVA](https://avajs.dev). properties?: (BlobServicePropertiesProperties3 | string)␊ resources?: StorageAccountsBlobServicesContainersChildResource3[]␊ type: "Microsoft.Storage/storageAccounts/blobServices"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33682,6 +37344,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ContainerProperties5 | string)␊ type: "containers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33723,6 +37389,9 @@ Generated by [AVA](https://avajs.dev). properties?: (ContainerProperties5 | string)␊ resources?: StorageAccountsBlobServicesContainersImmutabilityPoliciesChildResource5[]␊ type: "Microsoft.Storage/storageAccounts/blobServices/containers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33739,6 +37408,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ImmutabilityPolicyProperty5 | string)␊ type: "immutabilityPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33769,6 +37442,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (ImmutabilityPolicyProperty5 | string)␊ type: "Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33786,6 +37462,9 @@ Generated by [AVA](https://avajs.dev). properties?: (FileServicePropertiesProperties1 | string)␊ resources?: StorageAccountsFileServicesSharesChildResource1[]␊ type: "Microsoft.Storage/storageAccounts/fileServices"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33802,6 +37481,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FileShareProperties1 | string)␊ type: "shares"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33846,6 +37529,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (FileShareProperties1 | string)␊ type: "Microsoft.Storage/storageAccounts/fileServices/shares"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33862,6 +37548,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (ManagementPolicyProperties1 | string)␊ type: "Microsoft.Storage/storageAccounts/managementPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33878,6 +37567,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (PrivateEndpointConnectionProperties3 | string)␊ type: "Microsoft.Storage/storageAccounts/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33894,6 +37586,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (EncryptionScopeProperties | string)␊ type: "Microsoft.Storage/storageAccounts/encryptionScopes"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33910,6 +37605,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (ObjectReplicationPolicyProperties | string)␊ type: "Microsoft.Storage/storageAccounts/objectReplicationPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33927,6 +37625,9 @@ Generated by [AVA](https://avajs.dev). properties?: (QueueServicePropertiesProperties | string)␊ resources?: StorageAccountsQueueServicesQueuesChildResource[]␊ type: "Microsoft.Storage/storageAccounts/queueServices"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33940,6 +37641,10 @@ Generated by [AVA](https://avajs.dev). name: (string | string)␊ properties: (QueueProperties | string)␊ type: "queues"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface QueueProperties {␊ @@ -33962,6 +37667,9 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties?: (QueueProperties | string)␊ type: "Microsoft.Storage/storageAccounts/queueServices/queues"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33979,6 +37687,9 @@ Generated by [AVA](https://avajs.dev). properties?: (TableServicePropertiesProperties | string)␊ resources?: StorageAccountsTableServicesTablesChildResource[]␊ type: "Microsoft.Storage/storageAccounts/tableServices"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -33991,6 +37702,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "tables"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34003,6 +37717,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Storage/storageAccounts/tableServices/tables"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34023,6 +37740,9 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData | string)␊ type: "Microsoft.Storage/storageAccounts/inventoryPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34053,6 +37773,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.VMwareCloudSimple/dedicatedCloudNodes"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34079,6 +37804,10 @@ Generated by [AVA](https://avajs.dev). * The purchase SKU for CloudSimple paid resources␊ */␊ skuDescription?: (SkuDescription | string)␊ + availabilityZoneId: unknown␊ + nodesCount: unknown␊ + placementGroupId: unknown␊ + purchaseId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34093,6 +37822,8 @@ Generated by [AVA](https://avajs.dev). * SKU's name␊ */␊ name: string␊ + id: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34119,6 +37850,7 @@ Generated by [AVA](https://avajs.dev). * The tier of the SKU␊ */␊ tier?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34145,6 +37877,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.VMwareCloudSimple/dedicatedCloudServices"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34155,6 +37892,7 @@ Generated by [AVA](https://avajs.dev). * gateway Subnet for the account. It will collect the subnet address and always treat it as /28␊ */␊ gatewaySubnet: string␊ + gatewaySubnet: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34181,6 +37919,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.VMwareCloudSimple/virtualMachines"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34235,6 +37978,9 @@ Generated by [AVA](https://avajs.dev). * The list of Virtual VSphere Networks␊ */␊ vSphereNetworks?: (string[] | string)␊ + amountOfRam: unknown␊ + numberOfCores: unknown␊ + privateCloudId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34283,6 +38029,9 @@ Generated by [AVA](https://avajs.dev). * Disk's id␊ */␊ virtualDiskId?: string␊ + controllerId: unknown␊ + independenceMode: unknown␊ + totalSize: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34317,6 +38066,8 @@ Generated by [AVA](https://avajs.dev). * NIC id␊ */␊ virtualNicId?: string␊ + network: unknown␊ + nicType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34353,6 +38104,7 @@ Generated by [AVA](https://avajs.dev). * Properties of virtual network␊ */␊ properties?: (VirtualNetworkProperties2 | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34373,6 +38125,7 @@ Generated by [AVA](https://avajs.dev). * Properties of resource pool␊ */␊ properties?: (ResourcePoolProperties | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34398,6 +38151,10 @@ Generated by [AVA](https://avajs.dev). platformFaultDomainCount?: (number | string)␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -34407,6 +38164,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Compute/virtualMachines/extensions"␊ apiVersion: ("2015-05-01-preview" | "2015-06-15" | "2016-03-30")␊ properties: (GenericExtension | IaaSDiagnostics | IaaSAntimalware | CustomScriptExtension | CustomScriptForLinux | LinuxDiagnostic | VmAccessForLinux | BgInfo | VmAccessAgent | DscExtension | AcronisBackupLinux | AcronisBackup | LinuxChefClient | ChefClient | DatadogLinuxAgent | DatadogWindowsAgent | DockerExtension | DynatraceLinux | DynatraceWindows | Eset | HpeSecurityApplicationDefender | PuppetAgent | Site24X7LinuxServerExtn | Site24X7WindowsServerExtn | Site24X7ApmInsightExtn | TrendMicroDSALinux | TrendMicroDSA | BmcCtmAgentLinux | BmcCtmAgentWindows | OSPatchingForLinux | VMSnapshot | VMSnapshotLinux | CustomScript | NetworkWatcherAgentWindows | NetworkWatcherAgentLinux)␊ + type: unknown␊ + properties: unknown␊ + apiVersion: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface GenericExtension {␊ @@ -34428,6 +38189,10 @@ Generated by [AVA](https://avajs.dev). settings: ({␊ [k: string]: unknown␊ } | string)␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSDiagnostics {␊ @@ -34438,14 +38203,25 @@ Generated by [AVA](https://avajs.dev). settings: {␊ xmlCfg: string␊ StorageAccount: string␊ + xmlCfg: unknown␊ + StorageAccount: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + storageAccountEndPoint: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSAntimalware {␊ @@ -34459,6 +38235,9 @@ Generated by [AVA](https://avajs.dev). Paths: string␊ Extensions: string␊ Processes: string␊ + Paths: unknown␊ + Extensions: unknown␊ + Processes: unknown␊ [k: string]: unknown␊ }␊ RealtimeProtectionEnabled: ("true" | "false")␊ @@ -34467,10 +38246,23 @@ Generated by [AVA](https://avajs.dev). scanType: string␊ day: string␊ time: string␊ + isEnabled: unknown␊ + scanType: unknown␊ + day: unknown␊ + time: unknown␊ [k: string]: unknown␊ }␊ + AntimalwareEnabled: unknown␊ + Exclusions: unknown␊ + RealtimeProtectionEnabled: unknown␊ + ScheduledScanSettings: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptExtension {␊ @@ -34481,6 +38273,7 @@ Generated by [AVA](https://avajs.dev). settings: {␊ fileUris?: string[]␊ commandToExecute: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -34488,6 +38281,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptForLinux {␊ @@ -34503,8 +38302,15 @@ Generated by [AVA](https://avajs.dev). commandToExecute: string␊ storageAccountName?: string␊ storageAccountKey?: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxDiagnostic {␊ @@ -34531,8 +38337,16 @@ Generated by [AVA](https://avajs.dev). storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint?: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessForLinux {␊ @@ -34552,8 +38366,20 @@ Generated by [AVA](https://avajs.dev). reset_ssh: string␊ remove_user: string␊ expiration: string␊ + username: unknown␊ + password: unknown␊ + ssh_key: unknown␊ + reset_ssh: unknown␊ + remove_user: unknown␊ + expiration: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BgInfo {␊ @@ -34561,6 +38387,10 @@ Generated by [AVA](https://avajs.dev). type: "bginfo"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessAgent {␊ @@ -34576,6 +38406,12 @@ Generated by [AVA](https://avajs.dev). password?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DscExtension {␊ @@ -34592,12 +38428,20 @@ Generated by [AVA](https://avajs.dev). dataCollection?: string␊ [k: string]: unknown␊ }␊ + modulesUrl: unknown␊ + configurationFunction: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ dataBlobUri?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackupLinux {␊ @@ -34607,13 +38451,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackup {␊ @@ -34623,13 +38476,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxChefClient {␊ @@ -34645,6 +38507,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -34655,8 +38522,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface ChefClient {␊ @@ -34671,6 +38547,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -34681,8 +38562,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogLinuxAgent {␊ @@ -34692,8 +38582,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogWindowsAgent {␊ @@ -34703,8 +38599,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DockerExtension {␊ @@ -34715,8 +38617,10 @@ Generated by [AVA](https://avajs.dev). settings: {␊ docker: {␊ port: string␊ + port: unknown␊ [k: string]: unknown␊ }␊ + docker: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -34724,10 +38628,20 @@ Generated by [AVA](https://avajs.dev). ca: string␊ cert: string␊ key: string␊ + ca: unknown␊ + cert: unknown␊ + key: unknown␊ [k: string]: unknown␊ }␊ + certs: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceLinux {␊ @@ -34738,8 +38652,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceWindows {␊ @@ -34750,8 +38671,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface Eset {␊ @@ -34767,8 +38695,20 @@ Generated by [AVA](https://avajs.dev). "Enable-Cloud": boolean␊ "Enable-PUA": boolean␊ ERAAgentCfgUrl: string␊ + LicenseKey: unknown␊ + "Install-RealtimeProtection": unknown␊ + "Install-ProtocolFiltering": unknown␊ + "Install-DeviceControl": unknown␊ + "Enable-Cloud": unknown␊ + "Enable-PUA": unknown␊ + ERAAgentCfgUrl: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface HpeSecurityApplicationDefender {␊ @@ -34779,8 +38719,15 @@ Generated by [AVA](https://avajs.dev). protectedSettings: {␊ key: string␊ serverURL: string␊ + key: unknown␊ + serverURL: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface PuppetAgent {␊ @@ -34790,8 +38737,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ protectedSettings: {␊ PUPPET_MASTER_SERVER: string␊ + PUPPET_MASTER_SERVER: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7LinuxServerExtn {␊ @@ -34805,8 +38758,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7WindowsServerExtn {␊ @@ -34820,8 +38780,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7ApmInsightExtn {␊ @@ -34835,8 +38802,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSALinux {␊ @@ -34848,13 +38822,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSA {␊ @@ -34866,13 +38850,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentLinux {␊ @@ -34885,8 +38879,17 @@ Generated by [AVA](https://avajs.dev). "Agent Port": string␊ "Host Group": string␊ "User Account": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ + "User Account": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentWindows {␊ @@ -34898,8 +38901,16 @@ Generated by [AVA](https://avajs.dev). "Control-M Server Name": string␊ "Agent Port": string␊ "Host Group": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface OSPatchingForLinux {␊ @@ -34925,6 +38936,8 @@ Generated by [AVA](https://avajs.dev). vmStatusTest?: {␊ [k: string]: unknown␊ }␊ + disabled: unknown␊ + stop: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -34932,6 +38945,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshot {␊ @@ -34948,8 +38967,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshotLinux {␊ @@ -34966,8 +38998,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScript {␊ @@ -34977,14 +39022,24 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ fileUris: string[]␊ + fileUris: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ commandToExecute: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentWindows {␊ @@ -34992,6 +39047,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentWindows"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentLinux {␊ @@ -34999,6 +39058,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentLinux"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35017,18 +39080,29 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Compute/virtualMachineScaleSets - Virtual machine policy␊ */␊ virtualMachineProfile: (VirtualMachineProfile | string)␊ + upgradePolicy: unknown␊ + virtualMachineProfile: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + apiVersion: unknown␊ + type: unknown␊ + sku: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface Sku22 {␊ name: string␊ tier?: string␊ capacity: (string | number)␊ + name: unknown␊ + capacity: unknown␊ [k: string]: unknown␊ }␊ export interface UpgradePolicy {␊ mode: string␊ + mode: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualMachineProfile {␊ @@ -35036,6 +39110,9 @@ Generated by [AVA](https://avajs.dev). storageProfile: VirtualMachineScaleSetStorageProfile␊ extensionProfile?: VirtualMachineScaleSetExtensionProfile␊ networkProfile: VirtualMachineScaleSetNetworkProfile␊ + osProfile: unknown␊ + storageProfile: unknown␊ + networkProfile: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualMachineScaleSetOsProfile {␊ @@ -35046,6 +39123,9 @@ Generated by [AVA](https://avajs.dev). windowsConfiguration?: WindowsConfiguration␊ linuxConfiguration?: LinuxConfiguration␊ secrets?: Secret[]␊ + computerNamePrefix: unknown␊ + adminUsername: unknown␊ + adminPassword: unknown␊ [k: string]: unknown␊ }␊ export interface WindowsConfiguration {␊ @@ -35058,11 +39138,14 @@ Generated by [AVA](https://avajs.dev). }␊ export interface WinRM {␊ listeners: WinRMListener[]␊ + listeners: unknown␊ [k: string]: unknown␊ }␊ export interface WinRMListener {␊ protocol: (("Http" | "Https") | string)␊ certificateUrl: string␊ + protocol: unknown␊ + certificateUrl: unknown␊ [k: string]: unknown␊ }␊ export interface AdditionalUnattendContent {␊ @@ -35070,6 +39153,10 @@ Generated by [AVA](https://avajs.dev). component: string␊ settingName: string␊ content: string␊ + pass: unknown␊ + component: unknown␊ + settingName: unknown␊ + content: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxConfiguration {␊ @@ -35089,19 +39176,24 @@ Generated by [AVA](https://avajs.dev). export interface Secret {␊ sourceVault: Id␊ vaultCertificates: VaultCertificateUrl[]␊ + sourceVault: unknown␊ + vaultCertificates: unknown␊ [k: string]: unknown␊ }␊ export interface Id {␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ export interface VaultCertificateUrl {␊ certificateUrl: string␊ + certificateUrl: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualMachineScaleSetStorageProfile {␊ imageReference?: (ImageReference | string)␊ osDisk: VirtualMachineScaleSetOSDisk␊ + osDisk: unknown␊ [k: string]: unknown␊ }␊ export interface ImageReference {␊ @@ -35109,6 +39201,10 @@ Generated by [AVA](https://avajs.dev). offer: string␊ sku: string␊ version: string␊ + publisher: unknown␊ + offer: unknown␊ + sku: unknown␊ + version: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualMachineScaleSetOSDisk {␊ @@ -35117,6 +39213,8 @@ Generated by [AVA](https://avajs.dev). vhdContainers?: string[]␊ caching?: string␊ createOption: (("FromImage" | "Empty" | "Attach") | string)␊ + name: unknown␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualMachineScaleSetExtensionProfile {␊ @@ -35132,12 +39230,16 @@ Generated by [AVA](https://avajs.dev). settings?: {␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ [k: string]: unknown␊ }␊ [k: string]: unknown␊ }␊ export interface VirtualMachineScaleSetNetworkProfile {␊ networkInterfaceConfigurations: NetworkInterfaceConfiguration[]␊ + networkInterfaceConfigurations: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkInterfaceConfiguration {␊ @@ -35145,8 +39247,12 @@ Generated by [AVA](https://avajs.dev). properties: {␊ primary: boolean␊ ipConfigurations: IpConfiguration[]␊ + primary: unknown␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface IpConfiguration {␊ @@ -35157,6 +39263,7 @@ Generated by [AVA](https://avajs.dev). loadBalancerInboundNatPools?: Id[]␊ [k: string]: unknown␊ }␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35181,6 +39288,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Scheduler/jobCollections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface JobCollectionProperties {␊ @@ -35233,6 +39344,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (JobProperties | string)␊ type: "jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface JobProperties {␊ @@ -35541,6 +39656,9 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Compute/virtualMachines - Network profile␊ */␊ networkProfile: (NetworkProfile | string)␊ + hardwareProfile: unknown␊ + storageProfile: unknown␊ + networkProfile: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35561,16 +39679,22 @@ Generated by [AVA](https://avajs.dev). comments?: string␊ [k: string]: unknown␊ }) & ExtensionsChild)[]␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface HardwareProfile {␊ vmSize: string␊ + vmSize: unknown␊ [k: string]: unknown␊ }␊ export interface StorageProfile {␊ imageReference?: (ImageReference | string)␊ osDisk: OsDisk␊ dataDisks?: DataDisk[]␊ + osDisk: unknown␊ [k: string]: unknown␊ }␊ export interface OsDisk {␊ @@ -35579,10 +39703,14 @@ Generated by [AVA](https://avajs.dev). image?: Vhd␊ caching?: string␊ createOption: (("FromImage" | "Empty" | "Attach") | string)␊ + name: unknown␊ + vhd: unknown␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ export interface Vhd {␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ export interface DataDisk {␊ @@ -35592,10 +39720,15 @@ Generated by [AVA](https://avajs.dev). vhd: VhdUri␊ caching?: string␊ createOption: (("FromImage" | "Empty" | "Attach") | string)␊ + name: unknown␊ + lun: unknown␊ + vhd: unknown␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ export interface VhdUri {␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ export interface OsProfile {␊ @@ -35606,18 +39739,24 @@ Generated by [AVA](https://avajs.dev). windowsConfiguration?: WindowsConfiguration␊ linuxConfiguration?: LinuxConfiguration␊ secrets?: Secret[]␊ + computerName: unknown␊ + adminUsername: unknown␊ + adminPassword: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkProfile {␊ networkInterfaces: NetworkInterfaces[]␊ + networkInterfaces: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkInterfaces {␊ id: string␊ properties?: {␊ primary: boolean␊ + primary: unknown␊ [k: string]: unknown␊ }␊ + id: unknown␊ [k: string]: unknown␊ }␊ export interface ARMResourceBase1 {␊ @@ -35641,6 +39780,8 @@ Generated by [AVA](https://avajs.dev). * Collection of resources this resource depends on␊ */␊ dependsOn?: string[]␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface ResourceCopy1 {␊ @@ -35669,6 +39810,10 @@ Generated by [AVA](https://avajs.dev). type: "extensions"␊ apiVersion: ("2015-05-01-preview" | "2015-06-15" | "2016-03-30")␊ properties: (GenericExtension | IaaSDiagnostics | IaaSAntimalware | CustomScriptExtension | CustomScriptForLinux | LinuxDiagnostic | VmAccessForLinux | BgInfo | VmAccessAgent | DscExtension | AcronisBackupLinux | AcronisBackup | LinuxChefClient | ChefClient | DatadogLinuxAgent | DatadogWindowsAgent | DockerExtension | DynatraceLinux | DynatraceWindows | Eset | HpeSecurityApplicationDefender | PuppetAgent | Site24X7LinuxServerExtn | Site24X7WindowsServerExtn | Site24X7ApmInsightExtn | TrendMicroDSALinux | TrendMicroDSA | BmcCtmAgentLinux | BmcCtmAgentWindows | OSPatchingForLinux | VMSnapshot | VMSnapshotLinux | AcronisBackupLinux | AcronisBackup | LinuxChefClient | ChefClient | DatadogLinuxAgent | DatadogWindowsAgent | DockerExtension | CustomScript | NetworkWatcherAgentWindows | NetworkWatcherAgentLinux)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35697,6 +39842,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DataLakeStore/accounts"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface EncryptionIdentity {␊ @@ -35770,6 +39919,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallRuleProperties | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35812,6 +39965,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DataLakeStore/accounts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35822,6 +39980,7 @@ Generated by [AVA](https://avajs.dev). * The type of encryption being used. Currently the only supported type is 'SystemAssigned'.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface CreateDataLakeStoreAccountProperties {␊ @@ -35879,6 +40038,7 @@ Generated by [AVA](https://avajs.dev). * The type of encryption configuration being used. Currently the only supported types are 'UserManaged' and 'ServiceManaged'.␊ */␊ type: (("UserManaged" | "ServiceManaged") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35897,6 +40057,9 @@ Generated by [AVA](https://avajs.dev). * The resource identifier for the user managed Key Vault being used to encrypt.␊ */␊ keyVaultResourceId: string␊ + encryptionKeyName: unknown␊ + encryptionKeyVersion: unknown␊ + keyVaultResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35911,6 +40074,8 @@ Generated by [AVA](https://avajs.dev). * The firewall rule properties to use when creating a new firewall rule.␊ */␊ properties: (CreateOrUpdateFirewallRuleProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35925,6 +40090,8 @@ Generated by [AVA](https://avajs.dev). * The start IP address for the firewall rule. This can be either ipv4 or ipv6. Start and End should be in the same protocol.␊ */␊ startIpAddress: string␊ + endIpAddress: unknown␊ + startIpAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35939,6 +40106,8 @@ Generated by [AVA](https://avajs.dev). * The trusted identity provider properties to use when creating a new trusted identity provider.␊ */␊ properties: (CreateOrUpdateTrustedIdProviderProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35949,6 +40118,7 @@ Generated by [AVA](https://avajs.dev). * The URL of this trusted identity provider.␊ */␊ idProvider: string␊ + idProvider: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35963,6 +40133,8 @@ Generated by [AVA](https://avajs.dev). * The virtual network rule properties to use when creating a new virtual network rule.␊ */␊ properties: (CreateOrUpdateVirtualNetworkRuleProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35973,6 +40145,7 @@ Generated by [AVA](https://avajs.dev). * The resource identifier for the subnet.␊ */␊ subnetId: string␊ + subnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -35989,6 +40162,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateOrUpdateFirewallRuleProperties | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36005,6 +40182,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateOrUpdateVirtualNetworkRuleProperties | string)␊ type: "virtualNetworkRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36021,6 +40202,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateOrUpdateTrustedIdProviderProperties | string)␊ type: "trustedIdProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36037,6 +40222,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateOrUpdateFirewallRuleProperties | string)␊ type: "Microsoft.DataLakeStore/accounts/firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36053,6 +40242,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateOrUpdateTrustedIdProviderProperties | string)␊ type: "Microsoft.DataLakeStore/accounts/trustedIdProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36069,6 +40262,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateOrUpdateVirtualNetworkRuleProperties | string)␊ type: "Microsoft.DataLakeStore/accounts/virtualNetworkRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36093,6 +40290,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DataLakeAnalytics/accounts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface CreateDataLakeAnalyticsAccountProperties {␊ @@ -36148,6 +40350,8 @@ Generated by [AVA](https://avajs.dev). * The list of Azure Blob Storage accounts associated with this account.␊ */␊ storageAccounts?: (AddStorageAccountWithAccountParameters[] | string)␊ + dataLakeStoreAccounts: unknown␊ + defaultDataLakeStoreAccount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36162,6 +40366,8 @@ Generated by [AVA](https://avajs.dev). * The compute policy properties to use when creating a new compute policy.␊ */␊ properties: (CreateOrUpdateComputePolicyProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36184,6 +40390,8 @@ Generated by [AVA](https://avajs.dev). * The type of AAD object the object identifier refers to.␊ */␊ objectType: (("User" | "Group" | "ServicePrincipal") | string)␊ + objectId: unknown␊ + objectType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36198,6 +40406,7 @@ Generated by [AVA](https://avajs.dev). * The Data Lake Store account properties to use when adding a new Data Lake Store account.␊ */␊ properties?: (AddDataLakeStoreProperties | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36222,6 +40431,8 @@ Generated by [AVA](https://avajs.dev). * The firewall rule properties to use when creating a new firewall rule.␊ */␊ properties: (CreateOrUpdateFirewallRuleProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36236,6 +40447,8 @@ Generated by [AVA](https://avajs.dev). * The start IP address for the firewall rule. This can be either ipv4 or ipv6. Start and End should be in the same protocol.␊ */␊ startIpAddress: string␊ + endIpAddress: unknown␊ + startIpAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36250,6 +40463,8 @@ Generated by [AVA](https://avajs.dev). * The Azure Storage account properties to use when adding a new Azure Storage account.␊ */␊ properties: (StorageAccountProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36264,6 +40479,7 @@ Generated by [AVA](https://avajs.dev). * The optional suffix for the storage account.␊ */␊ suffix?: string␊ + accessKey: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36280,6 +40496,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AddDataLakeStoreProperties | string)␊ type: "DataLakeStoreAccounts"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36296,6 +40516,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageAccountProperties | string)␊ type: "StorageAccounts"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36312,6 +40536,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateOrUpdateComputePolicyProperties | string)␊ type: "computePolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36328,6 +40556,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateOrUpdateFirewallRuleProperties1 | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36352,6 +40584,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DataLakeAnalytics/accounts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface CreateDataLakeAnalyticsAccountProperties1 {␊ @@ -36407,6 +40644,8 @@ Generated by [AVA](https://avajs.dev). * The list of Azure Blob Storage accounts associated with this account.␊ */␊ storageAccounts?: (AddStorageAccountWithAccountParameters1[] | string)␊ + dataLakeStoreAccounts: unknown␊ + defaultDataLakeStoreAccount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36421,6 +40660,8 @@ Generated by [AVA](https://avajs.dev). * The compute policy properties to use when creating a new compute policy.␊ */␊ properties: (CreateOrUpdateComputePolicyProperties1 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36443,6 +40684,8 @@ Generated by [AVA](https://avajs.dev). * The type of AAD object the object identifier refers to.␊ */␊ objectType: (("User" | "Group" | "ServicePrincipal") | string)␊ + objectId: unknown␊ + objectType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36457,6 +40700,7 @@ Generated by [AVA](https://avajs.dev). * The Data Lake Store account properties to use when adding a new Data Lake Store account.␊ */␊ properties?: (AddDataLakeStoreProperties1 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36481,6 +40725,8 @@ Generated by [AVA](https://avajs.dev). * The firewall rule properties to use when creating a new firewall rule.␊ */␊ properties: (CreateOrUpdateFirewallRuleProperties2 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36495,6 +40741,8 @@ Generated by [AVA](https://avajs.dev). * The start IP address for the firewall rule. This can be either ipv4 or ipv6. Start and End should be in the same protocol.␊ */␊ startIpAddress: string␊ + endIpAddress: unknown␊ + startIpAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36509,6 +40757,8 @@ Generated by [AVA](https://avajs.dev). * The Azure Storage account properties to use when adding a new Azure Storage account.␊ */␊ properties: (AddStorageAccountProperties | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36523,6 +40773,7 @@ Generated by [AVA](https://avajs.dev). * The optional suffix for the storage account.␊ */␊ suffix?: string␊ + accessKey: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36539,6 +40790,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AddDataLakeStoreProperties1 | string)␊ type: "dataLakeStoreAccounts"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36555,6 +40810,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AddStorageAccountProperties | string)␊ type: "storageAccounts"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36571,6 +40830,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateOrUpdateComputePolicyProperties1 | string)␊ type: "computePolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36587,6 +40850,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateOrUpdateFirewallRuleProperties2 | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36603,6 +40870,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AddDataLakeStoreProperties1 | string)␊ type: "Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36619,6 +40890,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AddStorageAccountProperties | string)␊ type: "Microsoft.DataLakeAnalytics/accounts/storageAccounts"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36635,6 +40910,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateOrUpdateFirewallRuleProperties2 | string)␊ type: "Microsoft.DataLakeAnalytics/accounts/firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36651,6 +40930,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CreateOrUpdateComputePolicyProperties1 | string)␊ type: "Microsoft.DataLakeAnalytics/accounts/computePolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36687,6 +40970,13 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CognitiveServices/accounts"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36697,6 +40987,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the sku name. Required for account creation, optional for update.␊ */␊ name: (("F0" | "P0" | "P1" | "P2" | "S0" | "S1" | "S2" | "S3" | "S4" | "S5" | "S6") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36736,6 +41027,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CognitiveServices/accounts"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36906,6 +41201,7 @@ Generated by [AVA](https://avajs.dev). * An IPv4 address range in CIDR notation, such as '124.56.78.91' (simple IP address) or '124.56.78.0/24' (all addresses that start with 124.56.78).␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36924,6 +41220,7 @@ Generated by [AVA](https://avajs.dev). * Gets the state of virtual network rule.␊ */␊ state?: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -36956,6 +41253,7 @@ Generated by [AVA](https://avajs.dev). * A collection of information about the state of the connection between service consumer and provider.␊ */␊ privateLinkServiceConnectionState: (PrivateLinkServiceConnectionState4 | string)␊ + privateLinkServiceConnectionState: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37010,6 +41308,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties4 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37020,6 +41322,7 @@ Generated by [AVA](https://avajs.dev). * The name of SKU.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37040,6 +41343,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties4 | string)␊ type: "Microsoft.CognitiveServices/accounts/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37060,6 +41367,9 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.PowerBI/workspaceCollections"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface AzureSku9 {␊ @@ -37071,6 +41381,8 @@ Generated by [AVA](https://avajs.dev). * SKU tier␊ */␊ tier: ("Standard" | string)␊ + name: unknown␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37101,6 +41413,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.PowerBIDedicated/capacities"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37139,6 +41457,7 @@ Generated by [AVA](https://avajs.dev). * The name of the Azure pricing tier to which the SKU applies.␊ */␊ tier?: ("PBIE_Azure" | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37169,6 +41488,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DataCatalog/catalogs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37239,6 +41562,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerService/containerServices"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37266,6 +41594,9 @@ Generated by [AVA](https://avajs.dev). * Profile for Windows VMs in the container service cluster.␊ */␊ windowsProfile?: (ContainerServiceWindowsProfile | string)␊ + agentPoolProfiles: unknown␊ + linuxProfile: unknown␊ + masterProfile: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37288,6 +41619,9 @@ Generated by [AVA](https://avajs.dev). * Size of agent VMs.␊ */␊ vmSize: (("Standard_A0" | "Standard_A1" | "Standard_A2" | "Standard_A3" | "Standard_A4" | "Standard_A5" | "Standard_A6" | "Standard_A7" | "Standard_A8" | "Standard_A9" | "Standard_A10" | "Standard_A11" | "Standard_D1" | "Standard_D2" | "Standard_D3" | "Standard_D4" | "Standard_D11" | "Standard_D12" | "Standard_D13" | "Standard_D14" | "Standard_D1_v2" | "Standard_D2_v2" | "Standard_D3_v2" | "Standard_D4_v2" | "Standard_D5_v2" | "Standard_D11_v2" | "Standard_D12_v2" | "Standard_D13_v2" | "Standard_D14_v2" | "Standard_G1" | "Standard_G2" | "Standard_G3" | "Standard_G4" | "Standard_G5" | "Standard_DS1" | "Standard_DS2" | "Standard_DS3" | "Standard_DS4" | "Standard_DS11" | "Standard_DS12" | "Standard_DS13" | "Standard_DS14" | "Standard_GS1" | "Standard_GS2" | "Standard_GS3" | "Standard_GS4" | "Standard_GS5") | string)␊ + dnsPrefix: unknown␊ + name: unknown␊ + vmSize: unknown␊ [k: string]: unknown␊ }␊ export interface ContainerServiceDiagnosticsProfile {␊ @@ -37295,6 +41629,7 @@ Generated by [AVA](https://avajs.dev). * Profile for diagnostics on the container service VMs.␊ */␊ vmDiagnostics: (ContainerServiceVMDiagnostics | string)␊ + vmDiagnostics: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37305,6 +41640,7 @@ Generated by [AVA](https://avajs.dev). * Whether the VM diagnostic agent is provisioned on the VM.␊ */␊ enabled: (boolean | string)␊ + enabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37319,6 +41655,8 @@ Generated by [AVA](https://avajs.dev). * SSH configuration for Linux-based VMs running on Azure.␊ */␊ ssh: (ContainerServiceSshConfiguration | string)␊ + adminUsername: unknown␊ + ssh: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37329,6 +41667,7 @@ Generated by [AVA](https://avajs.dev). * the list of SSH public keys used to authenticate with Linux-based VMs.␊ */␊ publicKeys: (ContainerServiceSshPublicKey[] | string)␊ + publicKeys: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37339,6 +41678,7 @@ Generated by [AVA](https://avajs.dev). * Certificate public key used to authenticate with VMs through SSH. The certificate must be in PEM format with or without headers.␊ */␊ keyData: string␊ + keyData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37353,6 +41693,7 @@ Generated by [AVA](https://avajs.dev). * DNS prefix to be used to create the FQDN for master.␊ */␊ dnsPrefix: string␊ + dnsPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37363,6 +41704,7 @@ Generated by [AVA](https://avajs.dev). * The orchestrator to use to manage container service cluster resources. Valid values are Swarm, DCOS, and Custom.␊ */␊ orchestratorType: (("Swarm" | "DCOS") | string)␊ + orchestratorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37377,6 +41719,8 @@ Generated by [AVA](https://avajs.dev). * The administrator username to use for Windows VMs␊ */␊ adminUsername: string␊ + adminPassword: unknown␊ + adminUsername: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37394,6 +41738,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ZoneProperties | string)␊ resources?: (Dnszones_TXTChildResource | Dnszones_SRVChildResource | Dnszones_SOAChildResource | Dnszones_PTRChildResource | Dnszones_NSChildResource | Dnszones_MXChildResource | Dnszones_CNAMEChildResource | Dnszones_AAAAChildResource | Dnszones_AChildResource)[]␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37424,6 +41771,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37616,6 +41966,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37632,6 +41985,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37648,6 +42004,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37664,6 +42023,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37680,6 +42042,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37696,6 +42061,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37712,6 +42080,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37728,6 +42099,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37744,6 +42118,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37760,6 +42137,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37776,6 +42156,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37792,6 +42175,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37808,6 +42194,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37824,6 +42213,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37840,6 +42232,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37856,6 +42251,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37872,6 +42270,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37889,6 +42290,9 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ZoneProperties1 | string)␊ resources?: (Dnszones_TXTChildResource1 | Dnszones_SRVChildResource1 | Dnszones_SOAChildResource1 | Dnszones_PTRChildResource1 | Dnszones_NSChildResource1 | Dnszones_MXChildResource1 | Dnszones_CNAMEChildResource1 | Dnszones_AAAAChildResource1 | Dnszones_AChildResource1)[]␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -37927,6 +42331,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38133,6 +42540,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38157,6 +42567,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38181,6 +42594,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38205,6 +42621,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38229,6 +42648,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38253,6 +42675,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38277,6 +42702,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38301,6 +42729,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38325,6 +42756,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38349,6 +42783,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38373,6 +42810,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38397,6 +42837,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38421,6 +42864,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38445,6 +42891,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38469,6 +42918,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38493,6 +42945,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38517,6 +42972,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the properties of the RecordSet.␊ */␊ properties: (RecordSetProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38541,6 +42999,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Cdn/profiles"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface ProfilePropertiesCreateParameters {␊ @@ -38548,6 +43011,7 @@ Generated by [AVA](https://avajs.dev). * The SKU (pricing tier) of the CDN profile.␊ */␊ sku: (Sku26 | string)␊ + sku: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38581,6 +43045,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "endpoints"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface EndpointPropertiesCreateParameters {␊ @@ -38616,6 +43085,7 @@ Generated by [AVA](https://avajs.dev). * Defines the query string caching behavior.␊ */␊ queryStringCachingBehavior?: (("IgnoreQueryString" | "BypassCaching" | "UseQueryString" | "NotSet") | string)␊ + origins: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38630,6 +43100,7 @@ Generated by [AVA](https://avajs.dev). * Properties of deep created origin on a CDN endpoint.␊ */␊ properties?: (DeepCreatedOriginProperties | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38648,6 +43119,7 @@ Generated by [AVA](https://avajs.dev). * The value of the HTTPS port. Must be between 1 and 65535␊ */␊ httpsPort?: (number | string)␊ + hostName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38672,6 +43144,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Cdn/profiles/endpoints"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38685,6 +43162,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (OriginPropertiesParameters | string)␊ type: "origins"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface OriginPropertiesParameters {␊ @@ -38700,6 +43181,7 @@ Generated by [AVA](https://avajs.dev). * The value of the HTTPS port. Must be between 1 and 65535.␊ */␊ httpsPort?: (number | string)␊ + hostName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38713,6 +43195,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (CustomDomainPropertiesParameters | string)␊ type: "customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface CustomDomainPropertiesParameters {␊ @@ -38720,6 +43206,7 @@ Generated by [AVA](https://avajs.dev). * The host name of the custom domain. Must be a domain name.␊ */␊ hostName: string␊ + hostName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38733,6 +43220,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (CustomDomainPropertiesParameters | string)␊ type: "Microsoft.Cdn/profiles/endpoints/customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38746,6 +43237,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (OriginPropertiesParameters | string)␊ type: "Microsoft.Cdn/profiles/endpoints/origins"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38773,6 +43268,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Cdn/profiles"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38796,6 +43296,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "endpoints"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface EndpointPropertiesCreateParameters1 {␊ @@ -38831,6 +43336,7 @@ Generated by [AVA](https://avajs.dev). * Defines the query string caching behavior.␊ */␊ queryStringCachingBehavior?: (("IgnoreQueryString" | "BypassCaching" | "UseQueryString" | "NotSet") | string)␊ + origins: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38845,6 +43351,7 @@ Generated by [AVA](https://avajs.dev). * Properties of deep created origin on a CDN endpoint.␊ */␊ properties?: (DeepCreatedOriginProperties1 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38863,6 +43370,7 @@ Generated by [AVA](https://avajs.dev). * The value of the HTTPS port. Must be between 1 and 65535␊ */␊ httpsPort?: (number | string)␊ + hostName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38897,6 +43405,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Cdn/profiles/endpoints"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38910,6 +43423,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (OriginPropertiesParameters1 | string)␊ type: "origins"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface OriginPropertiesParameters1 {␊ @@ -38925,6 +43442,7 @@ Generated by [AVA](https://avajs.dev). * The value of the HTTPS port. Must be between 1 and 65535.␊ */␊ httpsPort?: (number | string)␊ + hostName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38938,6 +43456,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (CustomDomainPropertiesParameters1 | string)␊ type: "customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface CustomDomainPropertiesParameters1 {␊ @@ -38945,6 +43467,7 @@ Generated by [AVA](https://avajs.dev). * The host name of the custom domain. Must be a domain name.␊ */␊ hostName: string␊ + hostName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38958,6 +43481,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (CustomDomainPropertiesParameters1 | string)␊ type: "Microsoft.Cdn/profiles/endpoints/customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38971,6 +43498,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (OriginPropertiesParameters1 | string)␊ type: "Microsoft.Cdn/profiles/endpoints/origins"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -38998,6 +43529,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Batch/batchAccounts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39018,6 +43554,7 @@ Generated by [AVA](https://avajs.dev). * The resource ID of the storage account to be used for auto storage account.␊ */␊ storageAccountId: string␊ + storageAccountId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39038,6 +43575,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "applications"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39059,6 +43599,9 @@ Generated by [AVA](https://avajs.dev). name: string␊ resources?: BatchAccountsApplicationsVersionsChildResource[]␊ type: "Microsoft.Batch/batchAccounts/applications"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39071,6 +43614,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "versions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39083,6 +43629,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Batch/batchAccounts/applications/versions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39110,6 +43659,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Batch/batchAccounts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39138,6 +43692,7 @@ Generated by [AVA](https://avajs.dev). * The resource ID of the storage account to be used for auto-storage account.␊ */␊ storageAccountId: string␊ + storageAccountId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39152,6 +43707,8 @@ Generated by [AVA](https://avajs.dev). * The URL of the Azure key vault associated with the Batch account.␊ */␊ url: string␊ + id: unknown␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39172,6 +43729,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "applications"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39188,6 +43748,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CertificateCreateOrUpdateProperties | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39214,6 +43778,7 @@ Generated by [AVA](https://avajs.dev). * This must match the first portion of the certificate name. Currently required to be 'SHA1'.␊ */␊ thumbprintAlgorithm?: string␊ + data: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39230,6 +43795,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PoolProperties | string)␊ type: "pools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39285,6 +43854,7 @@ Generated by [AVA](https://avajs.dev). * If this is omitted, and no default version is specified for this application, the request fails with the error code InvalidApplicationPackageReferences. If you are calling the REST API directly, the HTTP status code is 409.␊ */␊ version?: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ export interface CertificateReference {␊ @@ -39307,6 +43877,7 @@ Generated by [AVA](https://avajs.dev). * You can specify more than one visibility in this collection. The default is all accounts.␊ */␊ visibility?: (("StartTask" | "Task" | "RemoteUser")[] | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ export interface DeploymentConfiguration {␊ @@ -39327,6 +43898,7 @@ Generated by [AVA](https://avajs.dev). * The default value is * which specifies the latest operating system version for the specified OS family.␊ */␊ targetOSVersion?: string␊ + osFamily: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualMachineConfiguration {␊ @@ -39349,6 +43921,8 @@ Generated by [AVA](https://avajs.dev). nodeAgentSkuId: string␊ osDisk?: (OSDisk | string)␊ windowsConfiguration?: (WindowsConfiguration1 | string)␊ + imageReference: unknown␊ + nodeAgentSkuId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39377,6 +43951,8 @@ Generated by [AVA](https://avajs.dev). * Premium_LRS - The data disk should use premium locally redundant storage.␊ */␊ storageAccountType?: (("Standard_LRS" | "Premium_LRS") | string)␊ + diskSizeGB: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ export interface ImageReference1 {␊ @@ -39422,6 +43998,8 @@ Generated by [AVA](https://avajs.dev). export interface MetadataItem {␊ name: string␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39440,6 +44018,7 @@ Generated by [AVA](https://avajs.dev). * The maximum number of inbound NAT pools per Batch pool is 5. If the maximum number of inbound NAT pools is exceeded the request fails with HTTP status code 400.␊ */␊ inboundNatPools: (InboundNatPool[] | string)␊ + inboundNatPools: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatPool {␊ @@ -39464,6 +44043,11 @@ Generated by [AVA](https://avajs.dev). */␊ networkSecurityGroupRules?: (NetworkSecurityGroupRule[] | string)␊ protocol: (("TCP" | "UDP") | string)␊ + backendPort: unknown␊ + frontendPortRangeEnd: unknown␊ + frontendPortRangeStart: unknown␊ + name: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkSecurityGroupRule {␊ @@ -39476,6 +44060,9 @@ Generated by [AVA](https://avajs.dev). * Valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400.␊ */␊ sourceAddressPrefix: string␊ + access: unknown␊ + priority: unknown␊ + sourceAddressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39492,6 +44079,7 @@ Generated by [AVA](https://avajs.dev). */␊ evaluationInterval?: string␊ formula: string␊ + formula: unknown␊ [k: string]: unknown␊ }␊ export interface FixedScaleSettings {␊ @@ -39537,6 +44125,7 @@ Generated by [AVA](https://avajs.dev). export interface EnvironmentSetting {␊ name: string␊ value?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ export interface ResourceFile {␊ @@ -39549,6 +44138,8 @@ Generated by [AVA](https://avajs.dev). */␊ fileMode?: string␊ filePath: string␊ + blobSource: unknown␊ + filePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39575,6 +44166,7 @@ Generated by [AVA](https://avajs.dev). }␊ export interface TaskSchedulingPolicy {␊ nodeFillType: (("Spread" | "Pack") | string)␊ + nodeFillType: unknown␊ [k: string]: unknown␊ }␊ export interface UserAccount {␊ @@ -39585,6 +44177,8 @@ Generated by [AVA](https://avajs.dev). linuxUserConfiguration?: (LinuxUserConfiguration | string)␊ name: string␊ password: string␊ + name: unknown␊ + password: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxUserConfiguration {␊ @@ -39621,6 +44215,9 @@ Generated by [AVA](https://avajs.dev). name: string␊ resources?: BatchAccountsApplicationsVersionsChildResource1[]␊ type: "Microsoft.Batch/batchAccounts/applications"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39633,6 +44230,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "versions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39645,6 +44245,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Batch/batchAccounts/applications/versions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39661,6 +44264,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CertificateCreateOrUpdateProperties | string)␊ type: "Microsoft.Batch/batchAccounts/certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39677,6 +44284,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PoolProperties | string)␊ type: "Microsoft.Batch/batchAccounts/pools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39704,6 +44315,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Cache/Redis"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39742,6 +44358,7 @@ Generated by [AVA](https://avajs.dev). tenantSettings?: ({␊ [k: string]: string␊ } | string)␊ + sku: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39760,6 +44377,9 @@ Generated by [AVA](https://avajs.dev). * The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium).␊ */␊ name: (("Basic" | "Standard" | "Premium") | string)␊ + capacity: unknown␊ + family: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39776,6 +44396,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RedisFirewallRuleProperties1 | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39790,6 +44414,8 @@ Generated by [AVA](https://avajs.dev). * lowest IP address included in the range␊ */␊ startIP: string␊ + endIP: unknown␊ + startIP: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39803,6 +44429,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ScheduleEntries1 | string)␊ type: "patchSchedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39813,6 +44443,7 @@ Generated by [AVA](https://avajs.dev). * List of patch schedules for a Redis cache.␊ */␊ scheduleEntries: (ScheduleEntry1[] | string)␊ + scheduleEntries: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39831,6 +44462,8 @@ Generated by [AVA](https://avajs.dev). * Start hour after which cache patching can start.␊ */␊ startHourUtc: (number | string)␊ + dayOfWeek: unknown␊ + startHourUtc: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39847,6 +44480,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RedisFirewallRuleProperties1 | string)␊ type: "Microsoft.Cache/Redis/firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39860,6 +44497,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ScheduleEntries1 | string)␊ type: "Microsoft.Cache/Redis/patchSchedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -39872,6 +44513,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the workflow properties.␊ */␊ properties: (WorkflowProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface WorkflowProperties {␊ @@ -39962,6 +44606,9 @@ Generated by [AVA](https://avajs.dev). * The workflow properties.␊ */␊ properties: (WorkflowProperties1 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface WorkflowProperties1 {␊ @@ -40062,6 +44709,8 @@ Generated by [AVA](https://avajs.dev). properties?: ({␊ [k: string]: string␊ } | string)␊ + type: unknown␊ + apiVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -40092,6 +44741,9 @@ Generated by [AVA](https://avajs.dev). * The integrationAccount agreement properties.␊ */␊ properties: (IntegrationAccountsAgreementsProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface IntegrationAccountsAgreementsProperties {␊ @@ -40168,6 +44820,9 @@ Generated by [AVA](https://avajs.dev). * The integrationAccount properties.␊ */␊ properties: (IntegrationAccountsCertificatesProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface IntegrationAccountsCertificatesProperties {␊ @@ -40232,6 +44887,9 @@ Generated by [AVA](https://avajs.dev). * The integrationAccounts maps properties.␊ */␊ properties: (IntegrationAccountsMapsProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface IntegrationAccountsMapsProperties {␊ @@ -40311,6 +44969,9 @@ Generated by [AVA](https://avajs.dev). * The integrationAccount partner properties.␊ */␊ properties: (IntegrationAccountsPartnersProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface IntegrationAccountsPartnersProperties {␊ @@ -40360,6 +45021,9 @@ Generated by [AVA](https://avajs.dev). * The integrationAccounts schemas properties.␊ */␊ properties: (IntegrationAccountsSchemasProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface IntegrationAccountsSchemasProperties {␊ @@ -40423,6 +45087,9 @@ Generated by [AVA](https://avajs.dev). * The integrationAccounts assemblies properties.␊ */␊ properties: (IntegrationAccountsAssembliesProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface IntegrationAccountsAssembliesProperties {␊ @@ -40482,6 +45149,9 @@ Generated by [AVA](https://avajs.dev). * The integration account batch configuration properties.␊ */␊ properties: (IntegrationAccountsBatchConfigurationsProperties | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface IntegrationAccountsBatchConfigurationsProperties {␊ @@ -40546,6 +45216,9 @@ Generated by [AVA](https://avajs.dev). * The workflow properties.␊ */␊ properties: (WorkflowProperties2 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface WorkflowProperties2 {␊ @@ -40629,6 +45302,9 @@ Generated by [AVA](https://avajs.dev). * The workflow properties.␊ */␊ properties: (WorkflowProperties3 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface WorkflowProperties3 {␊ @@ -40706,6 +45382,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Scheduler/jobCollections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface JobCollectionProperties1 {␊ @@ -40758,6 +45438,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (JobProperties1 | string)␊ type: "jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface JobProperties1 {␊ @@ -40861,6 +45545,7 @@ Generated by [AVA](https://avajs.dev). */␊ pfx?: string␊ type: "ClientCertificate"␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface BasicAuthentication {␊ @@ -40873,6 +45558,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the username.␊ */␊ username?: string␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface OAuthAuthentication {␊ @@ -40893,6 +45579,7 @@ Generated by [AVA](https://avajs.dev). */␊ tenant?: string␊ type: "ActiveDirectoryOAuth"␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface RetryPolicy1 {␊ @@ -41099,6 +45786,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (JobProperties1 | string)␊ type: "Microsoft.Scheduler/jobCollections/jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41125,6 +45816,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearning/webServices"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41169,6 +45865,9 @@ Generated by [AVA](https://avajs.dev). * Asset's type.␊ */␊ type: (("Module" | "Resource") | string)␊ + locationInfo: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41193,6 +45892,7 @@ Generated by [AVA](https://avajs.dev). * The URI where the asset is accessible from, (e.g. aml://abc for system assets or https://xyz for user assets␊ */␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41249,6 +45949,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the Azure Resource Manager ID of the commitment plan associated with the web service.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41263,6 +45964,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the verbosity of the diagnostic output. Valid values are: None - disables tracing; Error - collects only error (stderr) traces; All - collects all traces (stdout and stderr).␊ */␊ level: (("None" | "Error" | "All") | string)␊ + level: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41309,6 +46011,8 @@ Generated by [AVA](https://avajs.dev). * The type of the entity described in swagger. Always 'object'.␊ */␊ type: string␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41337,6 +46041,7 @@ Generated by [AVA](https://avajs.dev). * The type of the entity described in swagger.␊ */␊ type: string␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41365,6 +46070,7 @@ Generated by [AVA](https://avajs.dev). * Flag indicating whether the categories are treated as an ordered set or not, if this is a categorical column.␊ */␊ "x-ms-isordered"?: (boolean | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41389,6 +46095,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the workspace ID of the machine learning workspace associated with the web service␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41424,6 +46131,7 @@ Generated by [AVA](https://avajs.dev). */␊ package?: (GraphPackage | string)␊ packageType: "Graph"␊ + packageType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41486,6 +46194,8 @@ Generated by [AVA](https://avajs.dev). * Graph parameter's type.␊ */␊ type: (("String" | "Int" | "Float" | "Enumerated" | "Script" | "Mode" | "Credential" | "Boolean" | "Double" | "ColumnPicker" | "ParameterRange" | "DataGatewayName") | string)␊ + links: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41500,6 +46210,8 @@ Generated by [AVA](https://avajs.dev). * The identifier of the node parameter that the global parameter maps to.␊ */␊ parameterKey: string␊ + nodeId: unknown␊ + parameterKey: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41554,6 +46266,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearning/commitmentPlans"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41598,6 +46314,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearning/workspaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41616,6 +46337,8 @@ Generated by [AVA](https://avajs.dev). * The fully qualified arm id of the storage account associated with this workspace.␊ */␊ userStorageAccountId: string␊ + ownerEmail: unknown␊ + userStorageAccountId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41647,6 +46370,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningServices/workspaces"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41721,6 +46448,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "computes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41732,6 +46463,7 @@ Generated by [AVA](https://avajs.dev). * AKS properties␊ */␊ properties?: (AKSProperties | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41813,6 +46545,7 @@ Generated by [AVA](https://avajs.dev). * AML Compute properties␊ */␊ properties?: (AmlComputeProperties | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41857,6 +46590,7 @@ Generated by [AVA](https://avajs.dev). * Node Idle Time before scaling down amlCompute␊ */␊ nodeIdleTimeBeforeScaleDown?: string␊ + maxNodeCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41867,6 +46601,7 @@ Generated by [AVA](https://avajs.dev). * The ID of the resource␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41885,6 +46620,7 @@ Generated by [AVA](https://avajs.dev). * SSH public key of the administrator user account.␊ */␊ adminUserSshPublicKey?: string␊ + adminUserName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41893,6 +46629,7 @@ Generated by [AVA](https://avajs.dev). export interface VirtualMachine {␊ computeType: "VirtualMachine"␊ properties?: (VirtualMachineProperties1 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualMachineProperties1 {␊ @@ -41942,6 +46679,7 @@ Generated by [AVA](https://avajs.dev). export interface HDInsight {␊ computeType: "HDInsight"␊ properties?: (HDInsightProperties | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface HDInsightProperties {␊ @@ -41964,6 +46702,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface DataFactory {␊ computeType: "DataFactory"␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -41972,6 +46711,7 @@ Generated by [AVA](https://avajs.dev). export interface Databricks {␊ computeType: "Databricks"␊ properties?: (DatabricksProperties | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface DatabricksProperties {␊ @@ -41987,6 +46727,7 @@ Generated by [AVA](https://avajs.dev). export interface DataLakeAnalytics {␊ computeType: "DataLakeAnalytics"␊ properties?: (DataLakeAnalyticsProperties | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface DataLakeAnalyticsProperties {␊ @@ -42016,7 +46757,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Machine Learning compute object.␊ */␊ - properties: ((AKS | AmlCompute | VirtualMachine | HDInsight | DataFactory | Databricks | DataLakeAnalytics) | string)␊ + properties: (((AKS | AmlCompute | VirtualMachine | HDInsight | DataFactory | Databricks | DataLakeAnalytics) & {␊ + /**␊ + * Location for the underlying compute␊ + */␊ + computeLocation?: string␊ + /**␊ + * The description of the Machine Learning compute.␊ + */␊ + description?: string␊ + /**␊ + * ARM resource id of the underlying compute␊ + */␊ + resourceId?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Contains resource tags defined as key/value pairs.␊ */␊ @@ -42024,6 +46779,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningServices/workspaces/computes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42051,6 +46810,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningExperimentation/accounts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42081,6 +46845,9 @@ Generated by [AVA](https://avajs.dev). * The fully qualified arm id of the vso account to be used for this team account.␊ */␊ vsoAccountId: string␊ + keyVaultId: unknown␊ + storageAccount: unknown␊ + vsoAccountId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42095,6 +46862,8 @@ Generated by [AVA](https://avajs.dev). * The fully qualified arm Id of the storage account.␊ */␊ storageAccountId: string␊ + accessKey: unknown␊ + storageAccountId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42121,6 +46890,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "workspaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42135,6 +46909,7 @@ Generated by [AVA](https://avajs.dev). * The friendly name for this workspace. This will be the workspace name in the arm id when the workspace object gets created␊ */␊ friendlyName: string␊ + friendlyName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42162,6 +46937,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningExperimentation/accounts/workspaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42188,6 +46968,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "projects"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42206,6 +46991,7 @@ Generated by [AVA](https://avajs.dev). * The reference to git repo for this project.␊ */␊ gitrepo?: string␊ + friendlyName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42232,6 +47018,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningExperimentation/accounts/workspaces/projects"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42263,6 +47054,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningServices/workspaces"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42341,6 +47136,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "computes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42352,6 +47151,7 @@ Generated by [AVA](https://avajs.dev). * AKS properties␊ */␊ properties?: (AKSProperties1 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42417,6 +47217,7 @@ Generated by [AVA](https://avajs.dev). * BatchAI properties␊ */␊ properties?: (BatchAIProperties | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42461,6 +47262,7 @@ Generated by [AVA](https://avajs.dev). export interface VirtualMachine1 {␊ computeType: "VirtualMachine"␊ properties?: (VirtualMachineProperties2 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualMachineProperties2 {␊ @@ -42510,6 +47312,7 @@ Generated by [AVA](https://avajs.dev). export interface HDInsight1 {␊ computeType: "HDInsight"␊ properties?: (HDInsightProperties1 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface HDInsightProperties1 {␊ @@ -42532,6 +47335,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface DataFactory1 {␊ computeType: "DataFactory"␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42559,6 +47363,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Automation/automationAccounts"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42587,6 +47395,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the SKU name of the account.␊ */␊ name: (("Free" | "Basic") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42603,6 +47412,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CertificateCreateOrUpdateProperties1 | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42625,6 +47438,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the thumbprint of the certificate.␊ */␊ thumbprint?: string␊ + base64Value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42641,6 +47455,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConnectionCreateOrUpdateProperties | string)␊ type: "connections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42661,6 +47479,7 @@ Generated by [AVA](https://avajs.dev). fieldDefinitionValues?: ({␊ [k: string]: string␊ } | string)␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42687,6 +47506,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConnectionTypeCreateOrUpdateProperties | string)␊ type: "connectionTypes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42703,6 +47526,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets a Boolean value to indicate if the connection type is global.␊ */␊ isGlobal?: (boolean | string)␊ + fieldDefinitions: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42721,6 +47545,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the type of the connection field definition.␊ */␊ type: string␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42737,6 +47562,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CredentialCreateOrUpdateProperties | string)␊ type: "credentials"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42755,6 +47584,8 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the user name of the credential.␊ */␊ userName: string␊ + password: unknown␊ + userName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42781,6 +47612,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "compilationjobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42801,6 +47636,7 @@ Generated by [AVA](https://avajs.dev). parameters?: ({␊ [k: string]: string␊ } | string)␊ + configuration: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42837,6 +47673,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42865,6 +47705,7 @@ Generated by [AVA](https://avajs.dev). * Definition of the content source.␊ */␊ source: (ContentSource | string)␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42923,6 +47764,8 @@ Generated by [AVA](https://avajs.dev). * Gets or sets expected hash value of the content.␊ */␊ value: string␊ + algorithm: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42947,6 +47790,11 @@ Generated by [AVA](https://avajs.dev). */␊ source: (ContentSource | string)␊ type: "nodeConfigurations"␊ + apiVersion: unknown␊ + configuration: unknown␊ + name: unknown␊ + source: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42963,6 +47811,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobCreateProperties | string)␊ type: "jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -42983,6 +47835,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the runOn which specifies the group name where the job is to be executed.␊ */␊ runOn?: string␊ + runbook: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43009,6 +47862,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobScheduleCreateProperties | string)␊ type: "jobSchedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43033,6 +47890,8 @@ Generated by [AVA](https://avajs.dev). * The schedule property associated with the entity.␊ */␊ schedule: (ScheduleAssociationProperty | string)␊ + runbook: unknown␊ + schedule: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43069,6 +47928,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "modules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43079,6 +47942,7 @@ Generated by [AVA](https://avajs.dev). * Definition of the content link.␊ */␊ contentLink: (ContentLink | string)␊ + contentLink: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43123,6 +47987,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "runbooks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43154,6 +48022,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the type of the runbook.␊ */␊ runbookType: (("Script" | "Graph" | "PowerShellWorkflow" | "PowerShell" | "GraphPowerShellWorkflow" | "GraphPowerShell" | "Python2" | "Python3") | string)␊ + runbookType: unknown␊ [k: string]: unknown␊ }␊ export interface RunbookDraft {␊ @@ -43221,6 +48090,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ScheduleCreateOrUpdateProperties | string)␊ type: "schedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43257,6 +48130,8 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the time zone of the schedule.␊ */␊ timeZone?: string␊ + frequency: unknown␊ + startTime: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43305,6 +48180,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VariableCreateOrUpdateProperties | string)␊ type: "variables"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43353,6 +48232,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "watchers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43397,6 +48280,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (WebhookCreateOrUpdateProperties | string)␊ type: "webhooks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43456,6 +48343,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Automation/automationAccounts/runbooks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43482,6 +48373,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Automation/automationAccounts/modules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43498,6 +48393,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CertificateCreateOrUpdateProperties1 | string)␊ type: "Microsoft.Automation/automationAccounts/certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43514,6 +48413,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConnectionCreateOrUpdateProperties | string)␊ type: "Microsoft.Automation/automationAccounts/connections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43530,6 +48433,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VariableCreateOrUpdateProperties | string)␊ type: "Microsoft.Automation/automationAccounts/variables"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43546,6 +48453,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ScheduleCreateOrUpdateProperties | string)␊ type: "Microsoft.Automation/automationAccounts/schedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43562,6 +48473,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobCreateProperties | string)␊ type: "Microsoft.Automation/automationAccounts/jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43578,6 +48493,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConnectionTypeCreateOrUpdateProperties | string)␊ type: "Microsoft.Automation/automationAccounts/connectionTypes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43604,6 +48523,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Automation/automationAccounts/compilationjobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43630,6 +48553,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Automation/automationAccounts/configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43646,6 +48573,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobScheduleCreateProperties | string)␊ type: "Microsoft.Automation/automationAccounts/jobSchedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43670,6 +48601,11 @@ Generated by [AVA](https://avajs.dev). */␊ source: (ContentSource | string)␊ type: "Microsoft.Automation/automationAccounts/nodeConfigurations"␊ + apiVersion: unknown␊ + configuration: unknown␊ + name: unknown␊ + source: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43686,6 +48622,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (WebhookCreateOrUpdateProperties | string)␊ type: "Microsoft.Automation/automationAccounts/webhooks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43702,6 +48642,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CredentialCreateOrUpdateProperties | string)␊ type: "Microsoft.Automation/automationAccounts/credentials"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43732,6 +48676,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Automation/automationAccounts/watchers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43748,6 +48696,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SoftwareUpdateConfigurationProperties | string)␊ type: "Microsoft.Automation/automationAccounts/softwareUpdateConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43770,6 +48722,8 @@ Generated by [AVA](https://avajs.dev). * Update specific properties of the software update configuration.␊ */␊ updateConfiguration: (UpdateConfiguration | string)␊ + scheduleInfo: unknown␊ + updateConfiguration: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -43938,6 +48892,7 @@ Generated by [AVA](https://avajs.dev). * Windows specific update configuration.␊ */␊ windows?: (WindowsProperties | string)␊ + operatingSystem: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44057,6 +49012,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (JobCreateProperties1 | string)␊ type: "Microsoft.Automation/automationAccounts/jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface JobCreateProperties1 {␊ @@ -44101,6 +49060,10 @@ Generated by [AVA](https://avajs.dev). properties: (SourceControlCreateOrUpdateProperties | string)␊ resources?: AutomationAccountsSourceControlsSourceControlSyncJobsChildResource[]␊ type: "Microsoft.Automation/automationAccounts/sourceControls"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44167,6 +49130,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SourceControlSyncJobCreateProperties | string)␊ type: "sourceControlSyncJobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44177,6 +49144,7 @@ Generated by [AVA](https://avajs.dev). * The commit id of the source control sync job. If not syncing to a commitId, enter an empty string.␊ */␊ commitId: string␊ + commitId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44193,6 +49161,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SourceControlSyncJobCreateProperties | string)␊ type: "Microsoft.Automation/automationAccounts/sourceControls/sourceControlSyncJobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44219,6 +49191,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Automation/automationAccounts/compilationjobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44239,6 +49215,7 @@ Generated by [AVA](https://avajs.dev). parameters?: ({␊ [k: string]: string␊ } | string)␊ + configuration: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44271,6 +49248,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Automation/automationAccounts/nodeConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44289,6 +49270,8 @@ Generated by [AVA](https://avajs.dev). * Definition of the content source.␊ */␊ source: (ContentSource1 | string)␊ + configuration: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44325,6 +49308,8 @@ Generated by [AVA](https://avajs.dev). * Gets or sets expected hash value of the content.␊ */␊ value: string␊ + algorithm: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44347,6 +49332,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Automation/automationAccounts/python2Packages"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44357,6 +49346,7 @@ Generated by [AVA](https://avajs.dev). * Definition of the content link.␊ */␊ contentLink: (ContentLink1 | string)␊ + contentLink: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44389,6 +49379,8 @@ Generated by [AVA](https://avajs.dev). * Gets or sets expected hash value of the content.␊ */␊ value: string␊ + algorithm: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44416,6 +49408,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Automation/automationAccounts/runbooks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44447,6 +49443,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the type of the runbook.␊ */␊ runbookType: (("Script" | "Graph" | "PowerShellWorkflow" | "PowerShell" | "GraphPowerShellWorkflow" | "GraphPowerShell" | "Python2" | "Python3") | string)␊ + runbookType: unknown␊ [k: string]: unknown␊ }␊ export interface RunbookDraft1 {␊ @@ -44524,6 +49521,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Media/mediaservices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44548,6 +49549,8 @@ Generated by [AVA](https://avajs.dev). * Is this storage account resource the primary storage account for the Media Service resource. Blob only storage must set this to false.␊ */␊ isPrimary: (boolean | string)␊ + id: unknown␊ + isPrimary: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44575,6 +49578,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Media/mediaservices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44599,6 +49606,7 @@ Generated by [AVA](https://avajs.dev). * The type of the storage account.␊ */␊ type: (("Primary" | "Secondary") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44615,6 +49623,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MediaFilterProperties | string)␊ type: "accountFilters"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44643,6 +49655,7 @@ Generated by [AVA](https://avajs.dev). * The first quality bitrate.␊ */␊ bitrate: (number | string)␊ + bitrate: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44683,6 +49696,7 @@ Generated by [AVA](https://avajs.dev). * The track selections.␊ */␊ trackSelections: (FilterTrackPropertyCondition[] | string)␊ + trackSelections: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44701,6 +49715,9 @@ Generated by [AVA](https://avajs.dev). * The track property value.␊ */␊ value: string␊ + operation: unknown␊ + property: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44717,6 +49734,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AssetProperties | string)␊ type: "assets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44755,6 +49776,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ContentKeyPolicyProperties | string)␊ type: "contentKeyPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44769,6 +49794,7 @@ Generated by [AVA](https://avajs.dev). * The Key Policy options.␊ */␊ options: (ContentKeyPolicyOption[] | string)␊ + options: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44787,6 +49813,8 @@ Generated by [AVA](https://avajs.dev). * Base class for Content Key Policy restrictions. A derived class must be used to create a restriction.␊ */␊ restriction: (ContentKeyPolicyRestriction | string)␊ + configuration: unknown␊ + restriction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44794,6 +49822,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ContentKeyPolicyClearKeyConfiguration {␊ "@odata.type": "#Microsoft.Media.ContentKeyPolicyClearKeyConfiguration"␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44801,6 +49830,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ContentKeyPolicyUnknownConfiguration {␊ "@odata.type": "#Microsoft.Media.ContentKeyPolicyUnknownConfiguration"␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44812,6 +49842,8 @@ Generated by [AVA](https://avajs.dev). * The Widevine template.␊ */␊ widevineTemplate: string␊ + "@odata.type": unknown␊ + widevineTemplate: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44827,6 +49859,8 @@ Generated by [AVA](https://avajs.dev). * The custom response data.␊ */␊ responseCustomData?: string␊ + "@odata.type": unknown␊ + licenses: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44873,6 +49907,10 @@ Generated by [AVA](https://avajs.dev). * The relative expiration date of license.␊ */␊ relativeExpirationDate?: string␊ + allowTestDevices: unknown␊ + contentKeyLocation: unknown␊ + contentType: unknown␊ + licenseType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44880,6 +49918,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader {␊ "@odata.type": "#Microsoft.Media.ContentKeyPolicyPlayReadyContentEncryptionKeyFromHeader"␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44891,6 +49930,8 @@ Generated by [AVA](https://avajs.dev). * The content key ID.␊ */␊ keyId: (string | string)␊ + "@odata.type": unknown␊ + keyId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44949,6 +49990,10 @@ Generated by [AVA](https://avajs.dev). * Specifies the output protection level for uncompressed digital video.␊ */␊ uncompressedDigitalVideoOpl?: (number | string)␊ + allowPassingVideoContentToUnknownOutput: unknown␊ + digitalVideoOnlyContentRestriction: unknown␊ + imageConstraintForAnalogComponentVideoRestriction: unknown␊ + imageConstraintForAnalogComputerMonitorRestriction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44963,6 +50008,8 @@ Generated by [AVA](https://avajs.dev). * Configures the restriction control bits. Must be between 0 and 3 inclusive.␊ */␊ configurationData: (number | string)␊ + bestEffort: unknown␊ + configurationData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44990,6 +50037,12 @@ Generated by [AVA](https://avajs.dev). * The rental duration. Must be greater than or equal to 0.␊ */␊ rentalDuration: (number | string)␊ + "@odata.type": unknown␊ + ask: unknown␊ + fairPlayPfx: unknown␊ + fairPlayPfxPassword: unknown␊ + rentalAndLeaseKeyType: unknown␊ + rentalDuration: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -44997,6 +50050,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ContentKeyPolicyOpenRestriction {␊ "@odata.type": "#Microsoft.Media.ContentKeyPolicyOpenRestriction"␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45004,6 +50058,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ContentKeyPolicyUnknownRestriction {␊ "@odata.type": "#Microsoft.Media.ContentKeyPolicyUnknownRestriction"␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45030,7 +50085,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * Base class for Content Key Policy key for token validation. A derived class must be used to create a token key.␊ */␊ - primaryVerificationKey: ((ContentKeyPolicySymmetricTokenKey | ContentKeyPolicyRsaTokenKey | ContentKeyPolicyX509CertificateTokenKey) | string)␊ + primaryVerificationKey: (((ContentKeyPolicySymmetricTokenKey | ContentKeyPolicyRsaTokenKey | ContentKeyPolicyX509CertificateTokenKey) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * A list of required token claims.␊ */␊ @@ -45039,6 +50096,11 @@ Generated by [AVA](https://avajs.dev). * The type of token.␊ */␊ restrictionTokenType: (("Unknown" | "Swt" | "Jwt") | string)␊ + "@odata.type": unknown␊ + audience: unknown␊ + issuer: unknown␊ + primaryVerificationKey: unknown␊ + restrictionTokenType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45050,6 +50112,8 @@ Generated by [AVA](https://avajs.dev). * The key value of the key␊ */␊ keyValue: (string | string)␊ + "@odata.type": unknown␊ + keyValue: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45065,6 +50129,9 @@ Generated by [AVA](https://avajs.dev). * The RSA Parameter modulus␊ */␊ modulus: (string | string)␊ + "@odata.type": unknown␊ + exponent: unknown␊ + modulus: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45076,6 +50143,8 @@ Generated by [AVA](https://avajs.dev). * The raw data field of a certificate in PKCS 12 format (X509Certificate2 in .NET)␊ */␊ rawBody: (string | string)␊ + "@odata.type": unknown␊ + rawBody: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45106,6 +50175,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TransformProperties | string)␊ type: "transforms"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45120,6 +50193,7 @@ Generated by [AVA](https://avajs.dev). * An array of one or more TransformOutputs that the Transform should generate.␊ */␊ outputs: (TransformOutput[] | string)␊ + outputs: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45138,6 +50212,7 @@ Generated by [AVA](https://avajs.dev). * Sets the relative priority of the TransformOutputs within a Transform. This sets the priority that the service uses for processing TransformOutputs. The default priority is Normal.␊ */␊ relativePriority?: (("Low" | "Normal" | "High") | string)␊ + preset: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45149,6 +50224,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the maximum resolution at which your video is analyzed. The default behavior is "SourceResolution," which will keep the input video at its original resolution when analyzed. Using "StandardDefinition" will resize input videos to standard definition while preserving the appropriate aspect ratio. It will only resize if the video is of higher resolution. For example, a 1920x1080 input would be scaled to 640x360 before processing. Switching to "StandardDefinition" will reduce the time it takes to process high resolution video. It may also reduce the cost of using this component (see https://azure.microsoft.com/en-us/pricing/details/media-services/#analytics for details). However, faces that end up being too small in the resized video may not be detected.␊ */␊ resolution?: (("SourceResolution" | "StandardDefinition") | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45160,6 +50236,7 @@ Generated by [AVA](https://avajs.dev). * Defines the type of insights that you want the service to generate. The allowed values are 'AudioInsightsOnly', 'VideoInsightsOnly', and 'AllInsights'. The default is AllInsights. If you set this to AllInsights and the input is audio only, then only audio insights are generated. Similarly if the input is video only, then only video insights are generated. It is recommended that you not use AudioInsightsOnly if you expect some of your inputs to be video only; or use VideoInsightsOnly if you expect some of your inputs to be audio only. Your Jobs in such conditions would error out.␊ */␊ insightsToExtract?: (("AudioInsightsOnly" | "VideoInsightsOnly" | "AllInsights") | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45171,6 +50248,8 @@ Generated by [AVA](https://avajs.dev). * The built-in preset to be used for encoding videos.␊ */␊ presetName: (("H264SingleBitrateSD" | "H264SingleBitrate720p" | "H264SingleBitrate1080p" | "AdaptiveStreaming" | "AACGoodQualityAudio" | "ContentAwareEncodingExperimental" | "H264MultipleBitrate1080p" | "H264MultipleBitrate720p" | "H264MultipleBitrateSD") | string)␊ + "@odata.type": unknown␊ + presetName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45190,6 +50269,9 @@ Generated by [AVA](https://avajs.dev). * The list of outputs to be produced by the encoder.␊ */␊ formats: (Format[] | string)␊ + "@odata.type": unknown␊ + codecs: unknown␊ + formats: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45201,6 +50283,7 @@ Generated by [AVA](https://avajs.dev). * The encoding profile to be used when encoding audio with AAC.␊ */␊ profile?: (("AacLc" | "HeAacV1" | "HeAacV2") | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45208,6 +50291,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface CopyVideo {␊ "@odata.type": "#Microsoft.Media.CopyVideo"␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45219,6 +50303,7 @@ Generated by [AVA](https://avajs.dev). * A collection of output JPEG image layers to be produced by the encoder.␊ */␊ layers?: (JpgLayer[] | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45252,6 +50337,7 @@ Generated by [AVA](https://avajs.dev). * A collection of output PNG image layers to be produced by the encoder.␊ */␊ layers?: (PngLayer[] | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45289,6 +50375,7 @@ Generated by [AVA](https://avajs.dev). * Whether or not the encoder should insert key frames at scene changes. If not specified, the default is false. This flag should be set to true only when the encoder is being configured to produce a single output video.␊ */␊ sceneChangeDetection?: (boolean | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45351,6 +50438,7 @@ Generated by [AVA](https://avajs.dev). * The width of the output video for this layer. The value can be absolute (in pixels) or relative (in percentage). For example 50% means the output video has half as many pixels in width as the input.␊ */␊ width?: string␊ + bitrate: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45358,6 +50446,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface CopyAudio {␊ "@odata.type": "#Microsoft.Media.CopyAudio"␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45423,6 +50512,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AudioOverlay {␊ "@odata.type": "#Microsoft.Media.AudioOverlay"␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45442,6 +50532,7 @@ Generated by [AVA](https://avajs.dev). * Describes the properties of a rectangular window applied to the input media before processing it.␊ */␊ position?: (Rectangle | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45449,6 +50540,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface JpgFormat {␊ "@odata.type": "#Microsoft.Media.JpgFormat"␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45456,6 +50548,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface PngFormat {␊ "@odata.type": "#Microsoft.Media.PngFormat"␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45466,6 +50559,7 @@ Generated by [AVA](https://avajs.dev). * The list of labels that describe how the encoder should multiplex video and audio into an output file. For example, if the encoder is producing two video layers with labels v1 and v2, and one audio layer with label a1, then an array like '[v1, a1]' tells the encoder to produce an output file with the video track represented by v1 and the audio track represented by a1.␊ */␊ labels: (string[] | string)␊ + labels: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45473,6 +50567,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface Mp4Format {␊ "@odata.type": "#Microsoft.Media.Mp4Format"␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45480,6 +50575,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface TransportStreamFormat {␊ "@odata.type": "#Microsoft.Media.TransportStreamFormat"␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45496,6 +50592,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StreamingPolicyProperties | string)␊ type: "streamingPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45572,6 +50672,8 @@ Generated by [AVA](https://avajs.dev). * Track property value␊ */␊ value?: string␊ + operation: unknown␊ + property: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45650,6 +50752,7 @@ Generated by [AVA](https://avajs.dev). * Template for the URL of the custom service delivering licenses to end user players. Not required when using Azure Media Services for issuing licenses. The template supports replaceable tokens that the service will update at runtime with the value specific to the request. The currently supported token values are {AlternativeMediaId}, which is replaced with the value of StreamingLocatorId.AlternativeMediaId, and {ContentKeyId}, which is replaced with the value of identifier of the key being requested.␊ */␊ customLicenseAcquisitionUrlTemplate?: string␊ + allowPersistentLicense: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45696,6 +50799,10 @@ Generated by [AVA](https://avajs.dev). * Enable SmoothStreaming protocol or not␊ */␊ smoothStreaming: (boolean | string)␊ + dash: unknown␊ + download: unknown␊ + hls: unknown␊ + smoothStreaming: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45780,6 +50887,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StreamingLocatorProperties | string)␊ type: "streamingLocators"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45822,6 +50933,8 @@ Generated by [AVA](https://avajs.dev). * Name of the Streaming Policy used by this Streaming Locator. Either specify the name of Streaming Policy you created or use one of the predefined Streaming Policies. The predefined Streaming Policies available are: 'Predefined_DownloadOnly', 'Predefined_ClearStreamingOnly', 'Predefined_DownloadAndClearStreaming', 'Predefined_ClearKey', 'Predefined_MultiDrmCencStreaming' and 'Predefined_MultiDrmStreaming'␊ */␊ streamingPolicyName: string␊ + assetName: unknown␊ + streamingPolicyName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45840,6 +50953,7 @@ Generated by [AVA](https://avajs.dev). * Value of Content Key␊ */␊ value?: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45856,6 +50970,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MediaFilterProperties | string)␊ type: "Microsoft.Media/mediaServices/accountFilters"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45873,6 +50991,10 @@ Generated by [AVA](https://avajs.dev). properties: (AssetProperties | string)␊ resources?: MediaServicesAssetsAssetFiltersChildResource[]␊ type: "Microsoft.Media/mediaServices/assets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45889,6 +51011,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MediaFilterProperties | string)␊ type: "assetFilters"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45905,6 +51031,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MediaFilterProperties | string)␊ type: "Microsoft.Media/mediaServices/assets/assetFilters"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45921,6 +51051,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ContentKeyPolicyProperties | string)␊ type: "Microsoft.Media/mediaServices/contentKeyPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45937,6 +51071,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StreamingLocatorProperties | string)␊ type: "Microsoft.Media/mediaServices/streamingLocators"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45953,6 +51091,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StreamingPolicyProperties | string)␊ type: "Microsoft.Media/mediaServices/streamingPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45970,6 +51112,10 @@ Generated by [AVA](https://avajs.dev). properties: (TransformProperties | string)␊ resources?: MediaServicesTransformsJobsChildResource[]␊ type: "Microsoft.Media/mediaServices/transforms"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -45986,6 +51132,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobProperties2 | string)␊ type: "jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46014,6 +51164,8 @@ Generated by [AVA](https://avajs.dev). * Priority with which the job should be processed. Higher priority jobs are processed before lower priority jobs. If not set, the default is normal.␊ */␊ priority?: (("Low" | "Normal" | "High") | string)␊ + input: unknown␊ + outputs: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46025,6 +51177,8 @@ Generated by [AVA](https://avajs.dev). * The time position on the timeline of the input media. It is usually specified as an ISO8601 period. e.g PT30S for 30 seconds.␊ */␊ time: string␊ + "@odata.type": unknown␊ + time: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46036,6 +51190,8 @@ Generated by [AVA](https://avajs.dev). * The name of the input Asset.␊ */␊ assetName: string␊ + "@odata.type": unknown␊ + assetName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46047,6 +51203,7 @@ Generated by [AVA](https://avajs.dev). * Base URI for HTTPS job input. It will be concatenated with provided file names. If no base uri is given, then the provided file list is assumed to be fully qualified uris. Maximum length of 4000 characters.␊ */␊ baseUri?: string␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46060,6 +51217,7 @@ Generated by [AVA](https://avajs.dev). inputs?: ({␊ [k: string]: unknown␊ }[] | string)␊ + "@odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46071,6 +51229,8 @@ Generated by [AVA](https://avajs.dev). * The name of the output Asset.␊ */␊ assetName: string␊ + "@odata.type": unknown␊ + assetName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46087,6 +51247,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobProperties2 | string)␊ type: "Microsoft.Media/mediaServices/transforms/jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46129,6 +51293,14 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Devices/IotHubs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + resourcegroup: unknown␊ + sku: unknown␊ + subscriptionid: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46203,6 +51375,8 @@ Generated by [AVA](https://avajs.dev). * The secondary key.␊ */␊ secondaryKey?: string␊ + keyName: unknown␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46271,6 +51445,9 @@ Generated by [AVA](https://avajs.dev). * A string that contains the IP address range in CIDR notation for the rule.␊ */␊ ipMask: string␊ + action: unknown␊ + filterName: unknown␊ + ipMask: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46316,6 +51493,8 @@ Generated by [AVA](https://avajs.dev). * The period of time for which the SAS URI generated by IoT Hub for file upload is valid. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload#file-upload-notification-configuration-options.␊ */␊ sasTtlAsIso8601?: string␊ + connectionString: unknown␊ + containerName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46330,6 +51509,8 @@ Generated by [AVA](https://avajs.dev). * The name of the SKU.␊ */␊ name: (("F1" | "S1" | "S2" | "S3") | string)␊ + capacity: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46373,6 +51554,14 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Devices/IotHubs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + resourcegroup: unknown␊ + sku: unknown␊ + subscriptionid: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46451,6 +51640,8 @@ Generated by [AVA](https://avajs.dev). * The secondary key.␊ */␊ secondaryKey?: string␊ + keyName: unknown␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46519,6 +51710,9 @@ Generated by [AVA](https://avajs.dev). * A string that contains the IP address range in CIDR notation for the rule.␊ */␊ ipMask: string␊ + action: unknown␊ + filterName: unknown␊ + ipMask: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46608,6 +51802,8 @@ Generated by [AVA](https://avajs.dev). * The subscription identifier of the event hub endpoint.␊ */␊ subscriptionId?: string␊ + connectionString: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46630,6 +51826,8 @@ Generated by [AVA](https://avajs.dev). * The subscription identifier of the service bus queue endpoint.␊ */␊ subscriptionId?: string␊ + connectionString: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46652,6 +51850,8 @@ Generated by [AVA](https://avajs.dev). * The subscription identifier of the service bus topic endpoint.␊ */␊ subscriptionId?: string␊ + connectionString: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46694,6 +51894,9 @@ Generated by [AVA](https://avajs.dev). * The subscription identifier of the storage account.␊ */␊ subscriptionId?: string␊ + connectionString: unknown␊ + containerName: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46716,6 +51919,9 @@ Generated by [AVA](https://avajs.dev). * The source to which the routing rule is to be applied to. For example, DeviceMessages.␊ */␊ source: (("DeviceMessages" | "TwinChangeEvents" | "DeviceLifecycleEvents" | "DeviceJobLifecycleEvents") | string)␊ + endpointNames: unknown␊ + isEnabled: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46742,6 +51948,10 @@ Generated by [AVA](https://avajs.dev). * The source that the routing rule is to be applied to, such as DeviceMessages.␊ */␊ source: (("DeviceMessages" | "TwinChangeEvents" | "DeviceLifecycleEvents" | "DeviceJobLifecycleEvents") | string)␊ + endpointNames: unknown␊ + isEnabled: unknown␊ + name: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46760,6 +51970,8 @@ Generated by [AVA](https://avajs.dev). * The period of time for which the SAS URI generated by IoT Hub for file upload is valid. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload#file-upload-notification-configuration-options.␊ */␊ sasTtlAsIso8601?: string␊ + connectionString: unknown␊ + containerName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46776,6 +51988,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46790,6 +52005,8 @@ Generated by [AVA](https://avajs.dev). * The name of the SKU.␊ */␊ name: (("F1" | "S1" | "S2" | "S3") | string)␊ + capacity: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46806,6 +52023,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Devices/IotHubs/certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46841,6 +52061,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Devices/IotHubs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46919,6 +52145,8 @@ Generated by [AVA](https://avajs.dev). * The secondary key.␊ */␊ secondaryKey?: string␊ + keyName: unknown␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -46987,6 +52215,9 @@ Generated by [AVA](https://avajs.dev). * A string that contains the IP address range in CIDR notation for the rule.␊ */␊ ipMask: string␊ + action: unknown␊ + filterName: unknown␊ + ipMask: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47076,6 +52307,8 @@ Generated by [AVA](https://avajs.dev). * The subscription identifier of the event hub endpoint.␊ */␊ subscriptionId?: string␊ + connectionString: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47098,6 +52331,8 @@ Generated by [AVA](https://avajs.dev). * The subscription identifier of the service bus queue endpoint.␊ */␊ subscriptionId?: string␊ + connectionString: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47120,6 +52355,8 @@ Generated by [AVA](https://avajs.dev). * The subscription identifier of the service bus topic endpoint.␊ */␊ subscriptionId?: string␊ + connectionString: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47162,6 +52399,9 @@ Generated by [AVA](https://avajs.dev). * The subscription identifier of the storage account.␊ */␊ subscriptionId?: string␊ + connectionString: unknown␊ + containerName: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47188,6 +52428,9 @@ Generated by [AVA](https://avajs.dev). * The source to which the routing rule is to be applied to. For example, DeviceMessages.␊ */␊ source: (("DeviceMessages" | "TwinChangeEvents" | "DeviceLifecycleEvents" | "DeviceJobLifecycleEvents") | string)␊ + endpointNames: unknown␊ + isEnabled: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47214,6 +52457,10 @@ Generated by [AVA](https://avajs.dev). * The source that the routing rule is to be applied to, such as DeviceMessages.␊ */␊ source: (("DeviceMessages" | "TwinChangeEvents" | "DeviceLifecycleEvents" | "DeviceJobLifecycleEvents") | string)␊ + endpointNames: unknown␊ + isEnabled: unknown␊ + name: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47232,6 +52479,8 @@ Generated by [AVA](https://avajs.dev). * The period of time for which the SAS URI generated by IoT Hub for file upload is valid. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload#file-upload-notification-configuration-options.␊ */␊ sasTtlAsIso8601?: string␊ + connectionString: unknown␊ + containerName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47248,6 +52497,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47262,6 +52514,7 @@ Generated by [AVA](https://avajs.dev). * The name of the SKU.␊ */␊ name: (("F1" | "S1" | "S2" | "S3") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47278,6 +52531,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Devices/IotHubs/certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47313,6 +52569,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Devices/IotHubs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47391,6 +52653,8 @@ Generated by [AVA](https://avajs.dev). * The secondary key.␊ */␊ secondaryKey?: string␊ + keyName: unknown␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47459,6 +52723,9 @@ Generated by [AVA](https://avajs.dev). * A string that contains the IP address range in CIDR notation for the rule.␊ */␊ ipMask: string␊ + action: unknown␊ + filterName: unknown␊ + ipMask: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47548,6 +52815,8 @@ Generated by [AVA](https://avajs.dev). * The subscription identifier of the event hub endpoint.␊ */␊ subscriptionId?: string␊ + connectionString: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47570,6 +52839,8 @@ Generated by [AVA](https://avajs.dev). * The subscription identifier of the service bus queue endpoint.␊ */␊ subscriptionId?: string␊ + connectionString: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47592,6 +52863,8 @@ Generated by [AVA](https://avajs.dev). * The subscription identifier of the service bus topic endpoint.␊ */␊ subscriptionId?: string␊ + connectionString: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47634,6 +52907,9 @@ Generated by [AVA](https://avajs.dev). * The subscription identifier of the storage account.␊ */␊ subscriptionId?: string␊ + connectionString: unknown␊ + containerName: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47660,6 +52936,9 @@ Generated by [AVA](https://avajs.dev). * The source to which the routing rule is to be applied to. For example, DeviceMessages.␊ */␊ source: (("Invalid" | "DeviceMessages" | "TwinChangeEvents" | "DeviceLifecycleEvents" | "DeviceJobLifecycleEvents") | string)␊ + endpointNames: unknown␊ + isEnabled: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47686,6 +52965,10 @@ Generated by [AVA](https://avajs.dev). * The source that the routing rule is to be applied to, such as DeviceMessages.␊ */␊ source: (("Invalid" | "DeviceMessages" | "TwinChangeEvents" | "DeviceLifecycleEvents" | "DeviceJobLifecycleEvents") | string)␊ + endpointNames: unknown␊ + isEnabled: unknown␊ + name: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47704,6 +52987,8 @@ Generated by [AVA](https://avajs.dev). * The period of time for which the SAS URI generated by IoT Hub for file upload is valid. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload#file-upload-notification-configuration-options.␊ */␊ sasTtlAsIso8601?: string␊ + connectionString: unknown␊ + containerName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47720,6 +53005,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47734,6 +53022,7 @@ Generated by [AVA](https://avajs.dev). * The name of the SKU.␊ */␊ name: (("F1" | "S1" | "S2" | "S3" | "B1" | "B2" | "B3") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47750,6 +53039,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Devices/IotHubs/certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47762,6 +53054,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47774,6 +53069,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47806,6 +53104,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Devices/provisioningServices"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface IotDpsPropertiesDescription {␊ @@ -47848,6 +53152,8 @@ Generated by [AVA](https://avajs.dev). * Secondary SAS key value.␊ */␊ secondaryKey?: string␊ + keyName: unknown␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47864,6 +53170,8 @@ Generated by [AVA](https://avajs.dev). * ARM region of the IoT hub.␊ */␊ location: string␊ + connectionString: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47880,6 +53188,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47926,6 +53237,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Devices/provisioningServices"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47974,6 +53291,8 @@ Generated by [AVA](https://avajs.dev). * Secondary SAS key value.␊ */␊ secondaryKey?: string␊ + keyName: unknown␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -47996,6 +53315,8 @@ Generated by [AVA](https://avajs.dev). * ARM region of the IoT hub.␊ */␊ location: string␊ + connectionString: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48012,6 +53333,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48042,6 +53366,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Devices/provisioningServices/certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48054,6 +53381,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the cluster properties.␊ */␊ properties: (ClusterProperties8 | string)␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface ClusterProperties8 {␊ @@ -48105,18 +53435,25 @@ Generated by [AVA](https://avajs.dev). * Microsoft.ServiceFabric/clusters: The azure storage account information for uploading cluster logs.␊ */␊ diagnosticsStorageAccountConfig?: (DiagnosticsStorageAccountConfig | string)␊ + nodeTypes: unknown␊ + managementEndpoint: unknown␊ [k: string]: unknown␊ }␊ export interface CertificateDescription {␊ thumbprint: string␊ thumbprintSecondary?: string␊ x509StoreName: (("AddressBook" | "AuthRoot" | "CertificateAuthority" | "Disallowed" | "My" | "Root" | "TrustedPeople" | "TrustedPublisher") | string)␊ + thumbprint: unknown␊ + x509StoreName: unknown␊ [k: string]: unknown␊ }␊ export interface AzureActiveDirectory {␊ tenantId: string␊ clusterApplication: string␊ clientApplication: string␊ + tenantId: unknown␊ + clusterApplication: unknown␊ + clientApplication: unknown␊ [k: string]: unknown␊ }␊ export interface NodeTypes {␊ @@ -48138,22 +53475,34 @@ Generated by [AVA](https://avajs.dev). applicationPorts?: (Ports | string)␊ ephemeralPorts?: (Ports | string)␊ isPrimary: (boolean | string)␊ + vmInstanceCount: unknown␊ + name: unknown␊ + clientConnectionEndpointPort: unknown␊ + httpGatewayEndpointPort: unknown␊ + isPrimary: unknown␊ [k: string]: unknown␊ }␊ export interface Ports {␊ startPort: (number | string)␊ endPort: (number | string)␊ + startPort: unknown␊ + endPort: unknown␊ [k: string]: unknown␊ }␊ export interface ClientCertificateThumbprint {␊ isAdmin: (boolean | string)␊ certificateThumbprint: string␊ + isAdmin: unknown␊ + certificateThumbprint: unknown␊ [k: string]: unknown␊ }␊ export interface ClientCertificateCommonName {␊ isAdmin: (boolean | string)␊ certificateCommonName: string␊ certificateIssuerThumbprint: string␊ + isAdmin: unknown␊ + certificateCommonName: unknown␊ + certificateIssuerThumbprint: unknown␊ [k: string]: unknown␊ }␊ export interface SettingsSectionDescription {␊ @@ -48161,8 +53510,12 @@ Generated by [AVA](https://avajs.dev). parameters: ({␊ name: string␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ } | string)[]␊ + name: unknown␊ + parameters: unknown␊ [k: string]: unknown␊ }␊ export interface PaasClusterUpgradePolicy {␊ @@ -48175,14 +53528,26 @@ Generated by [AVA](https://avajs.dev). healthPolicy: {␊ maxPercentUnhealthyNodes: (number | string)␊ maxPercentUnhealthyApplications: (number | string)␊ + maxPercentUnhealthyNodes: unknown␊ + maxPercentUnhealthyApplications: unknown␊ [k: string]: unknown␊ }␊ deltaHealthPolicy?: {␊ maxPercentDeltaUnhealthyNodes: (number | string)␊ maxPercentUpgradeDomainDeltaUnhealthyNodes: (number | string)␊ maxPercentDeltaUnhealthyApplications: (number | string)␊ + maxPercentDeltaUnhealthyNodes: unknown␊ + maxPercentUpgradeDomainDeltaUnhealthyNodes: unknown␊ + maxPercentDeltaUnhealthyApplications: unknown␊ [k: string]: unknown␊ }␊ + upgradeReplicaSetCheckTimeout: unknown␊ + healthCheckWaitDuration: unknown␊ + healthCheckStableDuration: unknown␊ + healthCheckRetryTimeout: unknown␊ + upgradeTimeout: unknown␊ + upgradeDomainTimeout: unknown␊ + healthPolicy: unknown␊ [k: string]: unknown␊ }␊ export interface DiagnosticsStorageAccountConfig {␊ @@ -48191,6 +53556,11 @@ Generated by [AVA](https://avajs.dev). blobEndpoint: string␊ queueEndpoint: string␊ tableEndpoint: string␊ + storageAccountName: unknown␊ + protectedAccountKeyName: unknown␊ + blobEndpoint: unknown␊ + queueEndpoint: unknown␊ + tableEndpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48217,6 +53587,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ServiceFabric/clusters"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48279,6 +53654,8 @@ Generated by [AVA](https://avajs.dev). * The name of VM image VMSS has been configured with. Generic names such as Windows or Linux can be used.␊ */␊ vmImage?: string␊ + managementEndpoint: unknown␊ + nodeTypes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48315,6 +53692,7 @@ Generated by [AVA](https://avajs.dev). * The local certificate store location.␊ */␊ x509StoreName?: (("AddressBook" | "AuthRoot" | "CertificateAuthority" | "Disallowed" | "My" | "Root" | "TrustedPeople" | "TrustedPublisher") | string)␊ + thumbprint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48333,6 +53711,9 @@ Generated by [AVA](https://avajs.dev). * Is this certificate used for admin access from the client, if false , it is used or query only access␊ */␊ isAdmin: (boolean | string)␊ + certificateCommonName: unknown␊ + certificateIssuerThumbprint: unknown␊ + isAdmin: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48347,6 +53728,8 @@ Generated by [AVA](https://avajs.dev). * Is this certificate used for admin access from the client, if false, it is used or query only access␊ */␊ isAdmin: (boolean | string)␊ + certificateThumbprint: unknown␊ + isAdmin: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48373,6 +53756,11 @@ Generated by [AVA](https://avajs.dev). * Diagnostics storage account table endpoint␊ */␊ tableEndpoint: string␊ + blobEndpoint: unknown␊ + protectedAccountKeyName: unknown␊ + queueEndpoint: unknown␊ + storageAccountName: unknown␊ + tableEndpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48387,6 +53775,8 @@ Generated by [AVA](https://avajs.dev). * Collection of settings in the section, each setting is a tuple consisting of setting name and value␊ */␊ parameters: (SettingsParameterDescription[] | string)␊ + name: unknown␊ + parameters: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48401,6 +53791,8 @@ Generated by [AVA](https://avajs.dev). * The value of the property␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48455,6 +53847,11 @@ Generated by [AVA](https://avajs.dev). * The number of node instances in the node type␊ */␊ vmInstanceCount: (number | string)␊ + clientConnectionEndpointPort: unknown␊ + httpGatewayEndpointPort: unknown␊ + isPrimary: unknown␊ + name: unknown␊ + vmInstanceCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48469,6 +53866,8 @@ Generated by [AVA](https://avajs.dev). * Starting port of a range of ports␊ */␊ startPort: (number | string)␊ + endPort: unknown␊ + startPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48515,6 +53914,13 @@ Generated by [AVA](https://avajs.dev). * The upgrade timeout,it represents .Net TimeSpan␊ */␊ upgradeTimeout: string␊ + healthCheckRetryTimeout: unknown␊ + healthCheckStableDuration: unknown␊ + healthCheckWaitDuration: unknown␊ + healthPolicy: unknown␊ + upgradeDomainTimeout: unknown␊ + upgradeReplicaSetCheckTimeout: unknown␊ + upgradeTimeout: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48533,6 +53939,9 @@ Generated by [AVA](https://avajs.dev). * Additional unhealthy nodes percentage per upgrade domain ␊ */␊ maxPercentUpgradeDomainDeltaUnhealthyNodes: (number | string)␊ + maxPercentDeltaUnhealthyApplications: unknown␊ + maxPercentDeltaUnhealthyNodes: unknown␊ + maxPercentUpgradeDomainDeltaUnhealthyNodes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48574,6 +53983,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ServiceFabric/clusters"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48639,6 +54053,8 @@ Generated by [AVA](https://avajs.dev). * The VM image VMSS has been configured with. Generic names such as Windows or Linux can be used.␊ */␊ vmImage?: string␊ + managementEndpoint: unknown␊ + nodeTypes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48693,6 +54109,7 @@ Generated by [AVA](https://avajs.dev). * The local certificate store location.␊ */␊ x509StoreName?: (("AddressBook" | "AuthRoot" | "CertificateAuthority" | "Disallowed" | "My" | "Root" | "TrustedPeople" | "TrustedPublisher") | string)␊ + thumbprint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48711,6 +54128,9 @@ Generated by [AVA](https://avajs.dev). * Indicates if the client certificate has admin access to the cluster. Non admin clients can perform only read only operations on the cluster.␊ */␊ isAdmin: (boolean | string)␊ + certificateCommonName: unknown␊ + certificateIssuerThumbprint: unknown␊ + isAdmin: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48725,6 +54145,8 @@ Generated by [AVA](https://avajs.dev). * Indicates if the client certificate has admin access to the cluster. Non admin clients can perform only read only operations on the cluster.␊ */␊ isAdmin: (boolean | string)␊ + certificateThumbprint: unknown␊ + isAdmin: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48751,6 +54173,11 @@ Generated by [AVA](https://avajs.dev). * The table endpoint of the azure storage account.␊ */␊ tableEndpoint: string␊ + blobEndpoint: unknown␊ + protectedAccountKeyName: unknown␊ + queueEndpoint: unknown␊ + storageAccountName: unknown␊ + tableEndpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48765,6 +54192,8 @@ Generated by [AVA](https://avajs.dev). * The collection of parameters in the section.␊ */␊ parameters: (SettingsParameterDescription1[] | string)␊ + name: unknown␊ + parameters: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48779,6 +54208,8 @@ Generated by [AVA](https://avajs.dev). * The parameter value of fabric setting.␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48830,6 +54261,11 @@ Generated by [AVA](https://avajs.dev). * The number of nodes in the node type. This count should match the capacity property in the corresponding VirtualMachineScaleSet resource.␊ */␊ vmInstanceCount: (number | string)␊ + clientConnectionEndpointPort: unknown␊ + httpGatewayEndpointPort: unknown␊ + isPrimary: unknown␊ + name: unknown␊ + vmInstanceCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48844,6 +54280,8 @@ Generated by [AVA](https://avajs.dev). * Starting port of a range of ports␊ */␊ startPort: (number | string)␊ + endPort: unknown␊ + startPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48886,6 +54324,13 @@ Generated by [AVA](https://avajs.dev). * The amount of time the overall upgrade has to complete before the upgrade rolls back. The timeout can be in either hh:mm:ss or in d.hh:mm:ss.ms format.␊ */␊ upgradeTimeout: string␊ + healthCheckRetryTimeout: unknown␊ + healthCheckStableDuration: unknown␊ + healthCheckWaitDuration: unknown␊ + healthPolicy: unknown␊ + upgradeDomainTimeout: unknown␊ + upgradeReplicaSetCheckTimeout: unknown␊ + upgradeTimeout: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48904,6 +54349,9 @@ Generated by [AVA](https://avajs.dev). * The maximum allowed percentage of upgrade domain nodes health degradation allowed during cluster upgrades. The delta is measured between the state of the upgrade domain nodes at the beginning of upgrade and the state of the upgrade domain nodes at the time of the health evaluation. The check is performed after every upgrade domain upgrade completion for all completed upgrade domains to make sure the state of the upgrade domains is within tolerated limits. ␊ */␊ maxPercentUpgradeDomainDeltaUnhealthyNodes: (number | string)␊ + maxPercentDeltaUnhealthyApplications: unknown␊ + maxPercentDeltaUnhealthyNodes: unknown␊ + maxPercentUpgradeDomainDeltaUnhealthyNodes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48938,6 +54386,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApplicationTypeResourceProperties | string)␊ type: "applicationTypes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -48964,6 +54416,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApplicationResourceProperties | string)␊ type: "applications"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49173,6 +54629,10 @@ Generated by [AVA](https://avajs.dev). properties: (ApplicationResourceProperties | string)␊ resources?: ClustersApplicationsServicesChildResource[]␊ type: "Microsoft.ServiceFabric/clusters/applications"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49193,6 +54653,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServiceResourceProperties | string)␊ type: "services"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49207,6 +54671,8 @@ Generated by [AVA](https://avajs.dev). * The full name of the service with 'fabric:' URI scheme.␊ */␊ ServiceName: string␊ + Scheme: unknown␊ + ServiceName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49214,6 +54680,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface SingletonPartitionSchemeDescription {␊ PartitionScheme: "Singleton"␊ + PartitionScheme: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49240,6 +54707,7 @@ Generated by [AVA](https://avajs.dev). * The service load metric relative weight, compared to other metrics configured for this service, as a number.␊ */␊ Weight?: (("Zero" | "Low" | "Medium" | "High") | string)␊ + Name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49277,6 +54745,7 @@ Generated by [AVA](https://avajs.dev). * The target replica set size as a number.␊ */␊ targetReplicaSetSize?: (number | string)␊ + serviceKind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49288,6 +54757,7 @@ Generated by [AVA](https://avajs.dev). */␊ instanceCount?: (number | string)␊ serviceKind: "Stateless"␊ + serviceKind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49306,8 +54776,42 @@ Generated by [AVA](https://avajs.dev). /**␊ * The service resource properties.␊ */␊ - properties: ((StatefulServiceProperties | StatelessServiceProperties) | string)␊ + properties: (((StatefulServiceProperties | StatelessServiceProperties) & {␊ + /**␊ + * A list that describes the correlation of the service with other services.␊ + */␊ + correlationScheme?: (ServiceCorrelationDescription[] | string)␊ + /**␊ + * Specifies the move cost for the service.␊ + */␊ + defaultMoveCost?: (("Zero" | "Low" | "Medium" | "High") | string)␊ + /**␊ + * Describes how the service is partitioned.␊ + */␊ + partitionDescription?: (PartitionSchemeDescription | string)␊ + /**␊ + * The placement constraints as a string. Placement constraints are boolean expressions on node properties and allow for restricting a service to particular nodes based on the service requirements. For example, to place a service on nodes where NodeType is blue specify the following: "NodeColor == blue)".␊ + */␊ + placementConstraints?: string␊ + /**␊ + * The service load metrics is given as an array of ServiceLoadMetricDescription objects.␊ + */␊ + serviceLoadMetrics?: (ServiceLoadMetricDescription[] | string)␊ + /**␊ + * A list that describes the correlation of the service with other services.␊ + */␊ + servicePlacementPolicies?: (ServicePlacementPolicyDescription[] | string)␊ + /**␊ + * The name of the service type␊ + */␊ + serviceTypeName?: string␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.ServiceFabric/clusters/applications/services"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49329,6 +54833,10 @@ Generated by [AVA](https://avajs.dev). properties: (ApplicationTypeResourceProperties | string)␊ resources?: ClustersApplicationTypesVersionsChildResource[]␊ type: "Microsoft.ServiceFabric/clusters/applicationTypes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49349,6 +54857,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApplicationTypeVersionResourceProperties | string)␊ type: "versions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49359,6 +54871,7 @@ Generated by [AVA](https://avajs.dev). * The URL to the application package␊ */␊ appPackageUrl: string␊ + appPackageUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49379,6 +54892,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApplicationTypeVersionResourceProperties | string)␊ type: "Microsoft.ServiceFabric/clusters/applicationTypes/versions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49405,6 +54922,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ServiceFabric/clusters"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49490,6 +55012,8 @@ Generated by [AVA](https://avajs.dev). * The VM image VMSS has been configured with. Generic names such as Windows or Linux can be used.␊ */␊ vmImage?: string␊ + managementEndpoint: unknown␊ + nodeTypes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49526,6 +55050,7 @@ Generated by [AVA](https://avajs.dev). * The local certificate store location.␊ */␊ x509StoreName?: (("AddressBook" | "AuthRoot" | "CertificateAuthority" | "Disallowed" | "My" | "Root" | "TrustedPeople" | "TrustedPublisher") | string)␊ + thumbprint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49554,6 +55079,8 @@ Generated by [AVA](https://avajs.dev). * The issuer thumbprint of the server certificate.␊ */␊ certificateIssuerThumbprint: string␊ + certificateCommonName: unknown␊ + certificateIssuerThumbprint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49572,6 +55099,9 @@ Generated by [AVA](https://avajs.dev). * Indicates if the client certificate has admin access to the cluster. Non admin clients can perform only read only operations on the cluster.␊ */␊ isAdmin: (boolean | string)␊ + certificateCommonName: unknown␊ + certificateIssuerThumbprint: unknown␊ + isAdmin: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49586,6 +55116,8 @@ Generated by [AVA](https://avajs.dev). * Indicates if the client certificate has admin access to the cluster. Non admin clients can perform only read only operations on the cluster.␊ */␊ isAdmin: (boolean | string)␊ + certificateThumbprint: unknown␊ + isAdmin: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49612,6 +55144,11 @@ Generated by [AVA](https://avajs.dev). * The table endpoint of the azure storage account.␊ */␊ tableEndpoint: string␊ + blobEndpoint: unknown␊ + protectedAccountKeyName: unknown␊ + queueEndpoint: unknown␊ + storageAccountName: unknown␊ + tableEndpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49626,6 +55163,8 @@ Generated by [AVA](https://avajs.dev). * The collection of parameters in the section.␊ */␊ parameters: (SettingsParameterDescription2[] | string)␊ + name: unknown␊ + parameters: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49640,6 +55179,8 @@ Generated by [AVA](https://avajs.dev). * The parameter value of fabric setting.␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49699,6 +55240,11 @@ Generated by [AVA](https://avajs.dev). * The number of nodes in the node type. This count should match the capacity property in the corresponding VirtualMachineScaleSet resource.␊ */␊ vmInstanceCount: (number | string)␊ + clientConnectionEndpointPort: unknown␊ + httpGatewayEndpointPort: unknown␊ + isPrimary: unknown␊ + name: unknown␊ + vmInstanceCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49713,6 +55259,8 @@ Generated by [AVA](https://avajs.dev). * Starting port of a range of ports␊ */␊ startPort: (number | string)␊ + endPort: unknown␊ + startPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49756,6 +55304,13 @@ Generated by [AVA](https://avajs.dev). * The amount of time the overall upgrade has to complete before the upgrade rolls back. The timeout can be in either hh:mm:ss or in d.hh:mm:ss.ms format.␊ */␊ upgradeTimeout: string␊ + healthCheckRetryTimeout: unknown␊ + healthCheckStableDuration: unknown␊ + healthCheckWaitDuration: unknown␊ + healthPolicy: unknown␊ + upgradeDomainTimeout: unknown␊ + upgradeReplicaSetCheckTimeout: unknown␊ + upgradeTimeout: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49793,6 +55348,9 @@ Generated by [AVA](https://avajs.dev). * ␊ */␊ maxPercentUpgradeDomainDeltaUnhealthyNodes: (number | string)␊ + maxPercentDeltaUnhealthyApplications: unknown␊ + maxPercentDeltaUnhealthyNodes: unknown␊ + maxPercentUpgradeDomainDeltaUnhealthyNodes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -49931,6 +55489,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ServiceFabric/clusters"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50020,6 +55583,8 @@ Generated by [AVA](https://avajs.dev). * The VM image VMSS has been configured with. Generic names such as Windows or Linux can be used.␊ */␊ vmImage?: string␊ + managementEndpoint: unknown␊ + nodeTypes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50056,6 +55621,7 @@ Generated by [AVA](https://avajs.dev). * The local certificate store location.␊ */␊ x509StoreName?: (("AddressBook" | "AuthRoot" | "CertificateAuthority" | "Disallowed" | "My" | "Root" | "TrustedPeople" | "TrustedPublisher") | string)␊ + thumbprint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50084,6 +55650,8 @@ Generated by [AVA](https://avajs.dev). * The issuer thumbprint of the server certificate.␊ */␊ certificateIssuerThumbprint: string␊ + certificateCommonName: unknown␊ + certificateIssuerThumbprint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50102,6 +55670,9 @@ Generated by [AVA](https://avajs.dev). * Indicates if the client certificate has admin access to the cluster. Non admin clients can perform only read only operations on the cluster.␊ */␊ isAdmin: (boolean | string)␊ + certificateCommonName: unknown␊ + certificateIssuerThumbprint: unknown␊ + isAdmin: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50116,6 +55687,8 @@ Generated by [AVA](https://avajs.dev). * Indicates if the client certificate has admin access to the cluster. Non admin clients can perform only read only operations on the cluster.␊ */␊ isAdmin: (boolean | string)␊ + certificateThumbprint: unknown␊ + isAdmin: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50142,6 +55715,11 @@ Generated by [AVA](https://avajs.dev). * The table endpoint of the azure storage account.␊ */␊ tableEndpoint: string␊ + blobEndpoint: unknown␊ + protectedAccountKeyName: unknown␊ + queueEndpoint: unknown␊ + storageAccountName: unknown␊ + tableEndpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50156,6 +55734,8 @@ Generated by [AVA](https://avajs.dev). * The collection of parameters in the section.␊ */␊ parameters: (SettingsParameterDescription3[] | string)␊ + name: unknown␊ + parameters: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50170,6 +55750,8 @@ Generated by [AVA](https://avajs.dev). * The parameter value of fabric setting.␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50229,6 +55811,11 @@ Generated by [AVA](https://avajs.dev). * The number of nodes in the node type. This count should match the capacity property in the corresponding VirtualMachineScaleSet resource.␊ */␊ vmInstanceCount: (number | string)␊ + clientConnectionEndpointPort: unknown␊ + httpGatewayEndpointPort: unknown␊ + isPrimary: unknown␊ + name: unknown␊ + vmInstanceCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50243,6 +55830,8 @@ Generated by [AVA](https://avajs.dev). * Starting port of a range of ports␊ */␊ startPort: (number | string)␊ + endPort: unknown␊ + startPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50286,6 +55875,13 @@ Generated by [AVA](https://avajs.dev). * The amount of time the overall upgrade has to complete before the upgrade rolls back. The timeout can be in either hh:mm:ss or in d.hh:mm:ss.ms format.␊ */␊ upgradeTimeout: string␊ + healthCheckRetryTimeout: unknown␊ + healthCheckStableDuration: unknown␊ + healthCheckWaitDuration: unknown␊ + healthPolicy: unknown␊ + upgradeDomainTimeout: unknown␊ + upgradeReplicaSetCheckTimeout: unknown␊ + upgradeTimeout: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50323,6 +55919,9 @@ Generated by [AVA](https://avajs.dev). * ␊ */␊ maxPercentUpgradeDomainDeltaUnhealthyNodes: (number | string)␊ + maxPercentDeltaUnhealthyApplications: unknown␊ + maxPercentDeltaUnhealthyNodes: unknown␊ + maxPercentUpgradeDomainDeltaUnhealthyNodes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50460,6 +56059,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "applicationTypes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50492,6 +56095,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "applications"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50707,6 +56314,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ServiceFabric/clusters/applications"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50733,6 +56344,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "services"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50747,6 +56362,8 @@ Generated by [AVA](https://avajs.dev). * The full name of the service with 'fabric:' URI scheme.␊ */␊ serviceName: string␊ + scheme: unknown␊ + serviceName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50754,6 +56371,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface SingletonPartitionSchemeDescription1 {␊ partitionScheme: "Singleton"␊ + partitionScheme: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50780,6 +56398,7 @@ Generated by [AVA](https://avajs.dev). * The service load metric relative weight, compared to other metrics configured for this service, as a number.␊ */␊ weight?: (("Zero" | "Low" | "Medium" | "High") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50817,6 +56436,7 @@ Generated by [AVA](https://avajs.dev). * The target replica set size as a number.␊ */␊ targetReplicaSetSize?: (number | string)␊ + serviceKind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50828,6 +56448,7 @@ Generated by [AVA](https://avajs.dev). */␊ instanceCount?: (number | string)␊ serviceKind: "Stateless"␊ + serviceKind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50846,7 +56467,41 @@ Generated by [AVA](https://avajs.dev). /**␊ * The service resource properties.␊ */␊ - properties: ((StatefulServiceProperties1 | StatelessServiceProperties1) | string)␊ + properties: (((StatefulServiceProperties1 | StatelessServiceProperties1) & {␊ + /**␊ + * A list that describes the correlation of the service with other services.␊ + */␊ + correlationScheme?: (ServiceCorrelationDescription1[] | string)␊ + /**␊ + * Specifies the move cost for the service.␊ + */␊ + defaultMoveCost?: (("Zero" | "Low" | "Medium" | "High") | string)␊ + /**␊ + * Describes how the service is partitioned.␊ + */␊ + partitionDescription?: (PartitionSchemeDescription1 | string)␊ + /**␊ + * The placement constraints as a string. Placement constraints are boolean expressions on node properties and allow for restricting a service to particular nodes based on the service requirements. For example, to place a service on nodes where NodeType is blue specify the following: "NodeColor == blue)".␊ + */␊ + placementConstraints?: string␊ + /**␊ + * The service load metrics is given as an array of ServiceLoadMetricDescription objects.␊ + */␊ + serviceLoadMetrics?: (ServiceLoadMetricDescription1[] | string)␊ + /**␊ + * The activation Mode of the service package.␊ + */␊ + servicePackageActivationMode?: (("SharedProcess" | "ExclusiveProcess") | string)␊ + /**␊ + * A list that describes the correlation of the service with other services.␊ + */␊ + servicePlacementPolicies?: (ServicePlacementPolicyDescription1[] | string)␊ + /**␊ + * The name of the service type␊ + */␊ + serviceTypeName?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Azure resource tags.␊ */␊ @@ -50854,6 +56509,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ServiceFabric/clusters/applications/services"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50881,6 +56540,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ServiceFabric/clusters/applicationTypes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50907,6 +56570,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "versions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50917,6 +56584,7 @@ Generated by [AVA](https://avajs.dev). * The URL to the application package␊ */␊ appPackageUrl: string␊ + appPackageUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50943,6 +56611,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ServiceFabric/clusters/applicationTypes/versions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -50974,6 +56646,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.StorSimple/managers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51002,6 +56679,7 @@ Generated by [AVA](https://avajs.dev). * The type of StorSimple Manager.␊ */␊ type: (("GardaV1" | "HelsinkiV1") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51012,6 +56690,7 @@ Generated by [AVA](https://avajs.dev). * Refers to the sku name which should be "Standard"␊ */␊ name: ("Standard" | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51033,6 +56712,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagerExtendedInfoProperties | string)␊ type: "extendedInformation"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51063,6 +56746,8 @@ Generated by [AVA](https://avajs.dev). * The version of the extended info being persisted.␊ */␊ version?: string␊ + algorithm: unknown␊ + integrityKey: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51083,6 +56768,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AccessControlRecordProperties | string)␊ type: "accessControlRecords"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51093,6 +56782,7 @@ Generated by [AVA](https://avajs.dev). * The iSCSI initiator name (IQN).␊ */␊ initiatorName: string␊ + initiatorName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51113,6 +56803,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BandwidthRateSettingProperties | string)␊ type: "bandwidthSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51123,6 +56817,7 @@ Generated by [AVA](https://avajs.dev). * The schedules.␊ */␊ schedules: (BandwidthSchedule[] | string)␊ + schedules: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51145,6 +56840,10 @@ Generated by [AVA](https://avajs.dev). * The time.␊ */␊ stop: (Time | string)␊ + days: unknown␊ + rateInMbps: unknown␊ + start: unknown␊ + stop: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51163,6 +56862,9 @@ Generated by [AVA](https://avajs.dev). * The second.␊ */␊ seconds: (number | string)␊ + hours: unknown␊ + minutes: unknown␊ + seconds: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51183,6 +56885,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageAccountCredentialProperties | string)␊ type: "storageAccountCredentials"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51201,6 +56907,8 @@ Generated by [AVA](https://avajs.dev). * Signifies whether SSL needs to be enabled or not.␊ */␊ sslStatus: (("Enabled" | "Disabled") | string)␊ + endPoint: unknown␊ + sslStatus: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51219,6 +56927,8 @@ Generated by [AVA](https://avajs.dev). * The value of the secret.␊ */␊ value: string␊ + encryptionAlgorithm: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51239,6 +56949,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AccessControlRecordProperties | string)␊ type: "Microsoft.StorSimple/managers/accessControlRecords"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51259,6 +56973,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BandwidthRateSettingProperties | string)␊ type: "Microsoft.StorSimple/managers/bandwidthSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51276,6 +56994,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AlertNotificationProperties | string)␊ type: "Microsoft.StorSimple/managers/devices/alertSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51298,6 +57020,7 @@ Generated by [AVA](https://avajs.dev). * The value indicating whether alert notification enabled for admin or not.␊ */␊ notificationToServiceOwners?: (("Enabled" | "Disabled") | string)␊ + emailNotification: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51319,6 +57042,10 @@ Generated by [AVA](https://avajs.dev). properties: (BackupPolicyProperties | string)␊ resources?: ManagersDevicesBackupPoliciesSchedulesChildResource[]␊ type: "Microsoft.StorSimple/managers/devices/backupPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51329,6 +57056,7 @@ Generated by [AVA](https://avajs.dev). * The path IDs of the volumes which are part of the backup policy.␊ */␊ volumeIds: (string[] | string)␊ + volumeIds: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51349,6 +57077,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BackupScheduleProperties | string)␊ type: "schedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51375,6 +57107,11 @@ Generated by [AVA](https://avajs.dev). * The start time of the schedule.␊ */␊ startTime: string␊ + backupType: unknown␊ + retentionCount: unknown␊ + scheduleRecurrence: unknown␊ + scheduleStatus: unknown␊ + startTime: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51393,6 +57130,8 @@ Generated by [AVA](https://avajs.dev). * The week days list. Applicable only for schedules of recurrence type 'weekly'.␊ */␊ weeklyDaysList?: (("Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday")[] | string)␊ + recurrenceType: unknown␊ + recurrenceValue: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51413,6 +57152,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BackupScheduleProperties | string)␊ type: "Microsoft.StorSimple/managers/devices/backupPolicies/schedules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51430,6 +57173,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TimeSettingsProperties | string)␊ type: "Microsoft.StorSimple/managers/devices/timeSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51448,6 +57195,7 @@ Generated by [AVA](https://avajs.dev). * The timezone of device, like '(UTC -06:00) Central America'␊ */␊ timeZone: string␊ + timeZone: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51469,6 +57217,10 @@ Generated by [AVA](https://avajs.dev). properties: (VolumeContainerProperties | string)␊ resources?: ManagersDevicesVolumeContainersVolumesChildResource[]␊ type: "Microsoft.StorSimple/managers/devices/volumeContainers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51491,6 +57243,7 @@ Generated by [AVA](https://avajs.dev). * The path ID of storage account associated with the volume container.␊ */␊ storageAccountCredentialId: string␊ + storageAccountCredentialId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51511,6 +57264,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VolumeProperties | string)␊ type: "volumes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51537,6 +57294,11 @@ Generated by [AVA](https://avajs.dev). * The type of the volume.␊ */␊ volumeType: (("Tiered" | "Archival" | "LocallyPinned") | string)␊ + accessControlRecordIds: unknown␊ + monitoringStatus: unknown␊ + sizeInBytes: unknown␊ + volumeStatus: unknown␊ + volumeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51557,6 +57319,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VolumeProperties | string)␊ type: "Microsoft.StorSimple/managers/devices/volumeContainers/volumes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51578,6 +57344,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagerExtendedInfoProperties | string)␊ type: "Microsoft.StorSimple/managers/extendedInformation"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51598,6 +57368,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageAccountCredentialProperties | string)␊ type: "Microsoft.StorSimple/managers/storageAccountCredentials"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51614,6 +57388,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties | string)␊ type: "Microsoft.Resources/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51645,6 +57423,7 @@ Generated by [AVA](https://avajs.dev). * Entity representing the reference to the template.␊ */␊ templateLink?: (TemplateLink | string)␊ + mode: unknown␊ [k: string]: unknown␊ }␊ export interface DebugSetting {␊ @@ -51666,6 +57445,7 @@ Generated by [AVA](https://avajs.dev). * The URI of the parameters file.␊ */␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51680,6 +57460,7 @@ Generated by [AVA](https://avajs.dev). * The URI of the template to deploy.␊ */␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51700,6 +57481,10 @@ Generated by [AVA](https://avajs.dev). * The resource group to deploy to␊ */␊ resourceGroup?: string␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51731,6 +57516,7 @@ Generated by [AVA](https://avajs.dev). * Entity representing the reference to the template.␊ */␊ templateLink?: (TemplateLink1 | string)␊ + mode: unknown␊ [k: string]: unknown␊ }␊ export interface DebugSetting1 {␊ @@ -51752,6 +57538,7 @@ Generated by [AVA](https://avajs.dev). * The URI of the parameters file.␊ */␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51766,6 +57553,7 @@ Generated by [AVA](https://avajs.dev). * The URI of the template to deploy.␊ */␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51804,6 +57592,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Solutions/applianceDefinitions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51844,6 +57636,9 @@ Generated by [AVA](https://avajs.dev). * The appliance definition package file Uri.␊ */␊ packageFileUri: string␊ + authorizations: unknown␊ + lockLevel: unknown␊ + packageFileUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51876,6 +57671,8 @@ Generated by [AVA](https://avajs.dev). * The provider's role definition identifier. This role will define all the permissions that the provider must have on the appliance's container resource group. This role definition cannot have permission to delete the resource group.␊ */␊ roleDefinitionId: string␊ + principalId: unknown␊ + roleDefinitionId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51906,6 +57703,7 @@ Generated by [AVA](https://avajs.dev). * The SKU tier.␊ */␊ tier?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51952,6 +57750,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Solutions/appliances"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -51978,6 +57780,10 @@ Generated by [AVA](https://avajs.dev). * The plan's version.␊ */␊ version: string␊ + name: unknown␊ + product: unknown␊ + publisher: unknown␊ + version: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52002,6 +57808,7 @@ Generated by [AVA](https://avajs.dev). * The blob URI where the UI definition file is located.␊ */␊ uiDefinitionUri?: string␊ + managedResourceGroupId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52037,6 +57844,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ApiManagement/service"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52077,6 +57889,8 @@ Generated by [AVA](https://avajs.dev). * The type of VPN in which API Management service needs to be configured in. None (Default Value) means the API Management service is not part of any Virtual Network, External means the API Management deployment is set up inside a Virtual Network having an Internet Facing Endpoint, and Internal means that API Management deployment is setup inside a Virtual Network having an Intranet Facing Endpoint only.␊ */␊ vpnType?: (("None" | "External" | "Internal") | string)␊ + publisherEmail: unknown␊ + publisherName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52099,6 +57913,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of a virtual network to which API Management service is deployed.␊ */␊ vpnconfiguration?: (VirtualNetworkConfiguration6 | string)␊ + location: unknown␊ + skuType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52131,6 +57947,9 @@ Generated by [AVA](https://avajs.dev). * Hostname type.␊ */␊ type: (("Proxy" | "Portal" | "Management" | "Scm") | string)␊ + certificate: unknown␊ + hostname: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52149,6 +57968,9 @@ Generated by [AVA](https://avajs.dev). * Thumbprint of the certificate.␊ */␊ thumbprint: string␊ + expiry: unknown␊ + subject: unknown␊ + thumbprint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52185,6 +58007,12 @@ Generated by [AVA](https://avajs.dev). */␊ subscriptionKeyParameterNames?: (SubscriptionKeyParameterNamesContract | string)␊ type: "apis"␊ + apiVersion: unknown␊ + name: unknown␊ + path: unknown␊ + protocols: unknown␊ + serviceUrl: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52255,6 +58083,11 @@ Generated by [AVA](https://avajs.dev). * User (user id path) for whom subscription is being created in form /users/{uid}␊ */␊ userId: string␊ + apiVersion: unknown␊ + name: unknown␊ + productId: unknown␊ + type: unknown␊ + userId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52291,6 +58124,9 @@ Generated by [AVA](https://avajs.dev). */␊ terms?: string␊ type: "products"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52311,6 +58147,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "groups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52331,6 +58170,11 @@ Generated by [AVA](https://avajs.dev). */␊ password: string␊ type: "certificates"␊ + apiVersion: unknown␊ + data: unknown␊ + name: unknown␊ + password: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52367,6 +58211,13 @@ Generated by [AVA](https://avajs.dev). */␊ state?: (("Active" | "Blocked") | string)␊ type: "users"␊ + apiVersion: unknown␊ + email: unknown␊ + firstName: unknown␊ + lastName: unknown␊ + name: unknown␊ + password: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52439,6 +58290,13 @@ Generated by [AVA](https://avajs.dev). */␊ tokenEndpoint?: string␊ type: "authorizationServers"␊ + apiVersion: unknown␊ + authorizationEndpoint: unknown␊ + clientId: unknown␊ + clientRegistrationEndpoint: unknown␊ + grantTypes: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52453,6 +58311,8 @@ Generated by [AVA](https://avajs.dev). * body parameter value.␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52479,6 +58339,10 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "loggers"␊ + apiVersion: unknown␊ + credentials: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52503,6 +58367,10 @@ Generated by [AVA](https://avajs.dev). * Value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.␊ */␊ value: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52531,6 +58399,11 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "openidConnectProviders"␊ + apiVersion: unknown␊ + clientId: unknown␊ + metadataEndpoint: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52551,6 +58424,10 @@ Generated by [AVA](https://avajs.dev). */␊ skipCertificateChainValidation?: (boolean | string)␊ type: "backends"␊ + apiVersion: unknown␊ + host: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52575,6 +58452,11 @@ Generated by [AVA](https://avajs.dev). */␊ name: (("facebook" | "google" | "microsoft" | "twitter" | "aad") | string)␊ type: "identityProviders"␊ + apiVersion: unknown␊ + clientId: unknown␊ + clientSecret: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52589,6 +58471,7 @@ Generated by [AVA](https://avajs.dev). * Name of the Sku.␊ */␊ name: (("Developer" | "Standard" | "Premium") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52626,6 +58509,12 @@ Generated by [AVA](https://avajs.dev). */␊ subscriptionKeyParameterNames?: (SubscriptionKeyParameterNamesContract | string)␊ type: "Microsoft.ApiManagement/service/apis"␊ + apiVersion: unknown␊ + name: unknown␊ + path: unknown␊ + protocols: unknown␊ + serviceUrl: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52662,6 +58551,11 @@ Generated by [AVA](https://avajs.dev). * Relative URL template identifying the target resource for this operation. May include parameters. Example: /customers/{cid}/orders/{oid}/?date={date}␊ */␊ urlTemplate: string␊ + apiVersion: unknown␊ + method: unknown␊ + name: unknown␊ + type: unknown␊ + urlTemplate: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52714,6 +58608,8 @@ Generated by [AVA](https://avajs.dev). * Parameter values.␊ */␊ values?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52728,6 +58624,7 @@ Generated by [AVA](https://avajs.dev). * An example of the representation.␊ */␊ sample?: string␊ + contentType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52746,6 +58643,7 @@ Generated by [AVA](https://avajs.dev). * Operation response HTTP status code.␊ */␊ statusCode: (number | string)␊ + statusCode: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52778,6 +58676,11 @@ Generated by [AVA](https://avajs.dev). * User (user id path) for whom subscription is being created in form /users/{uid}␊ */␊ userId: string␊ + apiVersion: unknown␊ + name: unknown␊ + productId: unknown␊ + type: unknown␊ + userId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52815,6 +58718,9 @@ Generated by [AVA](https://avajs.dev). */␊ terms?: string␊ type: "Microsoft.ApiManagement/service/products"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52827,6 +58733,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "apis"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52839,6 +58748,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "groups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52860,6 +58772,9 @@ Generated by [AVA](https://avajs.dev). name: string␊ resources?: ServiceGroupsUsersChildResource[]␊ type: "Microsoft.ApiManagement/service/groups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52872,6 +58787,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "users"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52892,6 +58810,11 @@ Generated by [AVA](https://avajs.dev). */␊ password: string␊ type: "Microsoft.ApiManagement/service/certificates"␊ + apiVersion: unknown␊ + data: unknown␊ + name: unknown␊ + password: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -52928,6 +58851,13 @@ Generated by [AVA](https://avajs.dev). */␊ state?: (("Active" | "Blocked") | string)␊ type: "Microsoft.ApiManagement/service/users"␊ + apiVersion: unknown␊ + email: unknown␊ + firstName: unknown␊ + lastName: unknown␊ + name: unknown␊ + password: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53000,6 +58930,13 @@ Generated by [AVA](https://avajs.dev). */␊ tokenEndpoint?: string␊ type: "Microsoft.ApiManagement/service/authorizationServers"␊ + apiVersion: unknown␊ + authorizationEndpoint: unknown␊ + clientId: unknown␊ + clientRegistrationEndpoint: unknown␊ + grantTypes: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53026,6 +58963,10 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/loggers"␊ + apiVersion: unknown␊ + credentials: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53050,6 +58991,10 @@ Generated by [AVA](https://avajs.dev). * Value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.␊ */␊ value: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53078,6 +59023,11 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/openidConnectProviders"␊ + apiVersion: unknown␊ + clientId: unknown␊ + metadataEndpoint: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53098,6 +59048,10 @@ Generated by [AVA](https://avajs.dev). */␊ skipCertificateChainValidation?: (boolean | string)␊ type: "Microsoft.ApiManagement/service/backends"␊ + apiVersion: unknown␊ + host: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53122,6 +59076,11 @@ Generated by [AVA](https://avajs.dev). */␊ name: (("facebook" | "google" | "microsoft" | "twitter" | "aad") | string)␊ type: "Microsoft.ApiManagement/service/identityProviders"␊ + apiVersion: unknown␊ + clientId: unknown␊ + clientSecret: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53158,6 +59117,11 @@ Generated by [AVA](https://avajs.dev). * Relative URL template identifying the target resource for this operation. May include parameters. Example: /customers/{cid}/orders/{oid}/?date={date}␊ */␊ urlTemplate: string␊ + apiVersion: unknown␊ + method: unknown␊ + name: unknown␊ + type: unknown␊ + urlTemplate: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53170,6 +59134,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/groups/users"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53182,6 +59149,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/apis"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53194,6 +59164,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/groups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53229,6 +59202,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ApiManagement/service"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53239,6 +59218,7 @@ Generated by [AVA](https://avajs.dev). * The identity type. Currently the only supported type is 'SystemAssigned'.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53283,6 +59263,8 @@ Generated by [AVA](https://avajs.dev). * The type of VPN in which API Management service needs to be configured in. None (Default Value) means the API Management service is not part of any Virtual Network, External means the API Management deployment is set up inside a Virtual Network having an Internet Facing Endpoint, and Internal means that API Management deployment is setup inside a Virtual Network having an Intranet Facing Endpoint only.␊ */␊ virtualNetworkType?: (("None" | "External" | "Internal") | string)␊ + publisherEmail: unknown␊ + publisherName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53301,6 +59283,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of a virtual network to which API Management service is deployed.␊ */␊ virtualNetworkConfiguration?: (VirtualNetworkConfiguration7 | string)␊ + location: unknown␊ + sku: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53315,6 +59299,7 @@ Generated by [AVA](https://avajs.dev). * Name of the Sku.␊ */␊ name: (("Developer" | "Standard" | "Premium" | "Basic") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53343,6 +59328,7 @@ Generated by [AVA](https://avajs.dev). * The local certificate store location. Only Root and CertificateAuthority are valid locations.␊ */␊ storeName: (("CertificateAuthority" | "Root") | string)␊ + storeName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53377,6 +59363,8 @@ Generated by [AVA](https://avajs.dev). * Hostname type.␊ */␊ type: (("Proxy" | "Portal" | "Management" | "Scm") | string)␊ + hostName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53393,6 +59381,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53403,6 +59395,7 @@ Generated by [AVA](https://avajs.dev). * Json escaped Xml Encoded contents of the Policy.␊ */␊ policyContent: string␊ + policyContent: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53419,6 +59412,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiCreateOrUpdateProperties | string)␊ type: "apis"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53485,6 +59482,7 @@ Generated by [AVA](https://avajs.dev). * Criteria to limit import of WSDL to a subset of the document.␊ */␊ wsdlSelector?: (ApiCreateOrUpdatePropertiesWsdlSelector | string)␊ + path: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53521,6 +59519,8 @@ Generated by [AVA](https://avajs.dev). * Name of query parameter that indicates the API Version if versioningScheme is set to \`query\`.␊ */␊ versionQueryName?: string␊ + displayName: unknown␊ + versioningScheme: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53589,6 +59589,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationServerContractProperties | string)␊ type: "authorizationServers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53659,6 +59663,11 @@ Generated by [AVA](https://avajs.dev). * OAuth token endpoint. Contains absolute URI to entity being referenced.␊ */␊ tokenEndpoint?: string␊ + authorizationEndpoint: unknown␊ + clientId: unknown␊ + clientRegistrationEndpoint: unknown␊ + displayName: unknown␊ + grantTypes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53673,6 +59682,8 @@ Generated by [AVA](https://avajs.dev). * body parameter value.␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53689,6 +59700,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BackendContractProperties | string)␊ type: "backends"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53731,6 +59746,8 @@ Generated by [AVA](https://avajs.dev). * Runtime Url of the Backend.␊ */␊ url: string␊ + protocol: unknown␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53771,6 +59788,8 @@ Generated by [AVA](https://avajs.dev). * Authentication Scheme name.␊ */␊ scheme: string␊ + parameter: unknown␊ + scheme: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53807,6 +59826,8 @@ Generated by [AVA](https://avajs.dev). * Server X509 Certificate Names Collection␊ */␊ serverX509Names?: (X509CertificateName[] | string)␊ + clientCertificatethumbprint: unknown␊ + managementEndpoints: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53839,6 +59860,7 @@ Generated by [AVA](https://avajs.dev). * Username to connect to the WebProxy server␊ */␊ username?: string␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53869,6 +59891,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CertificateCreateOrUpdateProperties2 | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53883,6 +59909,8 @@ Generated by [AVA](https://avajs.dev). * Password for the Certificate␊ */␊ password: string␊ + data: unknown␊ + password: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53899,6 +59927,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DiagnosticContractProperties | string)␊ type: "diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53909,6 +59941,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether a diagnostic should receive data or not.␊ */␊ enabled: (boolean | string)␊ + enabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53925,6 +59958,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EmailTemplateUpdateParameterProperties | string)␊ type: "templates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -53985,6 +60022,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (GroupCreateParametersProperties | string)␊ type: "groups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54007,6 +60048,7 @@ Generated by [AVA](https://avajs.dev). * Group type.␊ */␊ type?: (("custom" | "system" | "external") | string)␊ + displayName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54023,6 +60065,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentityProviderContractProperties | string)␊ type: "identityProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54061,6 +60107,8 @@ Generated by [AVA](https://avajs.dev). * Identity Provider Type identifier.␊ */␊ type?: (("facebook" | "google" | "microsoft" | "twitter" | "aad" | "aadB2C") | string)␊ + clientId: unknown␊ + clientSecret: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54077,6 +60125,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoggerContractProperties | string)␊ type: "loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54106,6 +60158,8 @@ Generated by [AVA](https://avajs.dev). * Sampling settings contract.␊ */␊ sampling?: (LoggerSamplingContract | string)␊ + credentials: unknown␊ + loggerType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54174,6 +60228,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (("RequestPublisherNotificationMessage" | "PurchasePublisherNotificationMessage" | "NewApplicationNotificationMessage" | "BCC" | "NewIssuePublisherNotificationMessage" | "AccountClosedPublisher" | "QuotaLimitApproachingPublisherNotificationMessage") | string)␊ type: "notifications"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54190,6 +60247,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OpenidConnectProviderContractProperties | string)␊ type: "openidConnectProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54216,6 +60277,9 @@ Generated by [AVA](https://avajs.dev). * Metadata endpoint URI.␊ */␊ metadataEndpoint: string␊ + clientId: unknown␊ + displayName: unknown␊ + metadataEndpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54316,6 +60380,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ProductContractProperties | string)␊ type: "products"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54350,6 +60418,7 @@ Generated by [AVA](https://avajs.dev). * Product terms of use. Developers trying to subscribe to the product will be presented and required to accept these terms before they can complete the subscription process.␊ */␊ terms?: string␊ + displayName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54366,6 +60435,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PropertyContractProperties | string)␊ type: "properties"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54388,6 +60461,8 @@ Generated by [AVA](https://avajs.dev). * Value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.␊ */␊ value: string␊ + displayName: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54404,6 +60479,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SubscriptionCreateParameterProperties | string)␊ type: "subscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54434,6 +60513,9 @@ Generated by [AVA](https://avajs.dev). * User (user id path) for whom subscription is being created in form /users/{uid}␊ */␊ userId: string␊ + displayName: unknown␊ + productId: unknown␊ + userId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54450,6 +60532,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagContractProperties | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54460,6 +60546,7 @@ Generated by [AVA](https://avajs.dev). * Tag name.␊ */␊ displayName: string␊ + displayName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54476,6 +60563,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (UserCreateParameterProperties | string)␊ type: "users"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54510,6 +60601,9 @@ Generated by [AVA](https://avajs.dev). * Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active.␊ */␊ state?: (("active" | "blocked" | "pending" | "deleted") | string)␊ + email: unknown␊ + firstName: unknown␊ + lastName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54526,6 +60620,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiVersionSetContractProperties | string)␊ type: "api-version-sets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54543,6 +60641,10 @@ Generated by [AVA](https://avajs.dev). properties: (ApiCreateOrUpdateProperties | string)␊ resources?: (ServiceApisReleasesChildResource | ServiceApisOperationsChildResource1 | ServiceApisPoliciesChildResource | ServiceApisSchemasChildResource | ServiceApisDiagnosticsChildResource | ServiceApisIssuesChildResource | ServiceApisTagsChildResource | ServiceApisTagDescriptionsChildResource)[]␊ type: "Microsoft.ApiManagement/service/apis"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54559,6 +60661,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiReleaseContractProperties | string)␊ type: "releases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54589,6 +60695,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OperationContractProperties | string)␊ type: "operations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54627,6 +60737,9 @@ Generated by [AVA](https://avajs.dev). * Relative URL template identifying the target resource for this operation. May include parameters. Example: /customers/{cid}/orders/{oid}/?date={date}␊ */␊ urlTemplate: string␊ + displayName: unknown␊ + method: unknown␊ + urlTemplate: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54679,6 +60792,8 @@ Generated by [AVA](https://avajs.dev). * Parameter values.␊ */␊ values?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54705,6 +60820,7 @@ Generated by [AVA](https://avajs.dev). * Type name defined by the schema. Applicable only if 'contentType' value is neither 'application/x-www-form-urlencoded' nor 'multipart/form-data'.␊ */␊ typeName?: string␊ + contentType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54727,6 +60843,7 @@ Generated by [AVA](https://avajs.dev). * Operation response HTTP status code.␊ */␊ statusCode: (number | string)␊ + statusCode: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54743,6 +60860,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54759,6 +60880,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SchemaContractProperties | string)␊ type: "schemas"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54773,6 +60898,7 @@ Generated by [AVA](https://avajs.dev). * Schema Document Properties.␊ */␊ document?: (SchemaDocumentProperties | string)␊ + contentType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54799,6 +60925,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DiagnosticContractProperties | string)␊ type: "diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54815,6 +60945,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueContractProperties | string)␊ type: "issues"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54845,6 +60979,9 @@ Generated by [AVA](https://avajs.dev). * A resource identifier for the user created the issue.␊ */␊ userId: string␊ + description: unknown␊ + title: unknown␊ + userId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54857,6 +60994,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54873,6 +61013,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagDescriptionBaseProperties | string)␊ type: "tagDescriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54908,6 +61052,10 @@ Generated by [AVA](https://avajs.dev). properties: (OperationContractProperties | string)␊ resources?: (ServiceApisOperationsPoliciesChildResource | ServiceApisOperationsTagsChildResource)[]␊ type: "Microsoft.ApiManagement/service/apis/operations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54924,6 +61072,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54936,6 +61088,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54952,6 +61107,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties | string)␊ type: "Microsoft.ApiManagement/service/apis/operations/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54964,6 +61123,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/apis/operations/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54980,6 +61142,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties | string)␊ type: "Microsoft.ApiManagement/service/apis/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -54996,6 +61162,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiReleaseContractProperties | string)␊ type: "Microsoft.ApiManagement/service/apis/releases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55012,6 +61182,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SchemaContractProperties | string)␊ type: "Microsoft.ApiManagement/service/apis/schemas"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55028,6 +61202,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagDescriptionBaseProperties | string)␊ type: "Microsoft.ApiManagement/service/apis/tagDescriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55040,6 +61218,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/apis/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55056,6 +61237,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationServerContractProperties | string)␊ type: "Microsoft.ApiManagement/service/authorizationServers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55072,6 +61257,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BackendContractProperties | string)␊ type: "Microsoft.ApiManagement/service/backends"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55088,6 +61277,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CertificateCreateOrUpdateProperties2 | string)␊ type: "Microsoft.ApiManagement/service/certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55105,6 +61298,10 @@ Generated by [AVA](https://avajs.dev). properties: (DiagnosticContractProperties | string)␊ resources?: ServiceDiagnosticsLoggersChildResource[]␊ type: "Microsoft.ApiManagement/service/diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55117,6 +61314,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55129,6 +61329,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/diagnostics/loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55146,6 +61349,10 @@ Generated by [AVA](https://avajs.dev). properties: (GroupCreateParametersProperties | string)␊ resources?: ServiceGroupsUsersChildResource1[]␊ type: "Microsoft.ApiManagement/service/groups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55158,6 +61365,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "users"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55170,6 +61380,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/groups/users"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55186,6 +61399,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentityProviderContractProperties | string)␊ type: "Microsoft.ApiManagement/service/identityProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55202,6 +61419,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoggerContractProperties | string)␊ type: "Microsoft.ApiManagement/service/loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55215,6 +61436,9 @@ Generated by [AVA](https://avajs.dev). name: (("RequestPublisherNotificationMessage" | "PurchasePublisherNotificationMessage" | "NewApplicationNotificationMessage" | "BCC" | "NewIssuePublisherNotificationMessage" | "AccountClosedPublisher" | "QuotaLimitApproachingPublisherNotificationMessage") | string)␊ resources?: (ServiceNotificationsRecipientUsersChildResource | ServiceNotificationsRecipientEmailsChildResource)[]␊ type: "Microsoft.ApiManagement/service/notifications"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55227,6 +61451,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "recipientUsers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55239,6 +61466,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "recipientEmails"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55251,6 +61481,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/notifications/recipientEmails"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55263,6 +61496,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/notifications/recipientUsers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55279,6 +61515,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OpenidConnectProviderContractProperties | string)␊ type: "Microsoft.ApiManagement/service/openidConnectProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55295,6 +61535,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties | string)␊ type: "Microsoft.ApiManagement/service/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55312,6 +61556,10 @@ Generated by [AVA](https://avajs.dev). properties: (ProductContractProperties | string)␊ resources?: (ServiceProductsApisChildResource1 | ServiceProductsGroupsChildResource1 | ServiceProductsPoliciesChildResource | ServiceProductsTagsChildResource)[]␊ type: "Microsoft.ApiManagement/service/products"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55324,6 +61572,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "apis"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55336,6 +61587,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "groups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55352,6 +61606,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55364,6 +61622,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55376,6 +61637,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/apis"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55388,6 +61652,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/groups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55404,6 +61671,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties | string)␊ type: "Microsoft.ApiManagement/service/products/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55416,6 +61687,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55432,6 +61706,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PropertyContractProperties | string)␊ type: "Microsoft.ApiManagement/service/properties"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55448,6 +61726,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SubscriptionCreateParameterProperties | string)␊ type: "Microsoft.ApiManagement/service/subscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55464,6 +61746,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagContractProperties | string)␊ type: "Microsoft.ApiManagement/service/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55480,6 +61766,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EmailTemplateUpdateParameterProperties | string)␊ type: "Microsoft.ApiManagement/service/templates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55496,6 +61786,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (UserCreateParameterProperties | string)␊ type: "Microsoft.ApiManagement/service/users"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55513,6 +61807,10 @@ Generated by [AVA](https://avajs.dev). properties: (DiagnosticContractProperties | string)␊ resources?: ServiceApisDiagnosticsLoggersChildResource[]␊ type: "Microsoft.ApiManagement/service/apis/diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55525,6 +61823,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55542,6 +61843,10 @@ Generated by [AVA](https://avajs.dev). properties: (IssueContractProperties | string)␊ resources?: (ServiceApisIssuesCommentsChildResource | ServiceApisIssuesAttachmentsChildResource)[]␊ type: "Microsoft.ApiManagement/service/apis/issues"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55558,6 +61863,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueCommentContractProperties | string)␊ type: "comments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55576,6 +61885,8 @@ Generated by [AVA](https://avajs.dev). * A resource identifier for the user who left the comment.␊ */␊ userId: string␊ + text: unknown␊ + userId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55592,6 +61903,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueAttachmentContractProperties | string)␊ type: "attachments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55610,6 +61925,9 @@ Generated by [AVA](https://avajs.dev). * Filename by which the binary data will be saved.␊ */␊ title: string␊ + content: unknown␊ + contentFormat: unknown␊ + title: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55626,6 +61944,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiVersionSetContractProperties | string)␊ type: "Microsoft.ApiManagement/service/api-version-sets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55638,6 +61960,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/apis/diagnostics/loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55654,6 +61979,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueAttachmentContractProperties | string)␊ type: "Microsoft.ApiManagement/service/apis/issues/attachments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55670,6 +61999,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueCommentContractProperties | string)␊ type: "Microsoft.ApiManagement/service/apis/issues/comments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55705,6 +62038,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ApiManagement/service"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55715,6 +62054,7 @@ Generated by [AVA](https://avajs.dev). * The identity type. Currently the only supported type is 'SystemAssigned'.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55759,6 +62099,8 @@ Generated by [AVA](https://avajs.dev). * The type of VPN in which API Management service needs to be configured in. None (Default Value) means the API Management service is not part of any Virtual Network, External means the API Management deployment is set up inside a Virtual Network having an Internet Facing Endpoint, and Internal means that API Management deployment is setup inside a Virtual Network having an Intranet Facing Endpoint only.␊ */␊ virtualNetworkType?: (("None" | "External" | "Internal") | string)␊ + publisherEmail: unknown␊ + publisherName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55777,6 +62119,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of a virtual network to which API Management service is deployed.␊ */␊ virtualNetworkConfiguration?: (VirtualNetworkConfiguration8 | string)␊ + location: unknown␊ + sku: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55791,6 +62135,7 @@ Generated by [AVA](https://avajs.dev). * Name of the Sku.␊ */␊ name: (("Developer" | "Standard" | "Premium" | "Basic") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55823,6 +62168,7 @@ Generated by [AVA](https://avajs.dev). * The System.Security.Cryptography.x509certificates.StoreName certificate store location. Only Root and CertificateAuthority are valid locations.␊ */␊ storeName: (("CertificateAuthority" | "Root") | string)␊ + storeName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55841,6 +62187,9 @@ Generated by [AVA](https://avajs.dev). * Thumbprint of the certificate.␊ */␊ thumbprint: string␊ + expiry: unknown␊ + subject: unknown␊ + thumbprint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55879,6 +62228,8 @@ Generated by [AVA](https://avajs.dev). * Hostname type.␊ */␊ type: (("Proxy" | "Portal" | "Management" | "Scm") | string)␊ + hostName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55895,6 +62246,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties1 | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55909,6 +62264,7 @@ Generated by [AVA](https://avajs.dev). * Json escaped Xml Encoded contents of the Policy.␊ */␊ policyContent: string␊ + policyContent: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -55925,6 +62281,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiCreateOrUpdateProperties1 | string)␊ type: "apis"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56005,6 +62365,7 @@ Generated by [AVA](https://avajs.dev). * Criteria to limit import of WSDL to a subset of the document.␊ */␊ wsdlSelector?: (ApiCreateOrUpdatePropertiesWsdlSelector1 | string)␊ + path: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56121,6 +62482,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationServerContractProperties1 | string)␊ type: "authorizationServers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56191,6 +62556,11 @@ Generated by [AVA](https://avajs.dev). * OAuth token endpoint. Contains absolute URI to entity being referenced.␊ */␊ tokenEndpoint?: string␊ + authorizationEndpoint: unknown␊ + clientId: unknown␊ + clientRegistrationEndpoint: unknown␊ + displayName: unknown␊ + grantTypes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56205,6 +62575,8 @@ Generated by [AVA](https://avajs.dev). * body parameter value.␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56221,6 +62593,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BackendContractProperties1 | string)␊ type: "backends"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56263,6 +62639,8 @@ Generated by [AVA](https://avajs.dev). * Runtime Url of the Backend.␊ */␊ url: string␊ + protocol: unknown␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56303,6 +62681,8 @@ Generated by [AVA](https://avajs.dev). * Authentication Scheme name.␊ */␊ scheme: string␊ + parameter: unknown␊ + scheme: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56339,6 +62719,8 @@ Generated by [AVA](https://avajs.dev). * Server X509 Certificate Names Collection␊ */␊ serverX509Names?: (X509CertificateName1[] | string)␊ + clientCertificatethumbprint: unknown␊ + managementEndpoints: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56371,6 +62753,7 @@ Generated by [AVA](https://avajs.dev). * Username to connect to the WebProxy server␊ */␊ username?: string␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56401,6 +62784,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CertificateCreateOrUpdateProperties3 | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56415,6 +62802,8 @@ Generated by [AVA](https://avajs.dev). * Password for the Certificate␊ */␊ password: string␊ + data: unknown␊ + password: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56431,6 +62820,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DiagnosticContractProperties1 | string)␊ type: "diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56441,6 +62834,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether a diagnostic should receive data or not.␊ */␊ enabled: (boolean | string)␊ + enabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56457,6 +62851,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EmailTemplateUpdateParameterProperties1 | string)␊ type: "templates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56517,6 +62915,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (GroupCreateParametersProperties1 | string)␊ type: "groups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56539,6 +62941,7 @@ Generated by [AVA](https://avajs.dev). * Group type.␊ */␊ type?: (("custom" | "system" | "external") | string)␊ + displayName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56555,6 +62958,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentityProviderContractProperties1 | string)␊ type: "identityProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56593,6 +63000,8 @@ Generated by [AVA](https://avajs.dev). * Identity Provider Type identifier.␊ */␊ type?: (("facebook" | "google" | "microsoft" | "twitter" | "aad" | "aadB2C") | string)␊ + clientId: unknown␊ + clientSecret: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56609,6 +63018,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoggerContractProperties1 | string)␊ type: "loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56634,6 +63047,8 @@ Generated by [AVA](https://avajs.dev). * Logger type.␊ */␊ loggerType: (("azureEventHub" | "applicationInsights") | string)␊ + credentials: unknown␊ + loggerType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56646,6 +63061,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (("RequestPublisherNotificationMessage" | "PurchasePublisherNotificationMessage" | "NewApplicationNotificationMessage" | "BCC" | "NewIssuePublisherNotificationMessage" | "AccountClosedPublisher" | "QuotaLimitApproachingPublisherNotificationMessage") | string)␊ type: "notifications"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56662,6 +63080,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OpenidConnectProviderContractProperties1 | string)␊ type: "openidConnectProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56688,6 +63110,9 @@ Generated by [AVA](https://avajs.dev). * Metadata endpoint URI.␊ */␊ metadataEndpoint: string␊ + clientId: unknown␊ + displayName: unknown␊ + metadataEndpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56788,6 +63213,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ProductContractProperties1 | string)␊ type: "products"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56822,6 +63251,7 @@ Generated by [AVA](https://avajs.dev). * Product terms of use. Developers trying to subscribe to the product will be presented and required to accept these terms before they can complete the subscription process.␊ */␊ terms?: string␊ + displayName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56838,6 +63268,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PropertyContractProperties1 | string)␊ type: "properties"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56860,6 +63294,8 @@ Generated by [AVA](https://avajs.dev). * Value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.␊ */␊ value: string␊ + displayName: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56876,6 +63312,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SubscriptionCreateParameterProperties1 | string)␊ type: "subscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56906,6 +63346,9 @@ Generated by [AVA](https://avajs.dev). * User (user id path) for whom subscription is being created in form /users/{uid}␊ */␊ userId: string␊ + displayName: unknown␊ + productId: unknown␊ + userId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56922,6 +63365,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagContractProperties1 | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56932,6 +63379,7 @@ Generated by [AVA](https://avajs.dev). * Tag name.␊ */␊ displayName: string␊ + displayName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56948,6 +63396,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (UserCreateParameterProperties1 | string)␊ type: "users"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -56986,6 +63438,9 @@ Generated by [AVA](https://avajs.dev). * Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active.␊ */␊ state?: (("active" | "blocked" | "pending" | "deleted") | string)␊ + email: unknown␊ + firstName: unknown␊ + lastName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57016,6 +63471,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiVersionSetContractProperties1 | string)␊ type: "api-version-sets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57042,6 +63501,8 @@ Generated by [AVA](https://avajs.dev). * Name of query parameter that indicates the API Version if versioningScheme is set to \`query\`.␊ */␊ versionQueryName?: string␊ + displayName: unknown␊ + versioningScheme: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57059,6 +63520,10 @@ Generated by [AVA](https://avajs.dev). properties: (ApiCreateOrUpdateProperties1 | string)␊ resources?: (ServiceApisReleasesChildResource1 | ServiceApisOperationsChildResource2 | ServiceApisPoliciesChildResource1 | ServiceApisSchemasChildResource1 | ServiceApisDiagnosticsChildResource1 | ServiceApisIssuesChildResource1 | ServiceApisTagsChildResource1 | ServiceApisTagDescriptionsChildResource1)[]␊ type: "Microsoft.ApiManagement/service/apis"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57075,6 +63540,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiReleaseContractProperties1 | string)␊ type: "releases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57105,6 +63574,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OperationContractProperties1 | string)␊ type: "operations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57143,6 +63616,9 @@ Generated by [AVA](https://avajs.dev). * Relative URL template identifying the target resource for this operation. May include parameters. Example: /customers/{cid}/orders/{oid}/?date={date}␊ */␊ urlTemplate: string␊ + displayName: unknown␊ + method: unknown␊ + urlTemplate: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57195,6 +63671,8 @@ Generated by [AVA](https://avajs.dev). * Parameter values.␊ */␊ values?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57221,6 +63699,7 @@ Generated by [AVA](https://avajs.dev). * Type name defined by the schema. Applicable only if 'contentType' value is neither 'application/x-www-form-urlencoded' nor 'multipart/form-data'.␊ */␊ typeName?: string␊ + contentType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57243,6 +63722,7 @@ Generated by [AVA](https://avajs.dev). * Operation response HTTP status code.␊ */␊ statusCode: (number | string)␊ + statusCode: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57259,6 +63739,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties1 | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57275,6 +63759,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SchemaContractProperties1 | string)␊ type: "schemas"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57289,6 +63777,7 @@ Generated by [AVA](https://avajs.dev). * Schema Document Properties.␊ */␊ document?: (SchemaDocumentProperties1 | string)␊ + contentType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57315,6 +63804,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DiagnosticContractProperties1 | string)␊ type: "diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57331,6 +63824,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueContractProperties1 | string)␊ type: "issues"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57361,6 +63858,9 @@ Generated by [AVA](https://avajs.dev). * A resource identifier for the user created the issue.␊ */␊ userId: string␊ + description: unknown␊ + title: unknown␊ + userId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57373,6 +63873,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57389,6 +63892,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagDescriptionBaseProperties1 | string)␊ type: "tagDescriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57424,6 +63931,10 @@ Generated by [AVA](https://avajs.dev). properties: (OperationContractProperties1 | string)␊ resources?: (ServiceApisOperationsPoliciesChildResource1 | ServiceApisOperationsTagsChildResource1)[]␊ type: "Microsoft.ApiManagement/service/apis/operations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57440,6 +63951,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties1 | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57452,6 +63967,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57468,6 +63986,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/apis/operations/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57480,6 +64002,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/apis/operations/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57496,6 +64021,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/apis/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57512,6 +64041,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiReleaseContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/apis/releases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57528,6 +64061,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SchemaContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/apis/schemas"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57544,6 +64081,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagDescriptionBaseProperties1 | string)␊ type: "Microsoft.ApiManagement/service/apis/tagDescriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57556,6 +64097,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/apis/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57572,6 +64116,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationServerContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/authorizationServers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57588,6 +64136,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BackendContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/backends"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57604,6 +64156,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CertificateCreateOrUpdateProperties3 | string)␊ type: "Microsoft.ApiManagement/service/certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57621,6 +64177,10 @@ Generated by [AVA](https://avajs.dev). properties: (DiagnosticContractProperties1 | string)␊ resources?: ServiceDiagnosticsLoggersChildResource1[]␊ type: "Microsoft.ApiManagement/service/diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57633,6 +64193,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57645,6 +64208,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/diagnostics/loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57662,6 +64228,10 @@ Generated by [AVA](https://avajs.dev). properties: (GroupCreateParametersProperties1 | string)␊ resources?: ServiceGroupsUsersChildResource2[]␊ type: "Microsoft.ApiManagement/service/groups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57674,6 +64244,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "users"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57686,6 +64259,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/groups/users"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57702,6 +64278,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentityProviderContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/identityProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57718,6 +64298,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoggerContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57731,6 +64315,9 @@ Generated by [AVA](https://avajs.dev). name: (("RequestPublisherNotificationMessage" | "PurchasePublisherNotificationMessage" | "NewApplicationNotificationMessage" | "BCC" | "NewIssuePublisherNotificationMessage" | "AccountClosedPublisher" | "QuotaLimitApproachingPublisherNotificationMessage") | string)␊ resources?: (ServiceNotificationsRecipientUsersChildResource1 | ServiceNotificationsRecipientEmailsChildResource1)[]␊ type: "Microsoft.ApiManagement/service/notifications"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57743,6 +64330,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "recipientUsers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57755,6 +64345,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "recipientEmails"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57767,6 +64360,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/notifications/recipientEmails"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57779,6 +64375,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/notifications/recipientUsers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57795,6 +64394,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OpenidConnectProviderContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/openidConnectProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57811,6 +64414,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57828,6 +64435,10 @@ Generated by [AVA](https://avajs.dev). properties: (ProductContractProperties1 | string)␊ resources?: (ServiceProductsApisChildResource2 | ServiceProductsGroupsChildResource2 | ServiceProductsPoliciesChildResource1 | ServiceProductsTagsChildResource1)[]␊ type: "Microsoft.ApiManagement/service/products"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57840,6 +64451,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "apis"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57852,6 +64466,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "groups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57868,6 +64485,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties1 | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57880,6 +64501,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57892,6 +64516,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/apis"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57904,6 +64531,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/groups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57920,6 +64550,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/products/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57932,6 +64566,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57948,6 +64585,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PropertyContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/properties"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57964,6 +64605,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SubscriptionCreateParameterProperties1 | string)␊ type: "Microsoft.ApiManagement/service/subscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57980,6 +64625,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -57996,6 +64645,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EmailTemplateUpdateParameterProperties1 | string)␊ type: "Microsoft.ApiManagement/service/templates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58012,6 +64665,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (UserCreateParameterProperties1 | string)␊ type: "Microsoft.ApiManagement/service/users"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58029,6 +64686,10 @@ Generated by [AVA](https://avajs.dev). properties: (DiagnosticContractProperties1 | string)␊ resources?: ServiceApisDiagnosticsLoggersChildResource1[]␊ type: "Microsoft.ApiManagement/service/apis/diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58041,6 +64702,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58058,6 +64722,10 @@ Generated by [AVA](https://avajs.dev). properties: (IssueContractProperties1 | string)␊ resources?: (ServiceApisIssuesCommentsChildResource1 | ServiceApisIssuesAttachmentsChildResource1)[]␊ type: "Microsoft.ApiManagement/service/apis/issues"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58074,6 +64742,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueCommentContractProperties1 | string)␊ type: "comments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58092,6 +64764,8 @@ Generated by [AVA](https://avajs.dev). * A resource identifier for the user who left the comment.␊ */␊ userId: string␊ + text: unknown␊ + userId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58108,6 +64782,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueAttachmentContractProperties1 | string)␊ type: "attachments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58126,6 +64804,9 @@ Generated by [AVA](https://avajs.dev). * Filename by which the binary data will be saved.␊ */␊ title: string␊ + content: unknown␊ + contentFormat: unknown␊ + title: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58142,6 +64823,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiVersionSetContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/api-version-sets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58154,6 +64839,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/apis/diagnostics/loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58170,6 +64858,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueAttachmentContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/apis/issues/attachments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58186,6 +64878,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueCommentContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/apis/issues/comments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58221,6 +64917,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ApiManagement/service"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58231,6 +64933,7 @@ Generated by [AVA](https://avajs.dev). * The identity type. Currently the only supported type is 'SystemAssigned'.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58275,6 +64978,8 @@ Generated by [AVA](https://avajs.dev). * The type of VPN in which API Management service needs to be configured in. None (Default Value) means the API Management service is not part of any Virtual Network, External means the API Management deployment is set up inside a Virtual Network having an Internet Facing Endpoint, and Internal means that API Management deployment is setup inside a Virtual Network having an Intranet Facing Endpoint only.␊ */␊ virtualNetworkType?: (("None" | "External" | "Internal") | string)␊ + publisherEmail: unknown␊ + publisherName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58293,6 +64998,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of a virtual network to which API Management service is deployed.␊ */␊ virtualNetworkConfiguration?: (VirtualNetworkConfiguration9 | string)␊ + location: unknown␊ + sku: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58307,6 +65014,7 @@ Generated by [AVA](https://avajs.dev). * Name of the Sku.␊ */␊ name: (("Developer" | "Standard" | "Premium" | "Basic" | "Consumption") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58339,6 +65047,7 @@ Generated by [AVA](https://avajs.dev). * The System.Security.Cryptography.x509certificates.StoreName certificate store location. Only Root and CertificateAuthority are valid locations.␊ */␊ storeName: (("CertificateAuthority" | "Root") | string)␊ + storeName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58357,6 +65066,9 @@ Generated by [AVA](https://avajs.dev). * Thumbprint of the certificate.␊ */␊ thumbprint: string␊ + expiry: unknown␊ + subject: unknown␊ + thumbprint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58395,6 +65107,8 @@ Generated by [AVA](https://avajs.dev). * Hostname type.␊ */␊ type: (("Proxy" | "Portal" | "Management" | "Scm") | string)␊ + hostName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58411,6 +65125,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiCreateOrUpdateProperties2 | string)␊ type: "apis"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58495,6 +65213,7 @@ Generated by [AVA](https://avajs.dev). * Criteria to limit import of WSDL to a subset of the document.␊ */␊ wsdlSelector?: (ApiCreateOrUpdatePropertiesWsdlSelector2 | string)␊ + path: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58611,6 +65330,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagContractProperties2 | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58621,6 +65344,7 @@ Generated by [AVA](https://avajs.dev). * Tag name.␊ */␊ displayName: string␊ + displayName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58637,6 +65361,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationServerContractProperties2 | string)␊ type: "authorizationServers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58707,6 +65435,11 @@ Generated by [AVA](https://avajs.dev). * OAuth token endpoint. Contains absolute URI to entity being referenced.␊ */␊ tokenEndpoint?: string␊ + authorizationEndpoint: unknown␊ + clientId: unknown␊ + clientRegistrationEndpoint: unknown␊ + displayName: unknown␊ + grantTypes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58721,6 +65454,8 @@ Generated by [AVA](https://avajs.dev). * body parameter value.␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58737,6 +65472,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BackendContractProperties2 | string)␊ type: "backends"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58779,6 +65518,8 @@ Generated by [AVA](https://avajs.dev). * Runtime Url of the Backend.␊ */␊ url: string␊ + protocol: unknown␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58819,6 +65560,8 @@ Generated by [AVA](https://avajs.dev). * Authentication Scheme name.␊ */␊ scheme: string␊ + parameter: unknown␊ + scheme: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58855,6 +65598,8 @@ Generated by [AVA](https://avajs.dev). * Server X509 Certificate Names Collection␊ */␊ serverX509Names?: (X509CertificateName2[] | string)␊ + clientCertificatethumbprint: unknown␊ + managementEndpoints: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58887,6 +65632,7 @@ Generated by [AVA](https://avajs.dev). * Username to connect to the WebProxy server␊ */␊ username?: string␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58917,6 +65663,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CacheContractProperties | string)␊ type: "caches"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58935,6 +65685,7 @@ Generated by [AVA](https://avajs.dev). * Original uri of entity in external system cache points to␊ */␊ resourceId?: string␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58951,6 +65702,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CertificateCreateOrUpdateProperties4 | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58965,6 +65720,8 @@ Generated by [AVA](https://avajs.dev). * Password for the Certificate␊ */␊ password: string␊ + data: unknown␊ + password: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -58981,6 +65738,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DiagnosticContractProperties2 | string)␊ type: "diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59011,6 +65772,7 @@ Generated by [AVA](https://avajs.dev). * Sampling settings for Diagnostic.␊ */␊ sampling?: (SamplingSettings | string)␊ + loggerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59079,6 +65841,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EmailTemplateUpdateParameterProperties2 | string)␊ type: "templates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59139,6 +65905,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (GroupCreateParametersProperties2 | string)␊ type: "groups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59161,6 +65931,7 @@ Generated by [AVA](https://avajs.dev). * Group type.␊ */␊ type?: (("custom" | "system" | "external") | string)␊ + displayName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59177,6 +65948,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentityProviderContractProperties2 | string)␊ type: "identityProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59219,6 +65994,8 @@ Generated by [AVA](https://avajs.dev). * Identity Provider Type identifier.␊ */␊ type?: (("facebook" | "google" | "microsoft" | "twitter" | "aad" | "aadB2C") | string)␊ + clientId: unknown␊ + clientSecret: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59235,6 +66012,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoggerContractProperties2 | string)␊ type: "loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59264,6 +66045,8 @@ Generated by [AVA](https://avajs.dev). * Azure Resource Id of a log target (either Azure Event Hub resource or Azure Application Insights resource).␊ */␊ resourceId?: string␊ + credentials: unknown␊ + loggerType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59276,6 +66059,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (("RequestPublisherNotificationMessage" | "PurchasePublisherNotificationMessage" | "NewApplicationNotificationMessage" | "BCC" | "NewIssuePublisherNotificationMessage" | "AccountClosedPublisher" | "QuotaLimitApproachingPublisherNotificationMessage") | string)␊ type: "notifications"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59292,6 +66078,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OpenidConnectProviderContractProperties2 | string)␊ type: "openidConnectProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59318,6 +66108,9 @@ Generated by [AVA](https://avajs.dev). * Metadata endpoint URI.␊ */␊ metadataEndpoint: string␊ + clientId: unknown␊ + displayName: unknown␊ + metadataEndpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59334,6 +66127,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties2 | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59348,6 +66145,7 @@ Generated by [AVA](https://avajs.dev). * Json escaped Xml Encoded contents of the Policy.␊ */␊ policyContent: string␊ + policyContent: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59448,6 +66246,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ProductContractProperties2 | string)␊ type: "products"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59482,6 +66284,7 @@ Generated by [AVA](https://avajs.dev). * Product terms of use. Developers trying to subscribe to the product will be presented and required to accept these terms before they can complete the subscription process.␊ */␊ terms?: string␊ + displayName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59498,6 +66301,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PropertyContractProperties2 | string)␊ type: "properties"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59520,6 +66327,8 @@ Generated by [AVA](https://avajs.dev). * Value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.␊ */␊ value: string␊ + displayName: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59536,6 +66345,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SubscriptionCreateParameterProperties2 | string)␊ type: "subscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59570,6 +66383,8 @@ Generated by [AVA](https://avajs.dev). * Initial subscription state. If no value is specified, subscription is created with Submitted state. Possible states are * active – the subscription is active, * suspended – the subscription is blocked, and the subscriber cannot call any APIs of the product, * submitted – the subscription request has been made by the developer, but has not yet been approved or rejected, * rejected – the subscription request has been denied by an administrator, * cancelled – the subscription has been cancelled by the developer or administrator, * expired – the subscription reached its expiration date and was deactivated.␊ */␊ state?: (("suspended" | "active" | "expired" | "submitted" | "rejected" | "cancelled") | string)␊ + displayName: unknown␊ + scope: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59586,6 +66401,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (UserCreateParameterProperties2 | string)␊ type: "users"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59624,6 +66443,9 @@ Generated by [AVA](https://avajs.dev). * Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active.␊ */␊ state?: (("active" | "blocked" | "pending" | "deleted") | string)␊ + email: unknown␊ + firstName: unknown␊ + lastName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59654,6 +66476,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiVersionSetContractProperties2 | string)␊ type: "api-version-sets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59680,6 +66506,8 @@ Generated by [AVA](https://avajs.dev). * Name of query parameter that indicates the API Version if versioningScheme is set to \`query\`.␊ */␊ versionQueryName?: string␊ + displayName: unknown␊ + versioningScheme: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59697,6 +66525,10 @@ Generated by [AVA](https://avajs.dev). properties: (ApiCreateOrUpdateProperties2 | string)␊ resources?: (ServiceApisReleasesChildResource2 | ServiceApisOperationsChildResource3 | ServiceApisTagsChildResource2 | ServiceApisPoliciesChildResource2 | ServiceApisSchemasChildResource2 | ServiceApisDiagnosticsChildResource2 | ServiceApisIssuesChildResource2 | ServiceApisTagDescriptionsChildResource2)[]␊ type: "Microsoft.ApiManagement/service/apis"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59713,6 +66545,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiReleaseContractProperties2 | string)␊ type: "releases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59743,6 +66579,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OperationContractProperties2 | string)␊ type: "operations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59781,6 +66621,9 @@ Generated by [AVA](https://avajs.dev). * Relative URL template identifying the target resource for this operation. May include parameters. Example: /customers/{cid}/orders/{oid}/?date={date}␊ */␊ urlTemplate: string␊ + displayName: unknown␊ + method: unknown␊ + urlTemplate: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59833,6 +66676,8 @@ Generated by [AVA](https://avajs.dev). * Parameter values.␊ */␊ values?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59859,6 +66704,7 @@ Generated by [AVA](https://avajs.dev). * Type name defined by the schema. Applicable only if 'contentType' value is neither 'application/x-www-form-urlencoded' nor 'multipart/form-data'.␊ */␊ typeName?: string␊ + contentType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59881,6 +66727,7 @@ Generated by [AVA](https://avajs.dev). * Operation response HTTP status code.␊ */␊ statusCode: (number | string)␊ + statusCode: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59893,6 +66740,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59909,6 +66759,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties2 | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59925,6 +66779,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SchemaContractProperties2 | string)␊ type: "schemas"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59939,6 +66797,7 @@ Generated by [AVA](https://avajs.dev). * Schema Document Properties.␊ */␊ document?: (SchemaDocumentProperties2 | string)␊ + contentType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59965,6 +66824,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DiagnosticContractProperties2 | string)␊ type: "diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -59981,6 +66844,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueContractProperties2 | string)␊ type: "issues"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60011,6 +66878,9 @@ Generated by [AVA](https://avajs.dev). * A resource identifier for the user created the issue.␊ */␊ userId: string␊ + description: unknown␊ + title: unknown␊ + userId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60027,6 +66897,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagDescriptionBaseProperties2 | string)␊ type: "tagDescriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60061,6 +66935,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DiagnosticContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/apis/diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60078,6 +66956,10 @@ Generated by [AVA](https://avajs.dev). properties: (OperationContractProperties2 | string)␊ resources?: (ServiceApisOperationsPoliciesChildResource2 | ServiceApisOperationsTagsChildResource2)[]␊ type: "Microsoft.ApiManagement/service/apis/operations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60094,6 +66976,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties2 | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60106,6 +66992,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60122,6 +67011,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/apis/operations/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60134,6 +67027,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/apis/operations/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60150,6 +67046,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/apis/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60166,6 +67066,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiReleaseContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/apis/releases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60182,6 +67086,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SchemaContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/apis/schemas"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60198,6 +67106,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagDescriptionBaseProperties2 | string)␊ type: "Microsoft.ApiManagement/service/apis/tagDescriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60210,6 +67122,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/apis/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60226,6 +67141,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiVersionSetContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/api-version-sets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60242,6 +67161,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationServerContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/authorizationServers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60258,6 +67181,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BackendContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/backends"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60274,6 +67201,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CertificateCreateOrUpdateProperties4 | string)␊ type: "Microsoft.ApiManagement/service/certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60290,6 +67221,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DiagnosticContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60307,6 +67242,10 @@ Generated by [AVA](https://avajs.dev). properties: (GroupCreateParametersProperties2 | string)␊ resources?: ServiceGroupsUsersChildResource3[]␊ type: "Microsoft.ApiManagement/service/groups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60319,6 +67258,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "users"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60331,6 +67273,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/groups/users"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60347,6 +67292,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentityProviderContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/identityProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60363,6 +67312,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoggerContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60376,6 +67329,9 @@ Generated by [AVA](https://avajs.dev). name: (("RequestPublisherNotificationMessage" | "PurchasePublisherNotificationMessage" | "NewApplicationNotificationMessage" | "BCC" | "NewIssuePublisherNotificationMessage" | "AccountClosedPublisher" | "QuotaLimitApproachingPublisherNotificationMessage") | string)␊ resources?: (ServiceNotificationsRecipientUsersChildResource2 | ServiceNotificationsRecipientEmailsChildResource2)[]␊ type: "Microsoft.ApiManagement/service/notifications"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60388,6 +67344,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "recipientUsers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60400,6 +67359,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "recipientEmails"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60412,6 +67374,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/notifications/recipientEmails"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60424,6 +67389,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/notifications/recipientUsers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60440,6 +67408,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OpenidConnectProviderContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/openidConnectProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60456,6 +67428,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60473,6 +67449,10 @@ Generated by [AVA](https://avajs.dev). properties: (ProductContractProperties2 | string)␊ resources?: (ServiceProductsTagsChildResource2 | ServiceProductsApisChildResource3 | ServiceProductsGroupsChildResource3 | ServiceProductsPoliciesChildResource2)[]␊ type: "Microsoft.ApiManagement/service/products"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60485,6 +67465,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60497,6 +67480,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "apis"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60509,6 +67495,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "groups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60525,6 +67514,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties2 | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60537,6 +67530,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/apis"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60549,6 +67545,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/groups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60565,6 +67564,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/products/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60577,6 +67580,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60593,6 +67599,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PropertyContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/properties"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60609,6 +67619,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SubscriptionCreateParameterProperties2 | string)␊ type: "Microsoft.ApiManagement/service/subscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60625,6 +67639,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60641,6 +67659,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EmailTemplateUpdateParameterProperties2 | string)␊ type: "Microsoft.ApiManagement/service/templates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60657,6 +67679,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (UserCreateParameterProperties2 | string)␊ type: "Microsoft.ApiManagement/service/users"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60692,6 +67718,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ApiManagement/service"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60702,6 +67734,7 @@ Generated by [AVA](https://avajs.dev). * The identity type. Currently the only supported type is 'SystemAssigned'.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60750,6 +67783,8 @@ Generated by [AVA](https://avajs.dev). * The type of VPN in which API Management service needs to be configured in. None (Default Value) means the API Management service is not part of any Virtual Network, External means the API Management deployment is set up inside a Virtual Network having an Internet Facing Endpoint, and Internal means that API Management deployment is setup inside a Virtual Network having an Intranet Facing Endpoint only.␊ */␊ virtualNetworkType?: (("None" | "External" | "Internal") | string)␊ + publisherEmail: unknown␊ + publisherName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60768,6 +67803,8 @@ Generated by [AVA](https://avajs.dev). * Configuration of a virtual network to which API Management service is deployed.␊ */␊ virtualNetworkConfiguration?: (VirtualNetworkConfiguration10 | string)␊ + location: unknown␊ + sku: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60782,6 +67819,7 @@ Generated by [AVA](https://avajs.dev). * Name of the Sku.␊ */␊ name: (("Developer" | "Standard" | "Premium" | "Basic" | "Consumption") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60814,6 +67852,7 @@ Generated by [AVA](https://avajs.dev). * The System.Security.Cryptography.x509certificates.StoreName certificate store location. Only Root and CertificateAuthority are valid locations.␊ */␊ storeName: (("CertificateAuthority" | "Root") | string)␊ + storeName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60832,6 +67871,9 @@ Generated by [AVA](https://avajs.dev). * Thumbprint of the certificate.␊ */␊ thumbprint: string␊ + expiry: unknown␊ + subject: unknown␊ + thumbprint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60870,6 +67912,8 @@ Generated by [AVA](https://avajs.dev). * Hostname type.␊ */␊ type: (("Proxy" | "Portal" | "Management" | "Scm" | "DeveloperPortal") | string)␊ + hostName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60886,6 +67930,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiCreateOrUpdateProperties3 | string)␊ type: "apis"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -60978,6 +68026,7 @@ Generated by [AVA](https://avajs.dev). * Criteria to limit import of WSDL to a subset of the document.␊ */␊ wsdlSelector?: (ApiCreateOrUpdatePropertiesWsdlSelector3 | string)␊ + path: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61094,6 +68143,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagContractProperties3 | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61104,6 +68157,7 @@ Generated by [AVA](https://avajs.dev). * Tag name.␊ */␊ displayName: string␊ + displayName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61120,6 +68174,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiVersionSetContractProperties3 | string)␊ type: "apiVersionSets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61146,6 +68204,8 @@ Generated by [AVA](https://avajs.dev). * Name of query parameter that indicates the API Version if versioningScheme is set to \`query\`.␊ */␊ versionQueryName?: string␊ + displayName: unknown␊ + versioningScheme: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61162,6 +68222,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationServerContractProperties3 | string)␊ type: "authorizationServers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61232,6 +68296,11 @@ Generated by [AVA](https://avajs.dev). * OAuth token endpoint. Contains absolute URI to entity being referenced.␊ */␊ tokenEndpoint?: string␊ + authorizationEndpoint: unknown␊ + clientId: unknown␊ + clientRegistrationEndpoint: unknown␊ + displayName: unknown␊ + grantTypes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61246,6 +68315,8 @@ Generated by [AVA](https://avajs.dev). * body parameter value.␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61262,6 +68333,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BackendContractProperties3 | string)␊ type: "backends"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61304,6 +68379,8 @@ Generated by [AVA](https://avajs.dev). * Runtime Url of the Backend.␊ */␊ url: string␊ + protocol: unknown␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61344,6 +68421,8 @@ Generated by [AVA](https://avajs.dev). * Authentication Scheme name.␊ */␊ scheme: string␊ + parameter: unknown␊ + scheme: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61380,6 +68459,8 @@ Generated by [AVA](https://avajs.dev). * Server X509 Certificate Names Collection␊ */␊ serverX509Names?: (X509CertificateName3[] | string)␊ + clientCertificatethumbprint: unknown␊ + managementEndpoints: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61412,6 +68493,7 @@ Generated by [AVA](https://avajs.dev). * Username to connect to the WebProxy server␊ */␊ username?: string␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61442,6 +68524,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CacheContractProperties1 | string)␊ type: "caches"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61460,6 +68546,7 @@ Generated by [AVA](https://avajs.dev). * Original uri of entity in external system cache points to␊ */␊ resourceId?: string␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61476,6 +68563,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CertificateCreateOrUpdateProperties5 | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61490,6 +68581,8 @@ Generated by [AVA](https://avajs.dev). * Password for the Certificate␊ */␊ password: string␊ + data: unknown␊ + password: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61506,6 +68599,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DiagnosticContractProperties3 | string)␊ type: "diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61544,6 +68641,7 @@ Generated by [AVA](https://avajs.dev). * The verbosity level applied to traces emitted by trace policies.␊ */␊ verbosity?: (("verbose" | "information" | "error") | string)␊ + loggerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61612,6 +68710,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EmailTemplateUpdateParameterProperties3 | string)␊ type: "templates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61672,6 +68774,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (GroupCreateParametersProperties3 | string)␊ type: "groups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61694,6 +68800,7 @@ Generated by [AVA](https://avajs.dev). * Group type.␊ */␊ type?: (("custom" | "system" | "external") | string)␊ + displayName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61710,6 +68817,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentityProviderContractProperties3 | string)␊ type: "identityProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61756,6 +68867,8 @@ Generated by [AVA](https://avajs.dev). * Identity Provider Type identifier.␊ */␊ type?: (("facebook" | "google" | "microsoft" | "twitter" | "aad" | "aadB2C") | string)␊ + clientId: unknown␊ + clientSecret: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61772,6 +68885,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoggerContractProperties3 | string)␊ type: "loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61801,6 +68918,8 @@ Generated by [AVA](https://avajs.dev). * Azure Resource Id of a log target (either Azure Event Hub resource or Azure Application Insights resource).␊ */␊ resourceId?: string␊ + credentials: unknown␊ + loggerType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61813,6 +68932,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (("RequestPublisherNotificationMessage" | "PurchasePublisherNotificationMessage" | "NewApplicationNotificationMessage" | "BCC" | "NewIssuePublisherNotificationMessage" | "AccountClosedPublisher" | "QuotaLimitApproachingPublisherNotificationMessage") | string)␊ type: "notifications"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61829,6 +68951,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OpenidConnectProviderContractProperties3 | string)␊ type: "openidConnectProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61855,6 +68981,9 @@ Generated by [AVA](https://avajs.dev). * Metadata endpoint URI.␊ */␊ metadataEndpoint: string␊ + clientId: unknown␊ + displayName: unknown␊ + metadataEndpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61871,6 +69000,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties3 | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61885,6 +69018,7 @@ Generated by [AVA](https://avajs.dev). * Contents of the Policy as defined by the format.␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -61985,6 +69119,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ProductContractProperties3 | string)␊ type: "products"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62019,6 +69157,7 @@ Generated by [AVA](https://avajs.dev). * Product terms of use. Developers trying to subscribe to the product will be presented and required to accept these terms before they can complete the subscription process.␊ */␊ terms?: string␊ + displayName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62035,6 +69174,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PropertyContractProperties3 | string)␊ type: "properties"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62057,6 +69200,8 @@ Generated by [AVA](https://avajs.dev). * Value of the property. Can contain policy expressions. It may not be empty or consist only of whitespace.␊ */␊ value: string␊ + displayName: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62073,6 +69218,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SubscriptionCreateParameterProperties3 | string)␊ type: "subscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62107,6 +69256,8 @@ Generated by [AVA](https://avajs.dev). * Initial subscription state. If no value is specified, subscription is created with Submitted state. Possible states are * active – the subscription is active, * suspended – the subscription is blocked, and the subscriber cannot call any APIs of the product, * submitted – the subscription request has been made by the developer, but has not yet been approved or rejected, * rejected – the subscription request has been denied by an administrator, * cancelled – the subscription has been cancelled by the developer or administrator, * expired – the subscription reached its expiration date and was deactivated.␊ */␊ state?: (("suspended" | "active" | "expired" | "submitted" | "rejected" | "cancelled") | string)␊ + displayName: unknown␊ + scope: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62123,6 +69274,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (UserCreateParameterProperties3 | string)␊ type: "users"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62165,6 +69320,9 @@ Generated by [AVA](https://avajs.dev). * Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active.␊ */␊ state?: (("active" | "blocked" | "pending" | "deleted") | string)␊ + email: unknown␊ + firstName: unknown␊ + lastName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62196,6 +69354,10 @@ Generated by [AVA](https://avajs.dev). properties: (ApiCreateOrUpdateProperties3 | string)␊ resources?: (ServiceApisReleasesChildResource3 | ServiceApisOperationsChildResource4 | ServiceApisTagsChildResource3 | ServiceApisPoliciesChildResource3 | ServiceApisSchemasChildResource3 | ServiceApisDiagnosticsChildResource3 | ServiceApisIssuesChildResource3 | ServiceApisTagDescriptionsChildResource3)[]␊ type: "Microsoft.ApiManagement/service/apis"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62212,6 +69374,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiReleaseContractProperties3 | string)␊ type: "releases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62242,6 +69408,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OperationContractProperties3 | string)␊ type: "operations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62280,6 +69450,9 @@ Generated by [AVA](https://avajs.dev). * Relative URL template identifying the target resource for this operation. May include parameters. Example: /customers/{cid}/orders/{oid}/?date={date}␊ */␊ urlTemplate: string␊ + displayName: unknown␊ + method: unknown␊ + urlTemplate: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62332,6 +69505,8 @@ Generated by [AVA](https://avajs.dev). * Parameter values.␊ */␊ values?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62358,6 +69533,7 @@ Generated by [AVA](https://avajs.dev). * Type name defined by the schema. Applicable only if 'contentType' value is neither 'application/x-www-form-urlencoded' nor 'multipart/form-data'.␊ */␊ typeName?: string␊ + contentType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62380,6 +69556,7 @@ Generated by [AVA](https://avajs.dev). * Operation response HTTP status code.␊ */␊ statusCode: (number | string)␊ + statusCode: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62392,6 +69569,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62408,6 +69588,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties3 | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62424,6 +69608,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SchemaCreateOrUpdateProperties | string)␊ type: "schemas"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62438,6 +69626,7 @@ Generated by [AVA](https://avajs.dev). * Schema Document Properties.␊ */␊ document?: (SchemaDocumentProperties3 | string)␊ + contentType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62464,6 +69653,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DiagnosticContractProperties3 | string)␊ type: "diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62480,6 +69673,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueContractProperties3 | string)␊ type: "issues"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62510,6 +69707,9 @@ Generated by [AVA](https://avajs.dev). * A resource identifier for the user created the issue.␊ */␊ userId: string␊ + description: unknown␊ + title: unknown␊ + userId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62526,6 +69726,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagDescriptionBaseProperties3 | string)␊ type: "tagDescriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62560,6 +69764,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DiagnosticContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/apis/diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62577,6 +69785,10 @@ Generated by [AVA](https://avajs.dev). properties: (OperationContractProperties3 | string)␊ resources?: (ServiceApisOperationsPoliciesChildResource3 | ServiceApisOperationsTagsChildResource3)[]␊ type: "Microsoft.ApiManagement/service/apis/operations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62593,6 +69805,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties3 | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62605,6 +69821,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62621,6 +69840,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/apis/operations/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62633,6 +69856,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/apis/operations/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62649,6 +69875,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/apis/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62665,6 +69895,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiReleaseContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/apis/releases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62681,6 +69915,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SchemaCreateOrUpdateProperties | string)␊ type: "Microsoft.ApiManagement/service/apis/schemas"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62697,6 +69935,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagDescriptionBaseProperties3 | string)␊ type: "Microsoft.ApiManagement/service/apis/tagDescriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62709,6 +69951,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/apis/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62726,6 +69971,10 @@ Generated by [AVA](https://avajs.dev). properties: (IssueContractProperties3 | string)␊ resources?: (ServiceApisIssuesCommentsChildResource2 | ServiceApisIssuesAttachmentsChildResource2)[]␊ type: "Microsoft.ApiManagement/service/apis/issues"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62742,6 +69991,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueCommentContractProperties2 | string)␊ type: "comments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62760,6 +70013,8 @@ Generated by [AVA](https://avajs.dev). * A resource identifier for the user who left the comment.␊ */␊ userId: string␊ + text: unknown␊ + userId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62776,6 +70031,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueAttachmentContractProperties2 | string)␊ type: "attachments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62794,6 +70053,9 @@ Generated by [AVA](https://avajs.dev). * Filename by which the binary data will be saved.␊ */␊ title: string␊ + content: unknown␊ + contentFormat: unknown␊ + title: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62810,6 +70072,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApiVersionSetContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/apiVersionSets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62826,6 +70092,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationServerContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/authorizationServers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62842,6 +70112,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BackendContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/backends"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62858,6 +70132,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CacheContractProperties1 | string)␊ type: "Microsoft.ApiManagement/service/caches"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62874,6 +70152,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CertificateCreateOrUpdateProperties5 | string)␊ type: "Microsoft.ApiManagement/service/certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62890,6 +70172,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DiagnosticContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/diagnostics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62907,6 +70193,10 @@ Generated by [AVA](https://avajs.dev). properties: (GroupCreateParametersProperties3 | string)␊ resources?: ServiceGroupsUsersChildResource4[]␊ type: "Microsoft.ApiManagement/service/groups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62919,6 +70209,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "users"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62931,6 +70224,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/groups/users"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62947,6 +70243,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentityProviderContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/identityProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62963,6 +70263,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoggerContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/loggers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62976,6 +70280,9 @@ Generated by [AVA](https://avajs.dev). name: (("RequestPublisherNotificationMessage" | "PurchasePublisherNotificationMessage" | "NewApplicationNotificationMessage" | "BCC" | "NewIssuePublisherNotificationMessage" | "AccountClosedPublisher" | "QuotaLimitApproachingPublisherNotificationMessage") | string)␊ resources?: (ServiceNotificationsRecipientUsersChildResource3 | ServiceNotificationsRecipientEmailsChildResource3)[]␊ type: "Microsoft.ApiManagement/service/notifications"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -62988,6 +70295,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "recipientUsers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63000,6 +70310,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "recipientEmails"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63012,6 +70325,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/notifications/recipientEmails"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63024,6 +70340,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/notifications/recipientUsers"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63040,6 +70359,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OpenidConnectProviderContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/openidConnectProviders"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63056,6 +70379,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63073,6 +70400,10 @@ Generated by [AVA](https://avajs.dev). properties: (ProductContractProperties3 | string)␊ resources?: (ServiceProductsTagsChildResource3 | ServiceProductsApisChildResource4 | ServiceProductsGroupsChildResource4 | ServiceProductsPoliciesChildResource3)[]␊ type: "Microsoft.ApiManagement/service/products"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63085,6 +70416,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63097,6 +70431,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "apis"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63109,6 +70446,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "groups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63125,6 +70465,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties3 | string)␊ type: "policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63137,6 +70481,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/apis"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63149,6 +70496,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/groups"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63165,6 +70515,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/products/policies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63177,6 +70531,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.ApiManagement/service/products/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63193,6 +70550,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PropertyContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/properties"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63209,6 +70570,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SubscriptionCreateParameterProperties3 | string)␊ type: "Microsoft.ApiManagement/service/subscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63225,6 +70590,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TagContractProperties3 | string)␊ type: "Microsoft.ApiManagement/service/tags"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63241,6 +70610,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EmailTemplateUpdateParameterProperties3 | string)␊ type: "Microsoft.ApiManagement/service/templates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63257,6 +70630,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (UserCreateParameterProperties3 | string)␊ type: "Microsoft.ApiManagement/service/users"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63273,6 +70650,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueAttachmentContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/apis/issues/attachments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63289,6 +70670,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IssueCommentContractProperties2 | string)␊ type: "Microsoft.ApiManagement/service/apis/issues/comments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63316,6 +70701,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.NotificationHubs/namespaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63386,6 +70776,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties1 | string)␊ type: "AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63454,6 +70848,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "notificationHubs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63684,6 +71083,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties1 | string)␊ type: "Microsoft.NotificationHubs/namespaces/AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63711,6 +71114,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.NotificationHubs/namespaces/notificationHubs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63731,6 +71139,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties1 | string)␊ type: "AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63751,6 +71163,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties1 | string)␊ type: "Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63782,6 +71198,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.NotificationHubs/namespaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63862,6 +71283,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "AuthorizationRules"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63898,6 +71324,7 @@ Generated by [AVA](https://avajs.dev). * The tier of particular sku␊ */␊ tier?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -63928,6 +71355,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "notificationHubs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64168,6 +71600,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.NotificationHubs/namespaces/AuthorizationRules"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64199,6 +71636,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.NotificationHubs/namespaces/notificationHubs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64229,6 +71671,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "AuthorizationRules"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64259,6 +71706,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64290,6 +71742,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.NotificationHubs/namespaces"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64364,6 +71820,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties | string)␊ type: "AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64394,6 +71854,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "notificationHubs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64410,6 +71874,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties | string)␊ type: "Microsoft.NotificationHubs/namespaces/AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64436,6 +71904,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/disks"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64462,6 +71935,7 @@ Generated by [AVA](https://avajs.dev). * The Operating System type.␊ */␊ osType?: (("Windows" | "Linux") | string)␊ + creationData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64488,6 +71962,7 @@ Generated by [AVA](https://avajs.dev). * If createOption is Import, the Azure Resource Manager identifier of the storage account containing the blob to import as a disk. Required only if the blob is in a different subscription␊ */␊ storageAccountId?: string␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64502,6 +71977,7 @@ Generated by [AVA](https://avajs.dev). * If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.␊ */␊ lun?: (number | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64534,6 +72010,8 @@ Generated by [AVA](https://avajs.dev). * The vault id is an Azure Resource Manager Resource id in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}␊ */␊ sourceVault: (SourceVault | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64558,6 +72036,8 @@ Generated by [AVA](https://avajs.dev). * The vault id is an Azure Resource Manager Resource id in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}␊ */␊ sourceVault: (SourceVault | string)␊ + keyUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64584,6 +72064,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/snapshots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64610,6 +72095,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/images"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64642,6 +72132,7 @@ Generated by [AVA](https://avajs.dev). * Describes an Operating System disk.␊ */␊ osDisk: (ImageOSDisk | string)␊ + osDisk: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64666,6 +72157,7 @@ Generated by [AVA](https://avajs.dev). lun: (number | string)␊ managedDisk?: (SubResource3 | string)␊ snapshot?: (SubResource3 | string)␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64694,6 +72186,8 @@ Generated by [AVA](https://avajs.dev). */␊ osType: (("Windows" | "Linux") | string)␊ snapshot?: (SubResource3 | string)␊ + osState: unknown␊ + osType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64724,6 +72218,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/availabilitySets"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -64799,6 +72298,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachines"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -65155,6 +72659,8 @@ Generated by [AVA](https://avajs.dev). * Describes the uri of a disk.␊ */␊ vhd?: (VirtualHardDisk | string)␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -65247,6 +72753,7 @@ Generated by [AVA](https://avajs.dev). * Describes the uri of a disk.␊ */␊ vhd?: (VirtualHardDisk | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -65276,6 +72783,8 @@ Generated by [AVA](https://avajs.dev). */␊ secretUrl: string␊ sourceVault: (SubResource3 | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -65287,6 +72796,8 @@ Generated by [AVA](https://avajs.dev). */␊ keyUrl: string␊ sourceVault: (SubResource3 | string)␊ + keyUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -65310,6 +72821,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface GenericExtension1 {␊ @@ -65331,6 +72847,10 @@ Generated by [AVA](https://avajs.dev). settings: ({␊ [k: string]: unknown␊ } | string)␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSDiagnostics1 {␊ @@ -65341,14 +72861,25 @@ Generated by [AVA](https://avajs.dev). settings: {␊ xmlCfg: string␊ StorageAccount: string␊ + xmlCfg: unknown␊ + StorageAccount: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + storageAccountEndPoint: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSAntimalware1 {␊ @@ -65362,6 +72893,9 @@ Generated by [AVA](https://avajs.dev). Paths: string␊ Extensions: string␊ Processes: string␊ + Paths: unknown␊ + Extensions: unknown␊ + Processes: unknown␊ [k: string]: unknown␊ }␊ RealtimeProtectionEnabled: ("true" | "false")␊ @@ -65370,10 +72904,23 @@ Generated by [AVA](https://avajs.dev). scanType: string␊ day: string␊ time: string␊ + isEnabled: unknown␊ + scanType: unknown␊ + day: unknown␊ + time: unknown␊ [k: string]: unknown␊ }␊ + AntimalwareEnabled: unknown␊ + Exclusions: unknown␊ + RealtimeProtectionEnabled: unknown␊ + ScheduledScanSettings: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptExtension1 {␊ @@ -65384,6 +72931,7 @@ Generated by [AVA](https://avajs.dev). settings: {␊ fileUris?: string[]␊ commandToExecute: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -65391,6 +72939,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptForLinux1 {␊ @@ -65406,8 +72960,15 @@ Generated by [AVA](https://avajs.dev). commandToExecute: string␊ storageAccountName?: string␊ storageAccountKey?: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxDiagnostic1 {␊ @@ -65434,8 +72995,16 @@ Generated by [AVA](https://avajs.dev). storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint?: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessForLinux1 {␊ @@ -65455,8 +73024,20 @@ Generated by [AVA](https://avajs.dev). reset_ssh: string␊ remove_user: string␊ expiration: string␊ + username: unknown␊ + password: unknown␊ + ssh_key: unknown␊ + reset_ssh: unknown␊ + remove_user: unknown␊ + expiration: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BgInfo1 {␊ @@ -65464,6 +73045,10 @@ Generated by [AVA](https://avajs.dev). type: "bginfo"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessAgent1 {␊ @@ -65479,6 +73064,12 @@ Generated by [AVA](https://avajs.dev). password?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DscExtension1 {␊ @@ -65495,12 +73086,20 @@ Generated by [AVA](https://avajs.dev). dataCollection?: string␊ [k: string]: unknown␊ }␊ + modulesUrl: unknown␊ + configurationFunction: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ dataBlobUri?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackupLinux1 {␊ @@ -65510,13 +73109,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackup1 {␊ @@ -65526,13 +73134,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxChefClient1 {␊ @@ -65548,6 +73165,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -65558,8 +73180,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface ChefClient1 {␊ @@ -65574,6 +73205,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -65584,8 +73220,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogLinuxAgent1 {␊ @@ -65595,8 +73240,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogWindowsAgent1 {␊ @@ -65606,8 +73257,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DockerExtension1 {␊ @@ -65618,8 +73275,10 @@ Generated by [AVA](https://avajs.dev). settings: {␊ docker: {␊ port: string␊ + port: unknown␊ [k: string]: unknown␊ }␊ + docker: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -65627,10 +73286,20 @@ Generated by [AVA](https://avajs.dev). ca: string␊ cert: string␊ key: string␊ + ca: unknown␊ + cert: unknown␊ + key: unknown␊ [k: string]: unknown␊ }␊ + certs: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceLinux1 {␊ @@ -65641,8 +73310,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceWindows1 {␊ @@ -65653,8 +73329,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface Eset1 {␊ @@ -65670,8 +73353,20 @@ Generated by [AVA](https://avajs.dev). "Enable-Cloud": boolean␊ "Enable-PUA": boolean␊ ERAAgentCfgUrl: string␊ + LicenseKey: unknown␊ + "Install-RealtimeProtection": unknown␊ + "Install-ProtocolFiltering": unknown␊ + "Install-DeviceControl": unknown␊ + "Enable-Cloud": unknown␊ + "Enable-PUA": unknown␊ + ERAAgentCfgUrl: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface HpeSecurityApplicationDefender1 {␊ @@ -65682,8 +73377,15 @@ Generated by [AVA](https://avajs.dev). protectedSettings: {␊ key: string␊ serverURL: string␊ + key: unknown␊ + serverURL: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface PuppetAgent1 {␊ @@ -65693,8 +73395,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ protectedSettings: {␊ PUPPET_MASTER_SERVER: string␊ + PUPPET_MASTER_SERVER: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7LinuxServerExtn1 {␊ @@ -65708,8 +73416,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7WindowsServerExtn1 {␊ @@ -65723,8 +73438,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7ApmInsightExtn1 {␊ @@ -65738,8 +73460,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSALinux1 {␊ @@ -65751,13 +73480,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSA1 {␊ @@ -65769,13 +73508,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentLinux1 {␊ @@ -65788,8 +73537,17 @@ Generated by [AVA](https://avajs.dev). "Agent Port": string␊ "Host Group": string␊ "User Account": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ + "User Account": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentWindows1 {␊ @@ -65801,8 +73559,16 @@ Generated by [AVA](https://avajs.dev). "Control-M Server Name": string␊ "Agent Port": string␊ "Host Group": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface OSPatchingForLinux1 {␊ @@ -65828,6 +73594,8 @@ Generated by [AVA](https://avajs.dev). vmStatusTest?: {␊ [k: string]: unknown␊ }␊ + disabled: unknown␊ + stop: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -65835,6 +73603,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshot1 {␊ @@ -65851,8 +73625,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshotLinux1 {␊ @@ -65869,8 +73656,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScript1 {␊ @@ -65880,14 +73680,24 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ fileUris: string[]␊ + fileUris: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ commandToExecute: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentWindows1 {␊ @@ -65895,6 +73705,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentWindows"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentLinux1 {␊ @@ -65902,6 +73716,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentLinux"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -65940,6 +73758,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachineScaleSets"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66053,6 +73876,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration.␊ */␊ properties?: (VirtualMachineScaleSetNetworkConfigurationProperties | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66067,6 +73891,7 @@ Generated by [AVA](https://avajs.dev). * Whether this is a primary NIC on a virtual machine.␊ */␊ primary?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66085,6 +73910,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration properties.␊ */␊ properties?: (VirtualMachineScaleSetIPConfigurationProperties | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66107,6 +73933,7 @@ Generated by [AVA](https://avajs.dev). * The API entity reference.␊ */␊ subnet: (ApiEntityReference | string)␊ + subnet: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66199,6 +74026,8 @@ Generated by [AVA](https://avajs.dev). * The disk name.␊ */␊ name?: string␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66243,6 +74072,7 @@ Generated by [AVA](https://avajs.dev). * The list of virtual hard disk container uris.␊ */␊ vhdContainers?: (string[] | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66266,6 +74096,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachines/extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66292,6 +74127,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerRegistry/registries"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66306,6 +74146,7 @@ Generated by [AVA](https://avajs.dev). * The properties of a storage account for a container registry.␊ */␊ storageAccount: (StorageAccountProperties2 | string)␊ + storageAccount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66320,6 +74161,8 @@ Generated by [AVA](https://avajs.dev). * The name of the storage account.␊ */␊ name: string␊ + accessKey: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66350,6 +74193,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerRegistry/registries"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66364,6 +74213,7 @@ Generated by [AVA](https://avajs.dev). * The parameters of a storage account for a container registry.␊ */␊ storageAccount: (StorageAccountParameters | string)␊ + storageAccount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66378,6 +74228,8 @@ Generated by [AVA](https://avajs.dev). * The name of the storage account.␊ */␊ name: string␊ + accessKey: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66388,6 +74240,7 @@ Generated by [AVA](https://avajs.dev). * The SKU name of the container registry. Required for registry creation. Allowed value: Basic.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66419,6 +74272,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerRegistry/registries"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66443,6 +74302,7 @@ Generated by [AVA](https://avajs.dev). * The resource ID of the storage account.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66469,6 +74329,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "replications"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66501,6 +74366,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "webhooks"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66529,6 +74399,8 @@ Generated by [AVA](https://avajs.dev). * The status of the webhook at the time the operation was called.␊ */␊ status?: (("enabled" | "disabled") | string)␊ + actions: unknown␊ + serviceUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66539,6 +74411,7 @@ Generated by [AVA](https://avajs.dev). * The SKU name of the container registry. Required for registry creation.␊ */␊ name: (("Basic" | "Managed_Basic" | "Managed_Standard" | "Managed_Premium") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66565,6 +74438,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerRegistry/registries/replications"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66591,6 +74469,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerRegistry/registries/webhooks"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66622,6 +74505,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerRegistry/registries"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66658,6 +74547,7 @@ Generated by [AVA](https://avajs.dev). * The virtual network rules.␊ */␊ virtualNetworkRules?: (VirtualNetworkRule14[] | string)␊ + defaultAction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66672,6 +74562,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66686,6 +74577,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66696,6 +74588,7 @@ Generated by [AVA](https://avajs.dev). * The resource ID of the storage account.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66722,6 +74615,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "replications"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66754,6 +74652,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "webhooks"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66782,6 +74685,8 @@ Generated by [AVA](https://avajs.dev). * The status of the webhook at the time the operation was called.␊ */␊ status?: (("enabled" | "disabled") | string)␊ + actions: unknown␊ + serviceUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66792,6 +74697,7 @@ Generated by [AVA](https://avajs.dev). * The SKU name of the container registry. Required for registry creation.␊ */␊ name: (("Classic" | "Basic" | "Standard" | "Premium") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66818,6 +74724,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerRegistry/registries/replications"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66844,6 +74755,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerRegistry/registries/webhooks"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66871,6 +74787,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerRegistry/registries/buildTasks"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66897,6 +74818,9 @@ Generated by [AVA](https://avajs.dev). * Build timeout in seconds.␊ */␊ timeout?: ((number & string) | string)␊ + alias: unknown␊ + platform: unknown␊ + sourceRepository: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66911,6 +74835,7 @@ Generated by [AVA](https://avajs.dev). * The operating system type required for the build.␊ */␊ osType: (("Windows" | "Linux") | string)␊ + osType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66933,6 +74858,8 @@ Generated by [AVA](https://avajs.dev). * The type of source control service.␊ */␊ sourceControlType: (("Github" | "VisualStudioTeamService") | string)␊ + repositoryUrl: unknown␊ + sourceControlType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66959,6 +74886,7 @@ Generated by [AVA](https://avajs.dev). * The type of Auth token.␊ */␊ tokenType?: (("PAT" | "OAuth") | string)␊ + token: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -66975,6 +74903,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BuildStepProperties | string)␊ type: "steps"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67014,6 +74946,7 @@ Generated by [AVA](https://avajs.dev). */␊ noCache?: (boolean | string)␊ type: "Docker"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67036,6 +74969,9 @@ Generated by [AVA](https://avajs.dev). * The value of the argument.␊ */␊ value: string␊ + name: unknown␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67050,8 +74986,14 @@ Generated by [AVA](https://avajs.dev). /**␊ * Base properties for any build step.␊ */␊ - properties: (DockerBuildStep | string)␊ + properties: ((DockerBuildStep & {␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.ContainerRegistry/registries/buildTasks/steps"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67078,6 +75020,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerRegistry/registries/tasks"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67112,6 +75059,8 @@ Generated by [AVA](https://avajs.dev). * The properties of a trigger.␊ */␊ trigger?: (TriggerProperties | string)␊ + platform: unknown␊ + step: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67201,6 +75150,7 @@ Generated by [AVA](https://avajs.dev). * Variant of the CPU.␊ */␊ variant?: (("v6" | "v7" | "v8") | string)␊ + os: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67232,6 +75182,8 @@ Generated by [AVA](https://avajs.dev). */␊ target?: string␊ type: "Docker"␊ + dockerFilePath: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67250,6 +75202,8 @@ Generated by [AVA](https://avajs.dev). * The value of the argument.␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67269,6 +75223,8 @@ Generated by [AVA](https://avajs.dev). * The task values/parameters file path relative to the source context.␊ */␊ valuesFilePath?: string␊ + taskFilePath: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67287,6 +75243,8 @@ Generated by [AVA](https://avajs.dev). * The overridable value.␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67306,6 +75264,8 @@ Generated by [AVA](https://avajs.dev). * The collection of overridable values that can be passed when running a task.␊ */␊ values?: (SetValue[] | string)␊ + encodedTaskContent: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67338,6 +75298,8 @@ Generated by [AVA](https://avajs.dev). * The current status of trigger.␊ */␊ status?: (("Disabled" | "Enabled") | string)␊ + baseImageTriggerType: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67360,6 +75322,9 @@ Generated by [AVA](https://avajs.dev). * The current status of trigger.␊ */␊ status?: (("Disabled" | "Enabled") | string)␊ + name: unknown␊ + sourceRepository: unknown␊ + sourceTriggerEvents: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67382,6 +75347,8 @@ Generated by [AVA](https://avajs.dev). * The type of source control service.␊ */␊ sourceControlType: (("Github" | "VisualStudioTeamService") | string)␊ + repositoryUrl: unknown␊ + sourceControlType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67408,6 +75375,8 @@ Generated by [AVA](https://avajs.dev). * The type of Auth token.␊ */␊ tokenType: (("PAT" | "OAuth") | string)␊ + token: unknown␊ + tokenType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67433,13 +75402,20 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/publicIPAddresses: DNS settings␊ */␊ dnsSettings?: (PublicIPAddressDnsSettings | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface PublicIPAddressDnsSettings {␊ domainNameLabel: string␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67469,16 +75445,25 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/virtualNetworks: Virtual Network Peerings␊ */␊ virtualNetworkPeerings?: (VirtualNetworkPeering[] | string)␊ + addressSpace: unknown␊ + subnets: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface AddressSpace {␊ addressPrefixes: string[]␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ export interface DhcpOptions {␊ dnsServers: string[]␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ export interface Subnet2 {␊ @@ -67487,12 +75472,16 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ networkSecurityGroup?: Id1␊ routeTable?: Id1␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Id1 {␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualNetworkPeering {␊ @@ -67512,6 +75501,8 @@ Generated by [AVA](https://avajs.dev). peeringState?: ((("Initiated" | "Connected" | "Disconnected") | string) & string)␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67550,8 +75541,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/loadBalancers: Outbound NAT rules␊ */␊ outboundNatRules?: (OutboundNatRules[] | string)␊ + frontendIPConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface FrontendIPConfigurations {␊ @@ -67563,10 +75560,13 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id1␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface BackendAddressPools {␊ name: string␊ + name: unknown␊ }␊ export interface LoadBalancingRules {␊ name: string␊ @@ -67580,8 +75580,15 @@ Generated by [AVA](https://avajs.dev). enableFloatingIP?: (boolean | string)␊ idleTimeoutInMinutes?: (number | string)␊ loadDistribution?: (("Default" | "SourceIP" | "SourceIPProtocol") | string)␊ + frontendIPConfiguration: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Probes {␊ @@ -67592,8 +75599,12 @@ Generated by [AVA](https://avajs.dev). requestPath?: string␊ intervalInSeconds?: (number | string)␊ numberOfProbes?: (number | string)␊ + protocol: unknown␊ + port: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatRules {␊ @@ -67603,8 +75614,14 @@ Generated by [AVA](https://avajs.dev). protocol: string␊ frontendPort: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatPools {␊ @@ -67615,8 +75632,15 @@ Generated by [AVA](https://avajs.dev). frontendPortRangeStart: (number | string)␊ frontendPortRangeEnd: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface OutboundNatRules {␊ @@ -67624,8 +75648,12 @@ Generated by [AVA](https://avajs.dev). properties: {␊ frontendIPConfigurations: Id1[]␊ backendAddressPool: Id1␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67640,8 +75668,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkSecurityGroups: Security rules␊ */␊ securityRules: (SecurityRules[] | string)␊ + securityRules: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface SecurityRules {␊ @@ -67656,8 +75690,18 @@ Generated by [AVA](https://avajs.dev). access: (("Allow" | "Deny") | string)␊ priority: (number | string)␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + sourcePortRange: unknown␊ + destinationPortRange: unknown␊ + sourceAddressPrefix: unknown␊ + destinationAddressPrefix: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67684,8 +75728,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkInterfaces: DNS settings␊ */␊ dnsSettings?: (NetworkInterfaceDnsSettings | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface IpConfiguration1 {␊ @@ -67697,8 +75747,12 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id1␊ loadBalancerBackendAddressPools?: Id1[]␊ loadBalancerInboundNatRules?: Id1[]␊ + subnet: unknown␊ + privateIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkInterfaceDnsSettings {␊ @@ -67718,8 +75772,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/routeTables: Routes␊ */␊ routes: (Routes[] | string)␊ + routes: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface Routes {␊ @@ -67728,8 +75788,12 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ nextHopType: (("VirtualNetworkGateway" | "VnetLocal" | "Internet" | "VirtualAppliance" | "HyperNetGateway" | "None") | string)␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67755,13 +75819,20 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/publicIPAddresses: DNS settings␊ */␊ dnsSettings?: (PublicIPAddressDnsSettings1 | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface PublicIPAddressDnsSettings1 {␊ domainNameLabel: string␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67791,16 +75862,25 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/virtualNetworks: Virtual Network Peerings␊ */␊ virtualNetworkPeerings?: (VirtualNetworkPeering1[] | string)␊ + addressSpace: unknown␊ + subnets: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface AddressSpace1 {␊ addressPrefixes: string[]␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ export interface DhcpOptions1 {␊ dnsServers: string[]␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ export interface Subnet3 {␊ @@ -67809,12 +75889,16 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ networkSecurityGroup?: Id2␊ routeTable?: Id2␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Id2 {␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualNetworkPeering1 {␊ @@ -67834,6 +75918,8 @@ Generated by [AVA](https://avajs.dev). peeringState?: ((("Initiated" | "Connected" | "Disconnected") | string) & string)␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67872,8 +75958,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/loadBalancers: Outbound NAT rules␊ */␊ outboundNatRules?: (OutboundNatRules1[] | string)␊ + frontendIPConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface FrontendIPConfigurations1 {␊ @@ -67885,10 +75977,13 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id2␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface BackendAddressPools1 {␊ name: string␊ + name: unknown␊ }␊ export interface LoadBalancingRules1 {␊ name: string␊ @@ -67902,8 +75997,15 @@ Generated by [AVA](https://avajs.dev). enableFloatingIP?: (boolean | string)␊ idleTimeoutInMinutes?: (number | string)␊ loadDistribution?: (("Default" | "SourceIP" | "SourceIPProtocol") | string)␊ + frontendIPConfiguration: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Probes1 {␊ @@ -67914,8 +76016,12 @@ Generated by [AVA](https://avajs.dev). requestPath?: string␊ intervalInSeconds?: (number | string)␊ numberOfProbes?: (number | string)␊ + protocol: unknown␊ + port: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatRules1 {␊ @@ -67925,8 +76031,14 @@ Generated by [AVA](https://avajs.dev). protocol: string␊ frontendPort: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatPools1 {␊ @@ -67937,8 +76049,15 @@ Generated by [AVA](https://avajs.dev). frontendPortRangeStart: (number | string)␊ frontendPortRangeEnd: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface OutboundNatRules1 {␊ @@ -67946,8 +76065,12 @@ Generated by [AVA](https://avajs.dev). properties: {␊ frontendIPConfigurations: Id2[]␊ backendAddressPool: Id2␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -67962,8 +76085,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkSecurityGroups: Security rules␊ */␊ securityRules: (SecurityRules1[] | string)␊ + securityRules: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface SecurityRules1 {␊ @@ -67978,8 +76107,18 @@ Generated by [AVA](https://avajs.dev). access: (("Allow" | "Deny") | string)␊ priority: (number | string)␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + sourcePortRange: unknown␊ + destinationPortRange: unknown␊ + sourceAddressPrefix: unknown␊ + destinationAddressPrefix: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68006,8 +76145,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkInterfaces: DNS settings␊ */␊ dnsSettings?: (NetworkInterfaceDnsSettings1 | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface IpConfiguration2 {␊ @@ -68019,8 +76164,12 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id2␊ loadBalancerBackendAddressPools?: Id2[]␊ loadBalancerInboundNatRules?: Id2[]␊ + subnet: unknown␊ + privateIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkInterfaceDnsSettings1 {␊ @@ -68040,8 +76189,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/routeTables: Routes␊ */␊ routes: (Routes1[] | string)␊ + routes: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface Routes1 {␊ @@ -68050,8 +76205,12 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ nextHopType: (("VirtualNetworkGateway" | "VnetLocal" | "Internet" | "VirtualAppliance" | "HyperNetGateway" | "None") | string)␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68077,13 +76236,20 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/publicIPAddresses: DNS settings␊ */␊ dnsSettings?: (PublicIPAddressDnsSettings2 | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface PublicIPAddressDnsSettings2 {␊ domainNameLabel: string␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68113,16 +76279,25 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/virtualNetworks: Virtual Network Peerings␊ */␊ virtualNetworkPeerings?: (VirtualNetworkPeering2[] | string)␊ + addressSpace: unknown␊ + subnets: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface AddressSpace2 {␊ addressPrefixes: string[]␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ export interface DhcpOptions2 {␊ dnsServers: string[]␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ export interface Subnet4 {␊ @@ -68131,12 +76306,16 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ networkSecurityGroup?: Id3␊ routeTable?: Id3␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Id3 {␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualNetworkPeering2 {␊ @@ -68156,6 +76335,8 @@ Generated by [AVA](https://avajs.dev). peeringState?: ((("Initiated" | "Connected" | "Disconnected") | string) & string)␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68194,8 +76375,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/loadBalancers: Outbound NAT rules␊ */␊ outboundNatRules?: (OutboundNatRules2[] | string)␊ + frontendIPConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface FrontendIPConfigurations2 {␊ @@ -68207,10 +76394,13 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id3␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface BackendAddressPools2 {␊ name: string␊ + name: unknown␊ }␊ export interface LoadBalancingRules2 {␊ name: string␊ @@ -68224,8 +76414,15 @@ Generated by [AVA](https://avajs.dev). enableFloatingIP?: (boolean | string)␊ idleTimeoutInMinutes?: (number | string)␊ loadDistribution?: (("Default" | "SourceIP" | "SourceIPProtocol") | string)␊ + frontendIPConfiguration: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Probes2 {␊ @@ -68236,8 +76433,12 @@ Generated by [AVA](https://avajs.dev). requestPath?: string␊ intervalInSeconds?: (number | string)␊ numberOfProbes?: (number | string)␊ + protocol: unknown␊ + port: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatRules2 {␊ @@ -68247,8 +76448,14 @@ Generated by [AVA](https://avajs.dev). protocol: string␊ frontendPort: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatPools2 {␊ @@ -68259,8 +76466,15 @@ Generated by [AVA](https://avajs.dev). frontendPortRangeStart: (number | string)␊ frontendPortRangeEnd: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface OutboundNatRules2 {␊ @@ -68268,8 +76482,12 @@ Generated by [AVA](https://avajs.dev). properties: {␊ frontendIPConfigurations: Id3[]␊ backendAddressPool: Id3␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68284,8 +76502,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkSecurityGroups: Security rules␊ */␊ securityRules: (SecurityRules2[] | string)␊ + securityRules: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface SecurityRules2 {␊ @@ -68300,8 +76524,18 @@ Generated by [AVA](https://avajs.dev). access: (("Allow" | "Deny") | string)␊ priority: (number | string)␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + sourcePortRange: unknown␊ + destinationPortRange: unknown␊ + sourceAddressPrefix: unknown␊ + destinationAddressPrefix: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68328,8 +76562,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkInterfaces: DNS settings␊ */␊ dnsSettings?: (NetworkInterfaceDnsSettings2 | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface IpConfiguration3 {␊ @@ -68341,8 +76581,12 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id3␊ loadBalancerBackendAddressPools?: Id3[]␊ loadBalancerInboundNatRules?: Id3[]␊ + subnet: unknown␊ + privateIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkInterfaceDnsSettings2 {␊ @@ -68362,8 +76606,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/routeTables: Routes␊ */␊ routes: (Routes2[] | string)␊ + routes: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface Routes2 {␊ @@ -68372,8 +76622,12 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ nextHopType: (("VirtualNetworkGateway" | "VnetLocal" | "Internet" | "VirtualAppliance" | "HyperNetGateway" | "None") | string)␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68399,13 +76653,20 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/publicIPAddresses: DNS settings␊ */␊ dnsSettings?: (PublicIPAddressDnsSettings3 | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface PublicIPAddressDnsSettings3 {␊ domainNameLabel: string␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68435,16 +76696,25 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/virtualNetworks: Virtual Network Peerings␊ */␊ virtualNetworkPeerings?: (VirtualNetworkPeering3[] | string)␊ + addressSpace: unknown␊ + subnets: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface AddressSpace3 {␊ addressPrefixes: string[]␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ export interface DhcpOptions3 {␊ dnsServers: string[]␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ export interface Subnet5 {␊ @@ -68453,12 +76723,16 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ networkSecurityGroup?: Id4␊ routeTable?: Id4␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Id4 {␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualNetworkPeering3 {␊ @@ -68478,6 +76752,8 @@ Generated by [AVA](https://avajs.dev). peeringState?: ((("Initiated" | "Connected" | "Disconnected") | string) & string)␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68516,8 +76792,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/loadBalancers: Outbound NAT rules␊ */␊ outboundNatRules?: (OutboundNatRules3[] | string)␊ + frontendIPConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface FrontendIPConfigurations3 {␊ @@ -68529,10 +76811,13 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id4␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface BackendAddressPools3 {␊ name: string␊ + name: unknown␊ }␊ export interface LoadBalancingRules3 {␊ name: string␊ @@ -68546,8 +76831,15 @@ Generated by [AVA](https://avajs.dev). enableFloatingIP?: (boolean | string)␊ idleTimeoutInMinutes?: (number | string)␊ loadDistribution?: (("Default" | "SourceIP" | "SourceIPProtocol") | string)␊ + frontendIPConfiguration: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Probes3 {␊ @@ -68558,8 +76850,12 @@ Generated by [AVA](https://avajs.dev). requestPath?: string␊ intervalInSeconds?: (number | string)␊ numberOfProbes?: (number | string)␊ + protocol: unknown␊ + port: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatRules3 {␊ @@ -68569,8 +76865,14 @@ Generated by [AVA](https://avajs.dev). protocol: string␊ frontendPort: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatPools3 {␊ @@ -68581,8 +76883,15 @@ Generated by [AVA](https://avajs.dev). frontendPortRangeStart: (number | string)␊ frontendPortRangeEnd: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface OutboundNatRules3 {␊ @@ -68590,8 +76899,12 @@ Generated by [AVA](https://avajs.dev). properties: {␊ frontendIPConfigurations: Id4[]␊ backendAddressPool: Id4␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68606,8 +76919,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkSecurityGroups: Security rules␊ */␊ securityRules: (SecurityRules3[] | string)␊ + securityRules: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface SecurityRules3 {␊ @@ -68622,8 +76941,18 @@ Generated by [AVA](https://avajs.dev). access: (("Allow" | "Deny") | string)␊ priority: (number | string)␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + sourcePortRange: unknown␊ + destinationPortRange: unknown␊ + sourceAddressPrefix: unknown␊ + destinationAddressPrefix: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68650,8 +76979,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkInterfaces: DNS settings␊ */␊ dnsSettings?: (NetworkInterfaceDnsSettings3 | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface IpConfiguration4 {␊ @@ -68663,8 +76998,12 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id4␊ loadBalancerBackendAddressPools?: Id4[]␊ loadBalancerInboundNatRules?: Id4[]␊ + subnet: unknown␊ + privateIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkInterfaceDnsSettings3 {␊ @@ -68684,8 +77023,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/routeTables: Routes␊ */␊ routes: (Routes3[] | string)␊ + routes: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface Routes3 {␊ @@ -68694,8 +77039,12 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ nextHopType: (("VirtualNetworkGateway" | "VnetLocal" | "Internet" | "VirtualAppliance" | "HyperNetGateway" | "None") | string)␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68721,13 +77070,20 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/publicIPAddresses: DNS settings␊ */␊ dnsSettings?: (PublicIPAddressDnsSettings4 | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface PublicIPAddressDnsSettings4 {␊ domainNameLabel: string␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68757,16 +77113,25 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/virtualNetworks: Virtual Network Peerings␊ */␊ virtualNetworkPeerings?: (VirtualNetworkPeering4[] | string)␊ + addressSpace: unknown␊ + subnets: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface AddressSpace4 {␊ addressPrefixes: string[]␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ export interface DhcpOptions4 {␊ dnsServers: string[]␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ export interface Subnet6 {␊ @@ -68775,12 +77140,16 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ networkSecurityGroup?: Id5␊ routeTable?: Id5␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Id5 {␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualNetworkPeering4 {␊ @@ -68800,6 +77169,8 @@ Generated by [AVA](https://avajs.dev). peeringState?: ((("Initiated" | "Connected" | "Disconnected") | string) & string)␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68838,8 +77209,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/loadBalancers: Outbound NAT rules␊ */␊ outboundNatRules?: (OutboundNatRules4[] | string)␊ + frontendIPConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface FrontendIPConfigurations4 {␊ @@ -68851,10 +77228,13 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id5␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface BackendAddressPools4 {␊ name: string␊ + name: unknown␊ }␊ export interface LoadBalancingRules4 {␊ name: string␊ @@ -68868,8 +77248,15 @@ Generated by [AVA](https://avajs.dev). enableFloatingIP?: (boolean | string)␊ idleTimeoutInMinutes?: (number | string)␊ loadDistribution?: (("Default" | "SourceIP" | "SourceIPProtocol") | string)␊ + frontendIPConfiguration: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Probes4 {␊ @@ -68880,8 +77267,12 @@ Generated by [AVA](https://avajs.dev). requestPath?: string␊ intervalInSeconds?: (number | string)␊ numberOfProbes?: (number | string)␊ + protocol: unknown␊ + port: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatRules4 {␊ @@ -68891,8 +77282,14 @@ Generated by [AVA](https://avajs.dev). protocol: string␊ frontendPort: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatPools4 {␊ @@ -68903,8 +77300,15 @@ Generated by [AVA](https://avajs.dev). frontendPortRangeStart: (number | string)␊ frontendPortRangeEnd: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface OutboundNatRules4 {␊ @@ -68912,8 +77316,12 @@ Generated by [AVA](https://avajs.dev). properties: {␊ frontendIPConfigurations: Id5[]␊ backendAddressPool: Id5␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68928,8 +77336,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkSecurityGroups: Security rules␊ */␊ securityRules: (SecurityRules4[] | string)␊ + securityRules: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface SecurityRules4 {␊ @@ -68944,8 +77358,18 @@ Generated by [AVA](https://avajs.dev). access: (("Allow" | "Deny") | string)␊ priority: (number | string)␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + sourcePortRange: unknown␊ + destinationPortRange: unknown␊ + sourceAddressPrefix: unknown␊ + destinationAddressPrefix: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -68972,8 +77396,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkInterfaces: DNS settings␊ */␊ dnsSettings?: (NetworkInterfaceDnsSettings4 | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface IpConfiguration5 {␊ @@ -68985,8 +77415,12 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id5␊ loadBalancerBackendAddressPools?: Id5[]␊ loadBalancerInboundNatRules?: Id5[]␊ + subnet: unknown␊ + privateIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkInterfaceDnsSettings4 {␊ @@ -69006,8 +77440,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/routeTables: Routes␊ */␊ routes: (Routes4[] | string)␊ + routes: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface Routes4 {␊ @@ -69016,8 +77456,12 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ nextHopType: (("VirtualNetworkGateway" | "VnetLocal" | "Internet" | "VirtualAppliance" | "HyperNetGateway" | "None") | string)␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69043,13 +77487,20 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/publicIPAddresses: DNS settings␊ */␊ dnsSettings?: (PublicIPAddressDnsSettings5 | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface PublicIPAddressDnsSettings5 {␊ domainNameLabel: string␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69079,16 +77530,25 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/virtualNetworks: Virtual Network Peerings␊ */␊ virtualNetworkPeerings?: (VirtualNetworkPeering5[] | string)␊ + addressSpace: unknown␊ + subnets: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface AddressSpace5 {␊ addressPrefixes: string[]␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ export interface DhcpOptions5 {␊ dnsServers: string[]␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ export interface Subnet7 {␊ @@ -69097,12 +77557,16 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ networkSecurityGroup?: Id6␊ routeTable?: Id6␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Id6 {␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualNetworkPeering5 {␊ @@ -69122,6 +77586,8 @@ Generated by [AVA](https://avajs.dev). peeringState?: ((("Initiated" | "Connected" | "Disconnected") | string) & string)␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69160,8 +77626,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/loadBalancers: Outbound NAT rules␊ */␊ outboundNatRules?: (OutboundNatRules5[] | string)␊ + frontendIPConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface FrontendIPConfigurations5 {␊ @@ -69173,10 +77645,13 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id6␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface BackendAddressPools5 {␊ name: string␊ + name: unknown␊ }␊ export interface LoadBalancingRules5 {␊ name: string␊ @@ -69190,8 +77665,15 @@ Generated by [AVA](https://avajs.dev). enableFloatingIP?: (boolean | string)␊ idleTimeoutInMinutes?: (number | string)␊ loadDistribution?: (("Default" | "SourceIP" | "SourceIPProtocol") | string)␊ + frontendIPConfiguration: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Probes5 {␊ @@ -69202,8 +77684,12 @@ Generated by [AVA](https://avajs.dev). requestPath?: string␊ intervalInSeconds?: (number | string)␊ numberOfProbes?: (number | string)␊ + protocol: unknown␊ + port: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatRules5 {␊ @@ -69213,8 +77699,14 @@ Generated by [AVA](https://avajs.dev). protocol: string␊ frontendPort: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatPools5 {␊ @@ -69225,8 +77717,15 @@ Generated by [AVA](https://avajs.dev). frontendPortRangeStart: (number | string)␊ frontendPortRangeEnd: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface OutboundNatRules5 {␊ @@ -69234,8 +77733,12 @@ Generated by [AVA](https://avajs.dev). properties: {␊ frontendIPConfigurations: Id6[]␊ backendAddressPool: Id6␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69250,8 +77753,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkSecurityGroups: Security rules␊ */␊ securityRules: (SecurityRules5[] | string)␊ + securityRules: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface SecurityRules5 {␊ @@ -69266,8 +77775,18 @@ Generated by [AVA](https://avajs.dev). access: (("Allow" | "Deny") | string)␊ priority: (number | string)␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + sourcePortRange: unknown␊ + destinationPortRange: unknown␊ + sourceAddressPrefix: unknown␊ + destinationAddressPrefix: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69294,8 +77813,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkInterfaces: DNS settings␊ */␊ dnsSettings?: (NetworkInterfaceDnsSettings5 | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface IpConfiguration6 {␊ @@ -69307,8 +77832,12 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id6␊ loadBalancerBackendAddressPools?: Id6[]␊ loadBalancerInboundNatRules?: Id6[]␊ + subnet: unknown␊ + privateIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkInterfaceDnsSettings5 {␊ @@ -69328,8 +77857,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/routeTables: Routes␊ */␊ routes: (Routes5[] | string)␊ + routes: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface Routes5 {␊ @@ -69338,8 +77873,12 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ nextHopType: (("VirtualNetworkGateway" | "VnetLocal" | "Internet" | "VirtualAppliance" | "HyperNetGateway" | "None") | string)␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69365,13 +77904,20 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/publicIPAddresses: DNS settings␊ */␊ dnsSettings?: (PublicIPAddressDnsSettings6 | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface PublicIPAddressDnsSettings6 {␊ domainNameLabel: string␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69401,16 +77947,25 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/virtualNetworks: Virtual Network Peerings␊ */␊ virtualNetworkPeerings?: (VirtualNetworkPeering6[] | string)␊ + addressSpace: unknown␊ + subnets: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface AddressSpace6 {␊ addressPrefixes: string[]␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ export interface DhcpOptions6 {␊ dnsServers: string[]␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ export interface Subnet8 {␊ @@ -69419,12 +77974,16 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ networkSecurityGroup?: Id7␊ routeTable?: Id7␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Id7 {␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualNetworkPeering6 {␊ @@ -69444,6 +78003,8 @@ Generated by [AVA](https://avajs.dev). peeringState?: ((("Initiated" | "Connected" | "Disconnected") | string) & string)␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69482,8 +78043,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/loadBalancers: Outbound NAT rules␊ */␊ outboundNatRules?: (OutboundNatRules6[] | string)␊ + frontendIPConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface FrontendIPConfigurations6 {␊ @@ -69495,10 +78062,13 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id7␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface BackendAddressPools6 {␊ name: string␊ + name: unknown␊ }␊ export interface LoadBalancingRules6 {␊ name: string␊ @@ -69512,8 +78082,15 @@ Generated by [AVA](https://avajs.dev). enableFloatingIP?: (boolean | string)␊ idleTimeoutInMinutes?: (number | string)␊ loadDistribution?: (("Default" | "SourceIP" | "SourceIPProtocol") | string)␊ + frontendIPConfiguration: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Probes6 {␊ @@ -69524,8 +78101,12 @@ Generated by [AVA](https://avajs.dev). requestPath?: string␊ intervalInSeconds?: (number | string)␊ numberOfProbes?: (number | string)␊ + protocol: unknown␊ + port: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatRules6 {␊ @@ -69535,8 +78116,14 @@ Generated by [AVA](https://avajs.dev). protocol: string␊ frontendPort: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatPools6 {␊ @@ -69547,8 +78134,15 @@ Generated by [AVA](https://avajs.dev). frontendPortRangeStart: (number | string)␊ frontendPortRangeEnd: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface OutboundNatRules6 {␊ @@ -69556,8 +78150,12 @@ Generated by [AVA](https://avajs.dev). properties: {␊ frontendIPConfigurations: Id7[]␊ backendAddressPool: Id7␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69572,8 +78170,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkSecurityGroups: Security rules␊ */␊ securityRules: (SecurityRules6[] | string)␊ + securityRules: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface SecurityRules6 {␊ @@ -69588,8 +78192,18 @@ Generated by [AVA](https://avajs.dev). access: (("Allow" | "Deny") | string)␊ priority: (number | string)␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + sourcePortRange: unknown␊ + destinationPortRange: unknown␊ + sourceAddressPrefix: unknown␊ + destinationAddressPrefix: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69616,8 +78230,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkInterfaces: DNS settings␊ */␊ dnsSettings?: (NetworkInterfaceDnsSettings6 | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface IpConfiguration7 {␊ @@ -69629,8 +78249,12 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id7␊ loadBalancerBackendAddressPools?: Id7[]␊ loadBalancerInboundNatRules?: Id7[]␊ + subnet: unknown␊ + privateIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkInterfaceDnsSettings6 {␊ @@ -69650,8 +78274,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/routeTables: Routes␊ */␊ routes: (Routes6[] | string)␊ + routes: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface Routes6 {␊ @@ -69660,8 +78290,12 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ nextHopType: (("VirtualNetworkGateway" | "VnetLocal" | "Internet" | "VirtualAppliance" | "HyperNetGateway" | "None") | string)␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69687,13 +78321,20 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/publicIPAddresses: DNS settings␊ */␊ dnsSettings?: (PublicIPAddressDnsSettings7 | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface PublicIPAddressDnsSettings7 {␊ domainNameLabel: string␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69723,16 +78364,25 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/virtualNetworks: Virtual Network Peerings␊ */␊ virtualNetworkPeerings?: (VirtualNetworkPeering7[] | string)␊ + addressSpace: unknown␊ + subnets: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface AddressSpace7 {␊ addressPrefixes: string[]␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ export interface DhcpOptions7 {␊ dnsServers: string[]␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ export interface Subnet9 {␊ @@ -69741,12 +78391,16 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ networkSecurityGroup?: Id8␊ routeTable?: Id8␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Id8 {␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualNetworkPeering7 {␊ @@ -69766,6 +78420,8 @@ Generated by [AVA](https://avajs.dev). peeringState?: ((("Initiated" | "Connected" | "Disconnected") | string) & string)␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69804,8 +78460,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/loadBalancers: Outbound NAT rules␊ */␊ outboundNatRules?: (OutboundNatRules7[] | string)␊ + frontendIPConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface FrontendIPConfigurations7 {␊ @@ -69817,10 +78479,13 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id8␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface BackendAddressPools7 {␊ name: string␊ + name: unknown␊ }␊ export interface LoadBalancingRules7 {␊ name: string␊ @@ -69834,8 +78499,15 @@ Generated by [AVA](https://avajs.dev). enableFloatingIP?: (boolean | string)␊ idleTimeoutInMinutes?: (number | string)␊ loadDistribution?: (("Default" | "SourceIP" | "SourceIPProtocol") | string)␊ + frontendIPConfiguration: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface Probes7 {␊ @@ -69846,8 +78518,12 @@ Generated by [AVA](https://avajs.dev). requestPath?: string␊ intervalInSeconds?: (number | string)␊ numberOfProbes?: (number | string)␊ + protocol: unknown␊ + port: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatRules7 {␊ @@ -69857,8 +78533,14 @@ Generated by [AVA](https://avajs.dev). protocol: string␊ frontendPort: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface InboundNatPools7 {␊ @@ -69869,8 +78551,15 @@ Generated by [AVA](https://avajs.dev). frontendPortRangeStart: (number | string)␊ frontendPortRangeEnd: (number | string)␊ backendPort: (number | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface OutboundNatRules7 {␊ @@ -69878,8 +78567,12 @@ Generated by [AVA](https://avajs.dev). properties: {␊ frontendIPConfigurations: Id8[]␊ backendAddressPool: Id8␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69894,8 +78587,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkSecurityGroups: Security rules␊ */␊ securityRules: (SecurityRules7[] | string)␊ + securityRules: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface SecurityRules7 {␊ @@ -69910,8 +78609,18 @@ Generated by [AVA](https://avajs.dev). access: (("Allow" | "Deny") | string)␊ priority: (number | string)␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + sourcePortRange: unknown␊ + destinationPortRange: unknown␊ + sourceAddressPrefix: unknown␊ + destinationAddressPrefix: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -69938,8 +78647,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/networkInterfaces: DNS settings␊ */␊ dnsSettings?: (NetworkInterfaceDnsSettings7 | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface IpConfiguration8 {␊ @@ -69951,8 +78666,12 @@ Generated by [AVA](https://avajs.dev). publicIPAddress?: Id8␊ loadBalancerBackendAddressPools?: Id8[]␊ loadBalancerInboundNatRules?: Id8[]␊ + subnet: unknown␊ + privateIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkInterfaceDnsSettings7 {␊ @@ -69972,8 +78691,14 @@ Generated by [AVA](https://avajs.dev). * Microsoft.Network/routeTables: Routes␊ */␊ routes: (Routes7[] | string)␊ + routes: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface Routes7 {␊ @@ -69982,8 +78707,12 @@ Generated by [AVA](https://avajs.dev). addressPrefix: string␊ nextHopType: (("VirtualNetworkGateway" | "VnetLocal" | "Internet" | "VirtualAppliance" | "HyperNetGateway" | "None") | string)␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70008,6 +78737,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70039,6 +78773,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70057,6 +78792,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70082,6 +78818,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource | VirtualNetworksSubnetsChildResource)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualNetworkPropertiesFormat {␊ @@ -70109,6 +78850,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70119,6 +78861,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70129,6 +78872,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70144,6 +78888,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ export interface SubnetPropertiesFormat {␊ @@ -70171,6 +78916,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ export interface SubResource4 {␊ @@ -70178,6 +78924,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70236,6 +78983,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualNetworkPeeringPropertiesFormat {␊ @@ -70267,6 +79015,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70281,6 +79030,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70295,6 +79048,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70319,6 +79076,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70376,6 +79138,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70417,6 +79180,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70442,6 +79206,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70488,6 +79253,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70503,6 +79272,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ export interface ProbePropertiesFormat {␊ @@ -70530,6 +79300,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70545,6 +79318,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70579,6 +79353,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70594,6 +79372,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70624,6 +79403,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70661,6 +79445,7 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70686,6 +79471,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70774,6 +79564,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70788,6 +79582,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70812,6 +79610,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70854,6 +79657,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70869,6 +79673,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -70954,6 +79759,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -71005,6 +79815,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -71019,6 +79831,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -71043,6 +79859,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -71567,6 +80388,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -71846,6 +80669,10 @@ Generated by [AVA](https://avajs.dev). * The disabled rule groups.␊ */␊ disabledRuleGroups?: (ApplicationGatewayFirewallDisabledRuleGroup[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -71860,6 +80687,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -71884,6 +80712,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -71929,6 +80762,8 @@ Generated by [AVA](https://avajs.dev). * The resource GUID property of the VirtualNetworkGatewayConnection resource.␊ */␊ resourceGuid?: string␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -71950,6 +80785,8 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72092,6 +80929,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72102,6 +80940,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72166,6 +81005,8 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72226,6 +81067,14 @@ Generated by [AVA](https://avajs.dev). * The DH Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72250,6 +81099,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72274,6 +81128,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72288,6 +81147,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72302,6 +81165,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72316,6 +81183,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72330,6 +81201,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72364,6 +81239,11 @@ Generated by [AVA](https://avajs.dev). * The Logical zone list for Disk.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72386,6 +81266,7 @@ Generated by [AVA](https://avajs.dev). * The Operating System type.␊ */␊ osType?: (("Windows" | "Linux") | string)␊ + creationData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72412,6 +81293,7 @@ Generated by [AVA](https://avajs.dev). * If createOption is Import, the Azure Resource Manager identifier of the storage account containing the blob to import as a disk. Required only if the blob is in a different subscription␊ */␊ storageAccountId?: string␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72426,6 +81308,7 @@ Generated by [AVA](https://avajs.dev). * If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.␊ */␊ lun?: (number | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72458,6 +81341,8 @@ Generated by [AVA](https://avajs.dev). * The vault id is an Azure Resource Manager Resource id in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}␊ */␊ sourceVault: (SourceVault1 | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72482,6 +81367,8 @@ Generated by [AVA](https://avajs.dev). * The vault id is an Azure Resource Manager Resource id in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}␊ */␊ sourceVault: (SourceVault1 | string)␊ + keyUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72522,6 +81409,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/snapshots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72548,6 +81440,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/images"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72580,6 +81477,7 @@ Generated by [AVA](https://avajs.dev). * Describes an Operating System disk.␊ */␊ osDisk: (ImageOSDisk1 | string)␊ + osDisk: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72608,6 +81506,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the storage account type for the managed disk. Possible values are: Standard_LRS or Premium_LRS.␊ */␊ storageAccountType?: (("Standard_LRS" | "Premium_LRS") | string)␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72640,6 +81539,8 @@ Generated by [AVA](https://avajs.dev). * Specifies the storage account type for the managed disk. Possible values are: Standard_LRS or Premium_LRS.␊ */␊ storageAccountType?: (("Standard_LRS" | "Premium_LRS") | string)␊ + osState: unknown␊ + osType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72670,6 +81571,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/availabilitySets"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -72745,6 +81651,11 @@ Generated by [AVA](https://avajs.dev). * The virtual machine zones.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -73101,6 +82012,8 @@ Generated by [AVA](https://avajs.dev). * Describes the uri of a disk.␊ */␊ vhd?: (VirtualHardDisk1 | string)␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -73193,6 +82106,7 @@ Generated by [AVA](https://avajs.dev). * Describes the uri of a disk.␊ */␊ vhd?: (VirtualHardDisk1 | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -73222,6 +82136,8 @@ Generated by [AVA](https://avajs.dev). */␊ secretUrl: string␊ sourceVault: (SubResource5 | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -73233,6 +82149,8 @@ Generated by [AVA](https://avajs.dev). */␊ keyUrl: string␊ sourceVault: (SubResource5 | string)␊ + keyUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -73256,6 +82174,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface GenericExtension2 {␊ @@ -73277,6 +82200,10 @@ Generated by [AVA](https://avajs.dev). settings: ({␊ [k: string]: unknown␊ } | string)␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSDiagnostics2 {␊ @@ -73287,14 +82214,25 @@ Generated by [AVA](https://avajs.dev). settings: {␊ xmlCfg: string␊ StorageAccount: string␊ + xmlCfg: unknown␊ + StorageAccount: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + storageAccountEndPoint: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSAntimalware2 {␊ @@ -73308,6 +82246,9 @@ Generated by [AVA](https://avajs.dev). Paths: string␊ Extensions: string␊ Processes: string␊ + Paths: unknown␊ + Extensions: unknown␊ + Processes: unknown␊ [k: string]: unknown␊ }␊ RealtimeProtectionEnabled: ("true" | "false")␊ @@ -73316,10 +82257,23 @@ Generated by [AVA](https://avajs.dev). scanType: string␊ day: string␊ time: string␊ + isEnabled: unknown␊ + scanType: unknown␊ + day: unknown␊ + time: unknown␊ [k: string]: unknown␊ }␊ + AntimalwareEnabled: unknown␊ + Exclusions: unknown␊ + RealtimeProtectionEnabled: unknown␊ + ScheduledScanSettings: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptExtension2 {␊ @@ -73330,6 +82284,7 @@ Generated by [AVA](https://avajs.dev). settings: {␊ fileUris?: string[]␊ commandToExecute: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -73337,6 +82292,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptForLinux2 {␊ @@ -73352,8 +82313,15 @@ Generated by [AVA](https://avajs.dev). commandToExecute: string␊ storageAccountName?: string␊ storageAccountKey?: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxDiagnostic2 {␊ @@ -73380,8 +82348,16 @@ Generated by [AVA](https://avajs.dev). storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint?: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessForLinux2 {␊ @@ -73401,8 +82377,20 @@ Generated by [AVA](https://avajs.dev). reset_ssh: string␊ remove_user: string␊ expiration: string␊ + username: unknown␊ + password: unknown␊ + ssh_key: unknown␊ + reset_ssh: unknown␊ + remove_user: unknown␊ + expiration: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BgInfo2 {␊ @@ -73410,6 +82398,10 @@ Generated by [AVA](https://avajs.dev). type: "bginfo"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessAgent2 {␊ @@ -73425,6 +82417,12 @@ Generated by [AVA](https://avajs.dev). password?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DscExtension2 {␊ @@ -73441,12 +82439,20 @@ Generated by [AVA](https://avajs.dev). dataCollection?: string␊ [k: string]: unknown␊ }␊ + modulesUrl: unknown␊ + configurationFunction: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ dataBlobUri?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackupLinux2 {␊ @@ -73456,13 +82462,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackup2 {␊ @@ -73472,13 +82487,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxChefClient2 {␊ @@ -73494,6 +82518,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -73504,8 +82533,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface ChefClient2 {␊ @@ -73520,6 +82558,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -73530,8 +82573,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogLinuxAgent2 {␊ @@ -73541,8 +82593,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogWindowsAgent2 {␊ @@ -73552,8 +82610,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DockerExtension2 {␊ @@ -73564,8 +82628,10 @@ Generated by [AVA](https://avajs.dev). settings: {␊ docker: {␊ port: string␊ + port: unknown␊ [k: string]: unknown␊ }␊ + docker: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -73573,10 +82639,20 @@ Generated by [AVA](https://avajs.dev). ca: string␊ cert: string␊ key: string␊ + ca: unknown␊ + cert: unknown␊ + key: unknown␊ [k: string]: unknown␊ }␊ + certs: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceLinux2 {␊ @@ -73587,8 +82663,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceWindows2 {␊ @@ -73599,8 +82682,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface Eset2 {␊ @@ -73616,8 +82706,20 @@ Generated by [AVA](https://avajs.dev). "Enable-Cloud": boolean␊ "Enable-PUA": boolean␊ ERAAgentCfgUrl: string␊ + LicenseKey: unknown␊ + "Install-RealtimeProtection": unknown␊ + "Install-ProtocolFiltering": unknown␊ + "Install-DeviceControl": unknown␊ + "Enable-Cloud": unknown␊ + "Enable-PUA": unknown␊ + ERAAgentCfgUrl: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface HpeSecurityApplicationDefender2 {␊ @@ -73628,8 +82730,15 @@ Generated by [AVA](https://avajs.dev). protectedSettings: {␊ key: string␊ serverURL: string␊ + key: unknown␊ + serverURL: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface PuppetAgent2 {␊ @@ -73639,8 +82748,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ protectedSettings: {␊ PUPPET_MASTER_SERVER: string␊ + PUPPET_MASTER_SERVER: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7LinuxServerExtn2 {␊ @@ -73654,8 +82769,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7WindowsServerExtn2 {␊ @@ -73669,8 +82791,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7ApmInsightExtn2 {␊ @@ -73684,8 +82813,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSALinux2 {␊ @@ -73697,13 +82833,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSA2 {␊ @@ -73715,13 +82861,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentLinux2 {␊ @@ -73734,8 +82890,17 @@ Generated by [AVA](https://avajs.dev). "Agent Port": string␊ "Host Group": string␊ "User Account": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ + "User Account": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentWindows2 {␊ @@ -73747,8 +82912,16 @@ Generated by [AVA](https://avajs.dev). "Control-M Server Name": string␊ "Agent Port": string␊ "Host Group": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface OSPatchingForLinux2 {␊ @@ -73774,6 +82947,8 @@ Generated by [AVA](https://avajs.dev). vmStatusTest?: {␊ [k: string]: unknown␊ }␊ + disabled: unknown␊ + stop: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -73781,6 +82956,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshot2 {␊ @@ -73797,8 +82978,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshotLinux2 {␊ @@ -73815,8 +83009,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScript2 {␊ @@ -73826,14 +83033,24 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ fileUris: string[]␊ + fileUris: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ commandToExecute: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentWindows2 {␊ @@ -73841,6 +83058,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentWindows"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentLinux2 {␊ @@ -73848,6 +83069,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentLinux"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -73891,6 +83116,11 @@ Generated by [AVA](https://avajs.dev). * The virtual machine scale set zones. NOTE: Availability zones can only be set when you create the scale set.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74056,6 +83286,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration.␊ */␊ properties?: (VirtualMachineScaleSetNetworkConfigurationProperties1 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74079,6 +83310,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the primary network interface in case the virtual machine has more than 1 network interface.␊ */␊ primary?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74107,6 +83339,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration properties.␊ */␊ properties?: (VirtualMachineScaleSetIPConfigurationProperties1 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74155,6 +83388,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration␊ */␊ properties?: (VirtualMachineScaleSetPublicIPAddressConfigurationProperties | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74179,6 +83413,7 @@ Generated by [AVA](https://avajs.dev). * The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created␊ */␊ domainNameLabel: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74261,6 +83496,8 @@ Generated by [AVA](https://avajs.dev). * The disk name.␊ */␊ name?: string␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74305,6 +83542,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the container urls that are used to store operating system disks for the scale set.␊ */␊ vhdContainers?: (string[] | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74321,6 +83559,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualMachineScaleSetExtensionProperties | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74382,6 +83624,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachines/extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74409,6 +83656,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Sql/servers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74453,6 +83705,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "databases"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74581,6 +83838,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "elasticPools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74627,6 +83889,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerCommunicationLinkProperties | string)␊ type: "communicationLinks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74637,6 +83903,7 @@ Generated by [AVA](https://avajs.dev). * The name of the partner server.␊ */␊ partnerServer: string␊ + partnerServer: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74653,6 +83920,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerConnectionPolicyProperties | string)␊ type: "connectionPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74663,6 +83934,7 @@ Generated by [AVA](https://avajs.dev). * The server connection type.␊ */␊ connectionType: (("Default" | "Proxy" | "Redirect") | string)␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74679,6 +83951,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallRuleProperties1 | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74693,6 +83969,8 @@ Generated by [AVA](https://avajs.dev). * The start IP address of the firewall rule. Must be IPv4 format. Use value '0.0.0.0' to represent all Azure-internal IP addresses.␊ */␊ startIpAddress: string␊ + endIpAddress: unknown␊ + startIpAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74709,6 +83987,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerAdministratorProperties | string)␊ type: "administrators"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74731,6 +84013,10 @@ Generated by [AVA](https://avajs.dev). * The server Active Directory Administrator tenant id.␊ */␊ tenantId: string␊ + administratorType: unknown␊ + login: unknown␊ + sid: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74747,6 +84033,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AdvisorProperties | string)␊ type: "advisors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74757,6 +84047,7 @@ Generated by [AVA](https://avajs.dev). * Gets the auto-execute status (whether to let the system execute the recommendations) of this advisor. Possible values are 'Enabled' and 'Disabled'.␊ */␊ autoExecuteValue: (("Enabled" | "Disabled" | "Default") | string)␊ + autoExecuteValue: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74769,6 +84060,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "disasterRecoveryConfiguration"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74785,6 +84079,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerTableAuditingPolicyProperties | string)␊ type: "auditingPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74851,6 +84149,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AdvisorProperties | string)␊ type: "Microsoft.Sql/servers/advisors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74867,6 +84169,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerAdministratorProperties | string)␊ type: "Microsoft.Sql/servers/administrators"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74883,6 +84189,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerTableAuditingPolicyProperties | string)␊ type: "Microsoft.Sql/servers/auditingPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74899,6 +84209,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerCommunicationLinkProperties | string)␊ type: "Microsoft.Sql/servers/communicationLinks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74915,6 +84229,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerConnectionPolicyProperties | string)␊ type: "Microsoft.Sql/servers/connectionPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74942,6 +84260,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Sql/servers/databases"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74958,6 +84281,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DataMaskingPolicyProperties | string)␊ type: "dataMaskingPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74972,6 +84299,7 @@ Generated by [AVA](https://avajs.dev). * The list of the exempt principals. Specifies the semicolon-separated list of database users for which the data masking policy does not apply. The specified users receive data results without masking for all of the database queries.␊ */␊ exemptPrincipals?: string␊ + dataMaskingState: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74988,6 +84316,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (GeoBackupPolicyProperties | string)␊ type: "geoBackupPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -74998,6 +84330,7 @@ Generated by [AVA](https://avajs.dev). * The state of the geo backup policy.␊ */␊ state: (("Disabled" | "Enabled") | string)␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75014,6 +84347,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ImportExtensionProperties | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75048,6 +84385,12 @@ Generated by [AVA](https://avajs.dev). * The storage uri to use.␊ */␊ storageUri: string␊ + administratorLogin: unknown␊ + administratorLoginPassword: unknown␊ + operationMode: unknown␊ + storageKey: unknown␊ + storageKeyType: unknown␊ + storageUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75068,6 +84411,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseSecurityAlertPolicyProperties | string)␊ type: "securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75106,6 +84453,7 @@ Generated by [AVA](https://avajs.dev). * Specifies whether to use the default server policy.␊ */␊ useServerDefault?: (("Enabled" | "Disabled") | string)␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75122,6 +84470,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TransparentDataEncryptionProperties | string)␊ type: "transparentDataEncryption"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75148,6 +84500,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AdvisorProperties | string)␊ type: "advisors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75164,6 +84520,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseTableAuditingPolicyProperties | string)␊ type: "auditingPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75234,6 +84594,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseConnectionPolicyProperties | string)␊ type: "connectionPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75284,6 +84648,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AdvisorProperties | string)␊ type: "Microsoft.Sql/servers/databases/advisors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75300,6 +84668,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseTableAuditingPolicyProperties | string)␊ type: "Microsoft.Sql/servers/databases/auditingPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75316,6 +84688,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseConnectionPolicyProperties | string)␊ type: "Microsoft.Sql/servers/databases/connectionPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75333,6 +84709,10 @@ Generated by [AVA](https://avajs.dev). properties: (DataMaskingPolicyProperties | string)␊ resources?: ServersDatabasesDataMaskingPoliciesRulesChildResource[]␊ type: "Microsoft.Sql/servers/databases/dataMaskingPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75349,6 +84729,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DataMaskingRuleProperties | string)␊ type: "rules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75399,6 +84783,10 @@ Generated by [AVA](https://avajs.dev). * The table name on which the data masking rule is applied.␊ */␊ tableName: string␊ + columnName: unknown␊ + maskingFunction: unknown␊ + schemaName: unknown␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75415,6 +84803,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DataMaskingRuleProperties | string)␊ type: "Microsoft.Sql/servers/databases/dataMaskingPolicies/rules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75431,6 +84823,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ImportExtensionProperties | string)␊ type: "Microsoft.Sql/servers/databases/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75447,6 +84843,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (GeoBackupPolicyProperties | string)␊ type: "Microsoft.Sql/servers/databases/geoBackupPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75467,6 +84867,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseSecurityAlertPolicyProperties | string)␊ type: "Microsoft.Sql/servers/databases/securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75483,6 +84887,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TransparentDataEncryptionProperties | string)␊ type: "Microsoft.Sql/servers/databases/transparentDataEncryption"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75495,6 +84903,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Sql/servers/disasterRecoveryConfiguration"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75521,6 +84932,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Sql/servers/elasticPools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75537,6 +84953,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallRuleProperties1 | string)␊ type: "Microsoft.Sql/servers/firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75571,6 +84991,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Sql/managedInstances"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75690,6 +85115,7 @@ Generated by [AVA](https://avajs.dev). * The tier or edition of the particular SKU, e.g. Basic, Premium.␊ */␊ tier?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75721,6 +85147,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Sql/servers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75755,6 +85186,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EncryptionProtectorProperties | string)␊ type: "encryptionProtector"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75769,6 +85204,7 @@ Generated by [AVA](https://avajs.dev). * The encryption protector type like 'ServiceManaged', 'AzureKeyVault'.␊ */␊ serverKeyType: (("ServiceManaged" | "AzureKeyVault") | string)␊ + serverKeyType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75791,6 +85227,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "failoverGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75813,6 +85253,8 @@ Generated by [AVA](https://avajs.dev). * Read-write endpoint of the failover group instance.␊ */␊ readWriteEndpoint: (FailoverGroupReadWriteEndpoint | string)␊ + partnerServers: unknown␊ + readWriteEndpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75823,6 +85265,7 @@ Generated by [AVA](https://avajs.dev). * Resource identifier of the partner server.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75847,6 +85290,7 @@ Generated by [AVA](https://avajs.dev). * Grace period before failover with data loss is attempted for the read-write endpoint. If failoverPolicy is Automatic then failoverWithDataLossGracePeriodMinutes is required.␊ */␊ failoverWithDataLossGracePeriodMinutes?: (number | string)␊ + failoverPolicy: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75867,6 +85311,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerKeyProperties | string)␊ type: "keys"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75889,6 +85337,7 @@ Generated by [AVA](https://avajs.dev). * The URI of the server key.␊ */␊ uri?: string␊ + serverKeyType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75905,6 +85354,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SyncAgentProperties | string)␊ type: "syncAgents"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75931,6 +85384,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties | string)␊ type: "virtualNetworkRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75945,6 +85402,7 @@ Generated by [AVA](https://avajs.dev). * The ARM resource id of the virtual network subnet.␊ */␊ virtualNetworkSubnetId: string␊ + virtualNetworkSubnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75961,6 +85419,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerFirewallRuleProperties | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -75991,6 +85453,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseBlobAuditingPolicyProperties | string)␊ type: "Microsoft.Sql/servers/databases/auditingSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76106,6 +85572,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). If state is Enabled, storageEndpoint or isAzureMonitorTargetEnabled is required.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76123,6 +85590,10 @@ Generated by [AVA](https://avajs.dev). properties: (SyncGroupProperties | string)␊ resources?: ServersDatabasesSyncGroupsSyncMembersChildResource[]␊ type: "Microsoft.Sql/servers/databases/syncGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76215,6 +85686,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SyncMemberProperties | string)␊ type: "syncMembers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76269,6 +85744,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SyncMemberProperties | string)␊ type: "Microsoft.Sql/servers/databases/syncGroups/syncMembers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76285,6 +85764,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EncryptionProtectorProperties | string)␊ type: "Microsoft.Sql/servers/encryptionProtector"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76307,6 +85790,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Sql/servers/failoverGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76323,6 +85810,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerFirewallRuleProperties | string)␊ type: "Microsoft.Sql/servers/firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76343,6 +85834,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerKeyProperties | string)␊ type: "Microsoft.Sql/servers/keys"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76359,6 +85854,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SyncAgentProperties | string)␊ type: "Microsoft.Sql/servers/syncAgents"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76375,6 +85874,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties | string)␊ type: "Microsoft.Sql/servers/virtualNetworkRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76402,6 +85905,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Sql/managedInstances/databases"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76464,6 +85972,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagedBackupShortTermRetentionPolicyProperties | string)␊ type: "backupShortTermRetentionPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76490,6 +86002,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties | string)␊ type: "securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76524,6 +86040,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76540,6 +86057,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerBlobAuditingPolicyProperties | string)␊ type: "Microsoft.Sql/servers/auditingSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76658,6 +86179,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). If state is Enabled, storageEndpoint or isAzureMonitorTargetEnabled is required.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76689,6 +86211,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Sql/servers/databases"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76783,6 +86310,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExtendedDatabaseBlobAuditingPolicyProperties | string)␊ type: "extendedAuditingSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76905,6 +86436,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). If state is Enabled, storageEndpoint or isAzureMonitorTargetEnabled is required.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -76921,6 +86453,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseBlobAuditingPolicyProperties1 | string)␊ type: "auditingSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77039,6 +86575,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). If state is Enabled, storageEndpoint or isAzureMonitorTargetEnabled is required.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77055,6 +86592,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseVulnerabilityAssessmentProperties | string)␊ type: "vulnerabilityAssessments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77111,6 +86652,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LongTermRetentionPolicyProperties | string)␊ type: "backupLongTermRetentionPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77159,6 +86704,7 @@ Generated by [AVA](https://avajs.dev). * The tier or edition of the particular SKU, e.g. Basic, Premium.␊ */␊ tier?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77175,6 +86721,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseBlobAuditingPolicyProperties1 | string)␊ type: "Microsoft.Sql/servers/databases/auditingSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77191,6 +86741,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LongTermRetentionPolicyProperties | string)␊ type: "Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77207,6 +86761,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExtendedDatabaseBlobAuditingPolicyProperties | string)␊ type: "Microsoft.Sql/servers/databases/extendedAuditingSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77223,6 +86781,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties1 | string)␊ type: "Microsoft.Sql/servers/databases/securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77257,6 +86819,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77273,6 +86836,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties | string)␊ type: "Microsoft.Sql/servers/securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77289,6 +86856,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties | string)␊ type: "Microsoft.Sql/managedInstances/databases/securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77305,6 +86876,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties | string)␊ type: "Microsoft.Sql/managedInstances/securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77321,6 +86896,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseVulnerabilityAssessmentRuleBaselineProperties | string)␊ type: "Microsoft.Sql/servers/databases/vulnerabilityAssessments/rules/baselines"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77331,6 +86910,7 @@ Generated by [AVA](https://avajs.dev). * The rule baseline result␊ */␊ baselineResults: (DatabaseVulnerabilityAssessmentRuleBaselineItem[] | string)␊ + baselineResults: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77341,6 +86921,7 @@ Generated by [AVA](https://avajs.dev). * The rule baseline result␊ */␊ result: (string[] | string)␊ + result: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77357,6 +86938,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseVulnerabilityAssessmentProperties | string)␊ type: "Microsoft.Sql/servers/databases/vulnerabilityAssessments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77373,6 +86958,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseVulnerabilityAssessmentRuleBaselineProperties1 | string)␊ type: "Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/rules/baselines"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77383,6 +86972,7 @@ Generated by [AVA](https://avajs.dev). * The rule baseline result␊ */␊ baselineResults: (DatabaseVulnerabilityAssessmentRuleBaselineItem1[] | string)␊ + baselineResults: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77393,6 +86983,7 @@ Generated by [AVA](https://avajs.dev). * The rule baseline result␊ */␊ result: (string[] | string)␊ + result: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77409,6 +87000,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseVulnerabilityAssessmentProperties1 | string)␊ type: "Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77465,6 +87060,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerVulnerabilityAssessmentProperties | string)␊ type: "Microsoft.Sql/servers/vulnerabilityAssessments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77487,6 +87086,7 @@ Generated by [AVA](https://avajs.dev). * A shared access signature (SAS Key) that has read and write access to the blob container specified in 'storageContainerPath' parameter. If 'storageAccountAccessKey' isn't specified, StorageContainerSasKey is required.␊ */␊ storageContainerSasKey?: string␊ + storageContainerPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77521,6 +87121,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagedInstanceVulnerabilityAssessmentProperties | string)␊ type: "Microsoft.Sql/managedInstances/vulnerabilityAssessments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77543,6 +87147,7 @@ Generated by [AVA](https://avajs.dev). * A shared access signature (SAS Key) that has read and write access to the blob container specified in 'storageContainerPath' parameter. If 'storageAccountAccessKey' isn't specified, StorageContainerSasKey is required.␊ */␊ storageContainerSasKey?: string␊ + storageContainerPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77555,6 +87160,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Sql/servers/dnsAliases"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77571,6 +87179,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExtendedServerBlobAuditingPolicyProperties | string)␊ type: "Microsoft.Sql/servers/extendedAuditingSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77693,6 +87305,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). If state is Enabled, storageEndpoint or isAzureMonitorTargetEnabled is required.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77724,6 +87337,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Sql/servers/jobAgents"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77734,6 +87352,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID of the database to store job metadata in.␊ */␊ databaseId: string␊ + databaseId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77750,6 +87369,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobCredentialProperties | string)␊ type: "credentials"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77764,6 +87387,8 @@ Generated by [AVA](https://avajs.dev). * The credential user name.␊ */␊ username: string␊ + password: unknown␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77780,6 +87405,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobProperties3 | string)␊ type: "jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77836,6 +87465,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobTargetGroupProperties | string)␊ type: "targetGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77846,6 +87479,7 @@ Generated by [AVA](https://avajs.dev). * Members of the target group.␊ */␊ members: (JobTarget[] | string)␊ + members: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77880,6 +87514,7 @@ Generated by [AVA](https://avajs.dev). * The target type.␊ */␊ type: (("TargetGroup" | "SqlDatabase" | "SqlElasticPool" | "SqlShardMap" | "SqlServer") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77896,6 +87531,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobCredentialProperties | string)␊ type: "Microsoft.Sql/servers/jobAgents/credentials"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77913,6 +87552,10 @@ Generated by [AVA](https://avajs.dev). properties: (JobProperties3 | string)␊ resources?: (ServersJobAgentsJobsExecutionsChildResource | ServersJobAgentsJobsStepsChildResource)[]␊ type: "Microsoft.Sql/servers/jobAgents/jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77925,6 +87568,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "executions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77941,6 +87587,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobStepProperties | string)␊ type: "steps"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77971,6 +87621,9 @@ Generated by [AVA](https://avajs.dev). * The resource ID of the target group that the job step will be executed on.␊ */␊ targetGroup: string␊ + action: unknown␊ + credential: unknown␊ + targetGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -77989,6 +87642,7 @@ Generated by [AVA](https://avajs.dev). * The action value, for example the text of the T-SQL script to execute.␊ */␊ value: string␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78053,6 +87707,10 @@ Generated by [AVA](https://avajs.dev). * The output destination type.␊ */␊ type?: ("SqlDatabase" | string)␊ + credential: unknown␊ + databaseName: unknown␊ + serverName: unknown␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78065,6 +87723,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Sql/servers/jobAgents/jobs/executions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78081,6 +87742,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobStepProperties | string)␊ type: "Microsoft.Sql/servers/jobAgents/jobs/steps"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78097,6 +87762,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobTargetGroupProperties | string)␊ type: "Microsoft.Sql/servers/jobAgents/targetGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78123,6 +87792,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearning/webServices"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78167,6 +87841,9 @@ Generated by [AVA](https://avajs.dev). * Asset's type.␊ */␊ type: (("Module" | "Resource") | string)␊ + locationInfo: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78191,6 +87868,7 @@ Generated by [AVA](https://avajs.dev). * The URI from which the blob is accessible from. For example, aml://abc for system assets or https://xyz for user assets or payload.␊ */␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78247,6 +87925,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the Azure Resource Manager ID of the commitment plan associated with the web service.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78261,6 +87940,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the verbosity of the diagnostic output. Valid values are: None - disables tracing; Error - collects only error (stderr) traces; All - collects all traces (stdout and stderr).␊ */␊ level: (("None" | "Error" | "All") | string)␊ + level: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78307,6 +87987,8 @@ Generated by [AVA](https://avajs.dev). * The type of the entity described in swagger. Always 'object'.␊ */␊ type: string␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78335,6 +88017,7 @@ Generated by [AVA](https://avajs.dev). * The type of the entity described in swagger.␊ */␊ type: string␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78363,6 +88046,7 @@ Generated by [AVA](https://avajs.dev). * Flag indicating whether the categories are treated as an ordered set or not, if this is a categorical column.␊ */␊ "x-ms-isordered"?: (boolean | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78387,6 +88071,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the workspace ID of the machine learning workspace associated with the web service␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78438,6 +88123,7 @@ Generated by [AVA](https://avajs.dev). */␊ package?: (GraphPackage1 | string)␊ packageType: "Graph"␊ + packageType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78500,6 +88186,8 @@ Generated by [AVA](https://avajs.dev). * Graph parameter's type.␊ */␊ type: (("String" | "Int" | "Float" | "Enumerated" | "Script" | "Mode" | "Credential" | "Boolean" | "Double" | "ColumnPicker" | "ParameterRange" | "DataGatewayName") | string)␊ + links: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78514,6 +88202,8 @@ Generated by [AVA](https://avajs.dev). * The identifier of the node parameter that the global parameter maps to.␊ */␊ parameterKey: string␊ + nodeId: unknown␊ + parameterKey: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78568,6 +88258,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearning/workspaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78586,6 +88281,8 @@ Generated by [AVA](https://avajs.dev). * The fully qualified arm id of the storage account associated with this workspace.␊ */␊ userStorageAccountId: string␊ + ownerEmail: unknown␊ + userStorageAccountId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78627,6 +88324,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.StreamAnalytics/streamingjobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78710,6 +88411,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (ScalarFunctionConfiguration | string)␊ type: "Scalar"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78739,6 +88441,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (AzureMachineLearningWebServiceFunctionBindingProperties | string)␊ type: "Microsoft.MachineLearning/WebService"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78822,6 +88525,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (JavaScriptFunctionBindingProperties | string)␊ type: "Microsoft.StreamAnalytics/JavascriptUdf"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78881,6 +88585,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (CsvSerializationProperties | string)␊ type: "Csv"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78906,6 +88611,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (JsonSerializationProperties | string)␊ type: "Json"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78933,6 +88639,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "Avro"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78944,6 +88651,7 @@ Generated by [AVA](https://avajs.dev). */␊ datasource?: (StreamInputDataSource | string)␊ type: "Stream"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -78955,6 +88663,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (BlobStreamInputDataSourceProperties | string)␊ type: "Microsoft.Storage/Blob"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79010,6 +88719,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (EventHubStreamInputDataSourceProperties | string)␊ type: "Microsoft.ServiceBus/EventHub"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79047,6 +88757,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (IoTHubStreamInputDataSourceProperties | string)␊ type: "Microsoft.Devices/IotHubs"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79084,6 +88795,7 @@ Generated by [AVA](https://avajs.dev). */␊ datasource?: (ReferenceInputDataSource | string)␊ type: "Reference"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79095,6 +88807,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (BlobReferenceInputDataSourceProperties | string)␊ type: "Microsoft.Storage/Blob"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79148,7 +88861,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * Describes how data from an input is serialized or how data is serialized when written to an output.␊ */␊ - serialization?: ((CsvSerialization | JsonSerialization | AvroSerialization) | string)␊ + serialization?: (((CsvSerialization | JsonSerialization | AvroSerialization) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -79160,6 +88875,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (BlobOutputDataSourceProperties | string)␊ type: "Microsoft.Storage/Blob"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79197,6 +88913,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (AzureTableOutputDataSourceProperties | string)␊ type: "Microsoft.Storage/Table"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79242,6 +88959,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (EventHubOutputDataSourceProperties | string)␊ type: "Microsoft.ServiceBus/EventHub"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79279,6 +88997,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (AzureSqlDatabaseOutputDataSourceProperties | string)␊ type: "Microsoft.Sql/Server/Database"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79316,6 +89035,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (DocumentDbOutputDataSourceProperties | string)␊ type: "Microsoft.Storage/DocumentDB"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79357,6 +89077,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (ServiceBusQueueOutputDataSourceProperties | string)␊ type: "Microsoft.ServiceBus/Queue"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79394,6 +89115,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (ServiceBusTopicOutputDataSourceProperties | string)␊ type: "Microsoft.ServiceBus/Topic"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79431,6 +89153,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (PowerBIOutputDataSourceProperties | string)␊ type: "PowerBI"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79476,6 +89199,7 @@ Generated by [AVA](https://avajs.dev). */␊ properties?: (AzureDataLakeStoreOutputDataSourceProperties | string)␊ type: "Microsoft.DataLake/Accounts"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79566,8 +89290,18 @@ Generated by [AVA](https://avajs.dev). /**␊ * The properties that are associated with an input.␊ */␊ - properties: ((StreamInputProperties | ReferenceInputProperties) | string)␊ + properties: (((StreamInputProperties | ReferenceInputProperties) & {␊ + /**␊ + * Describes how data from an input is serialized or how data is serialized when written to an output.␊ + */␊ + serialization?: (Serialization | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "inputs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79584,6 +89318,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OutputProperties | string)␊ type: "outputs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79600,6 +89338,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TransformationProperties | string)␊ type: "transformations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79614,8 +89356,14 @@ Generated by [AVA](https://avajs.dev). /**␊ * The properties that are associated with a function.␊ */␊ - properties: (ScalarFunctionProperties | string)␊ + properties: ((ScalarFunctionProperties & {␊ + [k: string]: unknown␊ + }) | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79630,8 +89378,14 @@ Generated by [AVA](https://avajs.dev). /**␊ * The properties that are associated with a function.␊ */␊ - properties: (ScalarFunctionProperties | string)␊ + properties: ((ScalarFunctionProperties & {␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.StreamAnalytics/streamingjobs/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79646,8 +89400,18 @@ Generated by [AVA](https://avajs.dev). /**␊ * The properties that are associated with an input.␊ */␊ - properties: ((StreamInputProperties | ReferenceInputProperties) | string)␊ + properties: (((StreamInputProperties | ReferenceInputProperties) & {␊ + /**␊ + * Describes how data from an input is serialized or how data is serialized when written to an output.␊ + */␊ + serialization?: (Serialization | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.StreamAnalytics/streamingjobs/inputs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79664,6 +89428,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (OutputProperties | string)␊ type: "Microsoft.StreamAnalytics/streamingjobs/outputs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79680,6 +89448,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TransformationProperties | string)␊ type: "Microsoft.StreamAnalytics/streamingjobs/transformations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79711,6 +89483,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.TimeSeriesInsights/environments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79729,6 +89507,7 @@ Generated by [AVA](https://avajs.dev). * The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If "PauseIngress" is specified, new events will not be read from the event source. If "PurgeOldData" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData.␊ */␊ storageLimitExceededBehavior?: (("PurgeOldData" | "PauseIngress") | string)␊ + dataRetentionTime: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79754,6 +89533,8 @@ Generated by [AVA](https://avajs.dev). * Properties of the EventHub event source that are required on create or update requests.␊ */␊ properties: (EventHubEventSourceCreationProperties | string)␊ + kind: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79792,6 +89573,12 @@ Generated by [AVA](https://avajs.dev). * The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.␊ */␊ timestampPropertyName?: string␊ + consumerGroupName: unknown␊ + eventHubName: unknown␊ + eventSourceResourceId: unknown␊ + keyName: unknown␊ + serviceBusNamespace: unknown␊ + sharedAccessKey: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79803,6 +89590,8 @@ Generated by [AVA](https://avajs.dev). * Properties of the IoTHub event source that are required on create or update requests.␊ */␊ properties: (IoTHubEventSourceCreationProperties | string)␊ + kind: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79837,6 +89626,11 @@ Generated by [AVA](https://avajs.dev). * The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.␊ */␊ timestampPropertyName?: string␊ + consumerGroupName: unknown␊ + eventSourceResourceId: unknown␊ + iotHubName: unknown␊ + keyName: unknown␊ + sharedAccessKey: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79863,6 +89657,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "referenceDataSets"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79877,6 +89676,7 @@ Generated by [AVA](https://avajs.dev). * The list of key properties for the reference data set.␊ */␊ keyProperties: (ReferenceDataSetKeyProperty[] | string)␊ + keyProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79904,6 +89704,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (AccessPolicyResourceProperties | string)␊ type: "accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface AccessPolicyResourceProperties {␊ @@ -79933,6 +89737,8 @@ Generated by [AVA](https://avajs.dev). * The name of this SKU.␊ */␊ name: (("S1" | "S2") | string)␊ + capacity: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79959,6 +89765,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.TimeSeriesInsights/environments/referenceDataSets"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -79972,6 +89783,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (AccessPolicyResourceProperties | string)␊ type: "Microsoft.TimeSeriesInsights/environments/accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80007,6 +89822,8 @@ Generated by [AVA](https://avajs.dev). * Properties of the EventHub event source that are required on create or update requests.␊ */␊ properties: (EventHubEventSourceCreationProperties1 | string)␊ + kind: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80045,6 +89862,12 @@ Generated by [AVA](https://avajs.dev). * The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.␊ */␊ timestampPropertyName?: string␊ + consumerGroupName: unknown␊ + eventHubName: unknown␊ + eventSourceResourceId: unknown␊ + keyName: unknown␊ + serviceBusNamespace: unknown␊ + sharedAccessKey: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80056,6 +89879,8 @@ Generated by [AVA](https://avajs.dev). * Properties of the IoTHub event source that are required on create or update requests.␊ */␊ properties: (IoTHubEventSourceCreationProperties1 | string)␊ + kind: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80090,6 +89915,11 @@ Generated by [AVA](https://avajs.dev). * The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.␊ */␊ timestampPropertyName?: string␊ + consumerGroupName: unknown␊ + eventSourceResourceId: unknown␊ + iotHubName: unknown␊ + keyName: unknown␊ + sharedAccessKey: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80116,6 +89946,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "referenceDataSets"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80130,6 +89965,7 @@ Generated by [AVA](https://avajs.dev). * The list of key properties for the reference data set.␊ */␊ keyProperties: (ReferenceDataSetKeyProperty1[] | string)␊ + keyProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80157,6 +89993,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (AccessPolicyResourceProperties1 | string)␊ type: "accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface AccessPolicyResourceProperties1 {␊ @@ -80186,6 +90026,8 @@ Generated by [AVA](https://avajs.dev). * The name of this SKU.␊ */␊ name: (("S1" | "S2" | "P1" | "L1") | string)␊ + capacity: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80197,6 +90039,8 @@ Generated by [AVA](https://avajs.dev). * Properties used to create a standard environment.␊ */␊ properties: (StandardEnvironmentCreationProperties | string)␊ + kind: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80215,6 +90059,7 @@ Generated by [AVA](https://avajs.dev). * The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If "PauseIngress" is specified, new events will not be read from the event source. If "PurgeOldData" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData.␊ */␊ storageLimitExceededBehavior?: (("PurgeOldData" | "PauseIngress") | string)␊ + dataRetentionTime: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80240,6 +90085,8 @@ Generated by [AVA](https://avajs.dev). * Properties used to create a long-term environment.␊ */␊ properties: (LongTermEnvironmentCreationProperties | string)␊ + kind: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80258,6 +90105,8 @@ Generated by [AVA](https://avajs.dev). * The warm store configuration provides the details to create a warm store cache that will retain a copy of the environment's data available for faster query.␊ */␊ warmStoreConfiguration?: (WarmStoreConfigurationProperties | string)␊ + storageConfiguration: unknown␊ + timeSeriesIdProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80272,6 +90121,8 @@ Generated by [AVA](https://avajs.dev). * The value of the management key that grants the Time Series Insights service write access to the storage account. This property is not shown in environment responses.␊ */␊ managementKey: string␊ + accountName: unknown␊ + managementKey: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80282,6 +90133,7 @@ Generated by [AVA](https://avajs.dev). * ISO8601 timespan specifying the number of days the environment's events will be available for query from the warm store.␊ */␊ dataRetention: string␊ + dataRetention: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80308,6 +90160,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.TimeSeriesInsights/environments/referenceDataSets"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80321,6 +90178,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (AccessPolicyResourceProperties1 | string)␊ type: "Microsoft.TimeSeriesInsights/environments/accessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80343,7 +90204,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Machine Learning compute object.␊ */␊ - properties: ((AKS1 | BatchAI | VirtualMachine1 | HDInsight1 | DataFactory1) | string)␊ + properties: (((AKS1 | BatchAI | VirtualMachine1 | HDInsight1 | DataFactory1) & {␊ + /**␊ + * Location for the underlying compute␊ + */␊ + computeLocation?: string␊ + /**␊ + * The description of the Machine Learning compute.␊ + */␊ + description?: string␊ + /**␊ + * ARM resource id of the compute␊ + */␊ + resourceId?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Contains resource tags defined as key/value pairs.␊ */␊ @@ -80351,6 +90226,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningServices/workspaces/computes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80382,6 +90261,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningServices/workspaces"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80456,6 +90339,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "computes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80467,6 +90354,7 @@ Generated by [AVA](https://avajs.dev). * AKS properties␊ */␊ properties?: (AKSProperties2 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80548,6 +90436,7 @@ Generated by [AVA](https://avajs.dev). * AML Compute properties␊ */␊ properties?: (AmlComputeProperties1 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80592,6 +90481,7 @@ Generated by [AVA](https://avajs.dev). * Node Idle Time before scaling down amlCompute␊ */␊ nodeIdleTimeBeforeScaleDown?: string␊ + maxNodeCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80602,6 +90492,7 @@ Generated by [AVA](https://avajs.dev). * The ID of the resource␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80620,6 +90511,7 @@ Generated by [AVA](https://avajs.dev). * SSH public key of the administrator user account.␊ */␊ adminUserSshPublicKey?: string␊ + adminUserName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80628,6 +90520,7 @@ Generated by [AVA](https://avajs.dev). export interface VirtualMachine2 {␊ computeType: "VirtualMachine"␊ properties?: (VirtualMachineProperties5 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualMachineProperties5 {␊ @@ -80677,6 +90570,7 @@ Generated by [AVA](https://avajs.dev). export interface HDInsight2 {␊ computeType: "HDInsight"␊ properties?: (HDInsightProperties2 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface HDInsightProperties2 {␊ @@ -80699,6 +90593,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface DataFactory2 {␊ computeType: "DataFactory"␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80707,6 +90602,7 @@ Generated by [AVA](https://avajs.dev). export interface Databricks1 {␊ computeType: "Databricks"␊ properties?: (DatabricksProperties1 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface DatabricksProperties1 {␊ @@ -80722,6 +90618,7 @@ Generated by [AVA](https://avajs.dev). export interface DataLakeAnalytics1 {␊ computeType: "DataLakeAnalytics"␊ properties?: (DataLakeAnalyticsProperties1 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface DataLakeAnalyticsProperties1 {␊ @@ -80751,7 +90648,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Machine Learning compute object.␊ */␊ - properties: ((AKS2 | AmlCompute1 | VirtualMachine2 | HDInsight2 | DataFactory2 | Databricks1 | DataLakeAnalytics1) | string)␊ + properties: (((AKS2 | AmlCompute1 | VirtualMachine2 | HDInsight2 | DataFactory2 | Databricks1 | DataLakeAnalytics1) & {␊ + /**␊ + * Location for the underlying compute␊ + */␊ + computeLocation?: string␊ + /**␊ + * The description of the Machine Learning compute.␊ + */␊ + description?: string␊ + /**␊ + * ARM resource id of the underlying compute␊ + */␊ + resourceId?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Contains resource tags defined as key/value pairs.␊ */␊ @@ -80759,6 +90670,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningServices/workspaces/computes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80790,6 +90705,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningServices/workspaces"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80864,6 +90783,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "computes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80875,6 +90798,7 @@ Generated by [AVA](https://avajs.dev). * AKS properties␊ */␊ properties?: (AKSProperties3 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -80956,6 +90880,7 @@ Generated by [AVA](https://avajs.dev). * AML Compute properties␊ */␊ properties?: (AmlComputeProperties2 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81004,6 +90929,7 @@ Generated by [AVA](https://avajs.dev). * Node Idle Time before scaling down amlCompute␊ */␊ nodeIdleTimeBeforeScaleDown?: string␊ + maxNodeCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81014,6 +90940,7 @@ Generated by [AVA](https://avajs.dev). * The ID of the resource␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81032,6 +90959,7 @@ Generated by [AVA](https://avajs.dev). * SSH public key of the administrator user account.␊ */␊ adminUserSshPublicKey?: string␊ + adminUserName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81040,6 +90968,7 @@ Generated by [AVA](https://avajs.dev). export interface VirtualMachine3 {␊ computeType: "VirtualMachine"␊ properties?: (VirtualMachineProperties6 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualMachineProperties6 {␊ @@ -81089,6 +91018,7 @@ Generated by [AVA](https://avajs.dev). export interface HDInsight3 {␊ computeType: "HDInsight"␊ properties?: (HDInsightProperties3 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface HDInsightProperties3 {␊ @@ -81111,6 +91041,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface DataFactory3 {␊ computeType: "DataFactory"␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81119,6 +91050,7 @@ Generated by [AVA](https://avajs.dev). export interface Databricks2 {␊ computeType: "Databricks"␊ properties?: (DatabricksProperties2 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface DatabricksProperties2 {␊ @@ -81134,6 +91066,7 @@ Generated by [AVA](https://avajs.dev). export interface DataLakeAnalytics2 {␊ computeType: "DataLakeAnalytics"␊ properties?: (DataLakeAnalyticsProperties2 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface DataLakeAnalyticsProperties2 {␊ @@ -81163,7 +91096,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Machine Learning compute object.␊ */␊ - properties: ((AKS3 | AmlCompute2 | VirtualMachine3 | HDInsight3 | DataFactory3 | Databricks2 | DataLakeAnalytics2) | string)␊ + properties: (((AKS3 | AmlCompute2 | VirtualMachine3 | HDInsight3 | DataFactory3 | Databricks2 | DataLakeAnalytics2) & {␊ + /**␊ + * Location for the underlying compute␊ + */␊ + computeLocation?: string␊ + /**␊ + * The description of the Machine Learning compute.␊ + */␊ + description?: string␊ + /**␊ + * ARM resource id of the underlying compute␊ + */␊ + resourceId?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Contains resource tags defined as key/value pairs.␊ */␊ @@ -81171,6 +91118,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningServices/workspaces/computes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81206,6 +91157,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningServices/workspaces"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81284,6 +91239,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "computes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81295,6 +91254,7 @@ Generated by [AVA](https://avajs.dev). * AKS properties␊ */␊ properties?: (AKSProperties4 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81376,6 +91336,7 @@ Generated by [AVA](https://avajs.dev). * AML Compute properties␊ */␊ properties?: (AmlComputeProperties3 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81424,6 +91385,7 @@ Generated by [AVA](https://avajs.dev). * Node Idle Time before scaling down amlCompute␊ */␊ nodeIdleTimeBeforeScaleDown?: string␊ + maxNodeCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81434,6 +91396,7 @@ Generated by [AVA](https://avajs.dev). * The ID of the resource␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81452,6 +91415,7 @@ Generated by [AVA](https://avajs.dev). * SSH public key of the administrator user account.␊ */␊ adminUserSshPublicKey?: string␊ + adminUserName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81460,6 +91424,7 @@ Generated by [AVA](https://avajs.dev). export interface VirtualMachine4 {␊ computeType: "VirtualMachine"␊ properties?: (VirtualMachineProperties7 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualMachineProperties7 {␊ @@ -81509,6 +91474,7 @@ Generated by [AVA](https://avajs.dev). export interface HDInsight4 {␊ computeType: "HDInsight"␊ properties?: (HDInsightProperties4 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface HDInsightProperties4 {␊ @@ -81531,6 +91497,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface DataFactory4 {␊ computeType: "DataFactory"␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81539,6 +91506,7 @@ Generated by [AVA](https://avajs.dev). export interface Databricks3 {␊ computeType: "Databricks"␊ properties?: (DatabricksProperties3 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface DatabricksProperties3 {␊ @@ -81554,6 +91522,7 @@ Generated by [AVA](https://avajs.dev). export interface DataLakeAnalytics3 {␊ computeType: "DataLakeAnalytics"␊ properties?: (DataLakeAnalyticsProperties3 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface DataLakeAnalyticsProperties3 {␊ @@ -81597,7 +91566,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Machine Learning compute object.␊ */␊ - properties: ((AKS4 | AmlCompute3 | VirtualMachine4 | HDInsight4 | DataFactory4 | Databricks3 | DataLakeAnalytics3) | string)␊ + properties: (((AKS4 | AmlCompute3 | VirtualMachine4 | HDInsight4 | DataFactory4 | Databricks3 | DataLakeAnalytics3) & {␊ + /**␊ + * Location for the underlying compute␊ + */␊ + computeLocation?: string␊ + /**␊ + * The description of the Machine Learning compute.␊ + */␊ + description?: string␊ + /**␊ + * ARM resource id of the underlying compute␊ + */␊ + resourceId?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Sku of the resource␊ */␊ @@ -81609,6 +91592,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningServices/workspaces/computes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81644,6 +91631,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningServices/workspaces"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81701,6 +91692,8 @@ Generated by [AVA](https://avajs.dev). * Indicates whether or not the encryption is enabled for the workspace.␊ */␊ status: (("Enabled" | "Disabled") | string)␊ + keyVaultProperties: unknown␊ + status: unknown␊ [k: string]: unknown␊ }␊ export interface KeyVaultProperties15 {␊ @@ -81716,6 +91709,8 @@ Generated by [AVA](https://avajs.dev). * The ArmId of the keyVault where the customer owned encryption key is present.␊ */␊ keyVaultArmId: string␊ + keyIdentifier: unknown␊ + keyVaultArmId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81750,6 +91745,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "computes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81761,6 +91760,7 @@ Generated by [AVA](https://avajs.dev). * AKS properties␊ */␊ properties?: (AKSProperties5 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81842,6 +91842,7 @@ Generated by [AVA](https://avajs.dev). * AML Compute properties␊ */␊ properties?: (AmlComputeProperties4 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81890,6 +91891,7 @@ Generated by [AVA](https://avajs.dev). * Node Idle Time before scaling down amlCompute␊ */␊ nodeIdleTimeBeforeScaleDown?: string␊ + maxNodeCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81900,6 +91902,7 @@ Generated by [AVA](https://avajs.dev). * The ID of the resource␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81918,6 +91921,7 @@ Generated by [AVA](https://avajs.dev). * SSH public key of the administrator user account.␊ */␊ adminUserSshPublicKey?: string␊ + adminUserName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -81926,6 +91930,7 @@ Generated by [AVA](https://avajs.dev). export interface VirtualMachine5 {␊ computeType: "VirtualMachine"␊ properties?: (VirtualMachineProperties8 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualMachineProperties8 {␊ @@ -81975,6 +91980,7 @@ Generated by [AVA](https://avajs.dev). export interface HDInsight5 {␊ computeType: "HDInsight"␊ properties?: (HDInsightProperties5 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface HDInsightProperties5 {␊ @@ -81997,6 +92003,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface DataFactory5 {␊ computeType: "DataFactory"␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82005,6 +92012,7 @@ Generated by [AVA](https://avajs.dev). export interface Databricks4 {␊ computeType: "Databricks"␊ properties?: (DatabricksProperties4 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface DatabricksProperties4 {␊ @@ -82020,6 +92028,7 @@ Generated by [AVA](https://avajs.dev). export interface DataLakeAnalytics4 {␊ computeType: "DataLakeAnalytics"␊ properties?: (DataLakeAnalyticsProperties4 | string)␊ + computeType: unknown␊ [k: string]: unknown␊ }␊ export interface DataLakeAnalyticsProperties4 {␊ @@ -82075,6 +92084,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82093,6 +92106,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the private endpoint connection resource.␊ */␊ provisioningState?: (("Succeeded" | "Creating" | "Deleting" | "Failed") | string)␊ + privateLinkServiceConnectionState: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82139,7 +92153,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * Machine Learning compute object.␊ */␊ - properties: ((AKS5 | AmlCompute4 | VirtualMachine5 | HDInsight5 | DataFactory5 | Databricks4 | DataLakeAnalytics4) | string)␊ + properties: (((AKS5 | AmlCompute4 | VirtualMachine5 | HDInsight5 | DataFactory5 | Databricks4 | DataLakeAnalytics4) & {␊ + /**␊ + * Location for the underlying compute␊ + */␊ + computeLocation?: string␊ + /**␊ + * The description of the Machine Learning compute.␊ + */␊ + description?: string␊ + /**␊ + * ARM resource id of the underlying compute␊ + */␊ + resourceId?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Sku of the resource␊ */␊ @@ -82151,6 +92179,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningServices/workspaces/computes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82185,6 +92217,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.MachineLearningServices/workspaces/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82220,6 +92256,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82264,6 +92305,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82282,6 +92324,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82310,6 +92353,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource1 | VirtualNetworksSubnetsChildResource1)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82340,6 +92388,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82350,6 +92399,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82360,6 +92410,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82378,6 +92429,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82408,6 +92460,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82418,6 +92471,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82482,6 +92536,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82516,6 +92571,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82533,6 +92589,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82550,6 +92610,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82582,6 +92646,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82656,6 +92725,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82700,6 +92770,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82728,6 +92799,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82778,6 +92850,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82796,6 +92872,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82826,6 +92903,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82844,6 +92924,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82878,6 +92959,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82896,6 +92981,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82926,6 +93012,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82966,6 +93057,7 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -82983,6 +93075,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -83011,6 +93107,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -83113,6 +93214,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -83130,6 +93235,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -83157,6 +93266,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -83199,6 +93313,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -83217,6 +93332,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -83317,6 +93433,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -83371,6 +93492,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -83388,6 +93511,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -83412,6 +93539,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -83936,6 +94068,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84215,6 +94349,10 @@ Generated by [AVA](https://avajs.dev). * The disabled rule groups.␊ */␊ disabledRuleGroups?: (ApplicationGatewayFirewallDisabledRuleGroup1[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84229,6 +94367,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84256,6 +94395,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84310,6 +94454,8 @@ Generated by [AVA](https://avajs.dev). * The resource GUID property of the VirtualNetworkGatewayConnection resource.␊ */␊ resourceGuid?: string␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84334,6 +94480,8 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84482,6 +94630,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84492,6 +94641,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84562,6 +94712,8 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84622,6 +94774,14 @@ Generated by [AVA](https://avajs.dev). * The DH Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84649,6 +94809,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84676,6 +94841,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84693,6 +94863,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84710,6 +94884,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84727,6 +94905,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84744,6 +94926,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84761,6 +94947,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84796,6 +94986,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84840,6 +95035,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84858,6 +95054,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84886,6 +95083,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource2 | VirtualNetworksSubnetsChildResource2)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84924,6 +95126,7 @@ Generated by [AVA](https://avajs.dev). * Indicates if Vm protection is enabled for all the subnets in a Virtual Network.␊ */␊ enableVmProtection?: (boolean | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84934,6 +95137,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84944,6 +95148,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84962,6 +95167,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -84992,6 +95198,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85002,6 +95209,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85066,6 +95274,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85104,6 +95313,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85121,6 +95331,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85138,6 +95352,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85170,6 +95388,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85244,6 +95467,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85288,6 +95512,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85316,6 +95541,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85363,6 +95589,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85381,6 +95611,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85411,6 +95642,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85429,6 +95663,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85460,6 +95695,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85478,6 +95717,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85505,6 +95745,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85545,6 +95790,7 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85562,6 +95808,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85590,6 +95840,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85700,6 +95955,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85722,6 +95981,7 @@ Generated by [AVA](https://avajs.dev). properties?: ({␊ [k: string]: unknown␊ } | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85739,6 +95999,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85766,6 +96030,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85808,6 +96077,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85826,6 +96096,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85930,6 +96201,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -85984,6 +96260,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -86001,6 +96279,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -86025,6 +96307,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -86549,6 +96836,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -86828,6 +97117,10 @@ Generated by [AVA](https://avajs.dev). * The disabled rule groups.␊ */␊ disabledRuleGroups?: (ApplicationGatewayFirewallDisabledRuleGroup2[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -86842,6 +97135,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -86859,6 +97153,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -86876,6 +97174,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -86893,6 +97195,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -86928,6 +97234,10 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -87018,6 +97328,10 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource3 | VirtualNetworksSubnetsChildResource3)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -87253,6 +97567,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -87270,6 +97588,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -87302,6 +97624,10 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -87495,6 +97821,8 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + frontendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -87543,6 +97871,8 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -87637,6 +97967,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -87677,6 +98011,7 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -87694,6 +98029,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -87722,6 +98061,10 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -87832,6 +98175,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -87871,6 +98218,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -87898,6 +98249,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -88062,6 +98417,10 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -88120,6 +98479,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -88137,6 +98497,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -88161,6 +98525,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -88689,6 +99057,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -88968,6 +99338,10 @@ Generated by [AVA](https://avajs.dev). * The disabled rule groups.␊ */␊ disabledRuleGroups?: (ApplicationGatewayFirewallDisabledRuleGroup3[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -88982,6 +99356,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -88999,6 +99374,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89016,6 +99395,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89033,6 +99416,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89059,6 +99446,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "Microsoft.ImportExport/jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89159,6 +99550,8 @@ Generated by [AVA](https://avajs.dev). * The tracking number of the package.␊ */␊ trackingNumber: string␊ + carrierName: unknown␊ + trackingNumber: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89301,6 +99694,13 @@ Generated by [AVA](https://avajs.dev). * The first line of the street address to use when returning the drives. ␊ */␊ streetAddress2?: string␊ + city: unknown␊ + countryOrRegion: unknown␊ + email: unknown␊ + phone: unknown␊ + postalCode: unknown␊ + recipientName: unknown␊ + streetAddress1: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89323,6 +99723,10 @@ Generated by [AVA](https://avajs.dev). * The tracking number of the package.␊ */␊ trackingNumber: string␊ + carrierName: unknown␊ + driveCount: unknown␊ + shipDate: unknown␊ + trackingNumber: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89337,6 +99741,8 @@ Generated by [AVA](https://avajs.dev). * The carrier's name.␊ */␊ carrierName: string␊ + carrierAccountNumber: unknown␊ + carrierName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89405,6 +99811,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ } | string)␊ resources?: (DnsZones_TXTChildResource | DnsZones_SRVChildResource | DnsZones_SOAChildResource | DnsZones_PTRChildResource | DnsZones_NSChildResource | DnsZones_MXChildResource | DnsZones_CNAMEChildResource | DnsZones_CAAChildResource | DnsZones_AAAAChildResource | DnsZones_AChildResource)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89422,6 +99833,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89643,6 +100058,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89660,6 +100079,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89677,6 +100100,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89694,6 +100121,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89711,6 +100142,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89728,6 +100163,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89745,6 +100184,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89762,6 +100205,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89779,6 +100226,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89796,6 +100247,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89813,6 +100268,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89830,6 +100289,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89847,6 +100310,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89864,6 +100331,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89881,6 +100352,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89898,6 +100373,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89915,6 +100394,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89932,6 +100415,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89949,6 +100436,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -89976,6 +100467,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90030,6 +100526,8 @@ Generated by [AVA](https://avajs.dev). * The resource GUID property of the VirtualNetworkGatewayConnection resource.␊ */␊ resourceGuid?: string␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90054,6 +100552,8 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90202,6 +100702,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90212,6 +100713,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90282,6 +100784,8 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90342,6 +100846,14 @@ Generated by [AVA](https://avajs.dev). * The DH Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90369,6 +100881,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90396,6 +100913,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90413,6 +100935,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90430,6 +100956,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90460,6 +100990,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ } | string)␊ resources?: (DnsZones_TXTChildResource1 | DnsZones_SRVChildResource1 | DnsZones_SOAChildResource1 | DnsZones_PTRChildResource1 | DnsZones_NSChildResource1 | DnsZones_MXChildResource1 | DnsZones_CNAMEChildResource1 | DnsZones_CAAChildResource1 | DnsZones_AAAAChildResource1 | DnsZones_AChildResource1)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90477,6 +101012,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90698,6 +101237,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90715,6 +101258,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90732,6 +101279,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90749,6 +101300,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90766,6 +101321,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90783,6 +101342,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90800,6 +101363,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90817,6 +101384,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90834,6 +101405,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90851,6 +101426,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90868,6 +101447,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90885,6 +101468,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90902,6 +101489,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90919,6 +101510,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90936,6 +101531,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90953,6 +101552,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90970,6 +101573,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -90987,6 +101594,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91004,6 +101615,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91031,6 +101646,10 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91085,6 +101704,8 @@ Generated by [AVA](https://avajs.dev). * The resource GUID property of the VirtualNetworkGatewayConnection resource.␊ */␊ resourceGuid?: string␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91109,6 +101730,7 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91257,6 +101879,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91267,6 +101890,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91337,6 +101961,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91397,6 +102022,14 @@ Generated by [AVA](https://avajs.dev). * The DH Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91424,6 +102057,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91451,6 +102088,10 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91468,6 +102109,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91485,6 +102130,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91506,6 +102155,11 @@ Generated by [AVA](https://avajs.dev). properties: (RegistrationParameterProperties | string)␊ resources?: RegistrationsCustomerSubscriptionsChildResource[]␊ type: "Microsoft.AzureStack/registrations"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91516,6 +102170,7 @@ Generated by [AVA](https://avajs.dev). * The token identifying registered Azure Stack␊ */␊ registrationToken: string␊ + registrationToken: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91536,6 +102191,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CustomerSubscriptionProperties | string)␊ type: "customerSubscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91566,6 +102225,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (CustomerSubscriptionProperties | string)␊ type: "Microsoft.AzureStack/registrations/customerSubscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91601,6 +102264,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91649,6 +102317,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91667,6 +102336,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91709,6 +102379,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource4 | VirtualNetworksSubnetsChildResource4)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91747,6 +102422,7 @@ Generated by [AVA](https://avajs.dev). * Indicates if Vm protection is enabled for all the subnets in a Virtual Network.␊ */␊ enableVmProtection?: (boolean | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91757,6 +102433,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91767,6 +102444,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91785,6 +102463,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91815,6 +102494,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91825,6 +102505,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91889,6 +102570,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91927,6 +102609,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91944,6 +102627,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91961,6 +102648,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -91993,6 +102684,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92067,6 +102763,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92111,6 +102808,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92139,6 +102837,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92186,6 +102885,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92204,6 +102907,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92234,6 +102938,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92252,6 +102959,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92283,6 +102991,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92301,6 +103013,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92336,6 +103049,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92376,6 +103094,7 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92393,6 +103112,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92421,6 +103144,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource4[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92531,6 +103259,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92553,6 +103285,7 @@ Generated by [AVA](https://avajs.dev). properties?: ({␊ [k: string]: unknown␊ } | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92570,6 +103303,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92597,6 +103334,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92639,6 +103381,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92657,6 +103400,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92761,6 +103505,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource4[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92819,6 +103568,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92836,6 +103587,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -92860,6 +103615,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -93388,6 +104148,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -93667,6 +104429,10 @@ Generated by [AVA](https://avajs.dev). * The disabled rule groups.␊ */␊ disabledRuleGroups?: (ApplicationGatewayFirewallDisabledRuleGroup4[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -93681,6 +104447,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -93708,6 +104475,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -93762,6 +104534,8 @@ Generated by [AVA](https://avajs.dev). * The resource GUID property of the VirtualNetworkGatewayConnection resource.␊ */␊ resourceGuid?: string␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -93786,6 +104560,8 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -93934,6 +104710,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -93944,6 +104721,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94014,6 +104792,8 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94074,6 +104854,14 @@ Generated by [AVA](https://avajs.dev). * The DH Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94101,6 +104889,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94128,6 +104921,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94145,6 +104943,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94162,6 +104964,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94179,6 +104985,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94196,6 +105006,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94213,6 +105027,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94239,6 +105057,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/images"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94303,6 +105126,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the storage account type for the managed disk. Possible values are: Standard_LRS or Premium_LRS.␊ */␊ storageAccountType?: (("Standard_LRS" | "Premium_LRS") | string)␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94335,6 +105159,8 @@ Generated by [AVA](https://avajs.dev). * Specifies the storage account type for the managed disk. Possible values are: Standard_LRS or Premium_LRS.␊ */␊ storageAccountType?: (("Standard_LRS" | "Premium_LRS") | string)␊ + osState: unknown␊ + osType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94365,6 +105191,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/availabilitySets"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94440,6 +105271,11 @@ Generated by [AVA](https://avajs.dev). * The virtual machine zones.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94804,6 +105640,8 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94900,6 +105738,7 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94929,6 +105768,8 @@ Generated by [AVA](https://avajs.dev). */␊ secretUrl: string␊ sourceVault: (SubResource10 | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94940,6 +105781,8 @@ Generated by [AVA](https://avajs.dev). */␊ keyUrl: string␊ sourceVault: (SubResource10 | string)␊ + keyUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -94963,6 +105806,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface GenericExtension3 {␊ @@ -94984,6 +105832,10 @@ Generated by [AVA](https://avajs.dev). settings: ({␊ [k: string]: unknown␊ } | string)␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSDiagnostics3 {␊ @@ -94994,14 +105846,25 @@ Generated by [AVA](https://avajs.dev). settings: {␊ xmlCfg: string␊ StorageAccount: string␊ + xmlCfg: unknown␊ + StorageAccount: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + storageAccountEndPoint: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSAntimalware3 {␊ @@ -95015,6 +105878,9 @@ Generated by [AVA](https://avajs.dev). Paths: string␊ Extensions: string␊ Processes: string␊ + Paths: unknown␊ + Extensions: unknown␊ + Processes: unknown␊ [k: string]: unknown␊ }␊ RealtimeProtectionEnabled: ("true" | "false")␊ @@ -95023,10 +105889,23 @@ Generated by [AVA](https://avajs.dev). scanType: string␊ day: string␊ time: string␊ + isEnabled: unknown␊ + scanType: unknown␊ + day: unknown␊ + time: unknown␊ [k: string]: unknown␊ }␊ + AntimalwareEnabled: unknown␊ + Exclusions: unknown␊ + RealtimeProtectionEnabled: unknown␊ + ScheduledScanSettings: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptExtension3 {␊ @@ -95037,6 +105916,7 @@ Generated by [AVA](https://avajs.dev). settings: {␊ fileUris?: string[]␊ commandToExecute: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -95044,6 +105924,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptForLinux3 {␊ @@ -95059,8 +105945,15 @@ Generated by [AVA](https://avajs.dev). commandToExecute: string␊ storageAccountName?: string␊ storageAccountKey?: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxDiagnostic3 {␊ @@ -95087,8 +105980,16 @@ Generated by [AVA](https://avajs.dev). storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint?: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessForLinux3 {␊ @@ -95108,8 +106009,20 @@ Generated by [AVA](https://avajs.dev). reset_ssh: string␊ remove_user: string␊ expiration: string␊ + username: unknown␊ + password: unknown␊ + ssh_key: unknown␊ + reset_ssh: unknown␊ + remove_user: unknown␊ + expiration: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BgInfo3 {␊ @@ -95117,6 +106030,10 @@ Generated by [AVA](https://avajs.dev). type: "bginfo"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessAgent3 {␊ @@ -95132,6 +106049,12 @@ Generated by [AVA](https://avajs.dev). password?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DscExtension3 {␊ @@ -95148,12 +106071,20 @@ Generated by [AVA](https://avajs.dev). dataCollection?: string␊ [k: string]: unknown␊ }␊ + modulesUrl: unknown␊ + configurationFunction: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ dataBlobUri?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackupLinux3 {␊ @@ -95163,13 +106094,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackup3 {␊ @@ -95179,13 +106119,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxChefClient3 {␊ @@ -95201,6 +106150,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -95211,8 +106165,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface ChefClient3 {␊ @@ -95227,6 +106190,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -95237,8 +106205,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogLinuxAgent3 {␊ @@ -95248,8 +106225,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogWindowsAgent3 {␊ @@ -95259,8 +106242,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DockerExtension3 {␊ @@ -95271,8 +106260,10 @@ Generated by [AVA](https://avajs.dev). settings: {␊ docker: {␊ port: string␊ + port: unknown␊ [k: string]: unknown␊ }␊ + docker: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -95280,10 +106271,20 @@ Generated by [AVA](https://avajs.dev). ca: string␊ cert: string␊ key: string␊ + ca: unknown␊ + cert: unknown␊ + key: unknown␊ [k: string]: unknown␊ }␊ + certs: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceLinux3 {␊ @@ -95294,8 +106295,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceWindows3 {␊ @@ -95306,8 +106314,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface Eset3 {␊ @@ -95323,8 +106338,20 @@ Generated by [AVA](https://avajs.dev). "Enable-Cloud": boolean␊ "Enable-PUA": boolean␊ ERAAgentCfgUrl: string␊ + LicenseKey: unknown␊ + "Install-RealtimeProtection": unknown␊ + "Install-ProtocolFiltering": unknown␊ + "Install-DeviceControl": unknown␊ + "Enable-Cloud": unknown␊ + "Enable-PUA": unknown␊ + ERAAgentCfgUrl: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface HpeSecurityApplicationDefender3 {␊ @@ -95335,8 +106362,15 @@ Generated by [AVA](https://avajs.dev). protectedSettings: {␊ key: string␊ serverURL: string␊ + key: unknown␊ + serverURL: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface PuppetAgent3 {␊ @@ -95346,8 +106380,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ protectedSettings: {␊ PUPPET_MASTER_SERVER: string␊ + PUPPET_MASTER_SERVER: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7LinuxServerExtn3 {␊ @@ -95361,8 +106401,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7WindowsServerExtn3 {␊ @@ -95376,8 +106423,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7ApmInsightExtn3 {␊ @@ -95391,8 +106445,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSALinux3 {␊ @@ -95404,13 +106465,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSA3 {␊ @@ -95422,13 +106493,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentLinux3 {␊ @@ -95441,8 +106522,17 @@ Generated by [AVA](https://avajs.dev). "Agent Port": string␊ "Host Group": string␊ "User Account": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ + "User Account": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentWindows3 {␊ @@ -95454,8 +106544,16 @@ Generated by [AVA](https://avajs.dev). "Control-M Server Name": string␊ "Agent Port": string␊ "Host Group": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface OSPatchingForLinux3 {␊ @@ -95481,6 +106579,8 @@ Generated by [AVA](https://avajs.dev). vmStatusTest?: {␊ [k: string]: unknown␊ }␊ + disabled: unknown␊ + stop: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -95488,6 +106588,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshot3 {␊ @@ -95504,8 +106610,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshotLinux3 {␊ @@ -95522,8 +106641,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScript3 {␊ @@ -95533,14 +106665,24 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ fileUris: string[]␊ + fileUris: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ commandToExecute: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentWindows3 {␊ @@ -95548,6 +106690,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentWindows"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentLinux3 {␊ @@ -95555,6 +106701,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentLinux"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -95598,6 +106748,11 @@ Generated by [AVA](https://avajs.dev). * The virtual machine scale set zones. NOTE: Availability zones can only be set when you create the scale set.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -95797,6 +106952,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration.␊ */␊ properties?: (VirtualMachineScaleSetNetworkConfigurationProperties2 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -95824,6 +106980,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the primary network interface in case the virtual machine has more than 1 network interface.␊ */␊ primary?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -95852,6 +107009,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration properties.␊ */␊ properties?: (VirtualMachineScaleSetIPConfigurationProperties2 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -95900,6 +107058,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration␊ */␊ properties?: (VirtualMachineScaleSetPublicIPAddressConfigurationProperties1 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -95924,6 +107083,7 @@ Generated by [AVA](https://avajs.dev). * The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created␊ */␊ domainNameLabel: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96010,6 +107170,8 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96058,6 +107220,7 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96074,6 +107237,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualMachineScaleSetExtensionProperties1 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96142,6 +107309,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "virtualmachines"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96196,6 +107368,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachines/extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96209,6 +107386,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (GenericExtension3 | IaaSDiagnostics3 | IaaSAntimalware3 | CustomScriptExtension3 | CustomScriptForLinux3 | LinuxDiagnostic3 | VmAccessForLinux3 | BgInfo3 | VmAccessAgent3 | DscExtension3 | AcronisBackupLinux3 | AcronisBackup3 | LinuxChefClient3 | ChefClient3 | DatadogLinuxAgent3 | DatadogWindowsAgent3 | DockerExtension3 | DynatraceLinux3 | DynatraceWindows3 | Eset3 | HpeSecurityApplicationDefender3 | PuppetAgent3 | Site24X7LinuxServerExtn3 | Site24X7WindowsServerExtn3 | Site24X7ApmInsightExtn3 | TrendMicroDSALinux3 | TrendMicroDSA3 | BmcCtmAgentLinux3 | BmcCtmAgentWindows3 | OSPatchingForLinux3 | VMSnapshot3 | VMSnapshotLinux3 | CustomScript3 | NetworkWatcherAgentWindows3 | NetworkWatcherAgentLinux3)␊ type: "Microsoft.Compute/virtualMachineScaleSets/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96240,6 +107421,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DBforMariaDB/servers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96277,6 +107463,9 @@ Generated by [AVA](https://avajs.dev). */␊ administratorLoginPassword: string␊ createMode: "Default"␊ + administratorLogin: unknown␊ + administratorLoginPassword: unknown␊ + createMode: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96292,6 +107481,9 @@ Generated by [AVA](https://avajs.dev). * The source server id to restore from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + restorePointInTime: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96303,6 +107495,8 @@ Generated by [AVA](https://avajs.dev). * The source server id to restore from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96314,6 +107508,8 @@ Generated by [AVA](https://avajs.dev). * The master server id to create replica from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96330,6 +107526,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallRuleProperties2 | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96344,6 +107544,8 @@ Generated by [AVA](https://avajs.dev). * The start IP address of the server firewall rule. Must be IPv4 format.␊ */␊ startIpAddress: string␊ + endIpAddress: unknown␊ + startIpAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96360,6 +107562,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties1 | string)␊ type: "virtualNetworkRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96374,6 +107580,7 @@ Generated by [AVA](https://avajs.dev). * The ARM resource id of the virtual network subnet.␊ */␊ virtualNetworkSubnetId: string␊ + virtualNetworkSubnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96390,6 +107597,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseProperties6 | string)␊ type: "databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96420,6 +107631,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConfigurationProperties | string)␊ type: "configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96450,6 +107665,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties6 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96476,6 +107695,8 @@ Generated by [AVA](https://avajs.dev). * The private link service connection status.␊ */␊ status: string␊ + description: unknown␊ + status: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96492,6 +107713,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties2 | string)␊ type: "securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96526,6 +107751,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96552,6 +107778,7 @@ Generated by [AVA](https://avajs.dev). * The tier of the particular SKU, e.g. Basic.␊ */␊ tier?: (("Basic" | "GeneralPurpose" | "MemoryOptimized") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96568,6 +107795,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConfigurationProperties | string)␊ type: "Microsoft.DBforMariaDB/servers/configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96584,6 +107815,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseProperties6 | string)␊ type: "Microsoft.DBforMariaDB/servers/databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96600,6 +107835,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallRuleProperties2 | string)␊ type: "Microsoft.DBforMariaDB/servers/firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96616,6 +107855,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties1 | string)␊ type: "Microsoft.DBforMariaDB/servers/virtualNetworkRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96632,6 +107875,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties2 | string)␊ type: "Microsoft.DBforMariaDB/servers/securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96648,6 +107895,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties6 | string)␊ type: "Microsoft.DBforMariaDB/servers/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96683,6 +107934,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DBforMySQL/servers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96730,6 +107986,9 @@ Generated by [AVA](https://avajs.dev). */␊ administratorLoginPassword: string␊ createMode: "Default"␊ + administratorLogin: unknown␊ + administratorLoginPassword: unknown␊ + createMode: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96745,6 +108004,9 @@ Generated by [AVA](https://avajs.dev). * The source server id to restore from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + restorePointInTime: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96756,6 +108018,8 @@ Generated by [AVA](https://avajs.dev). * The source server id to restore from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96767,6 +108031,8 @@ Generated by [AVA](https://avajs.dev). * The master server id to create replica from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96783,6 +108049,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallRuleProperties3 | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96797,6 +108067,8 @@ Generated by [AVA](https://avajs.dev). * The start IP address of the server firewall rule. Must be IPv4 format.␊ */␊ startIpAddress: string␊ + endIpAddress: unknown␊ + startIpAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96813,6 +108085,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties2 | string)␊ type: "virtualNetworkRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96827,6 +108103,7 @@ Generated by [AVA](https://avajs.dev). * The ARM resource id of the virtual network subnet.␊ */␊ virtualNetworkSubnetId: string␊ + virtualNetworkSubnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96843,6 +108120,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseProperties7 | string)␊ type: "databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96873,6 +108154,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConfigurationProperties1 | string)␊ type: "configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96900,6 +108185,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerAdministratorProperties1 | string)␊ type: "administrators"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96922,6 +108211,10 @@ Generated by [AVA](https://avajs.dev). * The server Active Directory Administrator tenant id.␊ */␊ tenantId: string␊ + administratorType: unknown␊ + login: unknown␊ + sid: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96938,6 +108231,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties3 | string)␊ type: "securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96972,6 +108269,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -96998,6 +108296,7 @@ Generated by [AVA](https://avajs.dev). * The tier of the particular SKU, e.g. Basic.␊ */␊ tier?: (("Basic" | "GeneralPurpose" | "MemoryOptimized") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97014,6 +108313,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConfigurationProperties1 | string)␊ type: "Microsoft.DBforMySQL/servers/configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97030,6 +108333,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseProperties7 | string)␊ type: "Microsoft.DBforMySQL/servers/databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97046,6 +108353,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallRuleProperties3 | string)␊ type: "Microsoft.DBforMySQL/servers/firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97062,6 +108373,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties2 | string)␊ type: "Microsoft.DBforMySQL/servers/virtualNetworkRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97078,6 +108393,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties3 | string)␊ type: "Microsoft.DBforMySQL/servers/securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97091,6 +108410,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerAdministratorProperties1 | string)␊ type: "Microsoft.DBforMySQL/servers/administrators"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97126,6 +108449,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DBforPostgreSQL/servers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97173,6 +108501,9 @@ Generated by [AVA](https://avajs.dev). */␊ administratorLoginPassword: string␊ createMode: "Default"␊ + administratorLogin: unknown␊ + administratorLoginPassword: unknown␊ + createMode: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97188,6 +108519,9 @@ Generated by [AVA](https://avajs.dev). * The source server id to restore from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + restorePointInTime: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97199,6 +108533,8 @@ Generated by [AVA](https://avajs.dev). * The source server id to restore from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97210,6 +108546,8 @@ Generated by [AVA](https://avajs.dev). * The master server id to create replica from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97226,6 +108564,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallRuleProperties4 | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97240,6 +108582,8 @@ Generated by [AVA](https://avajs.dev). * The start IP address of the server firewall rule. Must be IPv4 format.␊ */␊ startIpAddress: string␊ + endIpAddress: unknown␊ + startIpAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97256,6 +108600,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties3 | string)␊ type: "virtualNetworkRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97270,6 +108618,7 @@ Generated by [AVA](https://avajs.dev). * The ARM resource id of the virtual network subnet.␊ */␊ virtualNetworkSubnetId: string␊ + virtualNetworkSubnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97286,6 +108635,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseProperties8 | string)␊ type: "databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97316,6 +108669,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConfigurationProperties2 | string)␊ type: "configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97343,6 +108700,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerAdministratorProperties2 | string)␊ type: "administrators"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97365,6 +108726,10 @@ Generated by [AVA](https://avajs.dev). * The server Active Directory Administrator tenant id.␊ */␊ tenantId: string␊ + administratorType: unknown␊ + login: unknown␊ + sid: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97381,6 +108746,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties4 | string)␊ type: "securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97415,6 +108784,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97441,6 +108811,7 @@ Generated by [AVA](https://avajs.dev). * The tier of the particular SKU, e.g. Basic.␊ */␊ tier?: (("Basic" | "GeneralPurpose" | "MemoryOptimized") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97457,6 +108828,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConfigurationProperties2 | string)␊ type: "Microsoft.DBforPostgreSQL/servers/configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97473,6 +108848,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseProperties8 | string)␊ type: "Microsoft.DBforPostgreSQL/servers/databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97489,6 +108868,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallRuleProperties4 | string)␊ type: "Microsoft.DBforPostgreSQL/servers/firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97505,6 +108888,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties3 | string)␊ type: "Microsoft.DBforPostgreSQL/servers/virtualNetworkRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97521,6 +108908,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties4 | string)␊ type: "Microsoft.DBforPostgreSQL/servers/securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97534,6 +108925,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerAdministratorProperties2 | string)␊ type: "Microsoft.DBforPostgreSQL/servers/administrators"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97565,6 +108960,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DBforMySQL/servers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97602,6 +109002,9 @@ Generated by [AVA](https://avajs.dev). */␊ administratorLoginPassword: string␊ createMode: "Default"␊ + administratorLogin: unknown␊ + administratorLoginPassword: unknown␊ + createMode: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97617,6 +109020,9 @@ Generated by [AVA](https://avajs.dev). * The source server id to restore from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + restorePointInTime: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97628,6 +109034,8 @@ Generated by [AVA](https://avajs.dev). * The source server id to restore from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97639,6 +109047,8 @@ Generated by [AVA](https://avajs.dev). * The master server id to create replica from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97655,6 +109065,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallRuleProperties5 | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97669,6 +109083,8 @@ Generated by [AVA](https://avajs.dev). * The start IP address of the server firewall rule. Must be IPv4 format.␊ */␊ startIpAddress: string␊ + endIpAddress: unknown␊ + startIpAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97685,6 +109101,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties4 | string)␊ type: "virtualNetworkRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97699,6 +109119,7 @@ Generated by [AVA](https://avajs.dev). * The ARM resource id of the virtual network subnet.␊ */␊ virtualNetworkSubnetId: string␊ + virtualNetworkSubnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97715,6 +109136,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseProperties9 | string)␊ type: "databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97745,6 +109170,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConfigurationProperties3 | string)␊ type: "configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97772,6 +109201,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerAdministratorProperties3 | string)␊ type: "administrators"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97794,6 +109227,10 @@ Generated by [AVA](https://avajs.dev). * The server Active Directory Administrator tenant id.␊ */␊ tenantId: (string | string)␊ + administratorType: unknown␊ + login: unknown␊ + sid: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97810,6 +109247,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties5 | string)␊ type: "securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97844,6 +109285,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97870,6 +109312,7 @@ Generated by [AVA](https://avajs.dev). * The tier of the particular SKU, e.g. Basic.␊ */␊ tier?: (("Basic" | "GeneralPurpose" | "MemoryOptimized") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97886,6 +109329,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConfigurationProperties3 | string)␊ type: "Microsoft.DBforMySQL/servers/configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97902,6 +109349,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseProperties9 | string)␊ type: "Microsoft.DBforMySQL/servers/databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97918,6 +109369,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallRuleProperties5 | string)␊ type: "Microsoft.DBforMySQL/servers/firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97949,6 +109404,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DBforPostgreSQL/servers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -97986,6 +109446,9 @@ Generated by [AVA](https://avajs.dev). */␊ administratorLoginPassword: string␊ createMode: "Default"␊ + administratorLogin: unknown␊ + administratorLoginPassword: unknown␊ + createMode: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98001,6 +109464,9 @@ Generated by [AVA](https://avajs.dev). * The source server id to restore from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + restorePointInTime: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98012,6 +109478,8 @@ Generated by [AVA](https://avajs.dev). * The source server id to restore from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98023,6 +109491,8 @@ Generated by [AVA](https://avajs.dev). * The master server id to create replica from.␊ */␊ sourceServerId: string␊ + createMode: unknown␊ + sourceServerId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98039,6 +109509,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallRuleProperties6 | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98053,6 +109527,8 @@ Generated by [AVA](https://avajs.dev). * The start IP address of the server firewall rule. Must be IPv4 format.␊ */␊ startIpAddress: string␊ + endIpAddress: unknown␊ + startIpAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98069,6 +109545,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties5 | string)␊ type: "virtualNetworkRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98083,6 +109563,7 @@ Generated by [AVA](https://avajs.dev). * The ARM resource id of the virtual network subnet.␊ */␊ virtualNetworkSubnetId: string␊ + virtualNetworkSubnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98099,6 +109580,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseProperties10 | string)␊ type: "databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98129,6 +109614,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConfigurationProperties4 | string)␊ type: "configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98156,6 +109645,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerAdministratorProperties4 | string)␊ type: "administrators"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98178,6 +109671,10 @@ Generated by [AVA](https://avajs.dev). * The server Active Directory Administrator tenant id.␊ */␊ tenantId: (string | string)␊ + administratorType: unknown␊ + login: unknown␊ + sid: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98194,6 +109691,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties6 | string)␊ type: "securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98228,6 +109729,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98254,6 +109756,7 @@ Generated by [AVA](https://avajs.dev). * The tier of the particular SKU, e.g. Basic.␊ */␊ tier?: (("Basic" | "GeneralPurpose" | "MemoryOptimized") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98270,6 +109773,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConfigurationProperties4 | string)␊ type: "Microsoft.DBforPostgreSQL/servers/configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98286,6 +109793,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DatabaseProperties10 | string)␊ type: "Microsoft.DBforPostgreSQL/servers/databases"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98302,6 +109813,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallRuleProperties6 | string)␊ type: "Microsoft.DBforPostgreSQL/servers/firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98326,6 +109841,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98759,6 +110279,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -98822,6 +110347,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface AuthorizationPropertiesFormat {␊ @@ -98855,6 +110384,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface ExpressRouteCircuitPeeringPropertiesFormat {␊ @@ -98970,6 +110503,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99031,6 +110569,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99092,6 +110631,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99133,6 +110673,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99179,6 +110720,11 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99198,6 +110744,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ export interface ProbePropertiesFormat5 {␊ @@ -99229,6 +110776,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99248,6 +110798,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99286,6 +110837,10 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99305,6 +110860,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99335,6 +110891,11 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99376,6 +110937,8 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + allocatedOutboundPorts: unknown␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99400,6 +110963,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99432,6 +111000,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets List of address blocks reserved for this virtual network in CIDR notation␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99456,6 +111025,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99498,6 +111072,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99517,6 +111092,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99598,6 +111174,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99690,6 +111271,12 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + sourceAddressPrefix: unknown␊ + destinationAddressPrefix: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99708,6 +111295,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99726,6 +111317,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99750,6 +111345,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99784,6 +111384,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99802,6 +111403,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99827,6 +111429,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99886,6 +111493,8 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99904,6 +111513,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99922,6 +111535,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -99946,6 +111563,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -100050,6 +111672,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: VirtualNetworksSubnetsChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualNetworkPropertiesFormat5 {␊ @@ -100073,6 +111700,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -100083,6 +111711,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets list of DNS servers IP addresses␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -100102,6 +111731,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ export interface SubnetPropertiesFormat5 {␊ @@ -100125,6 +111755,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -100143,6 +111774,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -100161,6 +111796,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -100185,6 +111824,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -100740,6 +112384,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -100822,6 +112471,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (ExpressRouteCircuitsPeeringsChildResource | ExpressRouteCircuitsAuthorizationsChildResource)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101046,6 +112700,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101060,6 +112718,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101074,6 +112736,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101088,6 +112754,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101112,6 +112782,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101169,6 +112844,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101226,6 +112902,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101259,6 +112936,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101305,6 +112983,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101320,6 +113002,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ export interface ProbePropertiesFormat6 {␊ @@ -101351,6 +113034,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101366,6 +113052,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101404,6 +113091,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101419,6 +113110,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101449,6 +113141,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101486,6 +113183,7 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101510,6 +113208,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101546,6 +113249,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ export interface BgpSettings5 {␊ @@ -101585,6 +113289,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101627,6 +113336,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101642,6 +113352,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101715,6 +113426,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101803,6 +113519,12 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + sourceAddressPrefix: unknown␊ + destinationAddressPrefix: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101817,6 +113539,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101831,6 +113557,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101855,6 +113585,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101883,6 +113618,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101901,6 +113637,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101926,6 +113663,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101981,6 +113723,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -101995,6 +113739,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -102009,6 +113757,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -102033,6 +113785,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -102239,6 +113996,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: VirtualNetworksSubnetsChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualNetworkPropertiesFormat6 {␊ @@ -102262,6 +114024,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -102272,6 +114035,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -102287,6 +114051,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ export interface SubnetPropertiesFormat6 {␊ @@ -102310,6 +114075,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -102324,6 +114090,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -102338,6 +114108,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -102362,6 +114136,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -102958,6 +114737,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103040,6 +114824,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (ExpressRouteCircuitsPeeringsChildResource1 | ExpressRouteCircuitsAuthorizationsChildResource1)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103288,6 +115077,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103306,6 +115099,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103324,6 +115121,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103342,6 +115143,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103366,6 +115171,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103427,6 +115237,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103488,6 +115299,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103529,6 +115341,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103575,6 +115388,10 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103594,6 +115411,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ export interface ProbePropertiesFormat7 {␊ @@ -103625,6 +115443,9 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103644,6 +115465,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103682,6 +115504,10 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103701,6 +115527,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103731,6 +115558,11 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103772,6 +115604,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103796,6 +115629,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103832,6 +115670,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets List of address blocks reserved for this virtual network in CIDR notation␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ export interface BgpSettings6 {␊ @@ -103871,6 +115710,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103913,6 +115757,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -103932,6 +115777,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104017,6 +115863,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104109,6 +115960,12 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + sourceAddressPrefix: unknown␊ + destinationAddressPrefix: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104127,6 +115984,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104145,6 +116006,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104169,6 +116034,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104201,6 +116071,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104219,6 +116090,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104244,6 +116116,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104303,6 +116180,8 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104321,6 +116200,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104339,6 +116222,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104363,6 +116250,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104581,6 +116473,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: VirtualNetworksSubnetsChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ export interface VirtualNetworkPropertiesFormat7 {␊ @@ -104604,6 +116501,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104614,6 +116512,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets list of DNS servers IP addresses␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104633,6 +116532,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ export interface SubnetPropertiesFormat7 {␊ @@ -104656,6 +116556,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets Provisioning state of the PublicIP resource Updating/Deleting/Failed␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104674,6 +116575,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104692,6 +116597,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104717,6 +116626,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104742,6 +116656,10 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104767,6 +116685,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104792,6 +116715,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104827,6 +116755,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104875,6 +116808,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104893,6 +116827,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104935,6 +116870,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource5 | VirtualNetworksSubnetsChildResource8)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104973,6 +116913,7 @@ Generated by [AVA](https://avajs.dev). * Indicates if Vm protection is enabled for all the subnets in a Virtual Network.␊ */␊ enableVmProtection?: (boolean | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104983,6 +116924,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -104993,6 +116935,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105011,6 +116954,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105041,6 +116985,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105051,6 +116996,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105115,6 +117061,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105153,6 +117100,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105170,6 +117118,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105187,6 +117139,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105219,6 +117175,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource4[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105293,6 +117254,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105337,6 +117299,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105365,6 +117328,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105412,6 +117376,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105430,6 +117398,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105460,6 +117429,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105478,6 +117450,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105509,6 +117482,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105527,6 +117504,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105562,6 +117540,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105602,6 +117585,7 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105619,6 +117603,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105647,6 +117635,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource8[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105757,6 +117750,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105779,6 +117776,7 @@ Generated by [AVA](https://avajs.dev). properties?: ({␊ [k: string]: unknown␊ } | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105796,6 +117794,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105823,6 +117825,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105865,6 +117872,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105883,6 +117891,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -105987,6 +117996,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource8[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -106045,6 +118059,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -106062,6 +118078,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -106086,6 +118106,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -106614,6 +118639,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -106901,6 +118928,10 @@ Generated by [AVA](https://avajs.dev). * Maxium request body size for WAF.␊ */␊ maxRequestBodySize?: (number | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -106915,6 +118946,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -106942,6 +118974,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -106996,6 +119033,8 @@ Generated by [AVA](https://avajs.dev). * The resource GUID property of the VirtualNetworkGatewayConnection resource.␊ */␊ resourceGuid?: string␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107020,6 +119059,8 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107168,6 +119209,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107178,6 +119220,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107248,6 +119291,8 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107308,6 +119353,14 @@ Generated by [AVA](https://avajs.dev). * The DH Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107335,6 +119388,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107362,6 +119420,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107379,6 +119442,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107396,6 +119463,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107413,6 +119484,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107430,6 +119505,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107447,6 +119526,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107472,6 +119555,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107495,6 +119583,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS protection plan.␊ */␊ properties: (DdosProtectionPlanPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107526,6 +119619,11 @@ Generated by [AVA](https://avajs.dev). sku?: (ExpressRouteCircuitSku2 | string)␊ properties: (ExpressRouteCircuitPropertiesFormat2 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource2 | ExpressRouteCircuitsAuthorizationsChildResource2)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107764,6 +119862,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107849,6 +119948,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-02-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat3 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107859,6 +119962,10 @@ Generated by [AVA](https://avajs.dev). type: "connections"␊ apiVersion: "2018-02-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107869,6 +119976,10 @@ Generated by [AVA](https://avajs.dev). type: "authorizations"␊ apiVersion: "2018-02-01"␊ properties: (AuthorizationPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107890,6 +120001,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (ExpressRouteCrossConnectionProperties | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -107972,6 +120088,10 @@ Generated by [AVA](https://avajs.dev). type: "peerings"␊ apiVersion: "2018-02-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108007,6 +120127,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108055,6 +120180,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108073,6 +120199,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108115,6 +120242,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource6 | VirtualNetworksSubnetsChildResource9)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108157,6 +120289,7 @@ Generated by [AVA](https://avajs.dev). * The DDoS protection plan associated with the virtual network.␊ */␊ ddosProtectionPlan?: (SubResource15 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108167,6 +120300,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108177,6 +120311,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108195,6 +120330,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108225,6 +120361,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108289,6 +120426,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108327,6 +120465,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108344,6 +120483,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108361,6 +120504,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108393,6 +120540,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108467,6 +120619,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108511,6 +120664,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108539,6 +120693,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108586,6 +120741,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108604,6 +120763,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108634,6 +120794,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108652,6 +120815,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108683,6 +120847,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108701,6 +120869,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108736,6 +120905,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108776,6 +120950,7 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108793,6 +120968,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108821,6 +121000,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource9[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108931,6 +121115,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108953,6 +121141,7 @@ Generated by [AVA](https://avajs.dev). properties?: ({␊ [k: string]: unknown␊ } | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108970,6 +121159,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -108997,6 +121190,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109039,6 +121237,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109057,6 +121256,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109161,6 +121361,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource9[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109219,6 +121424,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109236,6 +121443,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109253,6 +121464,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109270,6 +121485,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109287,6 +121506,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109297,6 +121520,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/authorizations"␊ apiVersion: "2018-02-01"␊ properties: (AuthorizationPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109308,6 +121535,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-02-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat3 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109318,6 +121549,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCrossConnections/peerings"␊ apiVersion: "2018-02-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109328,6 +121563,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/peerings/connections"␊ apiVersion: "2018-02-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109356,6 +121595,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109529,6 +121773,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -109902,6 +122147,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110189,6 +122436,10 @@ Generated by [AVA](https://avajs.dev). * Maximum request body size for WAF.␊ */␊ maxRequestBodySize?: (number | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110203,6 +122454,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110213,6 +122465,7 @@ Generated by [AVA](https://avajs.dev). * Autoscale bounds␊ */␊ bounds: (ApplicationGatewayAutoscaleBounds | string)␊ + bounds: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110227,6 +122480,8 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway instances.␊ */␊ max: (number | string)␊ + min: unknown␊ + max: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110252,6 +122507,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110272,6 +122532,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (AzureFirewallPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110508,6 +122773,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110562,6 +122832,8 @@ Generated by [AVA](https://avajs.dev). * The resource GUID property of the VirtualNetworkGatewayConnection resource.␊ */␊ resourceGuid?: string␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110600,6 +122872,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110625,6 +122905,10 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110650,6 +122934,11 @@ Generated by [AVA](https://avajs.dev). sku?: (ExpressRouteCircuitSku3 | string)␊ properties: (ExpressRouteCircuitPropertiesFormat3 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource3 | ExpressRouteCircuitsAuthorizationsChildResource3)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110963,6 +123252,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-04-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat4 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110973,6 +123266,10 @@ Generated by [AVA](https://avajs.dev). type: "connections"␊ apiVersion: "2018-04-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110983,6 +123280,10 @@ Generated by [AVA](https://avajs.dev). type: "authorizations"␊ apiVersion: "2018-04-01"␊ properties: (AuthorizationPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -110993,6 +123294,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/authorizations"␊ apiVersion: "2018-04-01"␊ properties: (AuthorizationPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111004,6 +123309,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-04-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat4 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111014,6 +123323,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/peerings/connections"␊ apiVersion: "2018-04-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111035,6 +123348,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (ExpressRouteCrossConnectionProperties1 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111140,6 +123458,10 @@ Generated by [AVA](https://avajs.dev). type: "peerings"␊ apiVersion: "2018-04-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111150,6 +123472,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCrossConnections/peerings"␊ apiVersion: "2018-04-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111182,6 +123508,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111256,6 +123587,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111300,6 +123632,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111328,6 +123661,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111375,6 +123709,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111393,6 +123731,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111423,6 +123762,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111441,6 +123783,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111472,6 +123815,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111490,6 +123837,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111525,6 +123873,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111565,6 +123918,7 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111582,6 +123936,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111599,6 +123957,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111626,6 +123988,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111658,6 +124025,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111703,6 +124071,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111749,6 +124122,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111767,6 +124141,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111871,6 +124246,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource10[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111981,6 +124361,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -111998,6 +124382,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112015,6 +124403,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112042,6 +124434,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ } | string)␊ resources?: (NetworkWatchersConnectionMonitorsChildResource | NetworkWatchersPacketCapturesChildResource)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112062,6 +124459,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (ConnectionMonitorParameters | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112078,6 +124479,8 @@ Generated by [AVA](https://avajs.dev). * Monitoring interval in seconds.␊ */␊ monitoringIntervalInSeconds?: ((number & string) | string)␊ + source: unknown␊ + destination: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112092,6 +124495,7 @@ Generated by [AVA](https://avajs.dev). * The source port used by connection monitor.␊ */␊ port?: (number | string)␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112120,6 +124524,10 @@ Generated by [AVA](https://avajs.dev). type: "packetCaptures"␊ apiVersion: "2018-04-01"␊ properties: (PacketCaptureParameters | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112144,6 +124552,8 @@ Generated by [AVA](https://avajs.dev). timeLimitInSeconds?: ((number & string) | string)␊ storageLocation: (PacketCaptureStorageLocation | string)␊ filters?: (PacketCaptureFilter[] | string)␊ + target: unknown␊ + storageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112208,6 +124618,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (ConnectionMonitorParameters | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112218,6 +124632,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/networkWatchers/packetCaptures"␊ apiVersion: "2018-04-01"␊ properties: (PacketCaptureParameters | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112253,6 +124671,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112301,6 +124724,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112319,6 +124743,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112354,6 +124779,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (RouteFilterPropertiesFormat | string)␊ resources?: RouteFiltersRouteFilterRulesChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112401,6 +124831,9 @@ Generated by [AVA](https://avajs.dev). * The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020']␊ */␊ communities: (string[] | string)␊ + access: unknown␊ + routeFilterRuleType: unknown␊ + communities: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112415,6 +124848,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112429,6 +124866,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112457,6 +124898,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource10[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112515,6 +124961,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112532,6 +124980,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112549,6 +125001,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112569,6 +125025,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (VirtualHubProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112608,6 +125069,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties?: (HubVirtualNetworkConnectionProperties | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112657,6 +125119,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112809,6 +125276,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112819,6 +125287,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112875,6 +125344,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource7 | VirtualNetworksSubnetsChildResource10)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112917,6 +125391,7 @@ Generated by [AVA](https://avajs.dev). * The DDoS protection plan associated with the virtual network.␊ */␊ ddosProtectionPlan?: (SubResource16 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112927,6 +125402,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112945,6 +125421,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -112975,6 +125452,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113039,6 +125517,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113077,6 +125556,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113094,6 +125574,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113111,6 +125595,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113128,6 +125616,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113145,6 +125637,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113165,6 +125661,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (VirtualWanProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113200,6 +125701,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (VpnGatewayProperties | string)␊ resources?: VpnGatewaysVpnConnectionsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113295,6 +125801,10 @@ Generated by [AVA](https://avajs.dev). type: "vpnConnections"␊ apiVersion: "2018-04-01"␊ properties: (VpnConnectionProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113305,6 +125815,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/vpnGateways/vpnConnections"␊ apiVersion: "2018-04-01"␊ properties: (VpnConnectionProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113325,6 +125839,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (VpnSiteProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113405,6 +125924,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113578,6 +126102,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -113951,6 +126476,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114238,6 +126765,10 @@ Generated by [AVA](https://avajs.dev). * Maximum request body size for WAF.␊ */␊ maxRequestBodySize?: (number | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114252,6 +126783,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114262,6 +126794,7 @@ Generated by [AVA](https://avajs.dev). * Autoscale bounds␊ */␊ bounds: (ApplicationGatewayAutoscaleBounds1 | string)␊ + bounds: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114276,6 +126809,8 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway instances.␊ */␊ max: (number | string)␊ + min: unknown␊ + max: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114301,6 +126836,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114321,6 +126861,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (AzureFirewallPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114557,6 +127102,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114611,6 +127161,8 @@ Generated by [AVA](https://avajs.dev). * The resource GUID property of the VirtualNetworkGatewayConnection resource.␊ */␊ resourceGuid?: string␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114635,6 +127187,8 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114779,6 +127333,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114797,6 +127352,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114807,6 +127363,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114873,6 +127430,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114915,6 +127480,8 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114962,6 +127529,10 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -114987,6 +127558,11 @@ Generated by [AVA](https://avajs.dev). sku?: (ExpressRouteCircuitSku4 | string)␊ properties: (ExpressRouteCircuitPropertiesFormat4 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource4 | ExpressRouteCircuitsAuthorizationsChildResource4)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115300,6 +127876,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-06-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat5 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115310,6 +127890,10 @@ Generated by [AVA](https://avajs.dev). type: "connections"␊ apiVersion: "2018-06-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115320,6 +127904,10 @@ Generated by [AVA](https://avajs.dev). type: "authorizations"␊ apiVersion: "2018-06-01"␊ properties: (AuthorizationPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115330,6 +127918,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/authorizations"␊ apiVersion: "2018-06-01"␊ properties: (AuthorizationPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115341,6 +127933,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-06-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat5 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115351,6 +127947,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/peerings/connections"␊ apiVersion: "2018-06-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115372,6 +127972,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (ExpressRouteCrossConnectionProperties2 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115477,6 +128082,10 @@ Generated by [AVA](https://avajs.dev). type: "peerings"␊ apiVersion: "2018-06-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115487,6 +128096,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCrossConnections/peerings"␊ apiVersion: "2018-06-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115519,6 +128132,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115593,6 +128211,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115637,6 +128256,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115665,6 +128285,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115712,6 +128333,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115730,6 +128355,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115760,6 +128386,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115778,6 +128407,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115809,6 +128439,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115827,6 +128461,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115862,6 +128497,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115902,6 +128542,7 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + backendAddressPool: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115919,6 +128560,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115936,6 +128581,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115963,6 +128612,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -115990,6 +128644,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116036,6 +128695,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116054,6 +128714,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116158,6 +128819,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource11[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116268,6 +128934,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116285,6 +128955,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116302,6 +128976,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116329,6 +129007,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ } | string)␊ resources?: (NetworkWatchersConnectionMonitorsChildResource1 | NetworkWatchersPacketCapturesChildResource1)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116349,6 +129032,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (ConnectionMonitorParameters1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116365,6 +129052,8 @@ Generated by [AVA](https://avajs.dev). * Monitoring interval in seconds.␊ */␊ monitoringIntervalInSeconds?: ((number & string) | string)␊ + source: unknown␊ + destination: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116379,6 +129068,7 @@ Generated by [AVA](https://avajs.dev). * The source port used by connection monitor.␊ */␊ port?: (number | string)␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116407,6 +129097,10 @@ Generated by [AVA](https://avajs.dev). type: "packetCaptures"␊ apiVersion: "2018-06-01"␊ properties: (PacketCaptureParameters1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116431,6 +129125,8 @@ Generated by [AVA](https://avajs.dev). timeLimitInSeconds?: ((number & string) | string)␊ storageLocation: (PacketCaptureStorageLocation1 | string)␊ filters?: (PacketCaptureFilter1[] | string)␊ + target: unknown␊ + storageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116495,6 +129191,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (ConnectionMonitorParameters1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116505,6 +129205,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/networkWatchers/packetCaptures"␊ apiVersion: "2018-06-01"␊ properties: (PacketCaptureParameters1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116540,6 +129244,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116588,6 +129297,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116606,6 +129316,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116641,6 +129352,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (RouteFilterPropertiesFormat1 | string)␊ resources?: RouteFiltersRouteFilterRulesChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116688,6 +129404,9 @@ Generated by [AVA](https://avajs.dev). * The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020']␊ */␊ communities: (string[] | string)␊ + access: unknown␊ + routeFilterRuleType: unknown␊ + communities: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116702,6 +129421,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116716,6 +129439,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116744,6 +129471,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource11[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116802,6 +129534,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116819,6 +129553,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116836,6 +129574,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116856,6 +129598,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (VirtualHubProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116895,6 +129642,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties?: (HubVirtualNetworkConnectionProperties1 | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116944,6 +129692,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -116972,6 +129725,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource8 | VirtualNetworksSubnetsChildResource11)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117014,6 +129772,7 @@ Generated by [AVA](https://avajs.dev). * The DDoS protection plan associated with the virtual network.␊ */␊ ddosProtectionPlan?: (SubResource17 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117024,6 +129783,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117042,6 +129802,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117072,6 +129833,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117136,6 +129898,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117174,6 +129937,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117191,6 +129955,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117208,6 +129976,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117225,6 +129997,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117242,6 +130018,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117262,6 +130042,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (VirtualWanProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117297,6 +130082,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (VpnGatewayProperties1 | string)␊ resources?: VpnGatewaysVpnConnectionsChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117392,6 +130182,10 @@ Generated by [AVA](https://avajs.dev). type: "vpnConnections"␊ apiVersion: "2018-06-01"␊ properties: (VpnConnectionProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117402,6 +130196,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/vpnGateways/vpnConnections"␊ apiVersion: "2018-06-01"␊ properties: (VpnConnectionProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117422,6 +130220,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (VpnSiteProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117502,6 +130305,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -117675,6 +130483,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118048,6 +130857,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118335,6 +131146,10 @@ Generated by [AVA](https://avajs.dev). * Maximum request body size for WAF.␊ */␊ maxRequestBodySize?: (number | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118349,6 +131164,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118359,6 +131175,7 @@ Generated by [AVA](https://avajs.dev). * Autoscale bounds␊ */␊ bounds: (ApplicationGatewayAutoscaleBounds2 | string)␊ + bounds: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118373,6 +131190,8 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway instances.␊ */␊ max: (number | string)␊ + min: unknown␊ + max: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118398,6 +131217,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118418,6 +131242,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (AzureFirewallPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118654,6 +131483,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118712,6 +131546,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118736,6 +131572,8 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118880,6 +131718,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118898,6 +131737,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118908,6 +131748,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -118974,6 +131815,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119016,6 +131865,8 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119063,6 +131914,10 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119088,6 +131943,11 @@ Generated by [AVA](https://avajs.dev). sku?: (ExpressRouteCircuitSku5 | string)␊ properties: (ExpressRouteCircuitPropertiesFormat5 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource5 | ExpressRouteCircuitsAuthorizationsChildResource5)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119405,6 +132265,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-07-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat6 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119415,6 +132279,10 @@ Generated by [AVA](https://avajs.dev). type: "connections"␊ apiVersion: "2018-07-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119425,6 +132293,10 @@ Generated by [AVA](https://avajs.dev). type: "authorizations"␊ apiVersion: "2018-07-01"␊ properties: (AuthorizationPropertiesFormat6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119435,6 +132307,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/authorizations"␊ apiVersion: "2018-07-01"␊ properties: (AuthorizationPropertiesFormat6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119446,6 +132322,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-07-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat6 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119456,6 +132336,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/peerings/connections"␊ apiVersion: "2018-07-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119477,6 +132361,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (ExpressRouteCrossConnectionProperties3 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119582,6 +132471,10 @@ Generated by [AVA](https://avajs.dev). type: "peerings"␊ apiVersion: "2018-07-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119592,6 +132485,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCrossConnections/peerings"␊ apiVersion: "2018-07-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119624,6 +132521,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource8[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119698,6 +132600,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119746,6 +132649,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119774,6 +132678,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119825,6 +132730,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119843,6 +132752,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119873,6 +132783,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119891,6 +132804,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119926,6 +132840,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119944,6 +132862,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -119983,6 +132902,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120035,6 +132959,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120052,6 +132979,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120069,6 +133000,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120096,6 +133031,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120123,6 +133063,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120169,6 +133114,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120187,6 +133133,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120291,6 +133238,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource12[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120401,6 +133353,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120418,6 +133374,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120435,6 +133395,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120462,6 +133426,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ } | string)␊ resources?: (NetworkWatchersConnectionMonitorsChildResource2 | NetworkWatchersPacketCapturesChildResource2)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120482,6 +133451,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (ConnectionMonitorParameters2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120498,6 +133471,8 @@ Generated by [AVA](https://avajs.dev). * Monitoring interval in seconds.␊ */␊ monitoringIntervalInSeconds?: ((number & string) | string)␊ + source: unknown␊ + destination: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120512,6 +133487,7 @@ Generated by [AVA](https://avajs.dev). * The source port used by connection monitor.␊ */␊ port?: (number | string)␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120540,6 +133516,10 @@ Generated by [AVA](https://avajs.dev). type: "packetCaptures"␊ apiVersion: "2018-07-01"␊ properties: (PacketCaptureParameters2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120564,6 +133544,8 @@ Generated by [AVA](https://avajs.dev). timeLimitInSeconds?: ((number & string) | string)␊ storageLocation: (PacketCaptureStorageLocation2 | string)␊ filters?: (PacketCaptureFilter2[] | string)␊ + target: unknown␊ + storageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120628,6 +133610,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (ConnectionMonitorParameters2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120638,6 +133624,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/networkWatchers/packetCaptures"␊ apiVersion: "2018-07-01"␊ properties: (PacketCaptureParameters2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120673,6 +133663,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120725,6 +133720,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120743,6 +133739,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120792,6 +133789,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120864,6 +133866,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (RouteFilterPropertiesFormat2 | string)␊ resources?: RouteFiltersRouteFilterRulesChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120911,6 +133918,9 @@ Generated by [AVA](https://avajs.dev). * The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020']␊ */␊ communities: (string[] | string)␊ + access: unknown␊ + routeFilterRuleType: unknown␊ + communities: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120925,6 +133935,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120939,6 +133953,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -120967,6 +133985,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource12[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121025,6 +134048,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121042,6 +134067,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121059,6 +134088,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121087,6 +134120,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: ServiceEndpointPoliciesServiceEndpointPolicyDefinitionsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121162,6 +134200,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121179,6 +134221,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121199,6 +134245,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (VirtualHubProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121238,6 +134289,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties?: (HubVirtualNetworkConnectionProperties2 | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121287,6 +134339,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121315,6 +134372,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource9 | VirtualNetworksSubnetsChildResource12)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121357,6 +134419,7 @@ Generated by [AVA](https://avajs.dev). * The DDoS protection plan associated with the virtual network.␊ */␊ ddosProtectionPlan?: (SubResource18 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121367,6 +134430,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121385,6 +134449,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121419,6 +134484,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121483,6 +134549,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121521,6 +134588,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121538,6 +134606,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121555,6 +134627,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121572,6 +134648,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121589,6 +134669,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121609,6 +134693,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (VirtualWanProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121644,6 +134733,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (VpnGatewayProperties2 | string)␊ resources?: VpnGatewaysVpnConnectionsChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121739,6 +134833,10 @@ Generated by [AVA](https://avajs.dev). type: "vpnConnections"␊ apiVersion: "2018-07-01"␊ properties: (VpnConnectionProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121749,6 +134847,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/vpnGateways/vpnConnections"␊ apiVersion: "2018-07-01"␊ properties: (VpnConnectionProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121769,6 +134871,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (VpnSiteProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121846,6 +134953,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121869,6 +134981,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS protection plan.␊ */␊ properties: (DdosProtectionPlanPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -121900,6 +135016,11 @@ Generated by [AVA](https://avajs.dev). sku?: (ExpressRouteCircuitSku6 | string)␊ properties: (ExpressRouteCircuitPropertiesFormat6 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource6 | ExpressRouteCircuitsAuthorizationsChildResource6)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122156,6 +135277,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122241,6 +135363,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-08-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat7 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource4[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122251,6 +135377,10 @@ Generated by [AVA](https://avajs.dev). type: "connections"␊ apiVersion: "2018-08-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122261,6 +135391,10 @@ Generated by [AVA](https://avajs.dev). type: "authorizations"␊ apiVersion: "2018-08-01"␊ properties: (AuthorizationPropertiesFormat7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122282,6 +135416,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (ExpressRouteCrossConnectionProperties4 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource4[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122387,6 +135526,10 @@ Generated by [AVA](https://avajs.dev). type: "peerings"␊ apiVersion: "2018-08-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122422,6 +135565,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122474,6 +135622,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122492,6 +135641,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122534,6 +135684,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource10 | VirtualNetworksSubnetsChildResource13)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122576,6 +135731,7 @@ Generated by [AVA](https://avajs.dev). * The DDoS protection plan associated with the virtual network.␊ */␊ ddosProtectionPlan?: (SubResource19 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122586,6 +135742,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122596,6 +135753,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122614,6 +135772,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122660,6 +135819,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122752,6 +135912,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122784,6 +135945,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122822,6 +135984,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122839,6 +136002,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122856,6 +136023,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122888,6 +136059,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource9[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -122962,6 +136138,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123010,6 +136187,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123038,6 +136216,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123089,6 +136268,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123107,6 +136290,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123137,6 +136321,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123155,6 +136342,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123190,6 +136378,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123208,6 +136400,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123247,6 +136440,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123299,6 +136497,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123316,6 +136517,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123344,6 +136549,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource13[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123454,6 +136664,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123471,6 +136685,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123499,6 +136717,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkInterfacesTapConfigurationsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123545,6 +136768,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123563,6 +136787,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123688,6 +136913,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123716,6 +136945,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource13[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123774,6 +137008,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123791,6 +137027,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -123819,6 +137059,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -124404,6 +137649,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -124721,6 +137968,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -124735,6 +137986,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -124753,6 +138005,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -124763,6 +138018,7 @@ Generated by [AVA](https://avajs.dev). * Lower bound on number of Application Gateway instances␊ */␊ minCapacity: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -124773,6 +138029,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/authorizations"␊ apiVersion: "2018-08-01"␊ properties: (AuthorizationPropertiesFormat7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -124796,6 +138056,11 @@ Generated by [AVA](https://avajs.dev). * ExpressRoutePort properties␊ */␊ properties: (ExpressRoutePortPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -124873,6 +138138,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -124935,6 +138205,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -124959,6 +138231,8 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125111,6 +138385,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125121,6 +138396,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125187,6 +138463,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125229,6 +138513,8 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125278,6 +138564,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125305,6 +138596,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125322,6 +138618,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125339,6 +138639,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125350,6 +138654,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-08-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat7 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource4[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125360,6 +138668,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCrossConnections/peerings"␊ apiVersion: "2018-08-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125377,6 +138689,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125394,6 +138710,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125411,6 +138731,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125428,6 +138752,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125438,6 +138766,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/peerings/connections"␊ apiVersion: "2018-08-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125463,6 +138795,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125486,6 +138823,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS protection plan.␊ */␊ properties: (DdosProtectionPlanPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125517,6 +138858,11 @@ Generated by [AVA](https://avajs.dev). sku?: (ExpressRouteCircuitSku7 | string)␊ properties: (ExpressRouteCircuitPropertiesFormat7 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource7 | ExpressRouteCircuitsAuthorizationsChildResource7)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125773,6 +139119,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125858,6 +139205,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-10-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat8 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125868,6 +139219,10 @@ Generated by [AVA](https://avajs.dev). type: "connections"␊ apiVersion: "2018-10-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125878,6 +139233,10 @@ Generated by [AVA](https://avajs.dev). type: "authorizations"␊ apiVersion: "2018-10-01"␊ properties: (AuthorizationPropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -125899,6 +139258,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (ExpressRouteCrossConnectionProperties5 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126004,6 +139368,10 @@ Generated by [AVA](https://avajs.dev). type: "peerings"␊ apiVersion: "2018-10-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126039,6 +139407,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126091,6 +139464,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126109,6 +139483,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126151,6 +139526,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource11 | VirtualNetworksSubnetsChildResource14)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126193,6 +139573,7 @@ Generated by [AVA](https://avajs.dev). * The DDoS protection plan associated with the virtual network.␊ */␊ ddosProtectionPlan?: (SubResource20 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126203,6 +139584,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126213,6 +139595,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126231,6 +139614,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126277,6 +139661,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126369,6 +139754,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126401,6 +139787,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126439,6 +139826,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126456,6 +139844,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126473,6 +139865,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126505,6 +139901,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource10[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126579,6 +139980,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126627,6 +140029,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126655,6 +140058,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126706,6 +140110,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126724,6 +140132,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126754,6 +140163,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126772,6 +140184,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126807,6 +140220,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126825,6 +140242,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126864,6 +140282,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126916,6 +140339,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126933,6 +140359,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -126961,6 +140391,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource14[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -127071,6 +140506,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -127088,6 +140527,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -127116,6 +140559,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkInterfacesTapConfigurationsChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -127162,6 +140610,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -127180,6 +140629,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -127305,6 +140755,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -127333,6 +140787,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource14[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -127391,6 +140850,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -127408,6 +140869,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -127440,6 +140905,11 @@ Generated by [AVA](https://avajs.dev). * The identity of the application gateway, if configured.␊ */␊ identity?: (ManagedServiceIdentity | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128033,6 +141503,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128425,6 +141897,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion1[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128439,6 +141915,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128457,6 +141934,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128467,6 +141947,7 @@ Generated by [AVA](https://avajs.dev). * Lower bound on number of Application Gateway instances␊ */␊ minCapacity: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128493,6 +141974,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/authorizations"␊ apiVersion: "2018-10-01"␊ properties: (AuthorizationPropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128503,6 +141988,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/peerings/connections"␊ apiVersion: "2018-10-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128528,6 +142017,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128553,6 +142047,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128576,6 +142075,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS protection plan.␊ */␊ properties: (DdosProtectionPlanPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128607,6 +142110,11 @@ Generated by [AVA](https://avajs.dev). sku?: (ExpressRouteCircuitSku8 | string)␊ properties: (ExpressRouteCircuitPropertiesFormat8 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource8 | ExpressRouteCircuitsAuthorizationsChildResource8)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128867,6 +142375,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128952,6 +142461,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-12-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat9 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128962,6 +142475,10 @@ Generated by [AVA](https://avajs.dev). type: "connections"␊ apiVersion: "2018-12-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128972,6 +142489,10 @@ Generated by [AVA](https://avajs.dev). type: "authorizations"␊ apiVersion: "2018-12-01"␊ properties: (AuthorizationPropertiesFormat9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -128993,6 +142514,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (ExpressRouteCrossConnectionProperties6 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129098,6 +142624,10 @@ Generated by [AVA](https://avajs.dev). type: "peerings"␊ apiVersion: "2018-12-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129133,6 +142663,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129189,6 +142724,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129207,6 +142743,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129263,6 +142800,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource12 | VirtualNetworksSubnetsChildResource15)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129305,6 +142847,7 @@ Generated by [AVA](https://avajs.dev). * The DDoS protection plan associated with the virtual network.␊ */␊ ddosProtectionPlan?: (SubResource21 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129315,6 +142858,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129325,6 +142869,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129343,6 +142888,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129389,6 +142935,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129481,6 +143028,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129513,6 +143061,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129551,6 +143100,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129568,6 +143118,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129585,6 +143139,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129617,6 +143175,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource11[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129691,6 +143254,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129739,6 +143303,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129767,6 +143332,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129818,6 +143384,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129836,6 +143406,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129866,6 +143437,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129884,6 +143458,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129919,6 +143494,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129937,6 +143516,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -129976,6 +143556,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -130028,6 +143613,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -130045,6 +143633,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -130073,6 +143665,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource15[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -130183,6 +143780,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -130200,6 +143801,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -130228,6 +143833,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkInterfacesTapConfigurationsChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -130274,6 +143884,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -130292,6 +143903,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -130417,6 +144029,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -130445,6 +144061,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource15[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -130503,6 +144124,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -130520,6 +144143,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -130552,6 +144179,11 @@ Generated by [AVA](https://avajs.dev). * The identity of the application gateway, if configured.␊ */␊ identity?: (ManagedServiceIdentity1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131149,6 +144781,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131571,6 +145205,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion2[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131585,6 +145223,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131603,6 +145242,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131617,6 +145259,7 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway capacity␊ */␊ maxCapacity?: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131643,6 +145286,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/authorizations"␊ apiVersion: "2018-12-01"␊ properties: (AuthorizationPropertiesFormat9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131654,6 +145301,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-12-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat9 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131664,6 +145315,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCrossConnections/peerings"␊ apiVersion: "2018-12-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131681,6 +145336,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131698,6 +145357,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131715,6 +145378,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131732,6 +145399,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131755,6 +145426,11 @@ Generated by [AVA](https://avajs.dev). * ExpressRoutePort properties␊ */␊ properties: (ExpressRoutePortPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131815,6 +145491,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/peerings/connections"␊ apiVersion: "2018-12-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131840,6 +145520,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131863,6 +145548,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS protection plan.␊ */␊ properties: (DdosProtectionPlanPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -131897,6 +145586,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPropertiesFormat9 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource9 | ExpressRouteCircuitsAuthorizationsChildResource9)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132165,6 +145859,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132263,6 +145958,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat10 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132276,6 +145975,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132289,6 +145992,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132313,6 +146020,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCrossConnectionProperties7 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132430,6 +146142,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132465,6 +146181,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132521,6 +146242,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132539,6 +146261,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132595,6 +146318,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource13 | VirtualNetworksSubnetsChildResource16)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132637,6 +146365,7 @@ Generated by [AVA](https://avajs.dev). * The DDoS protection plan associated with the virtual network.␊ */␊ ddosProtectionPlan?: (SubResource22 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132647,6 +146376,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132657,6 +146387,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132675,6 +146406,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132725,6 +146457,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132817,6 +146550,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132849,6 +146583,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132887,6 +146622,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132904,6 +146640,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132921,6 +146661,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -132953,6 +146697,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource12[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133027,6 +146776,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133075,6 +146825,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133103,6 +146854,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133157,6 +146909,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133175,6 +146931,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133205,6 +146962,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133223,6 +146983,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133261,6 +147022,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133279,6 +147044,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133321,6 +147087,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133373,6 +147144,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133390,6 +147164,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133418,6 +147196,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource16[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133528,6 +147311,10 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133545,6 +147332,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133573,6 +147364,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkInterfacesTapConfigurationsChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133619,6 +147415,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133637,6 +147434,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133762,6 +147560,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133790,6 +147592,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource16[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133848,6 +147655,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133865,6 +147674,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -133900,6 +147713,11 @@ Generated by [AVA](https://avajs.dev). * The identity of the application gateway, if configured.␊ */␊ identity?: (ManagedServiceIdentity2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -134524,6 +148342,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -134964,6 +148784,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion3[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -134978,6 +148802,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -134996,6 +148821,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135010,6 +148838,7 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway capacity␊ */␊ maxCapacity?: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135039,6 +148868,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135062,6 +148895,11 @@ Generated by [AVA](https://avajs.dev). * ExpressRoutePort properties␊ */␊ properties: (ExpressRoutePortPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135139,6 +148977,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135193,6 +149036,10 @@ Generated by [AVA](https://avajs.dev). * Type of Actions.␊ */␊ action: (("Allow" | "Block" | "Log") | string)␊ + priority: unknown␊ + ruleType: unknown␊ + matchConditions: unknown␊ + action: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135219,6 +149066,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms␊ */␊ transforms?: (("Lowercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls" | "HtmlEntityDecode")[] | string)␊ + matchVariables: unknown␊ + operator: unknown␊ + matchValues: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135233,6 +149083,7 @@ Generated by [AVA](https://avajs.dev). * Describes field of the matchVariable collection␊ */␊ selector?: string␊ + variableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135247,6 +149098,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat10 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135260,6 +149115,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135277,6 +149136,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135294,6 +149157,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135311,6 +149178,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135328,6 +149199,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135341,6 +149216,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135372,6 +149251,11 @@ Generated by [AVA](https://avajs.dev). * The identity of the application gateway, if configured.␊ */␊ identity?: (ManagedServiceIdentity3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135544,6 +149428,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -135886,6 +149771,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136270,6 +150157,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion4[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136284,6 +150175,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136302,6 +150194,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136316,6 +150211,7 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway capacity.␊ */␊ maxCapacity?: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136355,6 +150251,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the web application firewall policy.␊ */␊ properties: (WebApplicationFirewallPolicyPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136409,6 +150310,10 @@ Generated by [AVA](https://avajs.dev). * Type of Actions.␊ */␊ action: (("Allow" | "Block" | "Log") | string)␊ + priority: unknown␊ + ruleType: unknown␊ + matchConditions: unknown␊ + action: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136435,6 +150340,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms.␊ */␊ transforms?: (("Lowercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls" | "HtmlEntityDecode")[] | string)␊ + matchVariables: unknown␊ + operator: unknown␊ + matchValues: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136449,6 +150357,7 @@ Generated by [AVA](https://avajs.dev). * Describes field of the matchVariable collection.␊ */␊ selector?: string␊ + variableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136472,6 +150381,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the application security group.␊ */␊ properties: (ApplicationSecurityGroupPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136505,6 +150419,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136810,6 +150729,11 @@ Generated by [AVA](https://avajs.dev). * Represents the bastion host resource.␊ */␊ properties: (BastionHostPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136856,6 +150780,8 @@ Generated by [AVA](https://avajs.dev). * Private IP allocation method.␊ */␊ privateIPAllocationMethod?: (("Static" | "Dynamic") | string)␊ + subnet: unknown␊ + publicIPAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136879,6 +150805,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway connection.␊ */␊ properties: (VirtualNetworkGatewayConnectionPropertiesFormat13 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136937,6 +150868,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding.␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136975,6 +150908,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Group used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -136998,6 +150939,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS custom policy.␊ */␊ properties: (DdosCustomPolicyPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137053,6 +150999,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS protection plan.␊ */␊ properties: (DdosProtectionPlanPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137087,6 +151037,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPropertiesFormat10 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource10 | ExpressRouteCircuitsAuthorizationsChildResource10)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137341,6 +151296,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat11 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource8[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137354,6 +151313,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137389,6 +151352,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137402,6 +151369,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137416,6 +151387,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat11 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource8[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137429,6 +151404,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137453,6 +151432,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCrossConnectionProperties8 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource8[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137556,6 +151540,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137569,6 +151557,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137593,6 +151585,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteGatewayProperties | string)␊ resources?: ExpressRouteGatewaysExpressRouteConnectionsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137607,6 +151604,7 @@ Generated by [AVA](https://avajs.dev). * The Virtual Hub where the ExpressRoute gateway is or will be deployed.␊ */␊ virtualHub: (SubResource23 | string)␊ + virtualHub: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137644,6 +151642,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137662,6 +151664,7 @@ Generated by [AVA](https://avajs.dev). * The routing weight associated to the connection.␊ */␊ routingWeight?: (number | string)␊ + expressRouteCircuitPeering: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137675,6 +151678,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137698,6 +151705,11 @@ Generated by [AVA](https://avajs.dev). * ExpressRoutePort properties.␊ */␊ properties: (ExpressRoutePortPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137772,6 +151784,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoadBalancerPropertiesFormat17 | string)␊ resources?: LoadBalancersInboundNatRulesChildResource13[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137834,6 +151851,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137878,6 +151896,7 @@ Generated by [AVA](https://avajs.dev). * Gets name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137898,6 +151917,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137948,6 +151968,10 @@ Generated by [AVA](https://avajs.dev). * Configures SNAT for the VMs in the backend pool to use the publicIP address specified in the frontend of the load balancing rule.␊ */␊ disableOutboundSnat?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137962,6 +151986,7 @@ Generated by [AVA](https://avajs.dev). * Gets name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -137988,6 +152013,9 @@ Generated by [AVA](https://avajs.dev). * The URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value.␊ */␊ requestPath?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138002,6 +152030,7 @@ Generated by [AVA](https://avajs.dev). * Gets name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138036,6 +152065,10 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138050,6 +152083,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138088,6 +152122,11 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138132,6 +152171,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138145,6 +152187,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138158,6 +152204,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138181,6 +152231,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the local network gateway.␊ */␊ properties: (LocalNetworkGatewayPropertiesFormat13 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138209,6 +152264,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138258,6 +152314,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the zone in which Nat Gateway should be deployed.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138310,6 +152371,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkInterfacePropertiesFormat17 | string)␊ resources?: NetworkInterfacesTapConfigurationsChildResource4[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138336,6 +152402,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether IP forwarding is enabled on this network interface.␊ */␊ enableIPForwarding?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138350,6 +152417,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138427,6 +152495,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138450,6 +152522,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138473,6 +152549,11 @@ Generated by [AVA](https://avajs.dev). * Network profile properties.␊ */␊ properties: (NetworkProfilePropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138559,6 +152640,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkSecurityGroupPropertiesFormat17 | string)␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource17[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138649,6 +152735,10 @@ Generated by [AVA](https://avajs.dev). * The direction of the rule. The direction specifies if rule will be evaluated on incoming or outgoing traffic.␊ */␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138662,6 +152752,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138675,6 +152769,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138699,6 +152797,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkWatcherPropertiesFormat | string)␊ resources?: (NetworkWatchersConnectionMonitorsChildResource3 | NetworkWatchersPacketCapturesChildResource3)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138728,6 +152831,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the connection monitor.␊ */␊ properties: (ConnectionMonitorParameters3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138750,6 +152857,8 @@ Generated by [AVA](https://avajs.dev). * Monitoring interval in seconds.␊ */␊ monitoringIntervalInSeconds?: ((number & string) | string)␊ + source: unknown␊ + destination: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138764,6 +152873,7 @@ Generated by [AVA](https://avajs.dev). * The source port used by connection monitor.␊ */␊ port?: (number | string)␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138795,6 +152905,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138825,6 +152939,8 @@ Generated by [AVA](https://avajs.dev). * A list of packet capture filters.␊ */␊ filters?: (PacketCaptureFilter3[] | string)␊ + target: unknown␊ + storageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138892,6 +153008,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the connection monitor.␊ */␊ properties: (ConnectionMonitorParameters3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138905,6 +153025,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138928,6 +153052,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnGateway.␊ */␊ properties: (P2SVpnGatewayProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -138977,6 +153106,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the private endpoint.␊ */␊ properties: (PrivateEndpointProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139073,6 +153207,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkServiceProperties | string)␊ resources?: PrivateLinkServicesPrivateEndpointConnectionsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139172,6 +153311,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139195,6 +153338,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139226,6 +153373,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139274,6 +153426,7 @@ Generated by [AVA](https://avajs.dev). * The idle timeout of the public IP address.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139292,6 +153445,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN.␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139351,6 +153505,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139403,6 +153562,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteFilterPropertiesFormat3 | string)␊ resources?: RouteFiltersRouteFilterRulesChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139449,6 +153613,9 @@ Generated by [AVA](https://avajs.dev). * The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].␊ */␊ communities: (string[] | string)␊ + access: unknown␊ + routeFilterRuleType: unknown␊ + communities: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139466,6 +153633,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139483,6 +153654,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139507,6 +153682,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteTablePropertiesFormat17 | string)␊ resources?: RouteTablesRoutesChildResource17[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139553,6 +153733,8 @@ Generated by [AVA](https://avajs.dev). * The IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.␊ */␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139566,6 +153748,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139579,6 +153765,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139603,6 +153793,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServiceEndpointPolicyPropertiesFormat1 | string)␊ resources?: ServiceEndpointPoliciesServiceEndpointPolicyDefinitionsChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139658,6 +153853,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139671,6 +153870,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139694,6 +153897,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub.␊ */␊ properties: (VirtualHubProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139811,6 +154019,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway.␊ */␊ properties: (VirtualNetworkGatewayPropertiesFormat13 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139963,6 +154176,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -139973,6 +154187,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140021,6 +154236,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkPropertiesFormat17 | string)␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource14 | VirtualNetworksSubnetsChildResource17)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140055,6 +154275,7 @@ Generated by [AVA](https://avajs.dev). * The DDoS protection plan associated with the virtual network.␊ */␊ ddosProtectionPlan?: (SubResource23 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140065,6 +154286,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140079,6 +154301,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140125,6 +154348,7 @@ Generated by [AVA](https://avajs.dev). * Enable or Disable private link service on the subnet.␊ */␊ privateLinkServiceNetworkPolicies?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140153,6 +154377,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a subnet. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140177,6 +154402,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140211,6 +154437,7 @@ Generated by [AVA](https://avajs.dev). * The status of the virtual network peering.␊ */␊ peeringState?: (("Initiated" | "Connected" | "Disconnected") | string)␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140224,6 +154451,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140237,6 +154468,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140250,6 +154485,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140263,6 +154502,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140286,6 +154529,11 @@ Generated by [AVA](https://avajs.dev). * Virtual Network Tap Properties.␊ */␊ properties: (VirtualNetworkTapPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140328,6 +154576,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualWanProperties3 | string)␊ resources?: VirtualWansP2SVpnServerConfigurationsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140428,6 +154681,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140438,6 +154692,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140476,6 +154731,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140486,6 +154742,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140523,6 +154780,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnServer configuration.␊ */␊ properties: (P2SVpnServerConfigurationProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140536,6 +154797,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnServer configuration.␊ */␊ properties: (P2SVpnServerConfigurationProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140560,6 +154825,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VpnGatewayProperties3 | string)␊ resources?: VpnGatewaysVpnConnectionsChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140663,6 +154933,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140676,6 +154950,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140699,6 +154977,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN site.␊ */␊ properties: (VpnSiteProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140782,6 +155065,11 @@ Generated by [AVA](https://avajs.dev). * The identity of the application gateway, if configured.␊ */␊ identity?: (ManagedServiceIdentity4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -140954,6 +155242,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -141296,6 +155585,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -141680,6 +155971,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion5[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -141694,6 +155989,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -141712,6 +156008,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -141726,6 +156025,7 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway capacity.␊ */␊ maxCapacity?: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -141765,6 +156065,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the web application firewall policy.␊ */␊ properties: (WebApplicationFirewallPolicyPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -141819,6 +156124,10 @@ Generated by [AVA](https://avajs.dev). * Type of Actions.␊ */␊ action: (("Allow" | "Block" | "Log") | string)␊ + priority: unknown␊ + ruleType: unknown␊ + matchConditions: unknown␊ + action: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -141845,6 +156154,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms.␊ */␊ transforms?: (("Lowercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls" | "HtmlEntityDecode")[] | string)␊ + matchVariables: unknown␊ + operator: unknown␊ + matchValues: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -141859,6 +156171,7 @@ Generated by [AVA](https://avajs.dev). * Describes field of the matchVariable collection.␊ */␊ selector?: string␊ + variableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -141882,6 +156195,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the application security group.␊ */␊ properties: (ApplicationSecurityGroupPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -141915,6 +156233,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142228,6 +156551,11 @@ Generated by [AVA](https://avajs.dev). * Represents the bastion host resource.␊ */␊ properties: (BastionHostPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142274,6 +156602,8 @@ Generated by [AVA](https://avajs.dev). * Private IP allocation method.␊ */␊ privateIPAllocationMethod?: (("Static" | "Dynamic") | string)␊ + subnet: unknown␊ + publicIPAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142297,6 +156627,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway connection.␊ */␊ properties: (VirtualNetworkGatewayConnectionPropertiesFormat14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142355,6 +156690,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding.␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142393,6 +156730,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Group used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142416,6 +156761,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS custom policy.␊ */␊ properties: (DdosCustomPolicyPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142471,6 +156821,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS protection plan.␊ */␊ properties: (DdosProtectionPlanPropertiesFormat6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142505,6 +156859,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPropertiesFormat11 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource11 | ExpressRouteCircuitsAuthorizationsChildResource11)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142759,6 +157118,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat12 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource9[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142772,6 +157135,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142807,6 +157174,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142820,6 +157191,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142834,6 +157209,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat12 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource9[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142847,6 +157226,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142871,6 +157254,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCrossConnectionProperties9 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource9[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142974,6 +157362,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -142987,6 +157379,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143011,6 +157407,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteGatewayProperties1 | string)␊ resources?: ExpressRouteGatewaysExpressRouteConnectionsChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143025,6 +157426,7 @@ Generated by [AVA](https://avajs.dev). * The Virtual Hub where the ExpressRoute gateway is or will be deployed.␊ */␊ virtualHub: (SubResource24 | string)␊ + virtualHub: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143062,6 +157464,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143080,6 +157486,7 @@ Generated by [AVA](https://avajs.dev). * The routing weight associated to the connection.␊ */␊ routingWeight?: (number | string)␊ + expressRouteCircuitPeering: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143093,6 +157500,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143116,6 +157527,11 @@ Generated by [AVA](https://avajs.dev). * ExpressRoutePort properties.␊ */␊ properties: (ExpressRoutePortPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143186,6 +157602,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallPolicyPropertiesFormat | string)␊ resources?: FirewallPoliciesRuleGroupsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143213,6 +157634,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143274,6 +157699,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143302,6 +157731,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoadBalancerPropertiesFormat18 | string)␊ resources?: LoadBalancersInboundNatRulesChildResource14[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143364,6 +157798,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143408,6 +157843,7 @@ Generated by [AVA](https://avajs.dev). * Gets name of the resource that is unique within the set of backend address pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143428,6 +157864,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of load balancing rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143478,6 +157915,10 @@ Generated by [AVA](https://avajs.dev). * Configures SNAT for the VMs in the backend pool to use the publicIP address specified in the frontend of the load balancing rule.␊ */␊ disableOutboundSnat?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143492,6 +157933,7 @@ Generated by [AVA](https://avajs.dev). * Gets name of the resource that is unique within the set of probes used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143518,6 +157960,9 @@ Generated by [AVA](https://avajs.dev). * The URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value.␊ */␊ requestPath?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143532,6 +157977,7 @@ Generated by [AVA](https://avajs.dev). * Gets name of the resource that is unique within the set of inbound NAT rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143566,6 +158012,10 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143580,6 +158030,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143618,6 +158069,11 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143662,6 +158118,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143675,6 +158134,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143688,6 +158151,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143711,6 +158178,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the local network gateway.␊ */␊ properties: (LocalNetworkGatewayPropertiesFormat14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143739,6 +158211,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143788,6 +158261,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the zone in which Nat Gateway should be deployed.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143840,6 +158318,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkInterfacePropertiesFormat18 | string)␊ resources?: NetworkInterfacesTapConfigurationsChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143866,6 +158349,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether IP forwarding is enabled on this network interface.␊ */␊ enableIPForwarding?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143880,6 +158364,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143957,6 +158442,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -143980,6 +158469,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144003,6 +158496,11 @@ Generated by [AVA](https://avajs.dev). * Network profile properties.␊ */␊ properties: (NetworkProfilePropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144089,6 +158587,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkSecurityGroupPropertiesFormat18 | string)␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource18[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144179,6 +158682,10 @@ Generated by [AVA](https://avajs.dev). * The direction of the rule. The direction specifies if rule will be evaluated on incoming or outgoing traffic.␊ */␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144192,6 +158699,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144205,6 +158716,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144229,6 +158744,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkWatcherPropertiesFormat1 | string)␊ resources?: (NetworkWatchersConnectionMonitorsChildResource4 | NetworkWatchersPacketCapturesChildResource4)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144258,6 +158778,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the connection monitor.␊ */␊ properties: (ConnectionMonitorParameters4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144280,6 +158804,8 @@ Generated by [AVA](https://avajs.dev). * Monitoring interval in seconds.␊ */␊ monitoringIntervalInSeconds?: ((number & string) | string)␊ + source: unknown␊ + destination: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144294,6 +158820,7 @@ Generated by [AVA](https://avajs.dev). * The source port used by connection monitor.␊ */␊ port?: (number | string)␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144325,6 +158852,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144355,6 +158886,8 @@ Generated by [AVA](https://avajs.dev). * A list of packet capture filters.␊ */␊ filters?: (PacketCaptureFilter4[] | string)␊ + target: unknown␊ + storageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144422,6 +158955,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the connection monitor.␊ */␊ properties: (ConnectionMonitorParameters4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144435,6 +158972,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144458,6 +158999,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnGateway.␊ */␊ properties: (P2SVpnGatewayProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144507,6 +159053,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the private endpoint.␊ */␊ properties: (PrivateEndpointProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144603,6 +159154,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkServiceProperties1 | string)␊ resources?: PrivateLinkServicesPrivateEndpointConnectionsChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144702,6 +159258,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144725,6 +159285,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144756,6 +159320,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144804,6 +159373,7 @@ Generated by [AVA](https://avajs.dev). * The idle timeout of the public IP address.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144822,6 +159392,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN.␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144881,6 +159452,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144933,6 +159509,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteFilterPropertiesFormat4 | string)␊ resources?: RouteFiltersRouteFilterRulesChildResource4[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144979,6 +159560,9 @@ Generated by [AVA](https://avajs.dev). * The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].␊ */␊ communities: (string[] | string)␊ + access: unknown␊ + routeFilterRuleType: unknown␊ + communities: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -144996,6 +159580,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145013,6 +159601,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145037,6 +159629,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteTablePropertiesFormat18 | string)␊ resources?: RouteTablesRoutesChildResource18[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145083,6 +159680,8 @@ Generated by [AVA](https://avajs.dev). * The IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.␊ */␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145096,6 +159695,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145109,6 +159712,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145133,6 +159740,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServiceEndpointPolicyPropertiesFormat2 | string)␊ resources?: ServiceEndpointPoliciesServiceEndpointPolicyDefinitionsChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145188,6 +159800,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145201,6 +159817,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145224,6 +159844,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub.␊ */␊ properties: (VirtualHubProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145341,6 +159966,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway.␊ */␊ properties: (VirtualNetworkGatewayPropertiesFormat14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145493,6 +160123,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145503,6 +160134,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145551,6 +160183,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkPropertiesFormat18 | string)␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource15 | VirtualNetworksSubnetsChildResource18)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145585,6 +160222,7 @@ Generated by [AVA](https://avajs.dev). * The DDoS protection plan associated with the virtual network.␊ */␊ ddosProtectionPlan?: (SubResource24 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145595,6 +160233,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145609,6 +160248,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145655,6 +160295,7 @@ Generated by [AVA](https://avajs.dev). * Enable or Disable apply network policies on private link service in the subnet.␊ */␊ privateLinkServiceNetworkPolicies?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145683,6 +160324,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a subnet. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145707,6 +160349,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145741,6 +160384,7 @@ Generated by [AVA](https://avajs.dev). * The status of the virtual network peering.␊ */␊ peeringState?: (("Initiated" | "Connected" | "Disconnected") | string)␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145754,6 +160398,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat15 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145767,6 +160415,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145780,6 +160432,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145793,6 +160449,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat15 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145816,6 +160476,11 @@ Generated by [AVA](https://avajs.dev). * Virtual Network Tap Properties.␊ */␊ properties: (VirtualNetworkTapPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145858,6 +160523,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualWanProperties4 | string)␊ resources?: VirtualWansP2SVpnServerConfigurationsChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145958,6 +160628,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -145968,6 +160639,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -146006,6 +160678,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -146016,6 +160689,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -146053,6 +160727,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnServer configuration.␊ */␊ properties: (P2SVpnServerConfigurationProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -146066,6 +160744,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnServer configuration.␊ */␊ properties: (P2SVpnServerConfigurationProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -146090,6 +160772,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VpnGatewayProperties4 | string)␊ resources?: VpnGatewaysVpnConnectionsChildResource4[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -146261,6 +160948,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -146274,6 +160965,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -146297,6 +160992,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN site.␊ */␊ properties: (VpnSiteProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -146444,6 +161144,11 @@ Generated by [AVA](https://avajs.dev). * The identity of the application gateway, if configured.␊ */␊ identity?: (ManagedServiceIdentity5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -146616,6 +161321,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -146958,6 +161664,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -147346,6 +162054,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion6[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -147360,6 +162072,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -147378,6 +162091,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -147392,6 +162108,7 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway capacity.␊ */␊ maxCapacity?: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -147431,6 +162148,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the web application firewall policy.␊ */␊ properties: (WebApplicationFirewallPolicyPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -147485,6 +162207,10 @@ Generated by [AVA](https://avajs.dev). * Type of Actions.␊ */␊ action: (("Allow" | "Block" | "Log") | string)␊ + priority: unknown␊ + ruleType: unknown␊ + matchConditions: unknown␊ + action: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -147511,6 +162237,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms.␊ */␊ transforms?: (("Lowercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls" | "HtmlEntityDecode")[] | string)␊ + matchVariables: unknown␊ + operator: unknown␊ + matchValues: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -147525,6 +162254,7 @@ Generated by [AVA](https://avajs.dev). * Describes field of the matchVariable collection.␊ */␊ selector?: string␊ + variableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -147548,6 +162278,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the application security group.␊ */␊ properties: (ApplicationSecurityGroupPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -147581,6 +162316,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -147894,6 +162634,11 @@ Generated by [AVA](https://avajs.dev). * Represents the bastion host resource.␊ */␊ properties: (BastionHostPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -147940,6 +162685,8 @@ Generated by [AVA](https://avajs.dev). * Private IP allocation method.␊ */␊ privateIPAllocationMethod?: (("Static" | "Dynamic") | string)␊ + subnet: unknown␊ + publicIPAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -147963,6 +162710,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway connection.␊ */␊ properties: (VirtualNetworkGatewayConnectionPropertiesFormat15 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148025,6 +162777,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding.␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148063,6 +162817,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Group used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148077,6 +162839,8 @@ Generated by [AVA](https://avajs.dev). * A collection of remote address spaces in CIDR format␊ */␊ remoteAddressRanges: (string[] | string)␊ + localAddressRanges: unknown␊ + remoteAddressRanges: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148100,6 +162864,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS custom policy.␊ */␊ properties: (DdosCustomPolicyPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148155,6 +162924,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS protection plan.␊ */␊ properties: (DdosProtectionPlanPropertiesFormat7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148189,6 +162962,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPropertiesFormat12 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource12 | ExpressRouteCircuitsAuthorizationsChildResource12)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148443,6 +163221,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat13 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource10[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148456,6 +163238,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148491,6 +163277,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat13 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148504,6 +163294,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat13 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148518,6 +163312,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat13 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource10[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148531,6 +163329,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148555,6 +163357,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCrossConnectionProperties10 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource10[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148658,6 +163465,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148671,6 +163482,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148695,6 +163510,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteGatewayProperties2 | string)␊ resources?: ExpressRouteGatewaysExpressRouteConnectionsChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148709,6 +163529,7 @@ Generated by [AVA](https://avajs.dev). * The Virtual Hub where the ExpressRoute gateway is or will be deployed.␊ */␊ virtualHub: (SubResource25 | string)␊ + virtualHub: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148746,6 +163567,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148764,6 +163589,7 @@ Generated by [AVA](https://avajs.dev). * The routing weight associated to the connection.␊ */␊ routingWeight?: (number | string)␊ + expressRouteCircuitPeering: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148777,6 +163603,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148804,6 +163634,11 @@ Generated by [AVA](https://avajs.dev). * The identity of ExpressRoutePort, if configured.␊ */␊ identity?: (ManagedServiceIdentity5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148896,6 +163731,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallPolicyPropertiesFormat1 | string)␊ resources?: FirewallPoliciesRuleGroupsChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148923,6 +163763,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -148984,6 +163828,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149012,6 +163860,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoadBalancerPropertiesFormat19 | string)␊ resources?: LoadBalancersInboundNatRulesChildResource15[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149074,6 +163927,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149118,6 +163972,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of backend address pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149138,6 +163993,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of load balancing rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149188,6 +164044,10 @@ Generated by [AVA](https://avajs.dev). * Configures SNAT for the VMs in the backend pool to use the publicIP address specified in the frontend of the load balancing rule.␊ */␊ disableOutboundSnat?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149202,6 +164062,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of probes used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149228,6 +164089,9 @@ Generated by [AVA](https://avajs.dev). * The URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value.␊ */␊ requestPath?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149242,6 +164106,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149276,6 +164141,10 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149290,6 +164159,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149328,6 +164198,11 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149372,6 +164247,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149385,6 +164263,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat19 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149398,6 +164280,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat19 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149421,6 +164307,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the local network gateway.␊ */␊ properties: (LocalNetworkGatewayPropertiesFormat15 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149449,6 +164340,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149498,6 +164390,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the zone in which Nat Gateway should be deployed.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149550,6 +164447,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkInterfacePropertiesFormat19 | string)␊ resources?: NetworkInterfacesTapConfigurationsChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149576,6 +164478,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether IP forwarding is enabled on this network interface.␊ */␊ enableIPForwarding?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149590,6 +164493,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149667,6 +164571,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149690,6 +164598,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149713,6 +164625,11 @@ Generated by [AVA](https://avajs.dev). * Network profile properties.␊ */␊ properties: (NetworkProfilePropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149799,6 +164716,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkSecurityGroupPropertiesFormat19 | string)␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource19[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149889,6 +164811,10 @@ Generated by [AVA](https://avajs.dev). * The direction of the rule. The direction specifies if rule will be evaluated on incoming or outgoing traffic.␊ */␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149902,6 +164828,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat19 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149915,6 +164845,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat19 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149939,6 +164873,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkWatcherPropertiesFormat2 | string)␊ resources?: NetworkWatchersPacketCapturesChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149958,6 +164897,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -149988,6 +164931,8 @@ Generated by [AVA](https://avajs.dev). * A list of packet capture filters.␊ */␊ filters?: (PacketCaptureFilter5[] | string)␊ + target: unknown␊ + storageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150045,6 +164990,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150068,6 +165017,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnGateway.␊ */␊ properties: (P2SVpnGatewayProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150117,6 +165071,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the private endpoint.␊ */␊ properties: (PrivateEndpointProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150213,6 +165172,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkServiceProperties2 | string)␊ resources?: PrivateLinkServicesPrivateEndpointConnectionsChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150312,6 +165276,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150335,6 +165303,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150366,6 +165338,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150414,6 +165391,7 @@ Generated by [AVA](https://avajs.dev). * The idle timeout of the public IP address.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150432,6 +165410,7 @@ Generated by [AVA](https://avajs.dev). * The reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN.␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150491,6 +165470,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150543,6 +165527,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteFilterPropertiesFormat5 | string)␊ resources?: RouteFiltersRouteFilterRulesChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150589,6 +165578,9 @@ Generated by [AVA](https://avajs.dev). * The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].␊ */␊ communities: (string[] | string)␊ + access: unknown␊ + routeFilterRuleType: unknown␊ + communities: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150606,6 +165598,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150623,6 +165619,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150647,6 +165647,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteTablePropertiesFormat19 | string)␊ resources?: RouteTablesRoutesChildResource19[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150693,6 +165698,8 @@ Generated by [AVA](https://avajs.dev). * The IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.␊ */␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150706,6 +165713,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat19 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150719,6 +165730,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat19 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150743,6 +165758,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServiceEndpointPolicyPropertiesFormat3 | string)␊ resources?: ServiceEndpointPoliciesServiceEndpointPolicyDefinitionsChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150798,6 +165818,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150811,6 +165835,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150834,6 +165862,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub.␊ */␊ properties: (VirtualHubProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -150951,6 +165984,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway.␊ */␊ properties: (VirtualNetworkGatewayPropertiesFormat15 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151107,6 +166145,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151117,6 +166156,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151165,6 +166205,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkPropertiesFormat19 | string)␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource16 | VirtualNetworksSubnetsChildResource19)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151199,6 +166244,7 @@ Generated by [AVA](https://avajs.dev). * The DDoS protection plan associated with the virtual network.␊ */␊ ddosProtectionPlan?: (SubResource25 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151209,6 +166255,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151223,6 +166270,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151269,6 +166317,7 @@ Generated by [AVA](https://avajs.dev). * Enable or Disable apply network policies on private link service in the subnet.␊ */␊ privateLinkServiceNetworkPolicies?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151297,6 +166346,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a subnet. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151321,6 +166371,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151355,6 +166406,7 @@ Generated by [AVA](https://avajs.dev). * The status of the virtual network peering.␊ */␊ peeringState?: (("Initiated" | "Connected" | "Disconnected") | string)␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151368,6 +166420,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat16 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151381,6 +166437,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat19 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151394,6 +166454,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat19 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151407,6 +166471,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat16 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151430,6 +166498,11 @@ Generated by [AVA](https://avajs.dev). * Virtual Network Tap Properties.␊ */␊ properties: (VirtualNetworkTapPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151472,6 +166545,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualRouterPropertiesFormat | string)␊ resources?: VirtualRoutersPeeringsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151507,6 +166585,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151534,6 +166616,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151558,6 +166644,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualWanProperties5 | string)␊ resources?: VirtualWansP2SVpnServerConfigurationsChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151658,6 +166749,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151668,6 +166760,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151706,6 +166799,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151716,6 +166810,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151753,6 +166848,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnServer configuration.␊ */␊ properties: (P2SVpnServerConfigurationProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151766,6 +166865,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnServer configuration.␊ */␊ properties: (P2SVpnServerConfigurationProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151790,6 +166893,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VpnGatewayProperties5 | string)␊ resources?: VpnGatewaysVpnConnectionsChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151961,6 +167069,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151974,6 +167086,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -151997,6 +167113,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN site.␊ */␊ properties: (VpnSiteProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -152144,6 +167265,11 @@ Generated by [AVA](https://avajs.dev). * The identity of the application gateway, if configured.␊ */␊ identity?: (ManagedServiceIdentity6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -152316,6 +167442,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -152658,6 +167785,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153046,6 +168175,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion7[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153060,6 +168193,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153078,6 +168212,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153092,6 +168229,7 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway capacity.␊ */␊ maxCapacity?: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153131,6 +168269,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the web application firewall policy.␊ */␊ properties: (WebApplicationFirewallPolicyPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153149,6 +168292,7 @@ Generated by [AVA](https://avajs.dev). * Describes the managedRules structure␊ */␊ managedRules: (ManagedRulesDefinition | string)␊ + managedRules: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153201,6 +168345,10 @@ Generated by [AVA](https://avajs.dev). * Type of Actions.␊ */␊ action: (("Allow" | "Block" | "Log") | string)␊ + priority: unknown␊ + ruleType: unknown␊ + matchConditions: unknown␊ + action: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153227,6 +168375,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms.␊ */␊ transforms?: (("Lowercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls" | "HtmlEntityDecode")[] | string)␊ + matchVariables: unknown␊ + operator: unknown␊ + matchValues: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153241,6 +168392,7 @@ Generated by [AVA](https://avajs.dev). * Describes field of the matchVariable collection.␊ */␊ selector?: string␊ + variableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153255,6 +168407,7 @@ Generated by [AVA](https://avajs.dev). * Describes the ruleSets that are associated with the policy.␊ */␊ managedRuleSets: (ManagedRuleSet2[] | string)␊ + managedRuleSets: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153273,6 +168426,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153291,6 +168447,8 @@ Generated by [AVA](https://avajs.dev). * Defines the rule group overrides to apply to the rule set.␊ */␊ ruleGroupOverrides?: (ManagedRuleGroupOverride2[] | string)␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153305,6 +168463,7 @@ Generated by [AVA](https://avajs.dev). * List of rules that will be disabled. If none specified, all rules in the group will be disabled.␊ */␊ rules?: (ManagedRuleOverride2[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153319,6 +168478,7 @@ Generated by [AVA](https://avajs.dev). * Describes the state of the managed rule. Defaults to Disabled if not specified.␊ */␊ state?: ("Disabled" | string)␊ + ruleId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153342,6 +168502,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the application security group.␊ */␊ properties: (ApplicationSecurityGroupPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153375,6 +168540,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153706,6 +168876,11 @@ Generated by [AVA](https://avajs.dev). * Represents the bastion host resource.␊ */␊ properties: (BastionHostPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153752,6 +168927,8 @@ Generated by [AVA](https://avajs.dev). * Private IP allocation method.␊ */␊ privateIPAllocationMethod?: (("Static" | "Dynamic") | string)␊ + subnet: unknown␊ + publicIPAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153775,6 +168952,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway connection.␊ */␊ properties: (VirtualNetworkGatewayConnectionPropertiesFormat16 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153837,6 +169019,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding.␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153875,6 +169059,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Group used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153889,6 +169081,8 @@ Generated by [AVA](https://avajs.dev). * A collection of remote address spaces in CIDR format␊ */␊ remoteAddressRanges: (string[] | string)␊ + localAddressRanges: unknown␊ + remoteAddressRanges: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153912,6 +169106,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS custom policy.␊ */␊ properties: (DdosCustomPolicyPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -153967,6 +169166,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS protection plan.␊ */␊ properties: (DdosProtectionPlanPropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154001,6 +169204,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPropertiesFormat13 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource13 | ExpressRouteCircuitsAuthorizationsChildResource13)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154255,6 +169463,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat14 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource11[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154268,6 +169480,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154303,6 +169519,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154316,6 +169536,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154330,6 +169554,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat14 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource11[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154343,6 +169571,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154367,6 +169599,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCrossConnectionProperties11 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource11[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154470,6 +169707,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154483,6 +169724,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154507,6 +169752,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteGatewayProperties3 | string)␊ resources?: ExpressRouteGatewaysExpressRouteConnectionsChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154521,6 +169771,7 @@ Generated by [AVA](https://avajs.dev). * The Virtual Hub where the ExpressRoute gateway is or will be deployed.␊ */␊ virtualHub: (SubResource26 | string)␊ + virtualHub: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154558,6 +169809,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154576,6 +169831,7 @@ Generated by [AVA](https://avajs.dev). * The routing weight associated to the connection.␊ */␊ routingWeight?: (number | string)␊ + expressRouteCircuitPeering: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154589,6 +169845,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154616,6 +169876,11 @@ Generated by [AVA](https://avajs.dev). * The identity of ExpressRoutePort, if configured.␊ */␊ identity?: (ManagedServiceIdentity6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154708,6 +169973,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallPolicyPropertiesFormat2 | string)␊ resources?: FirewallPoliciesRuleGroupsChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154735,6 +170005,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154796,6 +170070,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154824,6 +170102,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoadBalancerPropertiesFormat20 | string)␊ resources?: LoadBalancersInboundNatRulesChildResource16[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154886,6 +170169,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154930,6 +170214,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of backend address pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -154950,6 +170235,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of load balancing rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155000,6 +170286,10 @@ Generated by [AVA](https://avajs.dev). * Configures SNAT for the VMs in the backend pool to use the publicIP address specified in the frontend of the load balancing rule.␊ */␊ disableOutboundSnat?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155014,6 +170304,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of probes used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155040,6 +170331,9 @@ Generated by [AVA](https://avajs.dev). * The URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value.␊ */␊ requestPath?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155054,6 +170348,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155088,6 +170383,10 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155102,6 +170401,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155140,6 +170440,11 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155184,6 +170489,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155197,6 +170505,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat20 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155210,6 +170522,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat20 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155233,6 +170549,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the local network gateway.␊ */␊ properties: (LocalNetworkGatewayPropertiesFormat16 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155261,6 +170582,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155310,6 +170632,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the zone in which Nat Gateway should be deployed.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155362,6 +170689,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkInterfacePropertiesFormat20 | string)␊ resources?: NetworkInterfacesTapConfigurationsChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155388,6 +170720,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether IP forwarding is enabled on this network interface.␊ */␊ enableIPForwarding?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155402,6 +170735,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155479,6 +170813,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155502,6 +170840,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155525,6 +170867,11 @@ Generated by [AVA](https://avajs.dev). * Network profile properties.␊ */␊ properties: (NetworkProfilePropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155611,6 +170958,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkSecurityGroupPropertiesFormat20 | string)␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource20[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155701,6 +171053,10 @@ Generated by [AVA](https://avajs.dev). * The direction of the rule. The direction specifies if rule will be evaluated on incoming or outgoing traffic.␊ */␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155714,6 +171070,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat20 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155727,6 +171087,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat20 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155751,6 +171115,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkWatcherPropertiesFormat3 | string)␊ resources?: NetworkWatchersPacketCapturesChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155770,6 +171139,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155800,6 +171173,8 @@ Generated by [AVA](https://avajs.dev). * A list of packet capture filters.␊ */␊ filters?: (PacketCaptureFilter6[] | string)␊ + target: unknown␊ + storageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155857,6 +171232,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155880,6 +171259,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnGateway.␊ */␊ properties: (P2SVpnGatewayProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -155946,6 +171330,7 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnServer configuration.␊ */␊ properties?: (VpnServerConfigurationProperties | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156093,6 +171478,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the private endpoint.␊ */␊ properties: (PrivateEndpointProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156189,6 +171579,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkServiceProperties3 | string)␊ resources?: PrivateLinkServicesPrivateEndpointConnectionsChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156288,6 +171683,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156311,6 +171710,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156342,6 +171745,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156390,6 +171798,7 @@ Generated by [AVA](https://avajs.dev). * The idle timeout of the public IP address.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156408,6 +171817,7 @@ Generated by [AVA](https://avajs.dev). * The reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN.␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156467,6 +171877,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156519,6 +171934,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteFilterPropertiesFormat6 | string)␊ resources?: RouteFiltersRouteFilterRulesChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156565,6 +171985,9 @@ Generated by [AVA](https://avajs.dev). * The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].␊ */␊ communities: (string[] | string)␊ + access: unknown␊ + routeFilterRuleType: unknown␊ + communities: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156582,6 +172005,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156599,6 +172026,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156623,6 +172054,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteTablePropertiesFormat20 | string)␊ resources?: RouteTablesRoutesChildResource20[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156669,6 +172105,8 @@ Generated by [AVA](https://avajs.dev). * The IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.␊ */␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156682,6 +172120,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat20 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156695,6 +172137,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat20 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156719,6 +172165,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServiceEndpointPolicyPropertiesFormat4 | string)␊ resources?: ServiceEndpointPoliciesServiceEndpointPolicyDefinitionsChildResource4[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156774,6 +172225,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156787,6 +172242,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156810,6 +172269,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub.␊ */␊ properties: (VirtualHubProperties6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -156935,6 +172399,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway.␊ */␊ properties: (VirtualNetworkGatewayPropertiesFormat16 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157095,6 +172564,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157105,6 +172575,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157153,6 +172624,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkPropertiesFormat20 | string)␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource17 | VirtualNetworksSubnetsChildResource20)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157191,6 +172667,7 @@ Generated by [AVA](https://avajs.dev). * Bgp Communities sent over ExpressRoute with each route corresponding to a prefix in this VNET.␊ */␊ bgpCommunities?: (VirtualNetworkBgpCommunities | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157201,6 +172678,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157215,6 +172693,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157261,6 +172740,7 @@ Generated by [AVA](https://avajs.dev). * Enable or Disable apply network policies on private link service in the subnet.␊ */␊ privateLinkServiceNetworkPolicies?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157289,6 +172769,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a subnet. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157313,6 +172794,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157347,6 +172829,7 @@ Generated by [AVA](https://avajs.dev). * The status of the virtual network peering.␊ */␊ peeringState?: (("Initiated" | "Connected" | "Disconnected") | string)␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157357,6 +172840,7 @@ Generated by [AVA](https://avajs.dev). * The BGP community associated with the virtual network␊ */␊ virtualNetworkCommunity: string␊ + virtualNetworkCommunity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157370,6 +172854,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157383,6 +172871,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat20 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157396,6 +172888,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat20 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157409,6 +172905,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157432,6 +172932,11 @@ Generated by [AVA](https://avajs.dev). * Virtual Network Tap Properties.␊ */␊ properties: (VirtualNetworkTapPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157474,6 +172979,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualRouterPropertiesFormat1 | string)␊ resources?: VirtualRoutersPeeringsChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157509,6 +173019,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157536,6 +173050,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157559,6 +173077,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual WAN.␊ */␊ properties: (VirtualWanProperties6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157605,6 +173128,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VpnGatewayProperties6 | string)␊ resources?: VpnGatewaysVpnConnectionsChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157776,6 +173304,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157789,6 +173321,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157812,6 +173348,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnServer configuration.␊ */␊ properties: (VpnServerConfigurationProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157835,6 +173376,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN site.␊ */␊ properties: (VpnSiteProperties6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -157982,6 +173528,11 @@ Generated by [AVA](https://avajs.dev). * The identity of the application gateway, if configured.␊ */␊ identity?: (ManagedServiceIdentity7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -158154,6 +173705,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -158496,6 +174048,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -158896,6 +174450,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion8[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -158910,6 +174468,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -158928,6 +174487,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -158942,6 +174504,7 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway capacity.␊ */␊ maxCapacity?: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -158981,6 +174544,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the web application firewall policy.␊ */␊ properties: (WebApplicationFirewallPolicyPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -158999,6 +174567,7 @@ Generated by [AVA](https://avajs.dev). * Describes the managedRules structure␊ */␊ managedRules: (ManagedRulesDefinition1 | string)␊ + managedRules: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159051,6 +174620,10 @@ Generated by [AVA](https://avajs.dev). * Type of Actions.␊ */␊ action: (("Allow" | "Block" | "Log") | string)␊ + priority: unknown␊ + ruleType: unknown␊ + matchConditions: unknown␊ + action: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159077,6 +174650,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms.␊ */␊ transforms?: (("Lowercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls" | "HtmlEntityDecode")[] | string)␊ + matchVariables: unknown␊ + operator: unknown␊ + matchValues: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159091,6 +174667,7 @@ Generated by [AVA](https://avajs.dev). * Describes field of the matchVariable collection.␊ */␊ selector?: string␊ + variableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159105,6 +174682,7 @@ Generated by [AVA](https://avajs.dev). * Describes the ruleSets that are associated with the policy.␊ */␊ managedRuleSets: (ManagedRuleSet3[] | string)␊ + managedRuleSets: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159123,6 +174701,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159141,6 +174722,8 @@ Generated by [AVA](https://avajs.dev). * Defines the rule group overrides to apply to the rule set.␊ */␊ ruleGroupOverrides?: (ManagedRuleGroupOverride3[] | string)␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159155,6 +174738,7 @@ Generated by [AVA](https://avajs.dev). * List of rules that will be disabled. If none specified, all rules in the group will be disabled.␊ */␊ rules?: (ManagedRuleOverride3[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159169,6 +174753,7 @@ Generated by [AVA](https://avajs.dev). * Describes the state of the managed rule. Defaults to Disabled if not specified.␊ */␊ state?: ("Disabled" | string)␊ + ruleId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159192,6 +174777,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the application security group.␊ */␊ properties: (ApplicationSecurityGroupPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159225,6 +174815,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159586,6 +175181,11 @@ Generated by [AVA](https://avajs.dev). * Represents the bastion host resource.␊ */␊ properties: (BastionHostPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159632,6 +175232,8 @@ Generated by [AVA](https://avajs.dev). * Private IP allocation method.␊ */␊ privateIPAllocationMethod?: (("Static" | "Dynamic") | string)␊ + subnet: unknown␊ + publicIPAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159655,6 +175257,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway connection.␊ */␊ properties: (VirtualNetworkGatewayConnectionPropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159717,6 +175324,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding.␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159755,6 +175364,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Group used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159769,6 +175386,8 @@ Generated by [AVA](https://avajs.dev). * A collection of remote address spaces in CIDR format␊ */␊ remoteAddressRanges: (string[] | string)␊ + localAddressRanges: unknown␊ + remoteAddressRanges: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159792,6 +175411,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS custom policy.␊ */␊ properties: (DdosCustomPolicyPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159847,6 +175471,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS protection plan.␊ */␊ properties: (DdosProtectionPlanPropertiesFormat9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -159881,6 +175509,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPropertiesFormat14 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource14 | ExpressRouteCircuitsAuthorizationsChildResource14)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160135,6 +175768,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat15 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource12[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160148,6 +175785,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160183,6 +175824,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat15 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160196,6 +175841,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat15 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160210,6 +175859,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat15 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource12[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160223,6 +175876,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160247,6 +175904,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCrossConnectionProperties12 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource12[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160350,6 +176012,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160363,6 +176029,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160387,6 +176057,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteGatewayProperties4 | string)␊ resources?: ExpressRouteGatewaysExpressRouteConnectionsChildResource4[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160401,6 +176076,7 @@ Generated by [AVA](https://avajs.dev). * The Virtual Hub where the ExpressRoute gateway is or will be deployed.␊ */␊ virtualHub: (SubResource27 | string)␊ + virtualHub: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160438,6 +176114,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160460,6 +176140,7 @@ Generated by [AVA](https://avajs.dev). * Enable internet security.␊ */␊ enableInternetSecurity?: (boolean | string)␊ + expressRouteCircuitPeering: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160473,6 +176154,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160500,6 +176185,11 @@ Generated by [AVA](https://avajs.dev). * The identity of ExpressRoutePort, if configured.␊ */␊ identity?: (ManagedServiceIdentity7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160592,6 +176282,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallPolicyPropertiesFormat3 | string)␊ resources?: FirewallPoliciesRuleGroupsChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160619,6 +176314,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160680,6 +176379,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160703,6 +176406,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the IpGroups.␊ */␊ properties: (IpGroupPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160741,6 +176449,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoadBalancerPropertiesFormat21 | string)␊ resources?: LoadBalancersInboundNatRulesChildResource17[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160803,6 +176516,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160847,6 +176561,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of backend address pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160867,6 +176582,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of load balancing rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160917,6 +176633,10 @@ Generated by [AVA](https://avajs.dev). * Configures SNAT for the VMs in the backend pool to use the publicIP address specified in the frontend of the load balancing rule.␊ */␊ disableOutboundSnat?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160931,6 +176651,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of probes used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160957,6 +176678,9 @@ Generated by [AVA](https://avajs.dev). * The URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value.␊ */␊ requestPath?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -160971,6 +176695,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161005,6 +176730,10 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161019,6 +176748,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161057,6 +176787,11 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161101,6 +176836,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161114,6 +176852,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat21 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161127,6 +176869,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat21 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161150,6 +176896,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the local network gateway.␊ */␊ properties: (LocalNetworkGatewayPropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161178,6 +176929,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161227,6 +176979,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the zone in which Nat Gateway should be deployed.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161279,6 +177036,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkInterfacePropertiesFormat21 | string)␊ resources?: NetworkInterfacesTapConfigurationsChildResource8[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161305,6 +177067,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether IP forwarding is enabled on this network interface.␊ */␊ enableIPForwarding?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161319,6 +177082,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161396,6 +177160,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161419,6 +177187,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161442,6 +177214,11 @@ Generated by [AVA](https://avajs.dev). * Network profile properties.␊ */␊ properties: (NetworkProfilePropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161528,6 +177305,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkSecurityGroupPropertiesFormat21 | string)␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource21[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161618,6 +177400,10 @@ Generated by [AVA](https://avajs.dev). * The direction of the rule. The direction specifies if rule will be evaluated on incoming or outgoing traffic.␊ */␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161631,6 +177417,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat21 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161644,6 +177434,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat21 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161668,6 +177462,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkWatcherPropertiesFormat4 | string)␊ resources?: NetworkWatchersPacketCapturesChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161687,6 +177486,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161717,6 +177520,8 @@ Generated by [AVA](https://avajs.dev). * A list of packet capture filters.␊ */␊ filters?: (PacketCaptureFilter7[] | string)␊ + target: unknown␊ + storageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161774,6 +177579,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161797,6 +177606,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnGateway.␊ */␊ properties: (P2SVpnGatewayProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161866,6 +177680,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the private endpoint.␊ */␊ properties: (PrivateEndpointProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -161962,6 +177781,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkServiceProperties4 | string)␊ resources?: PrivateLinkServicesPrivateEndpointConnectionsChildResource4[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162065,6 +177889,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162088,6 +177916,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162119,6 +177951,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162167,6 +178004,7 @@ Generated by [AVA](https://avajs.dev). * The idle timeout of the public IP address.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162185,6 +178023,7 @@ Generated by [AVA](https://avajs.dev). * The reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN.␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162244,6 +178083,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162296,6 +178140,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteFilterPropertiesFormat7 | string)␊ resources?: RouteFiltersRouteFilterRulesChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162342,6 +178191,9 @@ Generated by [AVA](https://avajs.dev). * The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].␊ */␊ communities: (string[] | string)␊ + access: unknown␊ + routeFilterRuleType: unknown␊ + communities: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162359,6 +178211,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162376,6 +178232,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162400,6 +178260,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteTablePropertiesFormat21 | string)␊ resources?: RouteTablesRoutesChildResource21[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162446,6 +178311,8 @@ Generated by [AVA](https://avajs.dev). * The IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.␊ */␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162459,6 +178326,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat21 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162472,6 +178343,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat21 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162496,6 +178371,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServiceEndpointPolicyPropertiesFormat5 | string)␊ resources?: ServiceEndpointPoliciesServiceEndpointPolicyDefinitionsChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162551,6 +178431,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162564,6 +178448,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162588,6 +178476,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualHubProperties7 | string)␊ resources?: VirtualHubsRouteTablesChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162761,6 +178654,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub route table v2.␊ */␊ properties: (VirtualHubRouteTableV2Properties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162774,6 +178671,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub route table v2.␊ */␊ properties: (VirtualHubRouteTableV2Properties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162797,6 +178698,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway.␊ */␊ properties: (VirtualNetworkGatewayPropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162957,6 +178863,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -162967,6 +178874,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163015,6 +178923,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkPropertiesFormat21 | string)␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource18 | VirtualNetworksSubnetsChildResource21)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163053,6 +178966,7 @@ Generated by [AVA](https://avajs.dev). * Bgp Communities sent over ExpressRoute with each route corresponding to a prefix in this VNET.␊ */␊ bgpCommunities?: (VirtualNetworkBgpCommunities1 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163063,6 +178977,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163077,6 +178992,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163123,6 +179039,7 @@ Generated by [AVA](https://avajs.dev). * Enable or Disable apply network policies on private link service in the subnet.␊ */␊ privateLinkServiceNetworkPolicies?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163151,6 +179068,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a subnet. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163175,6 +179093,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163209,6 +179128,7 @@ Generated by [AVA](https://avajs.dev). * The status of the virtual network peering.␊ */␊ peeringState?: (("Initiated" | "Connected" | "Disconnected") | string)␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163219,6 +179139,7 @@ Generated by [AVA](https://avajs.dev). * The BGP community associated with the virtual network␊ */␊ virtualNetworkCommunity: string␊ + virtualNetworkCommunity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163232,6 +179153,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163245,6 +179170,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat21 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163258,6 +179187,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat21 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163271,6 +179204,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163294,6 +179231,11 @@ Generated by [AVA](https://avajs.dev). * Virtual Network Tap Properties.␊ */␊ properties: (VirtualNetworkTapPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163336,6 +179278,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualRouterPropertiesFormat2 | string)␊ resources?: VirtualRoutersPeeringsChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163371,6 +179318,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163398,6 +179349,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163421,6 +179376,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual WAN.␊ */␊ properties: (VirtualWanProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163471,6 +179431,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VpnGatewayProperties7 | string)␊ resources?: VpnGatewaysVpnConnectionsChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163642,6 +179607,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163655,6 +179624,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163678,6 +179651,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnServer configuration.␊ */␊ properties: (VpnServerConfigurationProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163825,6 +179803,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN site.␊ */␊ properties: (VpnSiteProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -163972,6 +179955,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164035,6 +180023,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164097,6 +180090,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164121,6 +180116,8 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164277,6 +180274,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164287,6 +180285,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164353,6 +180352,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Group used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164395,6 +180402,8 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164444,6 +180453,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164471,6 +180485,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164488,6 +180507,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164505,6 +180528,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164532,6 +180559,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164586,6 +180618,10 @@ Generated by [AVA](https://avajs.dev). * Type of Actions.␊ */␊ action: (("Allow" | "Block" | "Log") | string)␊ + priority: unknown␊ + ruleType: unknown␊ + matchConditions: unknown␊ + action: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164612,6 +180648,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms␊ */␊ transforms?: (("Lowercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls" | "HtmlEntityDecode")[] | string)␊ + matchVariables: unknown␊ + operator: unknown␊ + matchValues: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164626,6 +180665,7 @@ Generated by [AVA](https://avajs.dev). * Describes field of the matchVariable collection␊ */␊ selector?: string␊ + variableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164653,6 +180693,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164715,6 +180760,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164739,6 +180786,8 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164891,6 +180940,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164901,6 +180951,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -164967,6 +181018,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165009,6 +181068,8 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165058,6 +181119,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165085,6 +181151,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165102,6 +181173,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165119,6 +181194,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165142,6 +181221,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS protection plan.␊ */␊ properties: (DdosProtectionPlanPropertiesFormat10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165173,6 +181256,11 @@ Generated by [AVA](https://avajs.dev). sku?: (ExpressRouteCircuitSku15 | string)␊ properties: (ExpressRouteCircuitPropertiesFormat15 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource15 | ExpressRouteCircuitsAuthorizationsChildResource15)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165429,6 +181517,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165514,6 +181603,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-11-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat16 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource13[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165524,6 +181617,10 @@ Generated by [AVA](https://avajs.dev). type: "connections"␊ apiVersion: "2018-11-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat13 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165534,6 +181631,10 @@ Generated by [AVA](https://avajs.dev). type: "authorizations"␊ apiVersion: "2018-11-01"␊ properties: (AuthorizationPropertiesFormat16 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165555,6 +181656,11 @@ Generated by [AVA](https://avajs.dev). } | string)␊ properties: (ExpressRouteCrossConnectionProperties13 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource13[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165660,6 +181766,10 @@ Generated by [AVA](https://avajs.dev). type: "peerings"␊ apiVersion: "2018-11-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties13 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165695,6 +181805,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165751,6 +181866,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165769,6 +181885,7 @@ Generated by [AVA](https://avajs.dev). * Gets or Sets the Reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN. ␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165825,6 +181942,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource19 | VirtualNetworksSubnetsChildResource22)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165867,6 +181989,7 @@ Generated by [AVA](https://avajs.dev). * The DDoS protection plan associated with the virtual network.␊ */␊ ddosProtectionPlan?: (SubResource28 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165877,6 +182000,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165887,6 +182011,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165905,6 +182030,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -165951,6 +182077,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166043,6 +182170,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166075,6 +182203,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166113,6 +182242,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource.␊ */␊ provisioningState?: string␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166130,6 +182260,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166147,6 +182281,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166179,6 +182317,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: LoadBalancersInboundNatRulesChildResource18[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166253,6 +182396,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166301,6 +182445,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166329,6 +182474,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166380,6 +182526,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166398,6 +182548,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166428,6 +182579,9 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166446,6 +182600,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166481,6 +182636,10 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166499,6 +182658,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166538,6 +182698,11 @@ Generated by [AVA](https://avajs.dev). * Gets the provisioning state of the PublicIP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166590,6 +182755,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166607,6 +182775,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166635,6 +182807,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource22[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166745,6 +182922,14 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + protocol: unknown␊ + sourcePortRange: unknown␊ + destinationPortRange: unknown␊ + sourceAddressPrefix: unknown␊ + destinationAddressPrefix: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166762,6 +182947,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166790,6 +182979,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: NetworkInterfacesTapConfigurationsChildResource9[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166836,6 +183030,7 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the public IP resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166854,6 +183049,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -166979,6 +183175,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -167007,6 +183207,11 @@ Generated by [AVA](https://avajs.dev). */␊ etag?: string␊ resources?: RouteTablesRoutesChildResource22[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -167065,6 +183270,8 @@ Generated by [AVA](https://avajs.dev). * The provisioning state of the resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.␊ */␊ provisioningState?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -167082,6 +183289,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -167114,6 +183325,11 @@ Generated by [AVA](https://avajs.dev). * The identity of the application gateway, if configured.␊ */␊ identity?: (ManagedServiceIdentity8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -167707,6 +183923,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168099,6 +184317,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion9[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168113,6 +184335,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168131,6 +184354,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168145,6 +184371,7 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway capacity␊ */␊ maxCapacity?: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168171,6 +184398,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/authorizations"␊ apiVersion: "2018-11-01"␊ properties: (AuthorizationPropertiesFormat16 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168194,6 +184425,11 @@ Generated by [AVA](https://avajs.dev). * ExpressRoutePort properties␊ */␊ properties: (ExpressRoutePortPropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168271,6 +184507,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168333,6 +184574,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168357,6 +184600,8 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168509,6 +184754,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168519,6 +184765,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168585,6 +184832,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168627,6 +184882,8 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168676,6 +184933,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168703,6 +184965,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168720,6 +184987,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168737,6 +185008,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168748,6 +185023,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-11-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat16 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource13[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168758,6 +185037,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCrossConnections/peerings"␊ apiVersion: "2018-11-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties13 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168775,6 +185058,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168792,6 +185079,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168809,6 +185100,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168826,6 +185121,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168836,6 +185135,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCircuits/peerings/connections"␊ apiVersion: "2018-11-01"␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat13 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168859,6 +185162,11 @@ Generated by [AVA](https://avajs.dev). * ExpressRoutePort properties␊ */␊ properties: (ExpressRoutePortPropertiesFormat9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168936,6 +185244,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -168998,6 +185311,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169022,6 +185337,8 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169174,6 +185491,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169184,6 +185502,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169250,6 +185569,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169292,6 +185619,8 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169341,6 +185670,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169368,6 +185702,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169385,6 +185724,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169402,6 +185745,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169413,6 +185760,10 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2018-10-01"␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat8 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169423,6 +185774,10 @@ Generated by [AVA](https://avajs.dev). type: "Microsoft.Network/expressRouteCrossConnections/peerings"␊ apiVersion: "2018-10-01"␊ properties: (ExpressRouteCrossConnectionPeeringProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169440,6 +185795,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169457,6 +185816,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169474,6 +185837,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169491,6 +185858,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -169515,6 +185886,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170043,6 +186419,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170330,6 +186708,10 @@ Generated by [AVA](https://avajs.dev). * Maxium request body size for WAF.␊ */␊ maxRequestBodySize?: (number | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170344,6 +186726,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170371,6 +186754,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170425,6 +186813,8 @@ Generated by [AVA](https://avajs.dev). * The resource GUID property of the VirtualNetworkGatewayConnection resource.␊ */␊ resourceGuid?: string␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170449,6 +186839,8 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170601,6 +186993,7 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170611,6 +187004,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170677,6 +187071,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Groups used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170719,6 +187121,8 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170768,6 +187172,11 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170795,6 +187204,11 @@ Generated by [AVA](https://avajs.dev). * Gets a unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170812,6 +187226,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170829,6 +187247,10 @@ Generated by [AVA](https://avajs.dev). * A unique read-only string that changes whenever the resource is updated.␊ */␊ etag?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170857,6 +187279,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ZoneProperties2 | string)␊ resources?: (DnsZones_TXTChildResource2 | DnsZones_SRVChildResource2 | DnsZones_SOAChildResource2 | DnsZones_PTRChildResource2 | DnsZones_NSChildResource2 | DnsZones_MXChildResource2 | DnsZones_CNAMEChildResource2 | DnsZones_CAAChildResource2 | DnsZones_AAAAChildResource2 | DnsZones_AChildResource2)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -170902,6 +187329,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171127,6 +187558,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171144,6 +187579,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171161,6 +187600,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171178,6 +187621,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171195,6 +187642,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171212,6 +187663,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171229,6 +187684,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171246,6 +187705,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171263,6 +187726,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171280,6 +187747,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171297,6 +187768,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171314,6 +187789,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171331,6 +187810,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171348,6 +187831,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171365,6 +187852,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171382,6 +187873,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171399,6 +187894,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171416,6 +187915,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171433,6 +187936,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171463,6 +187970,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ } | string)␊ resources?: (PrivateDnsZonesVirtualNetworkLinksChildResource | PrivateDnsZones_AChildResource | PrivateDnsZones_AAAAChildResource | PrivateDnsZones_CNAMEChildResource | PrivateDnsZones_MXChildResource | PrivateDnsZones_PTRChildResource | PrivateDnsZones_SOAChildResource | PrivateDnsZones_SRVChildResource | PrivateDnsZones_TXTChildResource)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171486,6 +187998,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the virtual network link.␊ */␊ properties: (VirtualNetworkLinkProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171527,6 +188043,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171712,6 +188232,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171729,6 +188253,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171746,6 +188274,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171763,6 +188295,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171780,6 +188316,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171797,6 +188337,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171814,6 +188358,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171837,6 +188385,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the virtual network link.␊ */␊ properties: (VirtualNetworkLinkProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171854,6 +188406,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171871,6 +188427,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171888,6 +188448,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171905,6 +188469,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171922,6 +188490,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171939,6 +188511,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171956,6 +188532,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -171973,6 +188553,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the record set.␊ */␊ properties: (RecordSetProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -172004,6 +188588,11 @@ Generated by [AVA](https://avajs.dev). * The identity of the application gateway, if configured.␊ */␊ identity?: (ManagedServiceIdentity9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -172176,6 +188765,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -172518,6 +189108,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -172940,6 +189532,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion10[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -172954,6 +189550,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -172972,6 +189569,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -172986,6 +189586,7 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway capacity.␊ */␊ maxCapacity?: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173025,6 +189626,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the web application firewall policy.␊ */␊ properties: (WebApplicationFirewallPolicyPropertiesFormat7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173043,6 +189649,7 @@ Generated by [AVA](https://avajs.dev). * Describes the managedRules structure.␊ */␊ managedRules: (ManagedRulesDefinition2 | string)␊ + managedRules: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173095,6 +189702,10 @@ Generated by [AVA](https://avajs.dev). * Type of Actions.␊ */␊ action: (("Allow" | "Block" | "Log") | string)␊ + priority: unknown␊ + ruleType: unknown␊ + matchConditions: unknown␊ + action: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173121,6 +189732,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms.␊ */␊ transforms?: (("Lowercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls" | "HtmlEntityDecode")[] | string)␊ + matchVariables: unknown␊ + operator: unknown␊ + matchValues: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173135,6 +189749,7 @@ Generated by [AVA](https://avajs.dev). * The selector of match variable.␊ */␊ selector?: string␊ + variableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173149,6 +189764,7 @@ Generated by [AVA](https://avajs.dev). * The managed rule sets that are associated with the policy.␊ */␊ managedRuleSets: (ManagedRuleSet4[] | string)␊ + managedRuleSets: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173167,6 +189783,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173185,6 +189804,8 @@ Generated by [AVA](https://avajs.dev). * Defines the rule group overrides to apply to the rule set.␊ */␊ ruleGroupOverrides?: (ManagedRuleGroupOverride4[] | string)␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173199,6 +189820,7 @@ Generated by [AVA](https://avajs.dev). * List of rules that will be disabled. If none specified, all rules in the group will be disabled.␊ */␊ rules?: (ManagedRuleOverride4[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173213,6 +189835,7 @@ Generated by [AVA](https://avajs.dev). * The state of the managed rule. Defaults to Disabled if not specified.␊ */␊ state?: ("Disabled" | string)␊ + ruleId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173238,6 +189861,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173265,6 +189893,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173630,6 +190263,11 @@ Generated by [AVA](https://avajs.dev). * Represents the bastion host resource.␊ */␊ properties: (BastionHostPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173676,6 +190314,8 @@ Generated by [AVA](https://avajs.dev). * Private IP allocation method.␊ */␊ privateIPAllocationMethod?: (("Static" | "Dynamic") | string)␊ + subnet: unknown␊ + publicIPAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173699,6 +190339,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway connection.␊ */␊ properties: (VirtualNetworkGatewayConnectionPropertiesFormat23 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173761,6 +190406,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding.␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173799,6 +190446,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Group used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173813,6 +190468,8 @@ Generated by [AVA](https://avajs.dev). * A collection of remote address spaces in CIDR format.␊ */␊ remoteAddressRanges: (string[] | string)␊ + localAddressRanges: unknown␊ + remoteAddressRanges: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173836,6 +190493,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS custom policy.␊ */␊ properties: (DdosCustomPolicyPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173893,6 +190555,10 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -173921,6 +190587,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPropertiesFormat16 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource16 | ExpressRouteCircuitsAuthorizationsChildResource16)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174171,6 +190842,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat17 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource14[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174184,6 +190859,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174221,6 +190900,10 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174236,6 +190919,10 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174250,6 +190937,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat17 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource14[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174263,6 +190954,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174287,6 +190982,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCrossConnectionProperties14 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource14[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174390,6 +191090,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174403,6 +191107,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174427,6 +191135,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteGatewayProperties5 | string)␊ resources?: ExpressRouteGatewaysExpressRouteConnectionsChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174441,6 +191154,7 @@ Generated by [AVA](https://avajs.dev). * The Virtual Hub where the ExpressRoute gateway is or will be deployed.␊ */␊ virtualHub: (SubResource31 | string)␊ + virtualHub: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174478,6 +191192,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174500,6 +191218,7 @@ Generated by [AVA](https://avajs.dev). * Enable internet security.␊ */␊ enableInternetSecurity?: (boolean | string)␊ + expressRouteCircuitPeering: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174513,6 +191232,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174540,6 +191263,11 @@ Generated by [AVA](https://avajs.dev). * The identity of ExpressRoutePort, if configured.␊ */␊ identity?: (ManagedServiceIdentity9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174632,6 +191360,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallPolicyPropertiesFormat4 | string)␊ resources?: FirewallPoliciesRuleGroupsChildResource4[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174659,6 +191392,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174720,6 +191457,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174743,6 +191484,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the IpGroups.␊ */␊ properties: (IpGroupPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174781,6 +191527,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoadBalancerPropertiesFormat23 | string)␊ resources?: LoadBalancersInboundNatRulesChildResource19[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174843,6 +191594,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174889,6 +191641,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of backend address pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174903,6 +191656,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of load balancing rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174953,6 +191707,10 @@ Generated by [AVA](https://avajs.dev). * Configures SNAT for the VMs in the backend pool to use the publicIP address specified in the frontend of the load balancing rule.␊ */␊ disableOutboundSnat?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174967,6 +191725,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of probes used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -174993,6 +191752,9 @@ Generated by [AVA](https://avajs.dev). * The URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value.␊ */␊ requestPath?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175007,6 +191769,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175041,6 +191804,10 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175055,6 +191822,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175093,6 +191861,11 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175137,6 +191910,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175150,6 +191926,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat23 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175163,6 +191943,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat23 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175186,6 +191970,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the local network gateway.␊ */␊ properties: (LocalNetworkGatewayPropertiesFormat23 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175214,6 +192003,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175263,6 +192053,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the zone in which Nat Gateway should be deployed.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175315,6 +192110,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkInterfacePropertiesFormat23 | string)␊ resources?: NetworkInterfacesTapConfigurationsChildResource10[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175341,6 +192141,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether IP forwarding is enabled on this network interface.␊ */␊ enableIPForwarding?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175355,6 +192156,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175432,6 +192234,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175455,6 +192261,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175478,6 +192288,11 @@ Generated by [AVA](https://avajs.dev). * Network profile properties.␊ */␊ properties: (NetworkProfilePropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175564,6 +192379,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkSecurityGroupPropertiesFormat23 | string)␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource23[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175654,6 +192474,10 @@ Generated by [AVA](https://avajs.dev). * The direction of the rule. The direction specifies if rule will be evaluated on incoming or outgoing traffic.␊ */␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175667,6 +192491,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat23 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175680,6 +192508,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat23 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175706,6 +192538,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ } | string)␊ resources?: (NetworkWatchersFlowLogsChildResource | NetworkWatchersConnectionMonitorsChildResource5 | NetworkWatchersPacketCapturesChildResource8)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175729,6 +192566,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the flow log.␊ */␊ properties: (FlowLogPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175759,6 +192601,8 @@ Generated by [AVA](https://avajs.dev). * Parameters that define the configuration of traffic analytics.␊ */␊ flowAnalyticsConfiguration?: (TrafficAnalyticsProperties | string)␊ + targetResourceId: unknown␊ + storageId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175846,6 +192690,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the connection monitor.␊ */␊ properties: (ConnectionMonitorParameters5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175902,6 +192750,7 @@ Generated by [AVA](https://avajs.dev). * The source port used by connection monitor.␊ */␊ port?: (number | string)␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -175942,6 +192791,7 @@ Generated by [AVA](https://avajs.dev). * Filter for sub-items within the endpoint.␊ */␊ filter?: (ConnectionMonitorEndpointFilter | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176008,6 +192858,8 @@ Generated by [AVA](https://avajs.dev). * The threshold for declaring a test successful.␊ */␊ successThreshold?: (ConnectionMonitorSuccessThreshold | string)␊ + name: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176116,6 +192968,10 @@ Generated by [AVA](https://avajs.dev). * List of destination endpoint names.␊ */␊ destinations: (string[] | string)␊ + name: unknown␊ + testConfigurations: unknown␊ + sources: unknown␊ + destinations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176153,6 +193009,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176183,6 +193043,8 @@ Generated by [AVA](https://avajs.dev). * A list of packet capture filters.␊ */␊ filters?: (PacketCaptureFilter8[] | string)␊ + target: unknown␊ + storageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176240,6 +193102,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176263,6 +193129,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnGateway.␊ */␊ properties: (P2SVpnGatewayProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176332,6 +193203,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the private endpoint.␊ */␊ properties: (PrivateEndpointProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176428,6 +193304,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkServiceProperties5 | string)␊ resources?: PrivateLinkServicesPrivateEndpointConnectionsChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176531,6 +193412,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176554,6 +193439,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176585,6 +193474,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176633,6 +193527,7 @@ Generated by [AVA](https://avajs.dev). * The idle timeout of the public IP address.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176651,6 +193546,7 @@ Generated by [AVA](https://avajs.dev). * The reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN.␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176714,6 +193610,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176766,6 +193667,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteFilterPropertiesFormat8 | string)␊ resources?: RouteFiltersRouteFilterRulesChildResource8[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176812,6 +193718,9 @@ Generated by [AVA](https://avajs.dev). * The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].␊ */␊ communities: (string[] | string)␊ + access: unknown␊ + routeFilterRuleType: unknown␊ + communities: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176829,6 +193738,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176846,6 +193759,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176870,6 +193787,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteTablePropertiesFormat23 | string)␊ resources?: RouteTablesRoutesChildResource23[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176916,6 +193838,8 @@ Generated by [AVA](https://avajs.dev). * The IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.␊ */␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176929,6 +193853,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat23 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176942,6 +193870,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat23 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -176966,6 +193898,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServiceEndpointPolicyPropertiesFormat6 | string)␊ resources?: ServiceEndpointPoliciesServiceEndpointPolicyDefinitionsChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177021,6 +193958,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177034,6 +193975,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177058,6 +194003,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualHubProperties8 | string)␊ resources?: VirtualHubsRouteTablesChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177231,6 +194181,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub route table v2.␊ */␊ properties: (VirtualHubRouteTableV2Properties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177244,6 +194198,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub route table v2.␊ */␊ properties: (VirtualHubRouteTableV2Properties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177267,6 +194225,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway.␊ */␊ properties: (VirtualNetworkGatewayPropertiesFormat23 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177427,6 +194390,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177437,6 +194401,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177485,6 +194450,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkPropertiesFormat23 | string)␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource20 | VirtualNetworksSubnetsChildResource23)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177523,6 +194493,7 @@ Generated by [AVA](https://avajs.dev). * Bgp Communities sent over ExpressRoute with each route corresponding to a prefix in this VNET.␊ */␊ bgpCommunities?: (VirtualNetworkBgpCommunities2 | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177533,6 +194504,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177547,6 +194519,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177593,6 +194566,7 @@ Generated by [AVA](https://avajs.dev). * Enable or Disable apply network policies on private link service in the subnet.␊ */␊ privateLinkServiceNetworkPolicies?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177621,6 +194595,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a subnet. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177645,6 +194620,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177679,6 +194655,7 @@ Generated by [AVA](https://avajs.dev). * The status of the virtual network peering.␊ */␊ peeringState?: (("Initiated" | "Connected" | "Disconnected") | string)␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177689,6 +194666,7 @@ Generated by [AVA](https://avajs.dev). * The BGP community associated with the virtual network.␊ */␊ virtualNetworkCommunity: string␊ + virtualNetworkCommunity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177702,6 +194680,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat20 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177715,6 +194697,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat23 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177728,6 +194714,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat23 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177741,6 +194731,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat20 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177764,6 +194758,11 @@ Generated by [AVA](https://avajs.dev). * Virtual Network Tap Properties.␊ */␊ properties: (VirtualNetworkTapPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177806,6 +194805,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualRouterPropertiesFormat3 | string)␊ resources?: VirtualRoutersPeeringsChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177841,6 +194845,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177868,6 +194876,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177891,6 +194903,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual WAN.␊ */␊ properties: (VirtualWanProperties8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -177941,6 +194958,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VpnGatewayProperties8 | string)␊ resources?: VpnGatewaysVpnConnectionsChildResource8[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -178112,6 +195134,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -178125,6 +195151,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -178148,6 +195178,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnServer configuration.␊ */␊ properties: (VpnServerConfigurationProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -178295,6 +195330,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN site.␊ */␊ properties: (VpnSiteProperties8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -178434,6 +195474,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the connection monitor.␊ */␊ properties: (ConnectionMonitorParameters5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -178457,6 +195501,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the flow log.␊ */␊ properties: (FlowLogPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -178491,6 +195540,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -178642,6 +195696,7 @@ Generated by [AVA](https://avajs.dev). * Lower bound on number of Application Gateway capacity.␊ */␊ minCapacity: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -178762,6 +195817,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -178776,6 +195832,8 @@ Generated by [AVA](https://avajs.dev). * Whether connection draining is enabled or not.␊ */␊ enabled: (boolean | string)␊ + drainTimeoutInSec: unknown␊ + enabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179460,6 +196518,10 @@ Generated by [AVA](https://avajs.dev). * The version of the rule set type.␊ */␊ ruleSetVersion: string␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179474,6 +196536,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179492,6 +196555,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operate on the selector to specify which elements in the collection this exclusion applies to.␊ */␊ selectorMatchOperator: string␊ + matchVariable: unknown␊ + selector: unknown␊ + selectorMatchOperator: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179518,6 +196584,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179536,6 +196607,7 @@ Generated by [AVA](https://avajs.dev). * Defines contents of a web application firewall global configuration.␊ */␊ policySettings?: (PolicySettings10 | string)␊ + managedRules: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179562,6 +196634,10 @@ Generated by [AVA](https://avajs.dev). * The rule type.␊ */␊ ruleType: (("MatchRule" | "Invalid") | string)␊ + action: unknown␊ + matchConditions: unknown␊ + priority: unknown␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179588,6 +196664,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms.␊ */␊ transforms?: (("Lowercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls" | "HtmlEntityDecode")[] | string)␊ + matchValues: unknown␊ + matchVariables: unknown␊ + operator: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179602,6 +196681,7 @@ Generated by [AVA](https://avajs.dev). * Match Variable.␊ */␊ variableName: (("RemoteAddr" | "RequestMethod" | "QueryString" | "PostArgs" | "RequestUri" | "RequestHeaders" | "RequestBody" | "RequestCookies") | string)␊ + variableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179616,6 +196696,7 @@ Generated by [AVA](https://avajs.dev). * The managed rule sets that are associated with the policy.␊ */␊ managedRuleSets: (ManagedRuleSet5[] | string)␊ + managedRuleSets: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179634,6 +196715,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operate on the selector to specify which elements in the collection this exclusion applies to.␊ */␊ selectorMatchOperator: (("Equals" | "Contains" | "StartsWith" | "EndsWith" | "EqualsAny") | string)␊ + matchVariable: unknown␊ + selector: unknown␊ + selectorMatchOperator: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179652,6 +196736,8 @@ Generated by [AVA](https://avajs.dev). * Defines the version of the rule set to use.␊ */␊ ruleSetVersion: string␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179666,6 +196752,7 @@ Generated by [AVA](https://avajs.dev). * List of rules that will be disabled. If none specified, all rules in the group will be disabled.␊ */␊ rules?: (ManagedRuleOverride5[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179680,6 +196767,7 @@ Generated by [AVA](https://avajs.dev). * The state of the managed rule. Defaults to Disabled if not specified.␊ */␊ state?: ("Disabled" | string)␊ + ruleId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179732,6 +196820,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/applicationSecurityGroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -179768,6 +196861,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180136,6 +197234,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/bastionHosts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180182,6 +197285,8 @@ Generated by [AVA](https://avajs.dev). * Reference to another subresource.␊ */␊ subnet: (SubResource32 | string)␊ + publicIPAddress: unknown␊ + subnet: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180209,6 +197314,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/connections"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180275,6 +197385,8 @@ Generated by [AVA](https://avajs.dev). * Reference to another subresource.␊ */␊ virtualNetworkGateway2?: (SubResource32 | string)␊ + connectionType: unknown␊ + virtualNetworkGateway1: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180313,6 +197425,14 @@ Generated by [AVA](https://avajs.dev). * The IPSec Security Association (also called Quick Mode or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel.␊ */␊ saLifeTimeSeconds: (number | string)␊ + dhGroup: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + pfsGroup: unknown␊ + saDataSizeKilobytes: unknown␊ + saLifeTimeSeconds: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180327,6 +197447,8 @@ Generated by [AVA](https://avajs.dev). * A collection of remote address spaces in CIDR format.␊ */␊ remoteAddressRanges: (string[] | string)␊ + localAddressRanges: unknown␊ + remoteAddressRanges: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180340,6 +197462,10 @@ Generated by [AVA](https://avajs.dev). * The virtual network connection shared key value.␊ */␊ value: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180353,6 +197479,10 @@ Generated by [AVA](https://avajs.dev). * The virtual network connection shared key value.␊ */␊ value: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180379,6 +197509,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/ddosCustomPolicies"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180437,6 +197572,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/ddosProtectionPlans"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180474,6 +197613,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/expressRouteCircuits"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180712,6 +197856,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationPropertiesFormat17 | string)␊ type: "authorizations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180728,6 +197876,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat18 | string)␊ type: "peerings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180762,6 +197914,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationPropertiesFormat17 | string)␊ type: "Microsoft.Network/expressRouteCircuits/authorizations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180779,6 +197935,10 @@ Generated by [AVA](https://avajs.dev). properties: (ExpressRouteCircuitPeeringPropertiesFormat18 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource15[]␊ type: "Microsoft.Network/expressRouteCircuits/peerings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180795,6 +197955,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat15 | string)␊ type: "connections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180847,6 +198011,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat15 | string)␊ type: "Microsoft.Network/expressRouteCircuits/peerings/connections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180874,6 +198042,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/expressRouteCrossConnections"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180980,6 +198153,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCrossConnectionPeeringProperties15 | string)␊ type: "peerings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -180996,6 +198173,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCrossConnectionPeeringProperties15 | string)␊ type: "Microsoft.Network/expressRouteCrossConnections/peerings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181023,6 +198204,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/expressRouteGateways"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181037,6 +198223,7 @@ Generated by [AVA](https://avajs.dev). * Reference to another subresource.␊ */␊ virtualHub: (SubResource32 | string)␊ + virtualHub: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181077,6 +198264,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteConnectionProperties6 | string)␊ type: "expressRouteConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181099,6 +198290,7 @@ Generated by [AVA](https://avajs.dev). * The routing weight associated to the connection.␊ */␊ routingWeight?: (number | string)␊ + expressRouteCircuitPeering: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181115,6 +198307,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteConnectionProperties6 | string)␊ type: "Microsoft.Network/expressRouteGateways/expressRouteConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181145,6 +198341,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/ExpressRoutePorts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181240,6 +198441,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/firewallPolicies"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181270,6 +198476,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallPolicyRuleGroupProperties5 | string)␊ type: "ruleGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181307,6 +198517,7 @@ Generated by [AVA](https://avajs.dev). * The translated port for this NAT rule.␊ */␊ translatedPort?: string␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181348,6 +198559,7 @@ Generated by [AVA](https://avajs.dev). * List of FQDNs for this rule condition.␊ */␊ targetFqdns?: (string[] | string)␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181389,6 +198601,7 @@ Generated by [AVA](https://avajs.dev). * List of source IpGroups for this rule.␊ */␊ sourceIpGroups?: (string[] | string)␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181420,6 +198633,7 @@ Generated by [AVA](https://avajs.dev). * List of source IpGroups for this rule.␊ */␊ sourceIpGroups?: (string[] | string)␊ + ruleConditionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181433,8 +198647,19 @@ Generated by [AVA](https://avajs.dev). /**␊ * Collection of rule conditions used by a rule.␊ */␊ - ruleConditions?: ((ApplicationRuleCondition5 | NatRuleCondition | NetworkRuleCondition5)[] | string)␊ + ruleConditions?: (((ApplicationRuleCondition5 | NatRuleCondition | NetworkRuleCondition5) & {␊ + /**␊ + * Description of the rule condition.␊ + */␊ + description?: string␊ + /**␊ + * Name of the rule condition.␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + })[] | string)␊ ruleType: "FirewallPolicyFilterRule"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181461,6 +198686,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallPolicyRuleGroupProperties5 | string)␊ type: "Microsoft.Network/firewallPolicies/ruleGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181487,6 +198716,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/ipGroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181528,6 +198762,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/loadBalancers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181576,6 +198815,7 @@ Generated by [AVA](https://avajs.dev). * Properties of the backend address pool.␊ */␊ properties?: (BackendAddressPoolPropertiesFormat23 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181600,6 +198840,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181644,6 +198885,7 @@ Generated by [AVA](https://avajs.dev). * Properties of Inbound NAT pool.␊ */␊ properties?: (InboundNatPoolPropertiesFormat24 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181682,6 +198924,11 @@ Generated by [AVA](https://avajs.dev). * The reference to the transport protocol used by the inbound NAT pool.␊ */␊ protocol: (("Udp" | "Tcp" | "All") | string)␊ + backendPort: unknown␊ + frontendIPConfiguration: unknown␊ + frontendPortRangeEnd: unknown␊ + frontendPortRangeStart: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181696,6 +198943,7 @@ Generated by [AVA](https://avajs.dev). * Properties of the inbound NAT rule.␊ */␊ properties?: (InboundNatRulePropertiesFormat24 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181730,6 +198978,10 @@ Generated by [AVA](https://avajs.dev). * The reference to the transport protocol used by the load balancing rule.␊ */␊ protocol: (("Udp" | "Tcp" | "All") | string)␊ + backendPort: unknown␊ + frontendIPConfiguration: unknown␊ + frontendPort: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181744,6 +198996,7 @@ Generated by [AVA](https://avajs.dev). * Properties of the load balancer.␊ */␊ properties?: (LoadBalancingRulePropertiesFormat24 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181794,6 +199047,10 @@ Generated by [AVA](https://avajs.dev). * The reference to the transport protocol used by the load balancing rule.␊ */␊ protocol: (("Udp" | "Tcp" | "All") | string)␊ + backendPort: unknown␊ + frontendIPConfiguration: unknown␊ + frontendPort: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181838,6 +199095,9 @@ Generated by [AVA](https://avajs.dev). * The protocol for the outbound rule in load balancer.␊ */␊ protocol: (("Tcp" | "Udp" | "All") | string)␊ + backendAddressPool: unknown␊ + frontendIPConfigurations: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181852,6 +199112,7 @@ Generated by [AVA](https://avajs.dev). * Load balancer probe resource.␊ */␊ properties?: (ProbePropertiesFormat24 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181878,6 +199139,9 @@ Generated by [AVA](https://avajs.dev). * The URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value.␊ */␊ requestPath?: string␊ + numberOfProbes: unknown␊ + port: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181894,6 +199158,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (InboundNatRulePropertiesFormat24 | string)␊ type: "inboundNatRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181920,6 +199188,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (InboundNatRulePropertiesFormat24 | string)␊ type: "Microsoft.Network/loadBalancers/inboundNatRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -181946,6 +199218,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/localNetworkGateways"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182014,6 +199291,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182048,6 +199326,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the zone in which Nat Gateway should be deployed.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182103,6 +199386,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/networkInterfaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182129,6 +199417,7 @@ Generated by [AVA](https://avajs.dev). * Reference to another subresource.␊ */␊ networkSecurityGroup?: (SubResource32 | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182157,6 +199446,7 @@ Generated by [AVA](https://avajs.dev). * Properties of IP configuration.␊ */␊ properties?: (NetworkInterfaceIPConfigurationPropertiesFormat23 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182223,6 +199513,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat11 | string)␊ type: "tapConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182249,6 +199543,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat11 | string)␊ type: "Microsoft.Network/networkInterfaces/tapConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182275,6 +199573,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/networkProfiles"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182364,6 +199667,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/networkSecurityGroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182454,6 +199762,10 @@ Generated by [AVA](https://avajs.dev). * The source port ranges.␊ */␊ sourcePortRanges?: (string[] | string)␊ + access: unknown␊ + direction: unknown␊ + priority: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182470,6 +199782,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityRulePropertiesFormat24 | string)␊ type: "securityRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182486,6 +199802,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityRulePropertiesFormat24 | string)␊ type: "Microsoft.Network/networkSecurityGroups/securityRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182520,6 +199840,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/networkVirtualAppliances"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182587,6 +199912,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/networkWatchers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182609,6 +199939,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PacketCaptureParameters9 | string)␊ type: "packetCaptures"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182639,6 +199973,8 @@ Generated by [AVA](https://avajs.dev). * Maximum size of the capture output.␊ */␊ totalBytesPerSession?: ((number & string) | string)␊ + storageLocation: unknown␊ + target: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182709,6 +200045,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "connectionMonitors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182791,6 +200131,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID of the connection monitor endpoint.␊ */␊ resourceId?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182857,6 +200198,7 @@ Generated by [AVA](https://avajs.dev). * The ID of the resource used as the source by connection monitor.␊ */␊ resourceId: string␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -182895,6 +200237,8 @@ Generated by [AVA](https://avajs.dev). * The frequency of test evaluation, in seconds.␊ */␊ testFrequencySec?: (number | string)␊ + name: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183003,6 +200347,10 @@ Generated by [AVA](https://avajs.dev). * List of test configuration names.␊ */␊ testConfigurations: (string[] | string)␊ + destinations: unknown␊ + name: unknown␊ + sources: unknown␊ + testConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183029,6 +200377,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "flowLogs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183059,6 +200412,8 @@ Generated by [AVA](https://avajs.dev). * ID of network security group to which flow log will be applied.␊ */␊ targetResourceId: string␊ + storageId: unknown␊ + targetResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183149,6 +200504,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/networkWatchers/connectionMonitors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183175,6 +200534,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/networkWatchers/flowLogs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183191,6 +200555,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PacketCaptureParameters9 | string)␊ type: "Microsoft.Network/networkWatchers/packetCaptures"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183217,6 +200585,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/p2svpnGateways"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183289,6 +200662,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/privateEndpoints"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183388,6 +200766,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/privateLinkServices"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183494,6 +200877,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties13 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183520,6 +200907,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties13 | string)␊ type: "Microsoft.Network/privateLinkServices/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183554,6 +200945,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183592,6 +200988,7 @@ Generated by [AVA](https://avajs.dev). * Reference to another subresource.␊ */␊ publicIPPrefix?: (SubResource32 | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183628,6 +201025,7 @@ Generated by [AVA](https://avajs.dev). * The reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN.␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183686,6 +201084,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183741,6 +201144,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/routeFilters"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183787,6 +201195,9 @@ Generated by [AVA](https://avajs.dev). * The rule type of the rule.␊ */␊ routeFilterRuleType: ("Community" | string)␊ + access: unknown␊ + communities: unknown␊ + routeFilterRuleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183807,6 +201218,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteFilterRulePropertiesFormat9 | string)␊ type: "routeFilterRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183827,6 +201242,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteFilterRulePropertiesFormat9 | string)␊ type: "Microsoft.Network/routeFilters/routeFilterRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183854,6 +201273,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/routeTables"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183900,6 +201324,8 @@ Generated by [AVA](https://avajs.dev). * The type of Azure hop the packet should be sent to.␊ */␊ nextHopType: (("VirtualNetworkGateway" | "VnetLocal" | "Internet" | "VirtualAppliance" | "None") | string)␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183916,6 +201342,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RoutePropertiesFormat24 | string)␊ type: "routes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183932,6 +201362,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RoutePropertiesFormat24 | string)␊ type: "Microsoft.Network/routeTables/routes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -183959,6 +201393,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/serviceEndpointPolicies"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184017,6 +201456,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat7 | string)␊ type: "serviceEndpointPolicyDefinitions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184033,6 +201476,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat7 | string)␊ type: "Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184060,6 +201507,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/virtualHubs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184236,6 +201688,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualHubRouteTableV2Properties2 | string)␊ type: "routeTables"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184252,6 +201708,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualHubRouteTableV2Properties2 | string)␊ type: "Microsoft.Network/virtualHubs/routeTables"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184278,6 +201738,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/virtualNetworkGateways"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184466,6 +201931,7 @@ Generated by [AVA](https://avajs.dev). * Properties of SSL certificates of application gateway.␊ */␊ properties: (VpnClientRootCertificatePropertiesFormat23 | string)␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184476,6 +201942,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184503,6 +201970,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/virtualNetworks"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184541,6 +202013,7 @@ Generated by [AVA](https://avajs.dev). * A list of peerings in a Virtual Network.␊ */␊ virtualNetworkPeerings?: (VirtualNetworkPeering29[] | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184551,6 +202024,7 @@ Generated by [AVA](https://avajs.dev). * The BGP community associated with the virtual network.␊ */␊ virtualNetworkCommunity: string␊ + virtualNetworkCommunity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184561,6 +202035,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184575,6 +202050,7 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties?: (SubnetPropertiesFormat24 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184621,6 +202097,7 @@ Generated by [AVA](https://avajs.dev). * An array of service endpoints.␊ */␊ serviceEndpoints?: (ServiceEndpointPropertiesFormat20[] | string)␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184635,6 +202112,7 @@ Generated by [AVA](https://avajs.dev). * Properties of a service delegation.␊ */␊ properties?: (ServiceDelegationPropertiesFormat11 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184673,6 +202151,7 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties?: (VirtualNetworkPeeringPropertiesFormat21 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184707,6 +202186,7 @@ Generated by [AVA](https://avajs.dev). * If remote gateways can be used on this virtual network. If the flag is set to true, and allowGatewayTransit on remote peering is also true, virtual network will use gateways of remote virtual network for transit. Only one peering can have this flag set to true. This flag cannot be set if virtual network already has a gateway.␊ */␊ useRemoteGateways?: (boolean | string)␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184723,6 +202203,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SubnetPropertiesFormat24 | string)␊ type: "subnets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184739,6 +202223,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkPeeringPropertiesFormat21 | string)␊ type: "virtualNetworkPeerings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184755,6 +202243,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SubnetPropertiesFormat24 | string)␊ type: "Microsoft.Network/virtualNetworks/subnets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184771,6 +202263,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkPeeringPropertiesFormat21 | string)␊ type: "Microsoft.Network/virtualNetworks/virtualNetworkPeerings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184797,6 +202293,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/virtualNetworkTaps"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184842,6 +202343,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/virtualRouters"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184880,6 +202386,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualRouterPeeringProperties4 | string)␊ type: "peerings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184910,6 +202420,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualRouterPeeringProperties4 | string)␊ type: "Microsoft.Network/virtualRouters/peerings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184936,6 +202450,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/virtualWans"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -184989,6 +202508,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/vpnGateways"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -185163,6 +202687,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VpnConnectionProperties9 | string)␊ type: "vpnConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -185179,6 +202707,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VpnConnectionProperties9 | string)␊ type: "Microsoft.Network/vpnGateways/vpnConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -185205,6 +202737,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/vpnServerConfigurations"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -185355,6 +202892,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Network/vpnSites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -185506,6 +203048,11 @@ Generated by [AVA](https://avajs.dev). * The identity of the application gateway, if configured.␊ */␊ identity?: (ManagedServiceIdentity11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -185682,6 +203229,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186024,6 +203572,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186446,6 +203996,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion12[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186460,6 +204014,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186478,6 +204033,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186492,6 +204050,7 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway capacity.␊ */␊ maxCapacity?: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186531,6 +204090,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the web application firewall policy.␊ */␊ properties: (WebApplicationFirewallPolicyPropertiesFormat9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186549,6 +204113,7 @@ Generated by [AVA](https://avajs.dev). * Describes the managedRules structure.␊ */␊ managedRules: (ManagedRulesDefinition4 | string)␊ + managedRules: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186601,6 +204166,10 @@ Generated by [AVA](https://avajs.dev). * Type of Actions.␊ */␊ action: (("Allow" | "Block" | "Log") | string)␊ + priority: unknown␊ + ruleType: unknown␊ + matchConditions: unknown␊ + action: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186627,6 +204196,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms.␊ */␊ transforms?: (("Lowercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls" | "HtmlEntityDecode")[] | string)␊ + matchVariables: unknown␊ + operator: unknown␊ + matchValues: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186641,6 +204213,7 @@ Generated by [AVA](https://avajs.dev). * The selector of match variable.␊ */␊ selector?: string␊ + variableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186655,6 +204228,7 @@ Generated by [AVA](https://avajs.dev). * The managed rule sets that are associated with the policy.␊ */␊ managedRuleSets: (ManagedRuleSet6[] | string)␊ + managedRuleSets: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186673,6 +204247,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186691,6 +204268,8 @@ Generated by [AVA](https://avajs.dev). * Defines the rule group overrides to apply to the rule set.␊ */␊ ruleGroupOverrides?: (ManagedRuleGroupOverride6[] | string)␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186705,6 +204284,7 @@ Generated by [AVA](https://avajs.dev). * List of rules that will be disabled. If none specified, all rules in the group will be disabled.␊ */␊ rules?: (ManagedRuleOverride6[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186719,6 +204299,7 @@ Generated by [AVA](https://avajs.dev). * The state of the managed rule. Defaults to Disabled if not specified.␊ */␊ state?: ("Disabled" | string)␊ + ruleId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186744,6 +204325,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -186771,6 +204357,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187139,6 +204730,11 @@ Generated by [AVA](https://avajs.dev). * Represents the bastion host resource.␊ */␊ properties: (BastionHostPropertiesFormat7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187185,6 +204781,8 @@ Generated by [AVA](https://avajs.dev). * Private IP allocation method.␊ */␊ privateIPAllocationMethod?: (("Static" | "Dynamic") | string)␊ + subnet: unknown␊ + publicIPAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187208,6 +204806,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway connection.␊ */␊ properties: (VirtualNetworkGatewayConnectionPropertiesFormat25 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187278,6 +204881,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding.␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187316,6 +204921,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Group used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187330,6 +204943,8 @@ Generated by [AVA](https://avajs.dev). * A collection of remote address spaces in CIDR format.␊ */␊ remoteAddressRanges: (string[] | string)␊ + localAddressRanges: unknown␊ + remoteAddressRanges: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187353,6 +204968,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS custom policy.␊ */␊ properties: (DdosCustomPolicyPropertiesFormat7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187410,6 +205030,10 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187438,6 +205062,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPropertiesFormat18 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource18 | ExpressRouteCircuitsAuthorizationsChildResource18)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187688,6 +205317,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat19 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource16[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187701,6 +205334,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat16 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187752,6 +205389,10 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187767,6 +205408,10 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187781,6 +205426,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat19 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource16[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187794,6 +205443,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat16 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187818,6 +205471,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCrossConnectionProperties16 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource16[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187921,6 +205579,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties16 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187934,6 +205596,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties16 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187958,6 +205624,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteGatewayProperties7 | string)␊ resources?: ExpressRouteGatewaysExpressRouteConnectionsChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -187972,6 +205643,7 @@ Generated by [AVA](https://avajs.dev). * The Virtual Hub where the ExpressRoute gateway is or will be deployed.␊ */␊ virtualHub: (SubResource33 | string)␊ + virtualHub: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188009,6 +205681,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188031,6 +205707,7 @@ Generated by [AVA](https://avajs.dev). * Enable internet security.␊ */␊ enableInternetSecurity?: (boolean | string)␊ + expressRouteCircuitPeering: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188044,6 +205721,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188071,6 +205752,11 @@ Generated by [AVA](https://avajs.dev). * The identity of ExpressRoutePort, if configured.␊ */␊ identity?: (ManagedServiceIdentity11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188163,6 +205849,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FirewallPolicyPropertiesFormat6 | string)␊ resources?: FirewallPoliciesRuleGroupsChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188194,6 +205885,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188255,6 +205950,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188278,6 +205977,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the IpAllocation.␊ */␊ properties: (IpAllocationPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188333,6 +206037,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the IpGroups.␊ */␊ properties: (IpGroupPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188371,6 +206080,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoadBalancerPropertiesFormat25 | string)␊ resources?: LoadBalancersInboundNatRulesChildResource21[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188433,6 +206147,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188479,6 +206194,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of backend address pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188493,6 +206209,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of load balancing rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188543,6 +206260,10 @@ Generated by [AVA](https://avajs.dev). * Configures SNAT for the VMs in the backend pool to use the publicIP address specified in the frontend of the load balancing rule.␊ */␊ disableOutboundSnat?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188557,6 +206278,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of probes used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188583,6 +206305,9 @@ Generated by [AVA](https://avajs.dev). * The URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value.␊ */␊ requestPath?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188597,6 +206322,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188631,6 +206357,10 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188645,6 +206375,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188683,6 +206414,11 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188727,6 +206463,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188740,6 +206479,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat25 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188753,6 +206496,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat25 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188776,6 +206523,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the local network gateway.␊ */␊ properties: (LocalNetworkGatewayPropertiesFormat25 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188808,6 +206560,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188875,6 +206628,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the zone in which Nat Gateway should be deployed.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188927,6 +206685,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkInterfacePropertiesFormat25 | string)␊ resources?: NetworkInterfacesTapConfigurationsChildResource12[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188953,6 +206716,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether IP forwarding is enabled on this network interface.␊ */␊ enableIPForwarding?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -188967,6 +206731,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189044,6 +206809,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189067,6 +206836,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189090,6 +206863,11 @@ Generated by [AVA](https://avajs.dev). * Network profile properties.␊ */␊ properties: (NetworkProfilePropertiesFormat7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189176,6 +206954,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkSecurityGroupPropertiesFormat25 | string)␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource25[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189266,6 +207049,10 @@ Generated by [AVA](https://avajs.dev). * The direction of the rule. The direction specifies if rule will be evaluated on incoming or outgoing traffic.␊ */␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189279,6 +207066,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat25 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189292,6 +207083,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat25 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189323,6 +207118,11 @@ Generated by [AVA](https://avajs.dev). * Network Virtual Appliance SKU.␊ */␊ sku?: (VirtualApplianceSkuProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189389,6 +207189,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ } | string)␊ resources?: (NetworkWatchersFlowLogsChildResource2 | NetworkWatchersConnectionMonitorsChildResource7 | NetworkWatchersPacketCapturesChildResource10)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189412,6 +207217,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the flow log.␊ */␊ properties: (FlowLogPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189442,6 +207252,8 @@ Generated by [AVA](https://avajs.dev). * Parameters that define the configuration of traffic analytics.␊ */␊ flowAnalyticsConfiguration?: (TrafficAnalyticsProperties2 | string)␊ + targetResourceId: unknown␊ + storageId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189529,6 +207341,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the connection monitor.␊ */␊ properties: (ConnectionMonitorParameters7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189585,6 +207401,7 @@ Generated by [AVA](https://avajs.dev). * The source port used by connection monitor.␊ */␊ port?: (number | string)␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189625,6 +207442,7 @@ Generated by [AVA](https://avajs.dev). * Filter for sub-items within the endpoint.␊ */␊ filter?: (ConnectionMonitorEndpointFilter2 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189691,6 +207509,8 @@ Generated by [AVA](https://avajs.dev). * The threshold for declaring a test successful.␊ */␊ successThreshold?: (ConnectionMonitorSuccessThreshold2 | string)␊ + name: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189799,6 +207619,10 @@ Generated by [AVA](https://avajs.dev). * List of destination endpoint names.␊ */␊ destinations: (string[] | string)␊ + name: unknown␊ + testConfigurations: unknown␊ + sources: unknown␊ + destinations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189836,6 +207660,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189866,6 +207694,8 @@ Generated by [AVA](https://avajs.dev). * A list of packet capture filters.␊ */␊ filters?: (PacketCaptureFilter10[] | string)␊ + target: unknown␊ + storageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189933,6 +207763,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the connection monitor.␊ */␊ properties: (ConnectionMonitorParameters7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189956,6 +207790,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the flow log.␊ */␊ properties: (FlowLogPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189969,6 +207808,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -189992,6 +207835,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnGateway.␊ */␊ properties: (P2SVpnGatewayProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190062,6 +207910,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointProperties7 | string)␊ resources?: PrivateEndpointsPrivateDnsZoneGroupsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190165,6 +208018,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private dns zone group.␊ */␊ properties: (PrivateDnsZoneGroupPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190212,6 +208069,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private dns zone group.␊ */␊ properties: (PrivateDnsZoneGroupPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190236,6 +208097,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkServiceProperties7 | string)␊ resources?: PrivateLinkServicesPrivateEndpointConnectionsChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190339,6 +208205,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190362,6 +208232,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190393,6 +208267,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190441,6 +208320,7 @@ Generated by [AVA](https://avajs.dev). * The idle timeout of the public IP address.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190459,6 +208339,7 @@ Generated by [AVA](https://avajs.dev). * The reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN.␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190522,6 +208403,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190574,6 +208460,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteFilterPropertiesFormat10 | string)␊ resources?: RouteFiltersRouteFilterRulesChildResource10[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190620,6 +208511,9 @@ Generated by [AVA](https://avajs.dev). * The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].␊ */␊ communities: (string[] | string)␊ + access: unknown␊ + routeFilterRuleType: unknown␊ + communities: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190637,6 +208531,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190654,6 +208552,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190678,6 +208580,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteTablePropertiesFormat25 | string)␊ resources?: RouteTablesRoutesChildResource25[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190724,6 +208631,8 @@ Generated by [AVA](https://avajs.dev). * The IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.␊ */␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190737,6 +208646,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat25 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190750,6 +208663,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat25 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190773,6 +208690,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the Security Partner Provider.␊ */␊ properties: (SecurityPartnerProviderPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190811,6 +208733,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServiceEndpointPolicyPropertiesFormat8 | string)␊ resources?: ServiceEndpointPoliciesServiceEndpointPolicyDefinitionsChildResource8[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190866,6 +208793,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190879,6 +208810,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -190903,6 +208838,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualHubProperties10 | string)␊ resources?: VirtualHubsRouteTablesChildResource3[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191080,6 +209020,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub route table v2.␊ */␊ properties: (VirtualHubRouteTableV2Properties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191093,6 +209037,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub route table v2.␊ */␊ properties: (VirtualHubRouteTableV2Properties3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191116,6 +209064,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway.␊ */␊ properties: (VirtualNetworkGatewayPropertiesFormat25 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191284,6 +209237,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191294,6 +209248,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191336,6 +209291,7 @@ Generated by [AVA](https://avajs.dev). * The secret used for this radius server.␊ */␊ radiusServerSecret?: string␊ + radiusServerAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191360,6 +209316,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkPropertiesFormat25 | string)␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource22 | VirtualNetworksSubnetsChildResource25)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191402,6 +209363,7 @@ Generated by [AVA](https://avajs.dev). * Array of IpAllocation which reference this VNET.␊ */␊ ipAllocations?: (SubResource33[] | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191412,6 +209374,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191426,6 +209389,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191476,6 +209440,7 @@ Generated by [AVA](https://avajs.dev). * Enable or Disable apply network policies on private link service in the subnet.␊ */␊ privateLinkServiceNetworkPolicies?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191504,6 +209469,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a subnet. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191528,6 +209494,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191562,6 +209529,7 @@ Generated by [AVA](https://avajs.dev). * The status of the virtual network peering.␊ */␊ peeringState?: (("Initiated" | "Connected" | "Disconnected") | string)␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191572,6 +209540,7 @@ Generated by [AVA](https://avajs.dev). * The BGP community associated with the virtual network.␊ */␊ virtualNetworkCommunity: string␊ + virtualNetworkCommunity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191585,6 +209554,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat22 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191598,6 +209571,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat25 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191611,6 +209588,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat25 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191624,6 +209605,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat22 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191647,6 +209632,11 @@ Generated by [AVA](https://avajs.dev). * Virtual Network Tap Properties.␊ */␊ properties: (VirtualNetworkTapPropertiesFormat7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191689,6 +209679,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualRouterPropertiesFormat5 | string)␊ resources?: VirtualRoutersPeeringsChildResource5[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191724,6 +209719,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191751,6 +209750,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191774,6 +209777,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual WAN.␊ */␊ properties: (VirtualWanProperties10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191824,6 +209832,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VpnGatewayProperties10 | string)␊ resources?: VpnGatewaysVpnConnectionsChildResource10[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -191999,6 +210012,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -192012,6 +210029,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -192035,6 +210056,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnServer configuration.␊ */␊ properties: (VpnServerConfigurationProperties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -192186,6 +210212,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN site.␊ */␊ properties: (VpnSiteProperties10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -192337,6 +210368,11 @@ Generated by [AVA](https://avajs.dev). * The identity of the application gateway, if configured.␊ */␊ identity?: (ManagedServiceIdentity12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -192513,6 +210549,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -192855,6 +210892,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193277,6 +211316,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion13[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193291,6 +211334,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193309,6 +211353,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193323,6 +211370,7 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway capacity.␊ */␊ maxCapacity?: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193362,6 +211410,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the web application firewall policy.␊ */␊ properties: (WebApplicationFirewallPolicyPropertiesFormat10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193380,6 +211433,7 @@ Generated by [AVA](https://avajs.dev). * Describes the managedRules structure.␊ */␊ managedRules: (ManagedRulesDefinition5 | string)␊ + managedRules: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193432,6 +211486,10 @@ Generated by [AVA](https://avajs.dev). * Type of Actions.␊ */␊ action: (("Allow" | "Block" | "Log") | string)␊ + priority: unknown␊ + ruleType: unknown␊ + matchConditions: unknown␊ + action: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193458,6 +211516,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms.␊ */␊ transforms?: (("Lowercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls" | "HtmlEntityDecode")[] | string)␊ + matchVariables: unknown␊ + operator: unknown␊ + matchValues: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193472,6 +211533,7 @@ Generated by [AVA](https://avajs.dev). * The selector of match variable.␊ */␊ selector?: string␊ + variableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193486,6 +211548,7 @@ Generated by [AVA](https://avajs.dev). * The managed rule sets that are associated with the policy.␊ */␊ managedRuleSets: (ManagedRuleSet7[] | string)␊ + managedRuleSets: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193504,6 +211567,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193522,6 +211588,8 @@ Generated by [AVA](https://avajs.dev). * Defines the rule group overrides to apply to the rule set.␊ */␊ ruleGroupOverrides?: (ManagedRuleGroupOverride7[] | string)␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193536,6 +211604,7 @@ Generated by [AVA](https://avajs.dev). * List of rules that will be disabled. If none specified, all rules in the group will be disabled.␊ */␊ rules?: (ManagedRuleOverride7[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193550,6 +211619,7 @@ Generated by [AVA](https://avajs.dev). * The state of the managed rule. Defaults to Disabled if not specified.␊ */␊ state?: ("Disabled" | string)␊ + ruleId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193573,6 +211643,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the application security group.␊ */␊ properties: (ApplicationSecurityGroupPropertiesFormat6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193606,6 +211681,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -193974,6 +212054,11 @@ Generated by [AVA](https://avajs.dev). * Represents the bastion host resource.␊ */␊ properties: (BastionHostPropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194020,6 +212105,8 @@ Generated by [AVA](https://avajs.dev). * Private IP allocation method.␊ */␊ privateIPAllocationMethod?: (("Static" | "Dynamic") | string)␊ + subnet: unknown␊ + publicIPAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194043,6 +212130,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway connection.␊ */␊ properties: (VirtualNetworkGatewayConnectionPropertiesFormat26 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194113,6 +212205,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding.␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194151,6 +212245,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Group used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194165,6 +212267,8 @@ Generated by [AVA](https://avajs.dev). * A collection of remote address spaces in CIDR format.␊ */␊ remoteAddressRanges: (string[] | string)␊ + localAddressRanges: unknown␊ + remoteAddressRanges: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194188,6 +212292,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS custom policy.␊ */␊ properties: (DdosCustomPolicyPropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194243,6 +212352,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS protection plan.␊ */␊ properties: (DdosProtectionPlanPropertiesFormat12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194277,6 +212390,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPropertiesFormat19 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource19 | ExpressRouteCircuitsAuthorizationsChildResource19)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194531,6 +212649,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat20 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource17[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194544,6 +212666,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194593,6 +212719,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194606,6 +212736,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit authorization.␊ */␊ properties: (AuthorizationPropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194620,6 +212754,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat20 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource17[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194633,6 +212771,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194657,6 +212799,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCrossConnectionProperties17 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource17[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194760,6 +212907,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194773,6 +212924,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties17 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194797,6 +212952,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteGatewayProperties8 | string)␊ resources?: ExpressRouteGatewaysExpressRouteConnectionsChildResource8[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194811,6 +212971,7 @@ Generated by [AVA](https://avajs.dev). * The Virtual Hub where the ExpressRoute gateway is or will be deployed.␊ */␊ virtualHub: (SubResource34 | string)␊ + virtualHub: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194848,6 +213009,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194874,6 +213039,7 @@ Generated by [AVA](https://avajs.dev). * The Routing Configuration indicating the associated and propagated route tables on this connection.␊ */␊ routingConfiguration?: (RoutingConfiguration | string)␊ + expressRouteCircuitPeering: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194947,6 +213113,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -194974,6 +213144,11 @@ Generated by [AVA](https://avajs.dev). * The identity of ExpressRoutePort, if configured.␊ */␊ identity?: (ManagedServiceIdentity12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195070,6 +213245,11 @@ Generated by [AVA](https://avajs.dev). */␊ identity?: (ManagedServiceIdentity12 | string)␊ resources?: FirewallPoliciesRuleGroupsChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195189,6 +213369,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195250,6 +213434,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule group.␊ */␊ properties: (FirewallPolicyRuleGroupProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195273,6 +213461,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the IpAllocation.␊ */␊ properties: (IpAllocationPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195328,6 +213521,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the IpGroups.␊ */␊ properties: (IpGroupPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195366,6 +213564,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoadBalancerPropertiesFormat26 | string)␊ resources?: (LoadBalancersInboundNatRulesChildResource22 | LoadBalancersBackendAddressPoolsChildResource)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195428,6 +213631,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195472,6 +213676,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of backend address pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195534,6 +213739,7 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network.␊ */␊ properties?: (VirtualNetworkPropertiesFormat26 | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195576,6 +213782,7 @@ Generated by [AVA](https://avajs.dev). * Array of IpAllocation which reference this VNET.␊ */␊ ipAllocations?: (SubResource34[] | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195586,6 +213793,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195596,6 +213804,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195610,6 +213819,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195660,6 +213870,7 @@ Generated by [AVA](https://avajs.dev). * Enable or Disable apply network policies on private link service in the subnet.␊ */␊ privateLinkServiceNetworkPolicies?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195688,6 +213899,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a subnet. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195712,6 +213924,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195746,6 +213959,7 @@ Generated by [AVA](https://avajs.dev). * The status of the virtual network peering.␊ */␊ peeringState?: (("Initiated" | "Connected" | "Disconnected") | string)␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195756,6 +213970,7 @@ Generated by [AVA](https://avajs.dev). * The BGP community associated with the virtual network.␊ */␊ virtualNetworkCommunity: string␊ + virtualNetworkCommunity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195770,6 +213985,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195834,6 +214050,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of load balancing rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195884,6 +214101,10 @@ Generated by [AVA](https://avajs.dev). * Configures SNAT for the VMs in the backend pool to use the publicIP address specified in the frontend of the load balancing rule.␊ */␊ disableOutboundSnat?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195898,6 +214119,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of probes used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195924,6 +214146,9 @@ Generated by [AVA](https://avajs.dev). * The URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value.␊ */␊ requestPath?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195938,6 +214163,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195972,6 +214198,10 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -195986,6 +214216,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196024,6 +214255,11 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196068,6 +214304,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196081,6 +214320,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat26 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196094,6 +214337,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer backend address pool.␊ */␊ properties: (BackendAddressPoolPropertiesFormat24 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196107,6 +214354,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer backend address pool.␊ */␊ properties: (BackendAddressPoolPropertiesFormat24 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196120,6 +214371,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat26 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196143,6 +214398,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the local network gateway.␊ */␊ properties: (LocalNetworkGatewayPropertiesFormat26 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196232,6 +214492,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the zone in which Nat Gateway should be deployed.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196284,6 +214549,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkInterfacePropertiesFormat26 | string)␊ resources?: NetworkInterfacesTapConfigurationsChildResource13[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196310,6 +214580,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether IP forwarding is enabled on this network interface.␊ */␊ enableIPForwarding?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196337,6 +214608,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat13 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196360,6 +214635,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat13 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196383,6 +214662,11 @@ Generated by [AVA](https://avajs.dev). * Network profile properties.␊ */␊ properties: (NetworkProfilePropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196469,6 +214753,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkSecurityGroupPropertiesFormat26 | string)␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource26[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196559,6 +214848,10 @@ Generated by [AVA](https://avajs.dev). * The direction of the rule. The direction specifies if rule will be evaluated on incoming or outgoing traffic.␊ */␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196572,6 +214865,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat26 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196585,6 +214882,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat26 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196616,6 +214917,11 @@ Generated by [AVA](https://avajs.dev). * Network Virtual Appliance SKU.␊ */␊ sku?: (VirtualApplianceSkuProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196680,6 +214986,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkWatcherPropertiesFormat6 | string)␊ resources?: (NetworkWatchersFlowLogsChildResource3 | NetworkWatchersConnectionMonitorsChildResource8 | NetworkWatchersPacketCapturesChildResource11)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196709,6 +215020,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the flow log.␊ */␊ properties: (FlowLogPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196739,6 +215055,8 @@ Generated by [AVA](https://avajs.dev). * Parameters that define the configuration of traffic analytics.␊ */␊ flowAnalyticsConfiguration?: (TrafficAnalyticsProperties3 | string)␊ + targetResourceId: unknown␊ + storageId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196826,6 +215144,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the connection monitor.␊ */␊ properties: (ConnectionMonitorParameters8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196882,6 +215204,7 @@ Generated by [AVA](https://avajs.dev). * The source port used by connection monitor.␊ */␊ port?: (number | string)␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196922,6 +215245,7 @@ Generated by [AVA](https://avajs.dev). * Filter for sub-items within the endpoint.␊ */␊ filter?: (ConnectionMonitorEndpointFilter3 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -196988,6 +215312,8 @@ Generated by [AVA](https://avajs.dev). * The threshold for declaring a test successful.␊ */␊ successThreshold?: (ConnectionMonitorSuccessThreshold3 | string)␊ + name: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197096,6 +215422,10 @@ Generated by [AVA](https://avajs.dev). * List of destination endpoint names.␊ */␊ destinations: (string[] | string)␊ + name: unknown␊ + testConfigurations: unknown␊ + sources: unknown␊ + destinations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197133,6 +215463,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197163,6 +215497,8 @@ Generated by [AVA](https://avajs.dev). * A list of packet capture filters.␊ */␊ filters?: (PacketCaptureFilter11[] | string)␊ + target: unknown␊ + storageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197230,6 +215566,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the connection monitor.␊ */␊ properties: (ConnectionMonitorParameters8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197253,6 +215593,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the flow log.␊ */␊ properties: (FlowLogPropertiesFormat3 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197266,6 +215611,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197289,6 +215638,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnGateway.␊ */␊ properties: (P2SVpnGatewayProperties8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197367,6 +215721,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointProperties8 | string)␊ resources?: PrivateEndpointsPrivateDnsZoneGroupsChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197470,6 +215829,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private dns zone group.␊ */␊ properties: (PrivateDnsZoneGroupPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197517,6 +215880,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private dns zone group.␊ */␊ properties: (PrivateDnsZoneGroupPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197541,6 +215908,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkServiceProperties8 | string)␊ resources?: PrivateLinkServicesPrivateEndpointConnectionsChildResource8[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197644,6 +216016,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties15 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197667,6 +216043,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties15 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197698,6 +216078,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197746,6 +216131,7 @@ Generated by [AVA](https://avajs.dev). * The idle timeout of the public IP address.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197764,6 +216150,7 @@ Generated by [AVA](https://avajs.dev). * The reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN.␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197827,6 +216214,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197879,6 +216271,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteFilterPropertiesFormat11 | string)␊ resources?: RouteFiltersRouteFilterRulesChildResource11[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197925,6 +216322,9 @@ Generated by [AVA](https://avajs.dev). * The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].␊ */␊ communities: (string[] | string)␊ + access: unknown␊ + routeFilterRuleType: unknown␊ + communities: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197942,6 +216342,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197959,6 +216363,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -197983,6 +216391,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteTablePropertiesFormat26 | string)␊ resources?: RouteTablesRoutesChildResource26[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198029,6 +216442,8 @@ Generated by [AVA](https://avajs.dev). * The IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.␊ */␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198042,6 +216457,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat26 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198055,6 +216474,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat26 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198078,6 +216501,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the Security Partner Provider.␊ */␊ properties: (SecurityPartnerProviderPropertiesFormat1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198116,6 +216544,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServiceEndpointPolicyPropertiesFormat9 | string)␊ resources?: ServiceEndpointPoliciesServiceEndpointPolicyDefinitionsChildResource9[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198171,6 +216604,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198184,6 +216621,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198208,6 +216649,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualHubProperties11 | string)␊ resources?: (VirtualHubsHubRouteTablesChildResource | VirtualHubsRouteTablesChildResource4)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198389,6 +216835,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the RouteTable resource.␊ */␊ properties: (HubRouteTableProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198429,6 +216879,11 @@ Generated by [AVA](https://avajs.dev). * NextHop resource ID.␊ */␊ nextHop: string␊ + name: unknown␊ + destinationType: unknown␊ + destinations: unknown␊ + nextHopType: unknown␊ + nextHop: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198442,6 +216897,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub route table v2.␊ */␊ properties: (VirtualHubRouteTableV2Properties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198455,6 +216914,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the RouteTable resource.␊ */␊ properties: (HubRouteTableProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198468,6 +216931,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub route table v2.␊ */␊ properties: (VirtualHubRouteTableV2Properties4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198491,6 +216958,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway.␊ */␊ properties: (VirtualNetworkGatewayPropertiesFormat26 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198659,6 +217131,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198669,6 +217142,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198711,6 +217185,7 @@ Generated by [AVA](https://avajs.dev). * The secret used for this radius server.␊ */␊ radiusServerSecret?: string␊ + radiusServerAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198735,6 +217210,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkPropertiesFormat26 | string)␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource23 | VirtualNetworksSubnetsChildResource26)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198748,6 +217228,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat23 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198761,6 +217245,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat26 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198774,6 +217262,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat26 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198787,6 +217279,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat23 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198810,6 +217306,11 @@ Generated by [AVA](https://avajs.dev). * Virtual Network Tap Properties.␊ */␊ properties: (VirtualNetworkTapPropertiesFormat8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198852,6 +217353,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualRouterPropertiesFormat6 | string)␊ resources?: VirtualRoutersPeeringsChildResource6[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198887,6 +217393,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198914,6 +217424,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198937,6 +217451,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual WAN.␊ */␊ properties: (VirtualWanProperties11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -198987,6 +217506,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VpnGatewayProperties11 | string)␊ resources?: VpnGatewaysVpnConnectionsChildResource11[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -199166,6 +217690,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -199179,6 +217707,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -199202,6 +217734,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnServer configuration.␊ */␊ properties: (VpnServerConfigurationProperties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -199353,6 +217890,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN site.␊ */␊ properties: (VpnSiteProperties11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -199505,6 +218047,11 @@ Generated by [AVA](https://avajs.dev). */␊ identity?: (ManagedServiceIdentity13 | string)␊ resources?: ApplicationGatewaysPrivateEndpointConnectionsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -199685,6 +218232,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200031,6 +218579,8 @@ Generated by [AVA](https://avajs.dev). * The number of seconds connection draining is active. Acceptable values are from 1 second to 3600 seconds.␊ */␊ drainTimeoutInSec: (number | string)␊ + enabled: unknown␊ + drainTimeoutInSec: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200453,6 +219003,10 @@ Generated by [AVA](https://avajs.dev). * The exclusion list.␊ */␊ exclusions?: (ApplicationGatewayFirewallExclusion14[] | string)␊ + enabled: unknown␊ + firewallMode: unknown␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200467,6 +219021,7 @@ Generated by [AVA](https://avajs.dev). * The list of rules that will be disabled. If null, all rules of the rule group will be disabled.␊ */␊ rules?: (number[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200485,6 +219040,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200499,6 +219057,7 @@ Generated by [AVA](https://avajs.dev). * Upper bound on number of Application Gateway capacity.␊ */␊ maxCapacity?: (number | string)␊ + minCapacity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200588,6 +219147,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the application gateway private endpoint connection.␊ */␊ properties: (ApplicationGatewayPrivateEndpointConnectionProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200629,6 +219192,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the application gateway private endpoint connection.␊ */␊ properties: (ApplicationGatewayPrivateEndpointConnectionProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200652,6 +219219,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the web application firewall policy.␊ */␊ properties: (WebApplicationFirewallPolicyPropertiesFormat11 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200670,6 +219242,7 @@ Generated by [AVA](https://avajs.dev). * Describes the managedRules structure.␊ */␊ managedRules: (ManagedRulesDefinition6 | string)␊ + managedRules: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200722,6 +219295,10 @@ Generated by [AVA](https://avajs.dev). * Type of Actions.␊ */␊ action: (("Allow" | "Block" | "Log") | string)␊ + priority: unknown␊ + ruleType: unknown␊ + matchConditions: unknown␊ + action: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200748,6 +219325,9 @@ Generated by [AVA](https://avajs.dev). * List of transforms.␊ */␊ transforms?: (("Lowercase" | "Trim" | "UrlDecode" | "UrlEncode" | "RemoveNulls" | "HtmlEntityDecode")[] | string)␊ + matchVariables: unknown␊ + operator: unknown␊ + matchValues: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200762,6 +219342,7 @@ Generated by [AVA](https://avajs.dev). * The selector of match variable.␊ */␊ selector?: string␊ + variableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200776,6 +219357,7 @@ Generated by [AVA](https://avajs.dev). * The managed rule sets that are associated with the policy.␊ */␊ managedRuleSets: (ManagedRuleSet8[] | string)␊ + managedRuleSets: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200794,6 +219376,9 @@ Generated by [AVA](https://avajs.dev). * When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.␊ */␊ selector: string␊ + matchVariable: unknown␊ + selectorMatchOperator: unknown␊ + selector: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200812,6 +219397,8 @@ Generated by [AVA](https://avajs.dev). * Defines the rule group overrides to apply to the rule set.␊ */␊ ruleGroupOverrides?: (ManagedRuleGroupOverride8[] | string)␊ + ruleSetType: unknown␊ + ruleSetVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200826,6 +219413,7 @@ Generated by [AVA](https://avajs.dev). * List of rules that will be disabled. If none specified, all rules in the group will be disabled.␊ */␊ rules?: (ManagedRuleOverride8[] | string)␊ + ruleGroupName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200840,6 +219428,7 @@ Generated by [AVA](https://avajs.dev). * The state of the managed rule. Defaults to Disabled if not specified.␊ */␊ state?: ("Disabled" | string)␊ + ruleId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200865,6 +219454,11 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -200892,6 +219486,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting where the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201302,6 +219901,11 @@ Generated by [AVA](https://avajs.dev). * Represents the bastion host resource.␊ */␊ properties: (BastionHostPropertiesFormat9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201348,6 +219952,8 @@ Generated by [AVA](https://avajs.dev). * Private IP allocation method.␊ */␊ privateIPAllocationMethod?: (("Static" | "Dynamic") | string)␊ + subnet: unknown␊ + publicIPAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201371,6 +219977,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway connection.␊ */␊ properties: (VirtualNetworkGatewayConnectionPropertiesFormat27 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201441,6 +220052,8 @@ Generated by [AVA](https://avajs.dev). * Bypass ExpressRoute Gateway for data forwarding.␊ */␊ expressRouteGatewayBypass?: (boolean | string)␊ + virtualNetworkGateway1: unknown␊ + connectionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201479,6 +220092,14 @@ Generated by [AVA](https://avajs.dev). * The Pfs Group used in IKE Phase 2 for new child SA.␊ */␊ pfsGroup: (("None" | "PFS1" | "PFS2" | "PFS2048" | "ECP256" | "ECP384" | "PFS24" | "PFS14" | "PFSMM") | string)␊ + saLifeTimeSeconds: unknown␊ + saDataSizeKilobytes: unknown␊ + ipsecEncryption: unknown␊ + ipsecIntegrity: unknown␊ + ikeEncryption: unknown␊ + ikeIntegrity: unknown␊ + dhGroup: unknown␊ + pfsGroup: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201493,6 +220114,8 @@ Generated by [AVA](https://avajs.dev). * A collection of remote address spaces in CIDR format.␊ */␊ remoteAddressRanges: (string[] | string)␊ + localAddressRanges: unknown␊ + remoteAddressRanges: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201516,6 +220139,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the DDoS custom policy.␊ */␊ properties: (DdosCustomPolicyPropertiesFormat9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201573,6 +220201,10 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201601,6 +220233,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPropertiesFormat20 | string)␊ resources?: (ExpressRouteCircuitsPeeringsChildResource20 | ExpressRouteCircuitsAuthorizationsChildResource20)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201851,6 +220488,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat21 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource18[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201864,6 +220505,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201915,6 +220560,10 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201930,6 +220579,10 @@ Generated by [AVA](https://avajs.dev). properties: ({␊ [k: string]: unknown␊ } | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201944,6 +220597,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCircuitPeeringPropertiesFormat21 | string)␊ resources?: ExpressRouteCircuitsPeeringsConnectionsChildResource18[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201957,6 +220614,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route circuit connection.␊ */␊ properties: (ExpressRouteCircuitConnectionPropertiesFormat18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -201981,6 +220642,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteCrossConnectionProperties18 | string)␊ resources?: ExpressRouteCrossConnectionsPeeringsChildResource18[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202084,6 +220750,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202097,6 +220767,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route cross connection peering.␊ */␊ properties: (ExpressRouteCrossConnectionPeeringProperties18 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202121,6 +220795,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExpressRouteGatewayProperties9 | string)␊ resources?: ExpressRouteGatewaysExpressRouteConnectionsChildResource9[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202135,6 +220814,7 @@ Generated by [AVA](https://avajs.dev). * The Virtual Hub where the ExpressRoute gateway is or will be deployed.␊ */␊ virtualHub: (SubResource35 | string)␊ + virtualHub: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202172,6 +220852,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202198,6 +220882,7 @@ Generated by [AVA](https://avajs.dev). * The Routing Configuration indicating the associated and propagated route tables on this connection.␊ */␊ routingConfiguration?: (RoutingConfiguration1 | string)␊ + expressRouteCircuitPeering: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202271,6 +220956,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the express route connection.␊ */␊ properties: (ExpressRouteConnectionProperties9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202298,6 +220987,11 @@ Generated by [AVA](https://avajs.dev). * The identity of ExpressRoutePort, if configured.␊ */␊ identity?: (ManagedServiceIdentity13 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202394,6 +221088,11 @@ Generated by [AVA](https://avajs.dev). */␊ identity?: (ManagedServiceIdentity13 | string)␊ resources?: FirewallPoliciesRuleCollectionGroupsChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202535,6 +221234,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule collection group.␊ */␊ properties: (FirewallPolicyRuleCollectionGroupProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202596,6 +221299,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the firewall policy rule collection group.␊ */␊ properties: (FirewallPolicyRuleCollectionGroupProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202619,6 +221326,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the IpAllocation.␊ */␊ properties: (IpAllocationPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202674,6 +221386,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the IpGroups.␊ */␊ properties: (IpGroupPropertiesFormat5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202712,6 +221429,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LoadBalancerPropertiesFormat27 | string)␊ resources?: (LoadBalancersInboundNatRulesChildResource23 | LoadBalancersBackendAddressPoolsChildResource1)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202774,6 +221496,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202818,6 +221541,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of backend address pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202870,6 +221594,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of load balancing rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202920,6 +221645,10 @@ Generated by [AVA](https://avajs.dev). * Configures SNAT for the VMs in the backend pool to use the publicIP address specified in the frontend of the load balancing rule.␊ */␊ disableOutboundSnat?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202934,6 +221663,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of probes used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202960,6 +221690,9 @@ Generated by [AVA](https://avajs.dev). * The URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value.␊ */␊ requestPath?: string␊ + protocol: unknown␊ + port: unknown␊ + numberOfProbes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -202974,6 +221707,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT rules used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203008,6 +221742,10 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPort: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203022,6 +221760,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within the set of inbound NAT pools used by the load balancer. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203060,6 +221799,11 @@ Generated by [AVA](https://avajs.dev). * Receive bidirectional TCP Reset on TCP flow idle timeout or unexpected connection termination. This element is only used when the protocol is set to TCP.␊ */␊ enableTcpReset?: (boolean | string)␊ + frontendIPConfiguration: unknown␊ + protocol: unknown␊ + frontendPortRangeStart: unknown␊ + frontendPortRangeEnd: unknown␊ + backendPort: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203104,6 +221848,9 @@ Generated by [AVA](https://avajs.dev). * The timeout for the TCP idle connection.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + frontendIPConfigurations: unknown␊ + backendAddressPool: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203117,6 +221864,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat27 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203130,6 +221881,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer backend address pool.␊ */␊ properties: (BackendAddressPoolPropertiesFormat25 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203143,6 +221898,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer backend address pool.␊ */␊ properties: (BackendAddressPoolPropertiesFormat25 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203156,6 +221915,10 @@ Generated by [AVA](https://avajs.dev). * Properties of load balancer inbound nat rule.␊ */␊ properties: (InboundNatRulePropertiesFormat27 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203179,6 +221942,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the local network gateway.␊ */␊ properties: (LocalNetworkGatewayPropertiesFormat27 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203211,6 +221979,7 @@ Generated by [AVA](https://avajs.dev). * A list of address blocks reserved for this virtual network in CIDR notation.␊ */␊ addressPrefixes: (string[] | string)␊ + addressPrefixes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203278,6 +222047,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the zone in which Nat Gateway should be deployed.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203330,6 +222104,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkInterfacePropertiesFormat27 | string)␊ resources?: NetworkInterfacesTapConfigurationsChildResource14[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203356,6 +222135,7 @@ Generated by [AVA](https://avajs.dev). * Indicates whether IP forwarding is enabled on this network interface.␊ */␊ enableIPForwarding?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203370,6 +222150,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203447,6 +222228,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203470,6 +222255,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the Virtual Network Tap configuration.␊ */␊ properties: (NetworkInterfaceTapConfigurationPropertiesFormat14 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203493,6 +222282,11 @@ Generated by [AVA](https://avajs.dev). * Network profile properties.␊ */␊ properties: (NetworkProfilePropertiesFormat9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203579,6 +222373,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkSecurityGroupPropertiesFormat27 | string)␊ resources?: NetworkSecurityGroupsSecurityRulesChildResource27[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203669,6 +222468,10 @@ Generated by [AVA](https://avajs.dev). * The direction of the rule. The direction specifies if rule will be evaluated on incoming or outgoing traffic.␊ */␊ direction: (("Inbound" | "Outbound") | string)␊ + protocol: unknown␊ + access: unknown␊ + priority: unknown␊ + direction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203682,6 +222485,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat27 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203695,6 +222502,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the security rule.␊ */␊ properties: (SecurityRulePropertiesFormat27 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203723,6 +222534,11 @@ Generated by [AVA](https://avajs.dev). */␊ identity?: (ManagedServiceIdentity13 | string)␊ resources?: NetworkVirtualAppliancesVirtualApplianceSitesChildResource[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203784,6 +222600,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Appliance Sites.␊ */␊ properties: (VirtualApplianceSiteProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203839,6 +222659,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Appliance Sites.␊ */␊ properties: (VirtualApplianceSiteProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203865,6 +222689,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ } | string)␊ resources?: (NetworkWatchersFlowLogsChildResource4 | NetworkWatchersConnectionMonitorsChildResource9 | NetworkWatchersPacketCapturesChildResource12)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203888,6 +222717,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the flow log.␊ */␊ properties: (FlowLogPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -203918,6 +222752,8 @@ Generated by [AVA](https://avajs.dev). * Parameters that define the configuration of traffic analytics.␊ */␊ flowAnalyticsConfiguration?: (TrafficAnalyticsProperties4 | string)␊ + targetResourceId: unknown␊ + storageId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204005,6 +222841,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the connection monitor.␊ */␊ properties: (ConnectionMonitorParameters9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204061,6 +222901,7 @@ Generated by [AVA](https://avajs.dev). * The source port used by connection monitor.␊ */␊ port?: (number | string)␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204101,6 +222942,7 @@ Generated by [AVA](https://avajs.dev). * Filter for sub-items within the endpoint.␊ */␊ filter?: (ConnectionMonitorEndpointFilter4 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204167,6 +223009,8 @@ Generated by [AVA](https://avajs.dev). * The threshold for declaring a test successful.␊ */␊ successThreshold?: (ConnectionMonitorSuccessThreshold4 | string)␊ + name: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204275,6 +223119,10 @@ Generated by [AVA](https://avajs.dev). * List of destination endpoint names.␊ */␊ destinations: (string[] | string)␊ + name: unknown␊ + testConfigurations: unknown␊ + sources: unknown␊ + destinations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204312,6 +223160,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204342,6 +223194,8 @@ Generated by [AVA](https://avajs.dev). * A list of packet capture filters.␊ */␊ filters?: (PacketCaptureFilter12[] | string)␊ + target: unknown␊ + storageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204409,6 +223263,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the connection monitor.␊ */␊ properties: (ConnectionMonitorParameters9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204432,6 +223290,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the flow log.␊ */␊ properties: (FlowLogPropertiesFormat4 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204445,6 +223308,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the packet capture.␊ */␊ properties: (PacketCaptureParameters12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204468,6 +223335,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnGateway.␊ */␊ properties: (P2SVpnGatewayProperties9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204546,6 +223418,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointProperties9 | string)␊ resources?: PrivateEndpointsPrivateDnsZoneGroupsChildResource2[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204631,6 +223508,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private dns zone group.␊ */␊ properties: (PrivateDnsZoneGroupPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204678,6 +223559,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private dns zone group.␊ */␊ properties: (PrivateDnsZoneGroupPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204702,6 +223587,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkServiceProperties9 | string)␊ resources?: PrivateLinkServicesPrivateEndpointConnectionsChildResource9[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204805,6 +223695,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties16 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204828,6 +223722,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the private end point connection.␊ */␊ properties: (PrivateEndpointConnectionProperties16 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204859,6 +223757,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204907,6 +223810,7 @@ Generated by [AVA](https://avajs.dev). * The idle timeout of the public IP address.␊ */␊ idleTimeoutInMinutes?: (number | string)␊ + publicIPAllocationMethod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204925,6 +223829,7 @@ Generated by [AVA](https://avajs.dev). * The reverse FQDN. A user-visible, fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN.␊ */␊ reverseFqdn?: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -204988,6 +223893,11 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205040,6 +223950,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteFilterPropertiesFormat12 | string)␊ resources?: RouteFiltersRouteFilterRulesChildResource12[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205086,6 +224001,9 @@ Generated by [AVA](https://avajs.dev). * The collection for bgp community values to filter on. e.g. ['12076:5010','12076:5020'].␊ */␊ communities: (string[] | string)␊ + access: unknown␊ + routeFilterRuleType: unknown␊ + communities: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205103,6 +224021,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205120,6 +224042,10 @@ Generated by [AVA](https://avajs.dev). * Resource location.␊ */␊ location?: string␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205144,6 +224070,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RouteTablePropertiesFormat27 | string)␊ resources?: RouteTablesRoutesChildResource27[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205190,6 +224121,8 @@ Generated by [AVA](https://avajs.dev). * The IP address packets should be forwarded to. Next hop values are only allowed in routes where the next hop type is VirtualAppliance.␊ */␊ nextHopIpAddress?: string␊ + addressPrefix: unknown␊ + nextHopType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205203,6 +224136,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat27 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205216,6 +224153,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the route.␊ */␊ properties: (RoutePropertiesFormat27 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205239,6 +224180,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the Security Partner Provider.␊ */␊ properties: (SecurityPartnerProviderPropertiesFormat2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205277,6 +224223,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServiceEndpointPolicyPropertiesFormat10 | string)␊ resources?: ServiceEndpointPoliciesServiceEndpointPolicyDefinitionsChildResource10[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205332,6 +224283,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205345,6 +224300,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the service endpoint policy definition.␊ */␊ properties: (ServiceEndpointPolicyDefinitionPropertiesFormat10 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205369,6 +224328,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualHubProperties12 | string)␊ resources?: (VirtualHubsHubRouteTablesChildResource1 | VirtualHubsIpConfigurationsChildResource | VirtualHubsBgpConnectionsChildResource | VirtualHubsRouteTablesChildResource5 | VirtualHubsHubVirtualNetworkConnectionsChildResource)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205518,6 +224482,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the RouteTable resource.␊ */␊ properties: (HubRouteTableProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205558,6 +224526,11 @@ Generated by [AVA](https://avajs.dev). * NextHop resource ID.␊ */␊ nextHop: string␊ + name: unknown␊ + destinationType: unknown␊ + destinations: unknown␊ + nextHopType: unknown␊ + nextHop: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205571,6 +224544,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Hub IPConfigurations.␊ */␊ properties: (HubIPConfigurationPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205607,6 +224584,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205657,6 +224635,7 @@ Generated by [AVA](https://avajs.dev). * Enable or Disable apply network policies on private link service in the subnet.␊ */␊ privateLinkServiceNetworkPolicies?: string␊ + addressPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205685,6 +224664,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a subnet. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205723,6 +224703,7 @@ Generated by [AVA](https://avajs.dev). * A list of availability zones denoting the IP allocated for the resource needs to come from.␊ */␊ zones?: (string[] | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205736,6 +224717,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Bgp connections.␊ */␊ properties: (BgpConnectionProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205763,6 +224748,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub route table v2.␊ */␊ properties: (VirtualHubRouteTableV2Properties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205776,6 +224765,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the hub virtual network connection.␊ */␊ properties: (HubVirtualNetworkConnectionProperties12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205815,6 +224808,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Bgp connections.␊ */␊ properties: (BgpConnectionProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205828,6 +224825,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the RouteTable resource.␊ */␊ properties: (HubRouteTableProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205841,6 +224842,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the hub virtual network connection.␊ */␊ properties: (HubVirtualNetworkConnectionProperties12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205854,6 +224859,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Hub IPConfigurations.␊ */␊ properties: (HubIPConfigurationPropertiesFormat | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205867,6 +224876,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual hub route table v2.␊ */␊ properties: (VirtualHubRouteTableV2Properties5 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -205890,6 +224903,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network gateway.␊ */␊ properties: (VirtualNetworkGatewayPropertiesFormat27 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206058,6 +225076,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name?: string␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206068,6 +225087,7 @@ Generated by [AVA](https://avajs.dev). * The certificate public data.␊ */␊ publicCertData: string␊ + publicCertData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206110,6 +225130,7 @@ Generated by [AVA](https://avajs.dev). * The secret used for this radius server.␊ */␊ radiusServerSecret?: string␊ + radiusServerAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206134,6 +225155,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkPropertiesFormat27 | string)␊ resources?: (VirtualNetworksVirtualNetworkPeeringsChildResource24 | VirtualNetworksSubnetsChildResource27)[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206176,6 +225202,7 @@ Generated by [AVA](https://avajs.dev). * Array of IpAllocation which reference this VNET.␊ */␊ ipAllocations?: (SubResource35[] | string)␊ + addressSpace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206186,6 +225213,7 @@ Generated by [AVA](https://avajs.dev). * The list of DNS servers IP addresses.␊ */␊ dnsServers: (string[] | string)␊ + dnsServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206200,6 +225228,7 @@ Generated by [AVA](https://avajs.dev). * The name of the resource that is unique within a resource group. This name can be used to access the resource.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206234,6 +225263,7 @@ Generated by [AVA](https://avajs.dev). * The status of the virtual network peering.␊ */␊ peeringState?: (("Initiated" | "Connected" | "Disconnected") | string)␊ + remoteVirtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206244,6 +225274,7 @@ Generated by [AVA](https://avajs.dev). * The BGP community associated with the virtual network.␊ */␊ virtualNetworkCommunity: string␊ + virtualNetworkCommunity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206257,6 +225288,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat24 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206270,6 +225305,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat27 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206283,6 +225322,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the subnet.␊ */␊ properties: (SubnetPropertiesFormat27 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206296,6 +225339,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual network peering.␊ */␊ properties: (VirtualNetworkPeeringPropertiesFormat24 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206319,6 +225366,11 @@ Generated by [AVA](https://avajs.dev). * Virtual Network Tap Properties.␊ */␊ properties: (VirtualNetworkTapPropertiesFormat9 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206361,6 +225413,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualRouterPropertiesFormat7 | string)␊ resources?: VirtualRoutersPeeringsChildResource7[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206396,6 +225453,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206423,6 +225484,10 @@ Generated by [AVA](https://avajs.dev). * The properties of the Virtual Router Peering.␊ */␊ properties: (VirtualRouterPeeringProperties7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206446,6 +225511,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the virtual WAN.␊ */␊ properties: (VirtualWanProperties12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206496,6 +225566,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VpnGatewayProperties12 | string)␊ resources?: VpnGatewaysVpnConnectionsChildResource12[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206675,6 +225750,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206688,6 +225767,10 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN connection.␊ */␊ properties: (VpnConnectionProperties12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206711,6 +225794,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the P2SVpnServer configuration.␊ */␊ properties: (VpnServerConfigurationProperties6 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -206862,6 +225950,11 @@ Generated by [AVA](https://avajs.dev). * Properties of the VPN site.␊ */␊ properties: (VpnSiteProperties12 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207021,6 +226114,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DataMigration/services"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207035,6 +226133,7 @@ Generated by [AVA](https://avajs.dev). * The ID of the Microsoft.Network/virtualNetworks/subnets resource to which the service should be joined␊ */␊ virtualSubnetId: string␊ + virtualSubnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207061,6 +226160,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "projects"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207082,11 +226186,23 @@ Generated by [AVA](https://avajs.dev). /**␊ * Defines the connection properties of a server␊ */␊ - targetConnectionInfo?: (SqlConnectionInfo | string)␊ + targetConnectionInfo?: ((SqlConnectionInfo & {␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Target platform for the project.␊ */␊ targetPlatform: (("SQLDB" | "Unknown") | string)␊ + sourcePlatform: unknown␊ + targetPlatform: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207097,6 +226213,7 @@ Generated by [AVA](https://avajs.dev). * Name of the database␊ */␊ sourceDatabaseName: string␊ + sourceDatabaseName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207132,6 +226249,8 @@ Generated by [AVA](https://avajs.dev). * User name␊ */␊ userName?: string␊ + dataSource: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207185,6 +226304,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DataMigration/services/projects"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207205,6 +226329,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ProjectTaskProperties | string)␊ type: "tasks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207216,6 +226344,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (ConnectToSourceSqlServerTaskInput | string)␊ taskType: "ConnectToSource.SqlServer"␊ + taskType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207230,6 +226359,7 @@ Generated by [AVA](https://avajs.dev). * Information for connecting to SQL database server␊ */␊ sourceConnectionInfo: (SqlConnectionInfo | string)␊ + sourceConnectionInfo: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207241,6 +226371,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (ConnectToTargetSqlDbTaskInput | string)␊ taskType: "ConnectToTarget.SqlDb"␊ + taskType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207251,6 +226382,7 @@ Generated by [AVA](https://avajs.dev). * Information for connecting to SQL database server␊ */␊ targetConnectionInfo: (SqlConnectionInfo | string)␊ + targetConnectionInfo: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207262,6 +226394,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (GetUserTablesSqlTaskInput | string)␊ taskType: "GetUserTables.Sql"␊ + taskType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207276,6 +226409,8 @@ Generated by [AVA](https://avajs.dev). * List of database names to collect tables for␊ */␊ selectedDatabases: (string[] | string)␊ + connectionInfo: unknown␊ + selectedDatabases: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207287,6 +226422,7 @@ Generated by [AVA](https://avajs.dev). */␊ input?: (MigrateSqlServerSqlDbTaskInput | string)␊ taskType: "Migrate.SqlServer.SqlDb"␊ + taskType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207309,6 +226445,9 @@ Generated by [AVA](https://avajs.dev). * Types of validations to run after the migration␊ */␊ validationOptions?: (MigrationValidationOptions | string)␊ + selectedDatabases: unknown␊ + sourceConnectionInfo: unknown␊ + targetConnectionInfo: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207390,6 +226529,11 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (ServiceSku1 | string)␊ resources?: ServicesProjectsChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207400,6 +226544,7 @@ Generated by [AVA](https://avajs.dev). * The ID of the Microsoft.Network/virtualNetworks/subnets resource to which the service should be joined␊ */␊ virtualSubnetId: string␊ + virtualSubnetId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207452,6 +226597,11 @@ Generated by [AVA](https://avajs.dev). * Project properties␊ */␊ properties: (ProjectProperties2 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207473,14 +226623,37 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo?: ((OracleConnectionInfo | MySqlConnectionInfo | {␊ + targetConnectionInfo?: ((((OracleConnectionInfo & {␊ + type?: "OracleConnectionInfo"␊ + [k: string]: unknown␊ + }) | (MySqlConnectionInfo & {␊ + type?: "MySqlConnectionInfo"␊ + [k: string]: unknown␊ + }) | {␊ type?: "Unknown"␊ [k: string]: unknown␊ - } | SqlConnectionInfo1) | string)␊ + } | (SqlConnectionInfo1 & {␊ + type?: "SqlConnectionInfo"␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + type: string␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * List of DatabaseInfo␊ */␊ databasesInfo?: (DatabaseInfo1[] | string)␊ + sourcePlatform: unknown␊ + targetPlatform: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207491,6 +226664,7 @@ Generated by [AVA](https://avajs.dev). * Name of the database␊ */␊ sourceDatabaseName: string␊ + sourceDatabaseName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207518,6 +226692,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ProjectProperties2 | string)␊ resources?: ServicesProjectsTasksChildResource1[]␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + location: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207538,6 +226717,10 @@ Generated by [AVA](https://avajs.dev). * Custom task properties␊ */␊ properties: (ProjectTaskProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207547,14 +226730,49 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Databases to migrate␊ */␊ selectedDatabases: (MigrateSqlServerSqlServerDatabaseInput[] | string)␊ + targetConnectionInfo: unknown␊ + selectedDatabases: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207612,10 +226830,43 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Databases to migrate␊ */␊ @@ -207629,6 +226880,9 @@ Generated by [AVA](https://avajs.dev). * ␊ */␊ backupSharePassword?: string␊ + targetConnectionInfo: unknown␊ + selectedDatabases: unknown␊ + backupShareUserName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207638,21 +226892,90 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Databases to migrate␊ */␊ selectedDatabases: (MigrateSqlServerSqlServerDatabaseInput[] | string)␊ + sourceConnectionInfo: unknown␊ + targetConnectionInfo: unknown␊ + selectedDatabases: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207662,17 +226985,83 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Databases to migrate␊ */␊ @@ -207683,6 +227072,9 @@ Generated by [AVA](https://avajs.dev). * 2.) Schema Validation: Performs a thorough schema comparison between the source and target tables and provides a list of differences between the source and target database, 3.) Query Analysis: Executes a set of queries picked up automatically either from the Query Plan Cache or Query Store and execute them and compares the execution time between the source and target database.␊ */␊ validationOptions?: (MigrationValidationOptions1 | string)␊ + sourceConnectionInfo: unknown␊ + targetConnectionInfo: unknown␊ + selectedDatabases: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207734,17 +227126,83 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Databases to migrate␊ */␊ @@ -207758,6 +227216,10 @@ Generated by [AVA](https://avajs.dev). * ␊ */␊ backupSharePassword?: string␊ + sourceConnectionInfo: unknown␊ + targetConnectionInfo: unknown␊ + selectedDatabases: unknown␊ + backupShareUserName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207772,6 +227234,8 @@ Generated by [AVA](https://avajs.dev). * A URL that points to the location to access project artifacts␊ */␊ projectLocation: string␊ + projectName: unknown␊ + projectLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207781,10 +227245,44 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connection information for target SQL Server␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ + targetConnectionInfo: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207794,10 +227292,44 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connection information for target SQL Server␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ + targetConnectionInfo: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207807,14 +227339,49 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connection information for SQL Server␊ */␊ - connectionInfo: ({␊ + connectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * List of database names to collect tables for␊ */␊ selectedDatabases: (string[] | string)␊ + connectionInfo: unknown␊ + selectedDatabases: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207824,10 +227391,44 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connection information for target SQL DB␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ + targetConnectionInfo: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207837,14 +227438,48 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connection information for Source SQL Server␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Permission group for validations.␊ */␊ checkPermissionsGroup?: (("Default" | "MigrationFromSqlServerToAzureDB" | "MigrationFromSqlServerToAzureMI" | "MigrationFromSqlServerToAzureVM" | "MigrationFromOracleToSQL" | "MigrationFromOracleToAzureDB" | "MigrationFromOracleToAzureDW" | "MigrationFromMySQLToSQL" | "MigrationFromMySQLToAzureDB") | string)␊ + sourceConnectionInfo: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207854,14 +227489,37 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to MySQL source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "MySqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Name of the server␊ + */␊ + serverName: string␊ + /**␊ + * Port for Server␊ + */␊ + port: (number | string)␊ + type: string␊ + serverName: unknown␊ + port: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Permission group for validations.␊ */␊ checkPermissionsGroup?: (("Default" | "MigrationFromSqlServerToAzureDB" | "MigrationFromSqlServerToAzureMI" | "MigrationFromSqlServerToAzureVM" | "MigrationFromOracleToSQL" | "MigrationFromOracleToAzureDB" | "MigrationFromOracleToAzureDW" | "MigrationFromMySQLToSQL" | "MigrationFromMySQLToAzureDB") | string)␊ + sourceConnectionInfo: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207871,14 +227529,47 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to Oracle source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "OracleConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Name of the server␊ + */␊ + serverName?: string␊ + /**␊ + * Port for Server␊ + */␊ + port?: (number | string)␊ + /**␊ + * Connection mode to be used. If ConnectionString mode is used, then customConnectionString should be provided, else it should not be set.␊ + */␊ + connectionMode?: (("ConnectionString" | "Standard") | string)␊ + /**␊ + * Instance name (SID)␊ + */␊ + instance?: string␊ + /**␊ + * Connection string␊ + */␊ + customConnectionString?: string␊ + type: string␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Permission group for validations.␊ */␊ checkPermissionsGroup?: (("Default" | "MigrationFromSqlServerToAzureDB" | "MigrationFromSqlServerToAzureMI" | "MigrationFromSqlServerToAzureVM" | "MigrationFromOracleToSQL" | "MigrationFromOracleToAzureDB" | "MigrationFromOracleToAzureDW" | "MigrationFromMySQLToSQL" | "MigrationFromMySQLToAzureDB") | string)␊ + sourceConnectionInfo: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207888,10 +227579,43 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Target database name␊ */␊ @@ -207911,10 +227635,38 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to MySQL source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "MySqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Name of the server␊ + */␊ + serverName: string␊ + /**␊ + * Port for Server␊ + */␊ + port: (number | string)␊ + type: string␊ + serverName: unknown␊ + port: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ + targetConnectionInfo: unknown␊ + targetDatabaseName: unknown␊ + projectName: unknown␊ + projectLocation: unknown␊ + selectedTables: unknown␊ + sourceConnectionInfo: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207934,10 +227686,43 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to target␊ */␊ - targetConnectionInfo: ({␊ + targetConnectionInfo: (({␊ type?: "SqlConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Data source in the format Protocol:MachineName\\SQLServerInstanceName,PortNumber␊ + */␊ + dataSource: string␊ + /**␊ + * Authentication type to use for connection.␊ + */␊ + authentication?: (("None" | "WindowsAuthentication" | "SqlAuthentication" | "ActiveDirectoryIntegrated" | "ActiveDirectoryPassword") | string)␊ + /**␊ + * Whether to encrypt the connection␊ + */␊ + encryptConnection?: (boolean | string)␊ + /**␊ + * Additional connection settings␊ + */␊ + additionalSettings?: string␊ + /**␊ + * Whether to trust the server certificate␊ + */␊ + trustServerCertificate?: (boolean | string)␊ + type: string␊ + dataSource: unknown␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Target database name␊ */␊ @@ -207957,10 +227742,48 @@ Generated by [AVA](https://avajs.dev). /**␊ * Information for connecting to Oracle source␊ */␊ - sourceConnectionInfo: ({␊ + sourceConnectionInfo: (({␊ type?: "OracleConnectionInfo"␊ [k: string]: unknown␊ - } | string)␊ + } & {␊ + /**␊ + * User name␊ + */␊ + userName?: string␊ + /**␊ + * Password credential.␊ + */␊ + password?: string␊ + /**␊ + * Name of the server␊ + */␊ + serverName?: string␊ + /**␊ + * Port for Server␊ + */␊ + port?: (number | string)␊ + /**␊ + * Connection mode to be used. If ConnectionString mode is used, then customConnectionString should be provided, else it should not be set.␊ + */␊ + connectionMode?: (("ConnectionString" | "Standard") | string)␊ + /**␊ + * Instance name (SID)␊ + */␊ + instance?: string␊ + /**␊ + * Connection string␊ + */␊ + customConnectionString?: string␊ + type: string␊ + type: unknown␊ + [k: string]: unknown␊ + }) | string)␊ + targetConnectionInfo: unknown␊ + targetDatabaseName: unknown␊ + projectName: unknown␊ + projectLocation: unknown␊ + selectedTables: unknown␊ + sourceConnectionInfo: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -207981,6 +227804,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BudgetProperties | string)␊ type: "Microsoft.Consumption/budgets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208013,6 +227840,10 @@ Generated by [AVA](https://avajs.dev). * The start and end date for a budget.␊ */␊ timePeriod: (BudgetTimePeriod | string)␊ + amount: unknown␊ + category: unknown␊ + timeGrain: unknown␊ + timePeriod: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208061,6 +227892,10 @@ Generated by [AVA](https://avajs.dev). * Threshold value associated with a notification. Notification is sent when the cost exceeded the threshold. It is always percent and has to be between 0 and 1000.␊ */␊ threshold: (number | string)␊ + contactEmails: unknown␊ + enabled: unknown␊ + operator: unknown␊ + threshold: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208075,6 +227910,7 @@ Generated by [AVA](https://avajs.dev). * The start date for the budget.␊ */␊ startDate: string␊ + startDate: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208101,6 +227937,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.BatchAI/clusters"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208135,6 +227976,8 @@ Generated by [AVA](https://avajs.dev). * All virtual machines in a cluster are the same size. For information about available VM sizes for clusters using images from the Virtual Machines Marketplace (see Sizes for Virtual Machines (Linux) or Sizes for Virtual Machines (Windows). Batch AI service supports all Azure VM sizes except STANDARD_A0 and those with premium storage (STANDARD_GS, STANDARD_DS, and STANDARD_DSV2 series).␊ */␊ vmSize: string␊ + userAccountSettings: unknown␊ + vmSize: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208186,6 +228029,10 @@ Generated by [AVA](https://avajs.dev). * Note that all cluster level blob file systems will be mounted under $AZ_BATCHAI_MOUNT_ROOT location and all job level blob file systems will be mounted under $AZ_BATCHAI_JOB_MOUNT_ROOT.␊ */␊ relativeMountPath: string␊ + accountName: unknown␊ + containerName: unknown␊ + credentials: unknown␊ + relativeMountPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208211,6 +228058,8 @@ Generated by [AVA](https://avajs.dev). * Represents a resource ID. For example, for a subnet, it is the resource URL for the subnet.␊ */␊ sourceVault: (ResourceId5 | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208221,6 +228070,7 @@ Generated by [AVA](https://avajs.dev). * The ID of the resource␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208245,6 +228095,10 @@ Generated by [AVA](https://avajs.dev). * Note that all cluster level file shares will be mounted under $AZ_BATCHAI_MOUNT_ROOT location and all job level file shares will be mounted under $AZ_BATCHAI_JOB_MOUNT_ROOT.␊ */␊ relativeMountPath: string␊ + accountName: unknown␊ + azureFileUrl: unknown␊ + credentials: unknown␊ + relativeMountPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208264,6 +228118,8 @@ Generated by [AVA](https://avajs.dev). * If this property is not specified, the entire File Server will be mounted.␊ */␊ sourceDirectory?: string␊ + fileServer: unknown␊ + relativeMountPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208275,6 +228131,8 @@ Generated by [AVA](https://avajs.dev). * Note that all cluster level unmanaged file system will be mounted under $AZ_BATCHAI_MOUNT_ROOT location and job level unmanaged file system will be mounted under $AZ_BATCHAI_JOB_MOUNT_ROOT.␊ */␊ relativeMountPath: string␊ + mountCommand: unknown␊ + relativeMountPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208285,6 +228143,7 @@ Generated by [AVA](https://avajs.dev). * Specifies Azure Application Insights information for performance counters reporting.␊ */␊ appInsightsReference: (AppInsightsReference | string)␊ + appInsightsReference: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208300,6 +228159,7 @@ Generated by [AVA](https://avajs.dev). * Describes a reference to Key Vault Secret.␊ */␊ instrumentationKeySecretReference?: (KeyVaultSecretReference3 | string)␊ + component: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208320,6 +228180,8 @@ Generated by [AVA](https://avajs.dev). * The prefix of a path where the Batch AI service will upload the stdout and stderr of the setup task.␊ */␊ stdOutErrPathPrefix: string␊ + commandLine: unknown␊ + stdOutErrPathPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208328,6 +228190,8 @@ Generated by [AVA](https://avajs.dev). export interface EnvironmentVariable {␊ name: string␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208340,6 +228204,7 @@ Generated by [AVA](https://avajs.dev). * Describes a reference to Key Vault Secret.␊ */␊ valueSecretReference?: (KeyVaultSecretReference3 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208363,6 +228228,8 @@ Generated by [AVA](https://avajs.dev). initialNodeCount?: ((number & string) | string)␊ maximumNodeCount: (number | string)␊ minimumNodeCount: (number | string)␊ + maximumNodeCount: unknown␊ + minimumNodeCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208377,6 +228244,7 @@ Generated by [AVA](https://avajs.dev). * Default is 0. If autoScaleSettings are not specified, then the Cluster starts with this target.␊ */␊ targetNodeCount: ((number & string) | string)␊ + targetNodeCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208386,6 +228254,7 @@ Generated by [AVA](https://avajs.dev). adminUserName: string␊ adminUserPassword?: string␊ adminUserSshPublicKey?: string␊ + adminUserName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208410,6 +228279,9 @@ Generated by [AVA](https://avajs.dev). * The virtual machine image must be in the same region and subscription as the cluster. For information about the firewall settings for the Batch node agent to communicate with the Batch service see https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration. Note, you need to provide publisher, offer and sku of the base OS image of which the custom image has been derived from.␊ */␊ virtualMachineImageId?: string␊ + offer: unknown␊ + publisher: unknown␊ + sku: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208436,6 +228308,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.BatchAI/fileServers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208458,6 +228335,9 @@ Generated by [AVA](https://avajs.dev). * For information about available VM sizes for fileservers from the Virtual Machines Marketplace, see Sizes for Virtual Machines (Linux).␊ */␊ vmSize: string␊ + dataDisks: unknown␊ + sshConfiguration: unknown␊ + vmSize: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208468,6 +228348,9 @@ Generated by [AVA](https://avajs.dev). diskCount: (number | string)␊ diskSizeInGB: (number | string)␊ storageAccountType: (("Standard_LRS" | "Premium_LRS") | string)␊ + diskCount: unknown␊ + diskSizeInGB: unknown␊ + storageAccountType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208482,6 +228365,7 @@ Generated by [AVA](https://avajs.dev). * Settings for user account that gets created on each on the nodes of a cluster.␊ */␊ userAccountSettings: (UserAccountSettings | string)␊ + userAccountSettings: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208508,6 +228392,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.BatchAI/jobs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208588,6 +228477,9 @@ Generated by [AVA](https://avajs.dev). * Specifies the settings for TensorFlow job.␊ */␊ tensorFlowSettings?: (TensorFlowSettings | string)␊ + cluster: unknown␊ + nodeCount: unknown␊ + stdOutErrPathPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208597,6 +228489,7 @@ Generated by [AVA](https://avajs.dev). commandLineArgs?: string␊ pythonInterpreterPath?: string␊ pythonScriptFilePath: string␊ + pythonScriptFilePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208633,6 +228526,7 @@ Generated by [AVA](https://avajs.dev). processCount?: (number | string)␊ pythonInterpreterPath?: string␊ pythonScriptFilePath: string␊ + pythonScriptFilePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208680,6 +228574,7 @@ Generated by [AVA](https://avajs.dev). * Details of the container image such as name, URL and credentials.␊ */␊ imageSourceRegistry: (ImageSourceRegistry | string)␊ + imageSourceRegistry: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208692,6 +228587,7 @@ Generated by [AVA](https://avajs.dev). credentials?: (PrivateRegistryCredentials | string)␊ image: string␊ serverUrl?: string␊ + image: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208707,6 +228603,7 @@ Generated by [AVA](https://avajs.dev). */␊ passwordSecretReference?: (KeyVaultSecretReference3 | string)␊ username: string␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208725,6 +228622,8 @@ Generated by [AVA](https://avajs.dev). */␊ id: string␊ path: string␊ + id: unknown␊ + path: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208735,6 +228634,7 @@ Generated by [AVA](https://avajs.dev). * If containerSettings is specified on the job, this commandLine will be executed in the same container as job. Otherwise it will be executed on the node.␊ */␊ commandLine: string␊ + commandLine: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208761,6 +228661,8 @@ Generated by [AVA](https://avajs.dev). * Default value is Custom. The possible values are Model, Logs, Summary, and Custom. Users can use multiple enums for a single directory. Eg. outPutType='Model,Logs, Summary'.␊ */␊ type?: (("model" | "logs" | "summary" | "custom") | string)␊ + id: unknown␊ + pathPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208778,6 +228680,7 @@ Generated by [AVA](https://avajs.dev). processCount?: (number | string)␊ pythonInterpreterPath?: string␊ pythonScriptFilePath: string␊ + pythonScriptFilePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208803,6 +228706,7 @@ Generated by [AVA](https://avajs.dev). * If specified, the value must be less than or equal to (nodeCount * numberOfGPUs per VM). If not specified, the default value is equal to nodeCount. This property can be specified only for distributed TensorFlow training␊ */␊ workerCount?: (number | string)␊ + pythonScriptFilePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -208830,6 +228734,10 @@ Generated by [AVA](https://avajs.dev). * ProtectedItemResource properties␊ */␊ properties: (ProtectedItem | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209051,6 +228959,10 @@ Generated by [AVA](https://avajs.dev). * ProtectionPolicyResource properties␊ */␊ properties: (ProtectionPolicy | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209224,17 +229136,40 @@ Generated by [AVA](https://avajs.dev). /**␊ * Backup schedule specified as part of backup policy.␊ */␊ - schedulePolicy?: (({␊ + schedulePolicy?: ((({␊ schedulePolicyType?: ("SchedulePolicy" | string)␊ [k: string]: unknown␊ - } | LogSchedulePolicy | LongTermSchedulePolicy | SimpleSchedulePolicy) | string)␊ + } | (LogSchedulePolicy & {␊ + schedulePolicyType?: ("LogSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (LongTermSchedulePolicy & {␊ + schedulePolicyType?: ("LongTermSchedulePolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleSchedulePolicy & {␊ + schedulePolicyType?: ("SimpleSchedulePolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + schedulePolicyType: string␊ + schedulePolicyType: unknown␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Retention policy with the details on backup copy retention ranges.␊ */␊ - retentionPolicy?: (({␊ + retentionPolicy?: ((({␊ retentionPolicyType?: ("RetentionPolicy" | string)␊ [k: string]: unknown␊ - } | LongTermRetentionPolicy | SimpleRetentionPolicy) | string)␊ + } | (LongTermRetentionPolicy & {␊ + retentionPolicyType?: ("LongTermRetentionPolicy" | string)␊ + [k: string]: unknown␊ + }) | (SimpleRetentionPolicy & {␊ + retentionPolicyType?: ("SimpleRetentionPolicy" | string)␊ + [k: string]: unknown␊ + })) & {␊ + retentionPolicyType: string␊ + retentionPolicyType: unknown␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -209262,6 +229197,10 @@ Generated by [AVA](https://avajs.dev). * ProtectionIntentResource properties␊ */␊ properties: (ProtectionIntent | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209292,6 +229231,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209299,6 +229242,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AzureSqlContainer {␊ containerType: "AzureSqlContainer"␊ + containerType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209322,6 +229266,7 @@ Generated by [AVA](https://avajs.dev). * Storage account version.␊ */␊ storageAccountVersion?: string␊ + containerType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209424,6 +229369,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AzureSQLAGWorkloadContainerProtectionContainer {␊ containerType: "SQLAGWorkLoadContainer"␊ + containerType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209431,6 +229377,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AzureVMAppContainerProtectionContainer {␊ containerType: "VMAppContainer"␊ + containerType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209448,6 +229395,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AzureBackupServerContainer {␊ containerType: "AzureBackupServerContainer"␊ + containerType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209463,6 +229411,7 @@ Generated by [AVA](https://avajs.dev). * Name of the container's fabric␊ */␊ fabricName?: string␊ + containerType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209512,6 +229461,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AzureIaaSClassicComputeVMContainer {␊ containerType: "Microsoft.ClassicCompute/virtualMachines"␊ + containerType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209519,6 +229469,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AzureIaaSComputeVMContainer {␊ containerType: "Microsoft.Compute/virtualMachines"␊ + containerType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209554,6 +229505,7 @@ Generated by [AVA](https://avajs.dev). * Number of items backed up in this container.␊ */␊ protectedItemCount?: (number | string)␊ + containerType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209629,6 +229581,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.RecoveryServices/vaults/backupstorageconfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209681,6 +229637,11 @@ Generated by [AVA](https://avajs.dev). * The Logical zone list for Disk.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209703,6 +229664,7 @@ Generated by [AVA](https://avajs.dev). * The Operating System type.␊ */␊ osType?: (("Windows" | "Linux") | string)␊ + creationData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209729,6 +229691,7 @@ Generated by [AVA](https://avajs.dev). * If createOption is Import, the Azure Resource Manager identifier of the storage account containing the blob to import as a disk. Required only if the blob is in a different subscription␊ */␊ storageAccountId?: string␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209743,6 +229706,7 @@ Generated by [AVA](https://avajs.dev). * If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.␊ */␊ lun?: (number | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209775,6 +229739,8 @@ Generated by [AVA](https://avajs.dev). * The vault id is an Azure Resource Manager Resource id in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}␊ */␊ sourceVault: (SourceVault2 | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209799,6 +229765,8 @@ Generated by [AVA](https://avajs.dev). * The vault id is an Azure Resource Manager Resource id in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}␊ */␊ sourceVault: (SourceVault2 | string)␊ + keyUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209839,6 +229807,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/snapshots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209872,6 +229845,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerInstance/containerGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface ContainerGroupProperties {␊ @@ -209903,6 +229880,8 @@ Generated by [AVA](https://avajs.dev). * The list of volumes that can be mounted by containers in this container group.␊ */␊ volumes?: (Volume[] | string)␊ + containers: unknown␊ + osType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209917,6 +229896,8 @@ Generated by [AVA](https://avajs.dev). * The container instance properties.␊ */␊ properties: (ContainerProperties6 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209947,6 +229928,8 @@ Generated by [AVA](https://avajs.dev). * The volume mounts available to the container instance.␊ */␊ volumeMounts?: (VolumeMount[] | string)␊ + image: unknown␊ + resources: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209961,6 +229944,8 @@ Generated by [AVA](https://avajs.dev). * The value of the environment variable.␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209975,6 +229960,7 @@ Generated by [AVA](https://avajs.dev). * The protocol associated with the port.␊ */␊ protocol?: (("TCP" | "UDP") | string)␊ + port: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -209989,6 +229975,7 @@ Generated by [AVA](https://avajs.dev). * The resource requests.␊ */␊ requests: (ResourceRequests | string)␊ + requests: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210017,6 +230004,8 @@ Generated by [AVA](https://avajs.dev). * The memory request in GB of this container instance.␊ */␊ memoryInGB: (number | string)␊ + cpu: unknown␊ + memoryInGB: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210035,6 +230024,8 @@ Generated by [AVA](https://avajs.dev). * The flag indicating whether the volume mount is read-only.␊ */␊ readOnly?: (boolean | string)␊ + mountPath: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210053,6 +230044,8 @@ Generated by [AVA](https://avajs.dev). * The username for the private registry.␊ */␊ username: string␊ + server: unknown␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210075,6 +230068,8 @@ Generated by [AVA](https://avajs.dev). * Specifies if the IP is exposed to the public internet.␊ */␊ type: ("Public" | string)␊ + ports: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210089,6 +230084,7 @@ Generated by [AVA](https://avajs.dev). * The protocol associated with the port.␊ */␊ protocol?: (("TCP" | "UDP") | string)␊ + port: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210119,6 +230115,7 @@ Generated by [AVA](https://avajs.dev). secret?: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210141,6 +230138,8 @@ Generated by [AVA](https://avajs.dev). * The name of the storage account that contains the Azure File share.␊ */␊ storageAccountName: string␊ + shareName: unknown␊ + storageAccountName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210159,6 +230158,7 @@ Generated by [AVA](https://avajs.dev). * Commit hash for the specified revision.␊ */␊ revision?: string␊ + repository: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210186,6 +230186,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerInstance/containerGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210248,6 +230252,8 @@ Generated by [AVA](https://avajs.dev). * The list of volumes that can be mounted by containers in this container group.␊ */␊ volumes?: (Volume1[] | string)␊ + containers: unknown␊ + osType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210262,6 +230268,8 @@ Generated by [AVA](https://avajs.dev). * The container instance properties.␊ */␊ properties: (ContainerProperties7 | string)␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210300,6 +230308,8 @@ Generated by [AVA](https://avajs.dev). * The volume mounts available to the container instance.␊ */␊ volumeMounts?: (VolumeMount1[] | string)␊ + image: unknown␊ + resources: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210318,6 +230328,7 @@ Generated by [AVA](https://avajs.dev). * The value of the environment variable.␊ */␊ value?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210380,6 +230391,7 @@ Generated by [AVA](https://avajs.dev). * The scheme.␊ */␊ scheme?: (("http" | "https") | string)␊ + port: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210394,6 +230406,7 @@ Generated by [AVA](https://avajs.dev). * The protocol associated with the port.␊ */␊ protocol?: (("TCP" | "UDP") | string)␊ + port: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210408,6 +230421,7 @@ Generated by [AVA](https://avajs.dev). * The resource requests.␊ */␊ requests: (ResourceRequests1 | string)␊ + requests: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210440,6 +230454,8 @@ Generated by [AVA](https://avajs.dev). * The SKU of the GPU resource.␊ */␊ sku: (("K80" | "P100" | "V100") | string)␊ + count: unknown␊ + sku: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210458,6 +230474,8 @@ Generated by [AVA](https://avajs.dev). * The memory request in GB of this container instance.␊ */␊ memoryInGB: (number | string)␊ + cpu: unknown␊ + memoryInGB: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210476,6 +230494,8 @@ Generated by [AVA](https://avajs.dev). * The flag indicating whether the volume mount is read-only.␊ */␊ readOnly?: (boolean | string)␊ + mountPath: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210510,6 +230530,8 @@ Generated by [AVA](https://avajs.dev). * The workspace key for log analytics␊ */␊ workspaceKey: string␊ + workspaceId: unknown␊ + workspaceKey: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210528,6 +230550,7 @@ Generated by [AVA](https://avajs.dev). * The DNS search domains for hostname lookup in the container group.␊ */␊ searchDomains?: string␊ + nameServers: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210546,6 +230569,8 @@ Generated by [AVA](https://avajs.dev). * The username for the private registry.␊ */␊ username: string␊ + server: unknown␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210568,6 +230593,8 @@ Generated by [AVA](https://avajs.dev). * Specifies if the IP is exposed to the public internet or private VNET.␊ */␊ type: (("Public" | "Private") | string)␊ + ports: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210582,6 +230609,7 @@ Generated by [AVA](https://avajs.dev). * The protocol associated with the port.␊ */␊ protocol?: (("TCP" | "UDP") | string)␊ + port: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210592,6 +230620,7 @@ Generated by [AVA](https://avajs.dev). * The identifier for a network profile.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210622,6 +230651,7 @@ Generated by [AVA](https://avajs.dev). secret?: ({␊ [k: string]: string␊ } | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210644,6 +230674,8 @@ Generated by [AVA](https://avajs.dev). * The name of the storage account that contains the Azure File share.␊ */␊ storageAccountName: string␊ + shareName: unknown␊ + storageAccountName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210662,6 +230694,7 @@ Generated by [AVA](https://avajs.dev). * Commit hash for the specified revision.␊ */␊ revision?: string␊ + repository: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210689,6 +230722,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/galleries"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210735,6 +230773,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "images"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210785,6 +230828,9 @@ Generated by [AVA](https://avajs.dev). * The release note uri.␊ */␊ releaseNoteUri?: string␊ + identifier: unknown␊ + osState: unknown␊ + osType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210813,6 +230859,9 @@ Generated by [AVA](https://avajs.dev). * The name of the gallery Image Definition SKU.␊ */␊ sku: string␊ + offer: unknown␊ + publisher: unknown␊ + sku: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210886,6 +230935,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/galleries/images"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210912,6 +230966,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "versions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210922,6 +230981,7 @@ Generated by [AVA](https://avajs.dev). * The publishing profile of a gallery Image Version.␊ */␊ publishingProfile: (GalleryImageVersionPublishingProfile | string)␊ + publishingProfile: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210948,6 +231008,7 @@ Generated by [AVA](https://avajs.dev). * The target regions where the Image Version is going to be replicated to. This property is updatable.␊ */␊ targetRegions?: (TargetRegion[] | string)␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210958,6 +231019,7 @@ Generated by [AVA](https://avajs.dev). * The managed artifact.␊ */␊ managedImage: (ManagedArtifact | string)␊ + managedImage: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210968,6 +231030,7 @@ Generated by [AVA](https://avajs.dev). * The managed artifact id.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -210982,6 +231045,7 @@ Generated by [AVA](https://avajs.dev). * The number of replicas of the Image Version to be created per region. This property is updatable.␊ */␊ regionalReplicaCount?: (number | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -211008,6 +231072,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/galleries/images/versions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -211034,6 +231103,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/images"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -211098,6 +231172,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.␊ */␊ storageAccountType?: (("Standard_LRS" | "Premium_LRS" | "StandardSSD_LRS" | "UltraSSD_LRS") | string)␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -211130,6 +231205,8 @@ Generated by [AVA](https://avajs.dev). * Specifies the storage account type for the managed disk. UltraSSD_LRS cannot be used with OS Disk.␊ */␊ storageAccountType?: (("Standard_LRS" | "Premium_LRS" | "StandardSSD_LRS" | "UltraSSD_LRS") | string)␊ + osState: unknown␊ + osType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -211160,6 +231237,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/availabilitySets"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -211236,6 +231318,11 @@ Generated by [AVA](https://avajs.dev). * The virtual machine zones.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -211628,6 +231715,8 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -211728,6 +231817,7 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -211767,6 +231857,8 @@ Generated by [AVA](https://avajs.dev). */␊ secretUrl: string␊ sourceVault: (SubResource36 | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -211778,6 +231870,8 @@ Generated by [AVA](https://avajs.dev). */␊ keyUrl: string␊ sourceVault: (SubResource36 | string)␊ + keyUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -211801,6 +231895,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface GenericExtension4 {␊ @@ -211822,6 +231921,10 @@ Generated by [AVA](https://avajs.dev). settings: ({␊ [k: string]: unknown␊ } | string)␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSDiagnostics4 {␊ @@ -211832,14 +231935,25 @@ Generated by [AVA](https://avajs.dev). settings: {␊ xmlCfg: string␊ StorageAccount: string␊ + xmlCfg: unknown␊ + StorageAccount: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + storageAccountEndPoint: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSAntimalware4 {␊ @@ -211853,6 +231967,9 @@ Generated by [AVA](https://avajs.dev). Paths: string␊ Extensions: string␊ Processes: string␊ + Paths: unknown␊ + Extensions: unknown␊ + Processes: unknown␊ [k: string]: unknown␊ }␊ RealtimeProtectionEnabled: ("true" | "false")␊ @@ -211861,10 +231978,23 @@ Generated by [AVA](https://avajs.dev). scanType: string␊ day: string␊ time: string␊ + isEnabled: unknown␊ + scanType: unknown␊ + day: unknown␊ + time: unknown␊ [k: string]: unknown␊ }␊ + AntimalwareEnabled: unknown␊ + Exclusions: unknown␊ + RealtimeProtectionEnabled: unknown␊ + ScheduledScanSettings: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptExtension4 {␊ @@ -211875,6 +232005,7 @@ Generated by [AVA](https://avajs.dev). settings: {␊ fileUris?: string[]␊ commandToExecute: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -211882,6 +232013,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptForLinux4 {␊ @@ -211897,8 +232034,15 @@ Generated by [AVA](https://avajs.dev). commandToExecute: string␊ storageAccountName?: string␊ storageAccountKey?: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxDiagnostic4 {␊ @@ -211925,8 +232069,16 @@ Generated by [AVA](https://avajs.dev). storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint?: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessForLinux4 {␊ @@ -211946,8 +232098,20 @@ Generated by [AVA](https://avajs.dev). reset_ssh: string␊ remove_user: string␊ expiration: string␊ + username: unknown␊ + password: unknown␊ + ssh_key: unknown␊ + reset_ssh: unknown␊ + remove_user: unknown␊ + expiration: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BgInfo4 {␊ @@ -211955,6 +232119,10 @@ Generated by [AVA](https://avajs.dev). type: "bginfo"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessAgent4 {␊ @@ -211970,6 +232138,12 @@ Generated by [AVA](https://avajs.dev). password?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DscExtension4 {␊ @@ -211986,12 +232160,20 @@ Generated by [AVA](https://avajs.dev). dataCollection?: string␊ [k: string]: unknown␊ }␊ + modulesUrl: unknown␊ + configurationFunction: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ dataBlobUri?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackupLinux4 {␊ @@ -212001,13 +232183,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackup4 {␊ @@ -212017,13 +232208,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxChefClient4 {␊ @@ -212039,6 +232239,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -212049,8 +232254,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface ChefClient4 {␊ @@ -212065,6 +232279,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -212075,8 +232294,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogLinuxAgent4 {␊ @@ -212086,8 +232314,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogWindowsAgent4 {␊ @@ -212097,8 +232331,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DockerExtension4 {␊ @@ -212109,8 +232349,10 @@ Generated by [AVA](https://avajs.dev). settings: {␊ docker: {␊ port: string␊ + port: unknown␊ [k: string]: unknown␊ }␊ + docker: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -212118,10 +232360,20 @@ Generated by [AVA](https://avajs.dev). ca: string␊ cert: string␊ key: string␊ + ca: unknown␊ + cert: unknown␊ + key: unknown␊ [k: string]: unknown␊ }␊ + certs: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceLinux4 {␊ @@ -212132,8 +232384,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceWindows4 {␊ @@ -212144,8 +232403,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface Eset4 {␊ @@ -212161,8 +232427,20 @@ Generated by [AVA](https://avajs.dev). "Enable-Cloud": boolean␊ "Enable-PUA": boolean␊ ERAAgentCfgUrl: string␊ + LicenseKey: unknown␊ + "Install-RealtimeProtection": unknown␊ + "Install-ProtocolFiltering": unknown␊ + "Install-DeviceControl": unknown␊ + "Enable-Cloud": unknown␊ + "Enable-PUA": unknown␊ + ERAAgentCfgUrl: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface HpeSecurityApplicationDefender4 {␊ @@ -212173,8 +232451,15 @@ Generated by [AVA](https://avajs.dev). protectedSettings: {␊ key: string␊ serverURL: string␊ + key: unknown␊ + serverURL: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface PuppetAgent4 {␊ @@ -212184,8 +232469,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ protectedSettings: {␊ PUPPET_MASTER_SERVER: string␊ + PUPPET_MASTER_SERVER: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7LinuxServerExtn4 {␊ @@ -212199,8 +232490,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7WindowsServerExtn4 {␊ @@ -212214,8 +232512,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7ApmInsightExtn4 {␊ @@ -212229,8 +232534,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSALinux4 {␊ @@ -212242,13 +232554,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSA4 {␊ @@ -212260,13 +232582,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentLinux4 {␊ @@ -212279,8 +232611,17 @@ Generated by [AVA](https://avajs.dev). "Agent Port": string␊ "Host Group": string␊ "User Account": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ + "User Account": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentWindows4 {␊ @@ -212292,8 +232633,16 @@ Generated by [AVA](https://avajs.dev). "Control-M Server Name": string␊ "Agent Port": string␊ "Host Group": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface OSPatchingForLinux4 {␊ @@ -212319,6 +232668,8 @@ Generated by [AVA](https://avajs.dev). vmStatusTest?: {␊ [k: string]: unknown␊ }␊ + disabled: unknown␊ + stop: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -212326,6 +232677,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshot4 {␊ @@ -212342,8 +232699,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshotLinux4 {␊ @@ -212360,8 +232730,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScript4 {␊ @@ -212371,14 +232754,24 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ fileUris: string[]␊ + fileUris: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ commandToExecute: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentWindows4 {␊ @@ -212386,6 +232779,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentWindows"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentLinux4 {␊ @@ -212393,6 +232790,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentLinux"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -212436,6 +232837,11 @@ Generated by [AVA](https://avajs.dev). * The virtual machine scale set zones. NOTE: Availability zones can only be set when you create the scale set.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -212645,6 +233051,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration.␊ */␊ properties?: (VirtualMachineScaleSetNetworkConfigurationProperties3 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -212672,6 +233079,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the primary network interface in case the virtual machine has more than 1 network interface.␊ */␊ primary?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -212700,6 +233108,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration properties.␊ */␊ properties?: (VirtualMachineScaleSetIPConfigurationProperties3 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -212752,6 +233161,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration␊ */␊ properties?: (VirtualMachineScaleSetPublicIPAddressConfigurationProperties2 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -212781,6 +233191,7 @@ Generated by [AVA](https://avajs.dev). * The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created␊ */␊ domainNameLabel: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -212881,6 +233292,8 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -212937,6 +233350,7 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -212953,6 +233367,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualMachineScaleSetExtensionProperties2 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213025,6 +233443,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "virtualmachines"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213094,6 +233517,11 @@ Generated by [AVA](https://avajs.dev). * The Logical zone list for Disk.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213124,6 +233552,7 @@ Generated by [AVA](https://avajs.dev). * The Operating System type.␊ */␊ osType?: (("Windows" | "Linux") | string)␊ + creationData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213150,6 +233579,7 @@ Generated by [AVA](https://avajs.dev). * If createOption is Import, the Azure Resource Manager identifier of the storage account containing the blob to import as a disk. Required only if the blob is in a different subscription␊ */␊ storageAccountId?: string␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213164,6 +233594,7 @@ Generated by [AVA](https://avajs.dev). * If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.␊ */␊ lun?: (number | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213196,6 +233627,8 @@ Generated by [AVA](https://avajs.dev). * The vault id is an Azure Resource Manager Resource id in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}␊ */␊ sourceVault: (SourceVault3 | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213220,6 +233653,8 @@ Generated by [AVA](https://avajs.dev). * The vault id is an Azure Resource Manager Resource id in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}␊ */␊ sourceVault: (SourceVault3 | string)␊ + keyUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213260,6 +233695,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/snapshots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213282,6 +233722,7 @@ Generated by [AVA](https://avajs.dev). * The Operating System type.␊ */␊ osType?: (("Windows" | "Linux") | string)␊ + creationData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213322,6 +233763,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachineScaleSets/virtualmachines"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213345,6 +233791,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachines/extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213358,6 +233809,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (GenericExtension4 | IaaSDiagnostics4 | IaaSAntimalware4 | CustomScriptExtension4 | CustomScriptForLinux4 | LinuxDiagnostic4 | VmAccessForLinux4 | BgInfo4 | VmAccessAgent4 | DscExtension4 | AcronisBackupLinux4 | AcronisBackup4 | LinuxChefClient4 | ChefClient4 | DatadogLinuxAgent4 | DatadogWindowsAgent4 | DockerExtension4 | DynatraceLinux4 | DynatraceWindows4 | Eset4 | HpeSecurityApplicationDefender4 | PuppetAgent4 | Site24X7LinuxServerExtn4 | Site24X7WindowsServerExtn4 | Site24X7ApmInsightExtn4 | TrendMicroDSALinux4 | TrendMicroDSA4 | BmcCtmAgentLinux4 | BmcCtmAgentWindows4 | OSPatchingForLinux4 | VMSnapshot4 | VMSnapshotLinux4 | CustomScript4 | NetworkWatcherAgentWindows4 | NetworkWatcherAgentLinux4)␊ type: "Microsoft.Compute/virtualMachineScaleSets/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213384,6 +233839,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/images"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213448,6 +233908,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.␊ */␊ storageAccountType?: (("Standard_LRS" | "Premium_LRS" | "StandardSSD_LRS" | "UltraSSD_LRS") | string)␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213480,6 +233941,8 @@ Generated by [AVA](https://avajs.dev). * Specifies the storage account type for the managed disk. UltraSSD_LRS cannot be used with OS Disk.␊ */␊ storageAccountType?: (("Standard_LRS" | "Premium_LRS" | "StandardSSD_LRS" | "UltraSSD_LRS") | string)␊ + osState: unknown␊ + osType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213510,6 +233973,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/availabilitySets"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213586,6 +234054,11 @@ Generated by [AVA](https://avajs.dev). * The virtual machine zones.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -213978,6 +234451,8 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -214078,6 +234553,7 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -214117,6 +234593,8 @@ Generated by [AVA](https://avajs.dev). */␊ secretUrl: string␊ sourceVault: (SubResource37 | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -214128,6 +234606,8 @@ Generated by [AVA](https://avajs.dev). */␊ keyUrl: string␊ sourceVault: (SubResource37 | string)␊ + keyUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -214151,6 +234631,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface GenericExtension5 {␊ @@ -214172,6 +234657,10 @@ Generated by [AVA](https://avajs.dev). settings: ({␊ [k: string]: unknown␊ } | string)␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSDiagnostics5 {␊ @@ -214182,14 +234671,25 @@ Generated by [AVA](https://avajs.dev). settings: {␊ xmlCfg: string␊ StorageAccount: string␊ + xmlCfg: unknown␊ + StorageAccount: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + storageAccountEndPoint: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSAntimalware5 {␊ @@ -214203,6 +234703,9 @@ Generated by [AVA](https://avajs.dev). Paths: string␊ Extensions: string␊ Processes: string␊ + Paths: unknown␊ + Extensions: unknown␊ + Processes: unknown␊ [k: string]: unknown␊ }␊ RealtimeProtectionEnabled: ("true" | "false")␊ @@ -214211,10 +234714,23 @@ Generated by [AVA](https://avajs.dev). scanType: string␊ day: string␊ time: string␊ + isEnabled: unknown␊ + scanType: unknown␊ + day: unknown␊ + time: unknown␊ [k: string]: unknown␊ }␊ + AntimalwareEnabled: unknown␊ + Exclusions: unknown␊ + RealtimeProtectionEnabled: unknown␊ + ScheduledScanSettings: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptExtension5 {␊ @@ -214225,6 +234741,7 @@ Generated by [AVA](https://avajs.dev). settings: {␊ fileUris?: string[]␊ commandToExecute: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -214232,6 +234749,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptForLinux5 {␊ @@ -214247,8 +234770,15 @@ Generated by [AVA](https://avajs.dev). commandToExecute: string␊ storageAccountName?: string␊ storageAccountKey?: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxDiagnostic5 {␊ @@ -214275,8 +234805,16 @@ Generated by [AVA](https://avajs.dev). storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint?: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessForLinux5 {␊ @@ -214296,8 +234834,20 @@ Generated by [AVA](https://avajs.dev). reset_ssh: string␊ remove_user: string␊ expiration: string␊ + username: unknown␊ + password: unknown␊ + ssh_key: unknown␊ + reset_ssh: unknown␊ + remove_user: unknown␊ + expiration: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BgInfo5 {␊ @@ -214305,6 +234855,10 @@ Generated by [AVA](https://avajs.dev). type: "bginfo"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessAgent5 {␊ @@ -214320,6 +234874,12 @@ Generated by [AVA](https://avajs.dev). password?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DscExtension5 {␊ @@ -214336,12 +234896,20 @@ Generated by [AVA](https://avajs.dev). dataCollection?: string␊ [k: string]: unknown␊ }␊ + modulesUrl: unknown␊ + configurationFunction: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ dataBlobUri?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackupLinux5 {␊ @@ -214351,13 +234919,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackup5 {␊ @@ -214367,13 +234944,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxChefClient5 {␊ @@ -214389,6 +234975,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -214399,8 +234990,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface ChefClient5 {␊ @@ -214415,6 +235015,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -214425,8 +235030,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogLinuxAgent5 {␊ @@ -214436,8 +235050,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogWindowsAgent5 {␊ @@ -214447,8 +235067,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DockerExtension5 {␊ @@ -214459,8 +235085,10 @@ Generated by [AVA](https://avajs.dev). settings: {␊ docker: {␊ port: string␊ + port: unknown␊ [k: string]: unknown␊ }␊ + docker: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -214468,10 +235096,20 @@ Generated by [AVA](https://avajs.dev). ca: string␊ cert: string␊ key: string␊ + ca: unknown␊ + cert: unknown␊ + key: unknown␊ [k: string]: unknown␊ }␊ + certs: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceLinux5 {␊ @@ -214482,8 +235120,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceWindows5 {␊ @@ -214494,8 +235139,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface Eset5 {␊ @@ -214511,8 +235163,20 @@ Generated by [AVA](https://avajs.dev). "Enable-Cloud": boolean␊ "Enable-PUA": boolean␊ ERAAgentCfgUrl: string␊ + LicenseKey: unknown␊ + "Install-RealtimeProtection": unknown␊ + "Install-ProtocolFiltering": unknown␊ + "Install-DeviceControl": unknown␊ + "Enable-Cloud": unknown␊ + "Enable-PUA": unknown␊ + ERAAgentCfgUrl: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface HpeSecurityApplicationDefender5 {␊ @@ -214523,8 +235187,15 @@ Generated by [AVA](https://avajs.dev). protectedSettings: {␊ key: string␊ serverURL: string␊ + key: unknown␊ + serverURL: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface PuppetAgent5 {␊ @@ -214534,8 +235205,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ protectedSettings: {␊ PUPPET_MASTER_SERVER: string␊ + PUPPET_MASTER_SERVER: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7LinuxServerExtn5 {␊ @@ -214549,8 +235226,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7WindowsServerExtn5 {␊ @@ -214564,8 +235248,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7ApmInsightExtn5 {␊ @@ -214579,8 +235270,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSALinux5 {␊ @@ -214592,13 +235290,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSA5 {␊ @@ -214610,13 +235318,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentLinux5 {␊ @@ -214629,8 +235347,17 @@ Generated by [AVA](https://avajs.dev). "Agent Port": string␊ "Host Group": string␊ "User Account": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ + "User Account": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentWindows5 {␊ @@ -214642,8 +235369,16 @@ Generated by [AVA](https://avajs.dev). "Control-M Server Name": string␊ "Agent Port": string␊ "Host Group": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface OSPatchingForLinux5 {␊ @@ -214669,6 +235404,8 @@ Generated by [AVA](https://avajs.dev). vmStatusTest?: {␊ [k: string]: unknown␊ }␊ + disabled: unknown␊ + stop: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -214676,6 +235413,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshot5 {␊ @@ -214692,8 +235435,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshotLinux5 {␊ @@ -214710,8 +235466,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScript5 {␊ @@ -214721,14 +235490,24 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ fileUris: string[]␊ + fileUris: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ commandToExecute: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentWindows5 {␊ @@ -214736,6 +235515,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentWindows"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentLinux5 {␊ @@ -214743,6 +235526,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentLinux"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -214786,6 +235573,11 @@ Generated by [AVA](https://avajs.dev). * The virtual machine scale set zones. NOTE: Availability zones can only be set when you create the scale set.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215017,6 +235809,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration.␊ */␊ properties?: (VirtualMachineScaleSetNetworkConfigurationProperties4 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215044,6 +235837,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the primary network interface in case the virtual machine has more than 1 network interface.␊ */␊ primary?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215072,6 +235866,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration properties.␊ */␊ properties?: (VirtualMachineScaleSetIPConfigurationProperties4 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215124,6 +235919,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration␊ */␊ properties?: (VirtualMachineScaleSetPublicIPAddressConfigurationProperties3 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215153,6 +235949,7 @@ Generated by [AVA](https://avajs.dev). * The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created␊ */␊ domainNameLabel: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215253,6 +236050,8 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215309,6 +236108,7 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215325,6 +236125,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualMachineScaleSetExtensionProperties3 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215397,6 +236201,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "virtualmachines"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215462,6 +236271,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachineScaleSets/virtualmachines"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215485,6 +236299,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachines/extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215498,6 +236317,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (GenericExtension5 | IaaSDiagnostics5 | IaaSAntimalware5 | CustomScriptExtension5 | CustomScriptForLinux5 | LinuxDiagnostic5 | VmAccessForLinux5 | BgInfo5 | VmAccessAgent5 | DscExtension5 | AcronisBackupLinux5 | AcronisBackup5 | LinuxChefClient5 | ChefClient5 | DatadogLinuxAgent5 | DatadogWindowsAgent5 | DockerExtension5 | DynatraceLinux5 | DynatraceWindows5 | Eset5 | HpeSecurityApplicationDefender5 | PuppetAgent5 | Site24X7LinuxServerExtn5 | Site24X7WindowsServerExtn5 | Site24X7ApmInsightExtn5 | TrendMicroDSALinux5 | TrendMicroDSA5 | BmcCtmAgentLinux5 | BmcCtmAgentWindows5 | OSPatchingForLinux5 | VMSnapshot5 | VMSnapshotLinux5 | CustomScript5 | NetworkWatcherAgentWindows5 | NetworkWatcherAgentLinux5)␊ type: "Microsoft.Compute/virtualMachineScaleSets/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215528,6 +236351,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/availabilitySets"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215603,6 +236431,11 @@ Generated by [AVA](https://avajs.dev). * Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215613,6 +236446,7 @@ Generated by [AVA](https://avajs.dev). * Number of fault domains that the host group can span.␊ */␊ platformFaultDomainCount: (number | string)␊ + platformFaultDomainCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215643,6 +236477,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "hosts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215691,6 +236531,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/hostGroups/hosts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215717,6 +236563,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/images"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215778,6 +236629,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.␊ */␊ storageAccountType?: (("Standard_LRS" | "Premium_LRS" | "StandardSSD_LRS" | "UltraSSD_LRS") | string)␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215810,6 +236662,8 @@ Generated by [AVA](https://avajs.dev). * Specifies the storage account type for the managed disk. UltraSSD_LRS cannot be used with OS Disk.␊ */␊ storageAccountType?: (("Standard_LRS" | "Premium_LRS" | "StandardSSD_LRS" | "UltraSSD_LRS") | string)␊ + osState: unknown␊ + osType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215836,6 +236690,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/proximityPlacementGroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -215885,6 +236744,11 @@ Generated by [AVA](https://avajs.dev). * The virtual machine zones.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -216309,6 +237173,8 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -216409,6 +237275,7 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -216448,6 +237315,8 @@ Generated by [AVA](https://avajs.dev). */␊ secretUrl: string␊ sourceVault: (SubResource38 | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -216459,6 +237328,8 @@ Generated by [AVA](https://avajs.dev). */␊ keyUrl: string␊ sourceVault: (SubResource38 | string)␊ + keyUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -216482,6 +237353,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface GenericExtension6 {␊ @@ -216503,6 +237379,10 @@ Generated by [AVA](https://avajs.dev). settings: ({␊ [k: string]: unknown␊ } | string)␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSDiagnostics6 {␊ @@ -216513,14 +237393,25 @@ Generated by [AVA](https://avajs.dev). settings: {␊ xmlCfg: string␊ StorageAccount: string␊ + xmlCfg: unknown␊ + StorageAccount: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + storageAccountEndPoint: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSAntimalware6 {␊ @@ -216534,6 +237425,9 @@ Generated by [AVA](https://avajs.dev). Paths: string␊ Extensions: string␊ Processes: string␊ + Paths: unknown␊ + Extensions: unknown␊ + Processes: unknown␊ [k: string]: unknown␊ }␊ RealtimeProtectionEnabled: ("true" | "false")␊ @@ -216542,10 +237436,23 @@ Generated by [AVA](https://avajs.dev). scanType: string␊ day: string␊ time: string␊ + isEnabled: unknown␊ + scanType: unknown␊ + day: unknown␊ + time: unknown␊ [k: string]: unknown␊ }␊ + AntimalwareEnabled: unknown␊ + Exclusions: unknown␊ + RealtimeProtectionEnabled: unknown␊ + ScheduledScanSettings: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptExtension6 {␊ @@ -216556,6 +237463,7 @@ Generated by [AVA](https://avajs.dev). settings: {␊ fileUris?: string[]␊ commandToExecute: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -216563,6 +237471,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptForLinux6 {␊ @@ -216578,8 +237492,15 @@ Generated by [AVA](https://avajs.dev). commandToExecute: string␊ storageAccountName?: string␊ storageAccountKey?: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxDiagnostic6 {␊ @@ -216606,8 +237527,16 @@ Generated by [AVA](https://avajs.dev). storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint?: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessForLinux6 {␊ @@ -216627,8 +237556,20 @@ Generated by [AVA](https://avajs.dev). reset_ssh: string␊ remove_user: string␊ expiration: string␊ + username: unknown␊ + password: unknown␊ + ssh_key: unknown␊ + reset_ssh: unknown␊ + remove_user: unknown␊ + expiration: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BgInfo6 {␊ @@ -216636,6 +237577,10 @@ Generated by [AVA](https://avajs.dev). type: "bginfo"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessAgent6 {␊ @@ -216651,6 +237596,12 @@ Generated by [AVA](https://avajs.dev). password?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DscExtension6 {␊ @@ -216667,12 +237618,20 @@ Generated by [AVA](https://avajs.dev). dataCollection?: string␊ [k: string]: unknown␊ }␊ + modulesUrl: unknown␊ + configurationFunction: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ dataBlobUri?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackupLinux6 {␊ @@ -216682,13 +237641,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackup6 {␊ @@ -216698,13 +237666,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxChefClient6 {␊ @@ -216720,6 +237697,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -216730,8 +237712,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface ChefClient6 {␊ @@ -216746,6 +237737,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -216756,8 +237752,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogLinuxAgent6 {␊ @@ -216767,8 +237772,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogWindowsAgent6 {␊ @@ -216778,8 +237789,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DockerExtension6 {␊ @@ -216790,8 +237807,10 @@ Generated by [AVA](https://avajs.dev). settings: {␊ docker: {␊ port: string␊ + port: unknown␊ [k: string]: unknown␊ }␊ + docker: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -216799,10 +237818,20 @@ Generated by [AVA](https://avajs.dev). ca: string␊ cert: string␊ key: string␊ + ca: unknown␊ + cert: unknown␊ + key: unknown␊ [k: string]: unknown␊ }␊ + certs: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceLinux6 {␊ @@ -216813,8 +237842,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceWindows6 {␊ @@ -216825,8 +237861,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface Eset6 {␊ @@ -216842,8 +237885,20 @@ Generated by [AVA](https://avajs.dev). "Enable-Cloud": boolean␊ "Enable-PUA": boolean␊ ERAAgentCfgUrl: string␊ + LicenseKey: unknown␊ + "Install-RealtimeProtection": unknown␊ + "Install-ProtocolFiltering": unknown␊ + "Install-DeviceControl": unknown␊ + "Enable-Cloud": unknown␊ + "Enable-PUA": unknown␊ + ERAAgentCfgUrl: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface HpeSecurityApplicationDefender6 {␊ @@ -216854,8 +237909,15 @@ Generated by [AVA](https://avajs.dev). protectedSettings: {␊ key: string␊ serverURL: string␊ + key: unknown␊ + serverURL: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface PuppetAgent6 {␊ @@ -216865,8 +237927,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ protectedSettings: {␊ PUPPET_MASTER_SERVER: string␊ + PUPPET_MASTER_SERVER: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7LinuxServerExtn6 {␊ @@ -216880,8 +237948,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7WindowsServerExtn6 {␊ @@ -216895,8 +237970,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7ApmInsightExtn6 {␊ @@ -216910,8 +237992,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSALinux6 {␊ @@ -216923,13 +238012,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSA6 {␊ @@ -216941,13 +238040,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentLinux6 {␊ @@ -216960,8 +238069,17 @@ Generated by [AVA](https://avajs.dev). "Agent Port": string␊ "Host Group": string␊ "User Account": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ + "User Account": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentWindows6 {␊ @@ -216973,8 +238091,16 @@ Generated by [AVA](https://avajs.dev). "Control-M Server Name": string␊ "Agent Port": string␊ "Host Group": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface OSPatchingForLinux6 {␊ @@ -217000,6 +238126,8 @@ Generated by [AVA](https://avajs.dev). vmStatusTest?: {␊ [k: string]: unknown␊ }␊ + disabled: unknown␊ + stop: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -217007,6 +238135,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshot6 {␊ @@ -217023,8 +238157,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshotLinux6 {␊ @@ -217041,8 +238188,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScript6 {␊ @@ -217052,14 +238212,24 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ fileUris: string[]␊ + fileUris: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ commandToExecute: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentWindows6 {␊ @@ -217067,6 +238237,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentWindows"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentLinux6 {␊ @@ -217074,6 +238248,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentLinux"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217117,6 +238295,11 @@ Generated by [AVA](https://avajs.dev). * The virtual machine scale set zones. NOTE: Availability zones can only be set when you create the scale set.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217367,6 +238550,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration.␊ */␊ properties?: (VirtualMachineScaleSetNetworkConfigurationProperties5 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217394,6 +238578,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the primary network interface in case the virtual machine has more than 1 network interface.␊ */␊ primary?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217422,6 +238607,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration properties.␊ */␊ properties?: (VirtualMachineScaleSetIPConfigurationProperties5 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217474,6 +238660,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration␊ */␊ properties?: (VirtualMachineScaleSetPublicIPAddressConfigurationProperties4 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217503,6 +238690,7 @@ Generated by [AVA](https://avajs.dev). * The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created␊ */␊ domainNameLabel: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217618,6 +238806,8 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217674,6 +238864,7 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217690,6 +238881,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualMachineScaleSetExtensionProperties4 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217762,6 +238957,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "virtualmachines"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217859,6 +239059,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachineScaleSets/virtualmachines"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217882,6 +239087,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachines/extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217895,6 +239105,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (GenericExtension6 | IaaSDiagnostics6 | IaaSAntimalware6 | CustomScriptExtension6 | CustomScriptForLinux6 | LinuxDiagnostic6 | VmAccessForLinux6 | BgInfo6 | VmAccessAgent6 | DscExtension6 | AcronisBackupLinux6 | AcronisBackup6 | LinuxChefClient6 | ChefClient6 | DatadogLinuxAgent6 | DatadogWindowsAgent6 | DockerExtension6 | DynatraceLinux6 | DynatraceWindows6 | Eset6 | HpeSecurityApplicationDefender6 | PuppetAgent6 | Site24X7LinuxServerExtn6 | Site24X7WindowsServerExtn6 | Site24X7ApmInsightExtn6 | TrendMicroDSALinux6 | TrendMicroDSA6 | BmcCtmAgentLinux6 | BmcCtmAgentWindows6 | OSPatchingForLinux6 | VMSnapshot6 | VMSnapshotLinux6 | CustomScript6 | NetworkWatcherAgentWindows6 | NetworkWatcherAgentLinux6)␊ type: "Microsoft.Compute/virtualMachineScaleSets/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217922,6 +239136,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/galleries"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -217968,6 +239187,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "images"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218018,6 +239242,9 @@ Generated by [AVA](https://avajs.dev). * The release note uri.␊ */␊ releaseNoteUri?: string␊ + identifier: unknown␊ + osState: unknown␊ + osType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218046,6 +239273,9 @@ Generated by [AVA](https://avajs.dev). * The name of the gallery Image Definition SKU.␊ */␊ sku: string␊ + offer: unknown␊ + publisher: unknown␊ + sku: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218118,6 +239348,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "applications"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218148,6 +239383,7 @@ Generated by [AVA](https://avajs.dev). * This property allows you to specify the supported type of the OS that application is built for.

Possible values are:

**Windows**

**Linux**.␊ */␊ supportedOSType: (("Windows" | "Linux") | string)␊ + supportedOSType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218175,6 +239411,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/galleries/images"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218201,6 +239442,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "versions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218211,6 +239457,7 @@ Generated by [AVA](https://avajs.dev). * The publishing profile of a gallery Image Version.␊ */␊ publishingProfile: (GalleryImageVersionPublishingProfile1 | string)␊ + publishingProfile: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218241,6 +239488,7 @@ Generated by [AVA](https://avajs.dev). * The target regions where the Image Version is going to be replicated to. This property is updatable.␊ */␊ targetRegions?: (TargetRegion1[] | string)␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218251,6 +239499,7 @@ Generated by [AVA](https://avajs.dev). * The managed artifact.␊ */␊ managedImage: (ManagedArtifact1 | string)␊ + managedImage: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218261,6 +239510,7 @@ Generated by [AVA](https://avajs.dev). * The managed artifact id.␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218279,6 +239529,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the storage account type to be used to store the image. This property is not updatable.␊ */␊ storageAccountType?: (("Standard_LRS" | "Standard_ZRS") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218305,6 +239556,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/galleries/images/versions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218335,6 +239591,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.IoTCentral/iotApps"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218363,6 +239625,7 @@ Generated by [AVA](https://avajs.dev). * The name of the SKU.␊ */␊ name: (("F1" | "S1" | "ST0" | "ST1" | "ST2") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218389,6 +239652,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Maps/accounts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218399,6 +239667,7 @@ Generated by [AVA](https://avajs.dev). * The name of the SKU, in standard format (such as S0).␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218422,6 +239691,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.BatchAI/workspaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218434,6 +239707,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: (string | string)␊ type: "experiments"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218450,6 +239726,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FileServerBaseProperties1 | string)␊ type: "fileServers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218472,6 +239752,9 @@ Generated by [AVA](https://avajs.dev). * The size of the virtual machine for the File Server. For information about available VM sizes from the Virtual Machines Marketplace, see Sizes for Virtual Machines (Linux).␊ */␊ vmSize: string␊ + dataDisks: unknown␊ + sshConfiguration: unknown␊ + vmSize: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218494,6 +239777,9 @@ Generated by [AVA](https://avajs.dev). * Type of storage account to be used on the disk. Possible values are: Standard_LRS or Premium_LRS. Premium storage account type can only be used with VM sizes supporting premium storage.␊ */␊ storageAccountType: (("Standard_LRS" | "Premium_LRS") | string)␊ + diskCount: unknown␊ + diskSizeInGB: unknown␊ + storageAccountType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218508,6 +239794,7 @@ Generated by [AVA](https://avajs.dev). * Settings for user account that gets created on each on the nodes of a cluster.␊ */␊ userAccountSettings: (UserAccountSettings1 | string)␊ + userAccountSettings: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218526,6 +239813,7 @@ Generated by [AVA](https://avajs.dev). * SSH public key of the administrator user account.␊ */␊ adminUserSshPublicKey?: string␊ + adminUserName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218536,6 +239824,7 @@ Generated by [AVA](https://avajs.dev). * The ID of the resource␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218552,6 +239841,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ClusterBaseProperties1 | string)␊ type: "clusters"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218586,6 +239879,8 @@ Generated by [AVA](https://avajs.dev). * The size of the virtual machines in the cluster. All nodes in a cluster have the same VM size. For information about available VM sizes for clusters using images from the Virtual Machines Marketplace see Sizes for Virtual Machines (Linux). Batch AI service supports all Azure VM sizes except STANDARD_A0 and those with premium storage (STANDARD_GS, STANDARD_DS, and STANDARD_DSV2 series).␊ */␊ vmSize: string␊ + userAccountSettings: unknown␊ + vmSize: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218652,6 +239947,10 @@ Generated by [AVA](https://avajs.dev). * The relative path on the compute node where the Azure File container will be mounted. Note that all cluster level containers will be mounted under $AZ_BATCHAI_MOUNT_ROOT location and all job level containers will be mounted under $AZ_BATCHAI_JOB_MOUNT_ROOT.␊ */␊ relativeMountPath: string␊ + accountName: unknown␊ + containerName: unknown␊ + credentials: unknown␊ + relativeMountPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218680,6 +239979,8 @@ Generated by [AVA](https://avajs.dev). * Represents a resource ID. For example, for a subnet, it is the resource URL for the subnet.␊ */␊ sourceVault: (ResourceId6 | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218710,6 +240011,10 @@ Generated by [AVA](https://avajs.dev). * The relative path on the compute node where the Azure File share will be mounted. Note that all cluster level file shares will be mounted under $AZ_BATCHAI_MOUNT_ROOT location and all job level file shares will be mounted under $AZ_BATCHAI_JOB_MOUNT_ROOT.␊ */␊ relativeMountPath: string␊ + accountName: unknown␊ + azureFileUrl: unknown␊ + credentials: unknown␊ + relativeMountPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218732,6 +240037,8 @@ Generated by [AVA](https://avajs.dev). * File Server directory that needs to be mounted. If this property is not specified, the entire File Server will be mounted.␊ */␊ sourceDirectory?: string␊ + fileServer: unknown␊ + relativeMountPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218746,6 +240053,8 @@ Generated by [AVA](https://avajs.dev). * The relative path on the compute node where the unmanaged file system will be mounted. Note that all cluster level unmanaged file systems will be mounted under $AZ_BATCHAI_MOUNT_ROOT location and all job level unmanaged file systems will be mounted under $AZ_BATCHAI_JOB_MOUNT_ROOT.␊ */␊ relativeMountPath: string␊ + mountCommand: unknown␊ + relativeMountPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218756,6 +240065,7 @@ Generated by [AVA](https://avajs.dev). * Azure Application Insights information for performance counters reporting.␊ */␊ appInsightsReference: (AppInsightsReference1 | string)␊ + appInsightsReference: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218774,6 +240084,7 @@ Generated by [AVA](https://avajs.dev). * Key Vault Secret reference.␊ */␊ instrumentationKeySecretReference?: (KeyVaultSecretReference7 | string)␊ + component: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218796,6 +240107,8 @@ Generated by [AVA](https://avajs.dev). * The prefix of a path where the Batch AI service will upload the stdout, stderr and execution log of the setup task.␊ */␊ stdOutErrPathPrefix: string␊ + commandLine: unknown␊ + stdOutErrPathPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218810,6 +240123,8 @@ Generated by [AVA](https://avajs.dev). * The value of the environment variable.␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218828,6 +240143,7 @@ Generated by [AVA](https://avajs.dev). * Key Vault Secret reference.␊ */␊ valueSecretReference?: (KeyVaultSecretReference7 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218860,6 +240176,8 @@ Generated by [AVA](https://avajs.dev). * The minimum number of compute nodes the Batch AI service will try to allocate for the cluster. Note, the actual number of nodes can be less than the specified value if the subscription has not enough quota to fulfill the request.␊ */␊ minimumNodeCount: (number | string)␊ + maximumNodeCount: unknown␊ + minimumNodeCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218874,6 +240192,7 @@ Generated by [AVA](https://avajs.dev). * The desired number of compute nodes in the Cluster. Default is 0.␊ */␊ targetNodeCount: ((number & string) | string)␊ + targetNodeCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218910,6 +240229,9 @@ Generated by [AVA](https://avajs.dev). * The ARM resource identifier of the virtual machine image for the compute nodes. This is of the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/images/{imageName}. The virtual machine image must be in the same region and subscription as the cluster. For information about the firewall settings for the Batch node agent to communicate with the Batch service see https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration. Note, you need to provide publisher, offer and sku of the base OS image of which the custom image has been derived from.␊ */␊ virtualMachineImageId?: string␊ + offer: unknown␊ + publisher: unknown␊ + sku: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218926,6 +240248,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ClusterBaseProperties1 | string)␊ type: "Microsoft.BatchAI/workspaces/clusters"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218939,6 +240265,9 @@ Generated by [AVA](https://avajs.dev). name: string␊ resources?: WorkspacesExperimentsJobsChildResource[]␊ type: "Microsoft.BatchAI/workspaces/experiments"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -218955,6 +240284,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobBaseProperties1 | string)␊ type: "jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219045,6 +240378,9 @@ Generated by [AVA](https://avajs.dev). * TensorFlow job settings.␊ */␊ tensorFlowSettings?: (TensorFlowSettings1 | string)␊ + cluster: unknown␊ + nodeCount: unknown␊ + stdOutErrPathPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219063,6 +240399,7 @@ Generated by [AVA](https://avajs.dev). * The python script to execute.␊ */␊ pythonScriptFilePath: string␊ + pythonScriptFilePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219111,6 +240448,7 @@ Generated by [AVA](https://avajs.dev). * The python script to execute.␊ */␊ pythonScriptFilePath: string␊ + pythonScriptFilePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219165,6 +240503,7 @@ Generated by [AVA](https://avajs.dev). * Size of /dev/shm. Please refer to docker documentation for supported argument formats.␊ */␊ shmSize?: string␊ + imageSourceRegistry: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219183,6 +240522,7 @@ Generated by [AVA](https://avajs.dev). * URL for image repository.␊ */␊ serverUrl?: string␊ + image: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219201,6 +240541,7 @@ Generated by [AVA](https://avajs.dev). * User name to login to the repository.␊ */␊ username: string␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219215,6 +240556,7 @@ Generated by [AVA](https://avajs.dev). * Number of processes to launch for the job execution. The default value for this property is equal to nodeCount property␊ */␊ processCount?: (number | string)␊ + commandLine: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219247,6 +240589,7 @@ Generated by [AVA](https://avajs.dev). * The python script to execute.␊ */␊ pythonScriptFilePath: string␊ + pythonScriptFilePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219261,6 +240604,8 @@ Generated by [AVA](https://avajs.dev). * The path to the input directory.␊ */␊ path: string␊ + id: unknown␊ + path: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219271,6 +240616,7 @@ Generated by [AVA](https://avajs.dev). * The command line to execute. If containerSettings is specified on the job, this commandLine will be executed in the same container as job. Otherwise it will be executed on the node.␊ */␊ commandLine: string␊ + commandLine: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219289,6 +240635,8 @@ Generated by [AVA](https://avajs.dev). * The suffix path where the output directory will be created. E.g. models. You can find the full path to the output directory by combining pathPrefix, jobOutputDirectoryPathSegment (reported by get job) and pathSuffix.␊ */␊ pathSuffix?: string␊ + id: unknown␊ + pathPrefix: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219315,6 +240663,7 @@ Generated by [AVA](https://avajs.dev). * The python script to execute.␊ */␊ pythonScriptFilePath: string␊ + pythonScriptFilePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219349,6 +240698,7 @@ Generated by [AVA](https://avajs.dev). * The number of worker tasks. If specified, the value must be less than or equal to (nodeCount * numberOfGPUs per VM). If not specified, the default value is equal to nodeCount. This property can be specified only for distributed TensorFlow training.␊ */␊ workerCount?: (number | string)␊ + pythonScriptFilePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219365,6 +240715,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (JobBaseProperties1 | string)␊ type: "Microsoft.BatchAI/workspaces/experiments/jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219381,6 +240735,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FileServerBaseProperties1 | string)␊ type: "Microsoft.BatchAI/workspaces/fileServers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219407,6 +240765,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerService/containerServices"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219445,6 +240808,9 @@ Generated by [AVA](https://avajs.dev). * Profile for Windows VMs in the container service cluster.␊ */␊ windowsProfile?: (ContainerServiceWindowsProfile1 | string)␊ + linuxProfile: unknown␊ + masterProfile: unknown␊ + orchestratorProfile: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219487,6 +240853,8 @@ Generated by [AVA](https://avajs.dev). * VNet SubnetID specifies the VNet's subnet identifier.␊ */␊ vnetSubnetID?: string␊ + name: unknown␊ + vmSize: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219497,6 +240865,7 @@ Generated by [AVA](https://avajs.dev). * The name of the custom orchestrator to use.␊ */␊ orchestrator: string␊ + orchestrator: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219507,6 +240876,7 @@ Generated by [AVA](https://avajs.dev). * Profile for diagnostics on the container service VMs.␊ */␊ vmDiagnostics: (ContainerServiceVMDiagnostics1 | string)␊ + vmDiagnostics: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219517,6 +240887,7 @@ Generated by [AVA](https://avajs.dev). * Whether the VM diagnostic agent is provisioned on the VM.␊ */␊ enabled: (boolean | string)␊ + enabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219531,6 +240902,8 @@ Generated by [AVA](https://avajs.dev). * SSH configuration for Linux-based VMs running on Azure.␊ */␊ ssh: (ContainerServiceSshConfiguration1 | string)␊ + adminUsername: unknown␊ + ssh: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219541,6 +240914,7 @@ Generated by [AVA](https://avajs.dev). * The list of SSH public keys used to authenticate with Linux-based VMs. Only expect one key specified.␊ */␊ publicKeys: (ContainerServiceSshPublicKey1[] | string)␊ + publicKeys: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219551,6 +240925,7 @@ Generated by [AVA](https://avajs.dev). * Certificate public key used to authenticate with VMs through SSH. The certificate must be in PEM format with or without headers.␊ */␊ keyData: string␊ + keyData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219585,6 +240960,8 @@ Generated by [AVA](https://avajs.dev). * VNet SubnetID specifies the VNet's subnet identifier.␊ */␊ vnetSubnetID?: string␊ + dnsPrefix: unknown␊ + vmSize: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219599,6 +240976,7 @@ Generated by [AVA](https://avajs.dev). * The version of the orchestrator to use. You can specify the major.minor.patch part of the actual version.For example, you can specify version as "1.6.11".␊ */␊ orchestratorVersion?: string␊ + orchestratorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219617,6 +240995,7 @@ Generated by [AVA](https://avajs.dev). * The secret password associated with the service principal in plain text.␊ */␊ secret?: string␊ + clientId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219635,6 +241014,8 @@ Generated by [AVA](https://avajs.dev). * The secret version.␊ */␊ version?: string␊ + secretName: unknown␊ + vaultID: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219649,6 +241030,8 @@ Generated by [AVA](https://avajs.dev). * The administrator username to use for Windows VMs.␊ */␊ adminUsername: string␊ + adminPassword: unknown␊ + adminUsername: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219675,6 +241058,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerService/managedClusters"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219741,6 +241129,8 @@ Generated by [AVA](https://avajs.dev). * The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.␊ */␊ tenantID?: string␊ + clientAppID: unknown␊ + serverAppID: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219757,6 +241147,7 @@ Generated by [AVA](https://avajs.dev). * Whether the add-on is enabled or not.␊ */␊ enabled: (boolean | string)␊ + enabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219791,6 +241182,8 @@ Generated by [AVA](https://avajs.dev). * VNet SubnetID specifies the VNet's subnet identifier.␊ */␊ vnetSubnetID?: string␊ + name: unknown␊ + vmSize: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219805,6 +241198,8 @@ Generated by [AVA](https://avajs.dev). * SSH configuration for Linux-based VMs running on Azure.␊ */␊ ssh: (ContainerServiceSshConfiguration2 | string)␊ + adminUsername: unknown␊ + ssh: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219815,6 +241210,7 @@ Generated by [AVA](https://avajs.dev). * The list of SSH public keys used to authenticate with Linux-based VMs. Only expect one key specified.␊ */␊ publicKeys: (ContainerServiceSshPublicKey2[] | string)␊ + publicKeys: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219825,6 +241221,7 @@ Generated by [AVA](https://avajs.dev). * Certificate public key used to authenticate with VMs through SSH. The certificate must be in PEM format with or without headers.␊ */␊ keyData: string␊ + keyData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219869,6 +241266,7 @@ Generated by [AVA](https://avajs.dev). * The secret password associated with the service principal in plain text.␊ */␊ secret?: string␊ + clientId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219889,6 +241287,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SavedSearchProperties | string)␊ type: "Microsoft.OperationalInsights/workspaces/savedSearches"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219915,6 +241317,9 @@ Generated by [AVA](https://avajs.dev). * The version number of the query language. The current version is 2 and is the default.␊ */␊ version?: (number | string)␊ + category: unknown␊ + displayName: unknown␊ + query: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219929,6 +241334,8 @@ Generated by [AVA](https://avajs.dev). * The tag value.␊ */␊ value: string␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219955,6 +241362,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.OperationalInsights/workspaces/storageInsightConfigs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219973,6 +241384,7 @@ Generated by [AVA](https://avajs.dev). * The names of the Azure tables that the workspace should read␊ */␊ tables?: (string[] | string)␊ + storageAccount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -219987,6 +241399,8 @@ Generated by [AVA](https://avajs.dev). * The storage account key.␊ */␊ key: string␊ + id: unknown␊ + key: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220018,6 +241432,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.OperationalInsights/workspaces"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220046,6 +241464,7 @@ Generated by [AVA](https://avajs.dev). * The name of the SKU.␊ */␊ name: (("Free" | "Standard" | "Premium" | "PerNode" | "PerGB2018" | "Standalone" | "CapacityReservation") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220062,6 +241481,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LinkedServiceProperties | string)␊ type: "linkedServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220072,6 +241495,7 @@ Generated by [AVA](https://avajs.dev). * The resource id of the resource that will be linked to the workspace.␊ */␊ resourceId: string␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220101,6 +241525,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "dataSources"␊ + apiVersion: unknown␊ + kind: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220130,6 +241559,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.OperationalInsights/workspaces/dataSources"␊ + apiVersion: unknown␊ + kind: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220146,6 +241580,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LinkedServiceProperties | string)␊ type: "Microsoft.OperationalInsights/workspaces/linkedServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220177,6 +241615,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.OperationalInsights/clusters"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220187,6 +241629,7 @@ Generated by [AVA](https://avajs.dev). * The identity type.␊ */␊ type: (("SystemAssigned" | "None") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220244,6 +241687,10 @@ Generated by [AVA](https://avajs.dev). * Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.␊ */␊ properties: (ManagementConfigurationProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220268,6 +241715,9 @@ Generated by [AVA](https://avajs.dev). template: {␊ [k: string]: unknown␊ }␊ + parentResourceType: unknown␊ + parameters: unknown␊ + template: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220306,6 +241756,10 @@ Generated by [AVA](https://avajs.dev). * Properties for solution object supported by the OperationsManagement resource provider.␊ */␊ properties: (SolutionProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220346,6 +241800,7 @@ Generated by [AVA](https://avajs.dev). * The resources that will be referenced from this solution. Deleting any of those solution out of band will break the solution.␊ */␊ referencedResources?: (string[] | string)␊ + workspaceResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220380,6 +241835,13 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Peering/peerings"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220579,6 +242041,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Peering/peeringServices"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220609,6 +242076,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PeeringServicePrefixProperties | string)␊ type: "prefixes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220643,6 +242114,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PeeringServicePrefixProperties | string)␊ type: "Microsoft.Peering/peeringServices/prefixes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220677,6 +242152,13 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Peering/peerings"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220868,6 +242350,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Peering/peeringServices"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220898,6 +242385,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PeeringServicePrefixProperties1 | string)␊ type: "prefixes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220924,6 +242415,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PeeringServicePrefixProperties1 | string)␊ type: "Microsoft.Peering/peeringServices/prefixes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -220959,6 +242454,13 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Peering/peerings"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221125,6 +242627,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PeeringRegisteredAsnProperties | string)␊ type: "registeredAsns"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221151,6 +242657,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PeeringRegisteredPrefixProperties | string)␊ type: "registeredPrefixes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221199,6 +242709,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PeeringRegisteredAsnProperties | string)␊ type: "Microsoft.Peering/peerings/registeredAsns"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221215,6 +242729,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PeeringRegisteredPrefixProperties | string)␊ type: "Microsoft.Peering/peerings/registeredPrefixes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221246,6 +242764,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Peering/peeringServices"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221276,6 +242799,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PeeringServicePrefixProperties2 | string)␊ type: "prefixes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221316,6 +242843,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PeeringServicePrefixProperties2 | string)␊ type: "Microsoft.Peering/peeringServices/prefixes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221346,6 +242877,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.AAD/domainServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221465,6 +243000,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.AAD/domainServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221637,6 +243176,9 @@ Generated by [AVA](https://avajs.dev). */␊ spn?: string␊ type: "ouContainer"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221661,6 +243203,9 @@ Generated by [AVA](https://avajs.dev). */␊ spn?: string␊ type: "Microsoft.Aad/domainServices/ouContainer"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221692,6 +243237,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.SignalRService/signalR"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221748,6 +243298,8 @@ Generated by [AVA](https://avajs.dev). * Value of the feature flag. See Azure SignalR service document https://docs.microsoft.com/azure/azure-signalr/ for allowed values.␊ */␊ value: string␊ + flag: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221782,6 +243334,7 @@ Generated by [AVA](https://avajs.dev). * \`Basic\` is deprecated, use \`Standard\` instead.␊ */␊ tier?: (("Free" | "Basic" | "Standard" | "Premium") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221809,6 +243362,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "Microsoft.NetApp/netAppAccounts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221883,6 +243441,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "capacityPools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221924,6 +243487,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "Microsoft.NetApp/netAppAccounts/capacityPools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221950,6 +243518,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "volumes"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -221976,6 +243549,8 @@ Generated by [AVA](https://avajs.dev). * Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB.␊ */␊ usageThreshold?: ((number & string) | string)␊ + creationToken: unknown␊ + serviceLevel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222044,6 +243619,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "Microsoft.NetApp/netAppAccounts/capacityPools/volumes"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222070,6 +243650,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "snapshots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222080,6 +243665,7 @@ Generated by [AVA](https://avajs.dev). * UUID v4 used to identify the FileSystem␊ */␊ fileSystemId: string␊ + fileSystemId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222106,6 +243692,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222133,6 +243724,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "Microsoft.NetApp/netAppAccounts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222207,6 +243803,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "capacityPools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222221,6 +243822,8 @@ Generated by [AVA](https://avajs.dev). * Provisioned size of the pool (in bytes). Allowed values are in 4TiB chunks (value must be multiply of 4398046511104).␊ */␊ size: ((number & string) | string)␊ + serviceLevel: unknown␊ + size: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222248,6 +243851,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "Microsoft.NetApp/netAppAccounts/capacityPools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222274,6 +243882,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "volumes"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222312,6 +243925,9 @@ Generated by [AVA](https://avajs.dev). * Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes.␊ */␊ usageThreshold: ((number & string) | string)␊ + creationToken: unknown␊ + subnetId: unknown␊ + usageThreshold: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222390,6 +244006,7 @@ Generated by [AVA](https://avajs.dev). * The subnet␊ */␊ subnet?: string␊ + fileSystemId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222417,6 +244034,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "Microsoft.NetApp/netAppAccounts/capacityPools/volumes"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222443,6 +244065,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "snapshots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222479,6 +244106,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222510,6 +244142,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.StorSimple/managers"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222534,6 +244171,7 @@ Generated by [AVA](https://avajs.dev). * Refers to the type of the StorSimple Manager.␊ */␊ type: (("GardaV1" | "HelsinkiV1") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222544,6 +244182,7 @@ Generated by [AVA](https://avajs.dev). * Refers to the sku name which should be "Standard"␊ */␊ name: ("Standard" | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222560,6 +244199,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RawCertificateData1 | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222574,6 +244217,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the base64 encoded certificate raw data string␊ */␊ certificate: string␊ + certificate: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222591,6 +244235,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagerExtendedInfoProperties1 | string)␊ type: "extendedInformation"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222621,6 +244269,8 @@ Generated by [AVA](https://avajs.dev). * Represents the version of the ExtendedInfo object being persisted␊ */␊ version?: string␊ + algorithm: unknown␊ + integrityKey: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222637,6 +244287,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AccessControlRecordProperties1 | string)␊ type: "accessControlRecords"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222647,6 +244301,7 @@ Generated by [AVA](https://avajs.dev). * The Iscsi initiator name (IQN)␊ */␊ initiatorName: string␊ + initiatorName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222663,6 +244318,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageAccountCredentialProperties1 | string)␊ type: "storageAccountCredentials"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222693,6 +244352,10 @@ Generated by [AVA](https://avajs.dev). * The storage account login␊ */␊ login: string␊ + cloudType: unknown␊ + enableSSL: unknown␊ + endPoint: unknown␊ + login: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222711,6 +244374,8 @@ Generated by [AVA](https://avajs.dev). * The value of the secret itself. If the secret is in plaintext then EncryptionAlgorithm will be none and EncryptionCertThumbprint will be null.␊ */␊ value: string␊ + encryptionAlgorithm: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222727,6 +244392,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageDomainProperties | string)␊ type: "storageDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222745,6 +244414,8 @@ Generated by [AVA](https://avajs.dev). * The storage account credentials.␊ */␊ storageAccountCredentialIds: (string[] | string)␊ + encryptionStatus: unknown␊ + storageAccountCredentialIds: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222761,6 +244432,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AccessControlRecordProperties1 | string)␊ type: "Microsoft.StorSimple/managers/accessControlRecords"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222777,6 +244452,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RawCertificateData1 | string)␊ type: "Microsoft.StorSimple/managers/certificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222790,6 +244469,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AlertSettingsProperties | string)␊ type: "Microsoft.StorSimple/managers/devices/alertSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222812,6 +244495,9 @@ Generated by [AVA](https://avajs.dev). * Value indicating whether service owners will receive emails when an alert condition occurs on the system. Applicable only if emailNotification flag is Enabled.␊ */␊ notificationToServiceOwners: (("Enabled" | "Disabled") | string)␊ + alertNotificationCulture: unknown␊ + emailNotification: unknown␊ + notificationToServiceOwners: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222828,6 +244514,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (BackupScheduleGroupProperties | string)␊ type: "Microsoft.StorSimple/managers/devices/backupScheduleGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222838,6 +244528,7 @@ Generated by [AVA](https://avajs.dev). * The Time.␊ */␊ startTime: (Time1 | string)␊ + startTime: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222852,6 +244543,8 @@ Generated by [AVA](https://avajs.dev). * The minute.␊ */␊ minute: (number | string)␊ + hour: unknown␊ + minute: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222868,6 +244561,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ChapProperties | string)␊ type: "Microsoft.StorSimple/managers/devices/chapSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222878,6 +244575,7 @@ Generated by [AVA](https://avajs.dev). * This class can be used as the Type for any secret entity represented as Password, CertThumbprint, Algorithm. This class is intended to be used when the secret is encrypted with an asymmetric key pair. The encryptionAlgorithm field is mainly for future usage to potentially allow different entities encrypted using different algorithms.␊ */␊ password: (AsymmetricEncryptedSecret1 | string)␊ + password: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222895,6 +244593,10 @@ Generated by [AVA](https://avajs.dev). properties: (FileServerProperties | string)␊ resources?: ManagersDevicesFileserversSharesChildResource[]␊ type: "Microsoft.StorSimple/managers/devices/fileservers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222917,6 +244619,9 @@ Generated by [AVA](https://avajs.dev). * The storage domain id.␊ */␊ storageDomainId: string␊ + backupScheduleGroupId: unknown␊ + domainName: unknown␊ + storageDomainId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222933,6 +244638,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FileShareProperties2 | string)␊ type: "shares"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222963,6 +244672,11 @@ Generated by [AVA](https://avajs.dev). * The Share Status.␊ */␊ shareStatus: (("Online" | "Offline") | string)␊ + adminUser: unknown␊ + dataPolicy: unknown␊ + monitoringStatus: unknown␊ + provisionedCapacityInBytes: unknown␊ + shareStatus: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222979,6 +244693,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FileShareProperties2 | string)␊ type: "Microsoft.StorSimple/managers/devices/fileservers/shares"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -222996,6 +244714,10 @@ Generated by [AVA](https://avajs.dev). properties: (ISCSIServerProperties | string)␊ resources?: ManagersDevicesIscsiserversDisksChildResource[]␊ type: "Microsoft.StorSimple/managers/devices/iscsiservers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223022,6 +244744,8 @@ Generated by [AVA](https://avajs.dev). * The storage domain id.␊ */␊ storageDomainId: string␊ + backupScheduleGroupId: unknown␊ + storageDomainId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223038,6 +244762,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ISCSIDiskProperties | string)␊ type: "disks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223068,6 +244796,11 @@ Generated by [AVA](https://avajs.dev). * The provisioned capacity in bytes.␊ */␊ provisionedCapacityInBytes: (number | string)␊ + accessControlRecords: unknown␊ + dataPolicy: unknown␊ + diskStatus: unknown␊ + monitoringStatus: unknown␊ + provisionedCapacityInBytes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223084,6 +244817,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ISCSIDiskProperties | string)␊ type: "Microsoft.StorSimple/managers/devices/iscsiservers/disks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223101,6 +244838,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagerExtendedInfoProperties1 | string)␊ type: "Microsoft.StorSimple/managers/extendedInformation"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223117,6 +244858,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageAccountCredentialProperties1 | string)␊ type: "Microsoft.StorSimple/managers/storageAccountCredentials"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223133,6 +244878,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageDomainProperties | string)␊ type: "Microsoft.StorSimple/managers/storageDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223159,6 +244908,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Maps/accounts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223169,6 +244923,7 @@ Generated by [AVA](https://avajs.dev). * The name of the SKU, in standard format (such as S0).␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223196,6 +244951,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Maps/accounts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223218,6 +244978,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "privateAtlases"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223240,6 +245004,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "creators"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223250,6 +245018,7 @@ Generated by [AVA](https://avajs.dev). * The name of the SKU, in standard format (such as S0).␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223272,6 +245041,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Maps/accounts/privateAtlases"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223294,6 +245067,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ManagedIdentity/userAssignedIdentities"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223316,6 +245093,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ManagedIdentity/userAssignedIdentities"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223347,6 +245128,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.HDInsight/clusters"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223688,6 +245473,9 @@ Generated by [AVA](https://avajs.dev). * The URI to the script.␊ */␊ uri: string␊ + name: unknown␊ + parameters: unknown␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -223906,6 +245694,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "applications"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -224002,6 +245794,9 @@ Generated by [AVA](https://avajs.dev). * The URI to the script.␊ */␊ uri: string␊ + name: unknown␊ + roles: unknown␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -224080,6 +245875,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.HDInsight/clusters/applications"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -224111,6 +245910,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.HDInsight/clusters"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -224452,6 +246255,9 @@ Generated by [AVA](https://avajs.dev). * The URI to the script.␊ */␊ uri: string␊ + name: unknown␊ + parameters: unknown␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -224670,6 +246476,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "applications"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -224766,6 +246576,9 @@ Generated by [AVA](https://avajs.dev). * The URI to the script.␊ */␊ uri: string␊ + name: unknown␊ + roles: unknown␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -224844,6 +246657,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.HDInsight/clusters/applications"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -224861,6 +246678,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (JitNetworkAccessPolicyProperties | string)␊ type: "Microsoft.Security/locations/jitNetworkAccessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface JitNetworkAccessPolicyProperties {␊ @@ -224869,6 +246690,7 @@ Generated by [AVA](https://avajs.dev). * Configurations for Microsoft.Compute/virtualMachines resource type.␊ */␊ virtualMachines: (JitNetworkAccessPolicyVirtualMachine[] | string)␊ + virtualMachines: unknown␊ [k: string]: unknown␊ }␊ export interface JitNetworkAccessRequest {␊ @@ -224885,6 +246707,9 @@ Generated by [AVA](https://avajs.dev). */␊ startTimeUtc: string␊ virtualMachines: (JitNetworkAccessRequestVirtualMachine[] | string)␊ + requestor: unknown␊ + startTimeUtc: unknown␊ + virtualMachines: unknown␊ [k: string]: unknown␊ }␊ export interface JitNetworkAccessRequestVirtualMachine {␊ @@ -224896,6 +246721,8 @@ Generated by [AVA](https://avajs.dev). * The ports that were opened for the virtual machine␊ */␊ ports: (JitNetworkAccessRequestPort[] | string)␊ + id: unknown␊ + ports: unknown␊ [k: string]: unknown␊ }␊ export interface JitNetworkAccessRequestPort {␊ @@ -224924,6 +246751,10 @@ Generated by [AVA](https://avajs.dev). * A description of why the \`status\` has its value.␊ */␊ statusReason: (("Expired" | "UserRequested" | "NewerRequestInitiated") | string)␊ + endTimeUtc: unknown␊ + number: unknown␊ + status: unknown␊ + statusReason: unknown␊ [k: string]: unknown␊ }␊ export interface JitNetworkAccessPolicyVirtualMachine {␊ @@ -224939,6 +246770,8 @@ Generated by [AVA](https://avajs.dev). * Public IP address of the Azure Firewall that is linked to this policy, if applicable␊ */␊ publicIpAddress?: string␊ + id: unknown␊ + ports: unknown␊ [k: string]: unknown␊ }␊ export interface JitNetworkAccessPortRule {␊ @@ -224956,6 +246789,9 @@ Generated by [AVA](https://avajs.dev). maxRequestAccessDuration: string␊ number: (number | string)␊ protocol: (("TCP" | "UDP" | "*") | string)␊ + maxRequestAccessDuration: unknown␊ + number: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -224982,6 +246818,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Security/iotSecuritySolutions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225020,6 +246860,9 @@ Generated by [AVA](https://avajs.dev). * Workspace resource ID␊ */␊ workspace: string␊ + displayName: unknown␊ + iotHubs: unknown␊ + workspace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225034,6 +246877,8 @@ Generated by [AVA](https://avajs.dev). * Recommendation status. The recommendation is not generated when the status is disabled.␊ */␊ status: (("Disabled" | "Enabled") | string)␊ + recommendationType: unknown␊ + status: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225048,6 +246893,8 @@ Generated by [AVA](https://avajs.dev). * List of Azure subscription ids on which the user defined resources query should be executed.␊ */␊ querySubscriptions: (string[] | string)␊ + query: unknown␊ + querySubscriptions: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225064,6 +246911,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PricingProperties | string)␊ type: "Microsoft.Security/pricings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225074,6 +246925,7 @@ Generated by [AVA](https://avajs.dev). * Pricing tier type.␊ */␊ pricingTier: (("Free" | "Standard") | string)␊ + pricingTier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225090,6 +246942,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AdvancedThreatProtectionProperties | string)␊ type: "Microsoft.Security/advancedThreatProtectionSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225116,6 +246972,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeviceSecurityGroupProperties | string)␊ type: "Microsoft.Security/deviceSecurityGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225137,7 +246997,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The list of custom alert time-window rules.␊ */␊ - timeWindowRules?: ((ActiveConnectionsNotInAllowedRange | AmqpC2DMessagesNotInAllowedRange | MqttC2DMessagesNotInAllowedRange | HttpC2DMessagesNotInAllowedRange | AmqpC2DRejectedMessagesNotInAllowedRange | MqttC2DRejectedMessagesNotInAllowedRange | HttpC2DRejectedMessagesNotInAllowedRange | AmqpD2CMessagesNotInAllowedRange | MqttD2CMessagesNotInAllowedRange | HttpD2CMessagesNotInAllowedRange | DirectMethodInvokesNotInAllowedRange | FailedLocalLoginsNotInAllowedRange | FileUploadsNotInAllowedRange | QueuePurgesNotInAllowedRange | TwinUpdatesNotInAllowedRange | UnauthorizedOperationsNotInAllowedRange)[] | string)␊ + timeWindowRules?: (((ActiveConnectionsNotInAllowedRange | AmqpC2DMessagesNotInAllowedRange | MqttC2DMessagesNotInAllowedRange | HttpC2DMessagesNotInAllowedRange | AmqpC2DRejectedMessagesNotInAllowedRange | MqttC2DRejectedMessagesNotInAllowedRange | HttpC2DRejectedMessagesNotInAllowedRange | AmqpD2CMessagesNotInAllowedRange | MqttD2CMessagesNotInAllowedRange | HttpD2CMessagesNotInAllowedRange | DirectMethodInvokesNotInAllowedRange | FailedLocalLoginsNotInAllowedRange | FileUploadsNotInAllowedRange | QueuePurgesNotInAllowedRange | TwinUpdatesNotInAllowedRange | UnauthorizedOperationsNotInAllowedRange) & {␊ + ruleType: "TimeWindowCustomAlertRule"␊ + /**␊ + * The time window size in iso8601 format.␊ + */␊ + timeWindowSize: string␊ + ruleType: unknown␊ + timeWindowSize: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -225145,6 +247014,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ConnectionToIpNotAllowed {␊ ruleType: "ConnectionToIpNotAllowed"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225152,6 +247022,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface LocalUserNotAllowed {␊ ruleType: "LocalUserNotAllowed"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225159,6 +247030,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ProcessNotAllowed {␊ ruleType: "ProcessNotAllowed"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225173,6 +247045,8 @@ Generated by [AVA](https://avajs.dev). * Status of the custom alert.␊ */␊ isEnabled: (boolean | string)␊ + denylistValues: unknown␊ + isEnabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225180,6 +247054,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ActiveConnectionsNotInAllowedRange {␊ ruleType: "ActiveConnectionsNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225187,6 +247062,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AmqpC2DMessagesNotInAllowedRange {␊ ruleType: "AmqpC2DMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225194,6 +247070,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface MqttC2DMessagesNotInAllowedRange {␊ ruleType: "MqttC2DMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225201,6 +247078,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface HttpC2DMessagesNotInAllowedRange {␊ ruleType: "HttpC2DMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225208,6 +247086,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AmqpC2DRejectedMessagesNotInAllowedRange {␊ ruleType: "AmqpC2DRejectedMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225215,6 +247094,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface MqttC2DRejectedMessagesNotInAllowedRange {␊ ruleType: "MqttC2DRejectedMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225222,6 +247102,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface HttpC2DRejectedMessagesNotInAllowedRange {␊ ruleType: "HttpC2DRejectedMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225229,6 +247110,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AmqpD2CMessagesNotInAllowedRange {␊ ruleType: "AmqpD2CMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225236,6 +247118,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface MqttD2CMessagesNotInAllowedRange {␊ ruleType: "MqttD2CMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225243,6 +247126,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface HttpD2CMessagesNotInAllowedRange {␊ ruleType: "HttpD2CMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225250,6 +247134,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface DirectMethodInvokesNotInAllowedRange {␊ ruleType: "DirectMethodInvokesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225257,6 +247142,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface FailedLocalLoginsNotInAllowedRange {␊ ruleType: "FailedLocalLoginsNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225264,6 +247150,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface FileUploadsNotInAllowedRange {␊ ruleType: "FileUploadsNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225271,6 +247158,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface QueuePurgesNotInAllowedRange {␊ ruleType: "QueuePurgesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225278,6 +247166,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface TwinUpdatesNotInAllowedRange {␊ ruleType: "TwinUpdatesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225285,6 +247174,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface UnauthorizedOperationsNotInAllowedRange {␊ ruleType: "UnauthorizedOperationsNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225301,6 +247191,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AdvancedThreatProtectionProperties1 | string)␊ type: "Microsoft.Security/advancedThreatProtectionSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225345,6 +247239,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Security/automations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225386,6 +247284,7 @@ Generated by [AVA](https://avajs.dev). * The Logic App trigger URI endpoint (it will not be included in any response).␊ */␊ uri?: string␊ + actionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225401,6 +247300,7 @@ Generated by [AVA](https://avajs.dev). * The target Event Hub Azure Resource ID.␊ */␊ eventHubResourceId?: string␊ + actionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225412,6 +247312,7 @@ Generated by [AVA](https://avajs.dev). * The fully qualified Log Analytics Workspace Azure Resource ID.␊ */␊ workspaceResourceId?: string␊ + actionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225485,6 +247386,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAssessmentProperties | string)␊ type: "Microsoft.Security/assessments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225509,6 +247414,8 @@ Generated by [AVA](https://avajs.dev). * The result of the assessment␊ */␊ status: (AssessmentStatus | string)␊ + resourceDetails: unknown␊ + status: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225522,6 +247429,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AzureResourceDetails {␊ source: "Azure"␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225537,6 +247445,9 @@ Generated by [AVA](https://avajs.dev). */␊ serverName: string␊ source: "OnPremiseSql"␊ + databaseName: unknown␊ + serverName: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225555,6 +247466,7 @@ Generated by [AVA](https://avajs.dev). * Human readable description of the assessment status␊ */␊ description?: string␊ + code: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225581,6 +247493,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Security/iotSecuritySolutions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225627,6 +247543,8 @@ Generated by [AVA](https://avajs.dev). * Workspace resource ID␊ */␊ workspace?: string␊ + displayName: unknown␊ + iotHubs: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225659,6 +247577,8 @@ Generated by [AVA](https://avajs.dev). * Recommendation status. When the recommendation status is disabled recommendations are not generated.␊ */␊ status: (("Disabled" | "Enabled") | string)␊ + recommendationType: unknown␊ + status: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225673,6 +247593,8 @@ Generated by [AVA](https://avajs.dev). * List of Azure subscription ids on which the user defined resources query should be executed.␊ */␊ querySubscriptions: (string[] | string)␊ + query: unknown␊ + querySubscriptions: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225689,6 +247611,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeviceSecurityGroupProperties1 | string)␊ type: "Microsoft.Security/deviceSecurityGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225710,7 +247636,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The list of custom alert time-window rules.␊ */␊ - timeWindowRules?: ((ActiveConnectionsNotInAllowedRange1 | AmqpC2DMessagesNotInAllowedRange1 | MqttC2DMessagesNotInAllowedRange1 | HttpC2DMessagesNotInAllowedRange1 | AmqpC2DRejectedMessagesNotInAllowedRange1 | MqttC2DRejectedMessagesNotInAllowedRange1 | HttpC2DRejectedMessagesNotInAllowedRange1 | AmqpD2CMessagesNotInAllowedRange1 | MqttD2CMessagesNotInAllowedRange1 | HttpD2CMessagesNotInAllowedRange1 | DirectMethodInvokesNotInAllowedRange1 | FailedLocalLoginsNotInAllowedRange1 | FileUploadsNotInAllowedRange1 | QueuePurgesNotInAllowedRange1 | TwinUpdatesNotInAllowedRange1 | UnauthorizedOperationsNotInAllowedRange1)[] | string)␊ + timeWindowRules?: (((ActiveConnectionsNotInAllowedRange1 | AmqpC2DMessagesNotInAllowedRange1 | MqttC2DMessagesNotInAllowedRange1 | HttpC2DMessagesNotInAllowedRange1 | AmqpC2DRejectedMessagesNotInAllowedRange1 | MqttC2DRejectedMessagesNotInAllowedRange1 | HttpC2DRejectedMessagesNotInAllowedRange1 | AmqpD2CMessagesNotInAllowedRange1 | MqttD2CMessagesNotInAllowedRange1 | HttpD2CMessagesNotInAllowedRange1 | DirectMethodInvokesNotInAllowedRange1 | FailedLocalLoginsNotInAllowedRange1 | FileUploadsNotInAllowedRange1 | QueuePurgesNotInAllowedRange1 | TwinUpdatesNotInAllowedRange1 | UnauthorizedOperationsNotInAllowedRange1) & {␊ + ruleType: "TimeWindowCustomAlertRule"␊ + /**␊ + * The time window size in iso8601 format.␊ + */␊ + timeWindowSize: string␊ + ruleType: unknown␊ + timeWindowSize: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -225718,6 +247653,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ConnectionToIpNotAllowed1 {␊ ruleType: "ConnectionToIpNotAllowed"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225725,6 +247661,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ConnectionFromIpNotAllowed {␊ ruleType: "ConnectionFromIpNotAllowed"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225732,6 +247669,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface LocalUserNotAllowed1 {␊ ruleType: "LocalUserNotAllowed"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225739,6 +247677,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ProcessNotAllowed1 {␊ ruleType: "ProcessNotAllowed"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225753,6 +247692,8 @@ Generated by [AVA](https://avajs.dev). * Status of the custom alert.␊ */␊ isEnabled: (boolean | string)␊ + denylistValues: unknown␊ + isEnabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225760,6 +247701,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ActiveConnectionsNotInAllowedRange1 {␊ ruleType: "ActiveConnectionsNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225767,6 +247709,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AmqpC2DMessagesNotInAllowedRange1 {␊ ruleType: "AmqpC2DMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225774,6 +247717,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface MqttC2DMessagesNotInAllowedRange1 {␊ ruleType: "MqttC2DMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225781,6 +247725,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface HttpC2DMessagesNotInAllowedRange1 {␊ ruleType: "HttpC2DMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225788,6 +247733,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AmqpC2DRejectedMessagesNotInAllowedRange1 {␊ ruleType: "AmqpC2DRejectedMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225795,6 +247741,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface MqttC2DRejectedMessagesNotInAllowedRange1 {␊ ruleType: "MqttC2DRejectedMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225802,6 +247749,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface HttpC2DRejectedMessagesNotInAllowedRange1 {␊ ruleType: "HttpC2DRejectedMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225809,6 +247757,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AmqpD2CMessagesNotInAllowedRange1 {␊ ruleType: "AmqpD2CMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225816,6 +247765,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface MqttD2CMessagesNotInAllowedRange1 {␊ ruleType: "MqttD2CMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225823,6 +247773,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface HttpD2CMessagesNotInAllowedRange1 {␊ ruleType: "HttpD2CMessagesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225830,6 +247781,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface DirectMethodInvokesNotInAllowedRange1 {␊ ruleType: "DirectMethodInvokesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225837,6 +247789,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface FailedLocalLoginsNotInAllowedRange1 {␊ ruleType: "FailedLocalLoginsNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225844,6 +247797,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface FileUploadsNotInAllowedRange1 {␊ ruleType: "FileUploadsNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225851,6 +247805,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface QueuePurgesNotInAllowedRange1 {␊ ruleType: "QueuePurgesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225858,6 +247813,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface TwinUpdatesNotInAllowedRange1 {␊ ruleType: "TwinUpdatesNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225865,6 +247821,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface UnauthorizedOperationsNotInAllowedRange1 {␊ ruleType: "UnauthorizedOperationsNotInAllowedRange"␊ + ruleType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225882,6 +247839,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (JitNetworkAccessPolicyProperties1 | string)␊ type: "Microsoft.Security/locations/jitNetworkAccessPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface JitNetworkAccessPolicyProperties1 {␊ @@ -225890,6 +247851,7 @@ Generated by [AVA](https://avajs.dev). * Configurations for Microsoft.Compute/virtualMachines resource type.␊ */␊ virtualMachines: (JitNetworkAccessPolicyVirtualMachine1[] | string)␊ + virtualMachines: unknown␊ [k: string]: unknown␊ }␊ export interface JitNetworkAccessRequest1 {␊ @@ -225906,6 +247868,9 @@ Generated by [AVA](https://avajs.dev). */␊ startTimeUtc: string␊ virtualMachines: (JitNetworkAccessRequestVirtualMachine1[] | string)␊ + requestor: unknown␊ + startTimeUtc: unknown␊ + virtualMachines: unknown␊ [k: string]: unknown␊ }␊ export interface JitNetworkAccessRequestVirtualMachine1 {␊ @@ -225917,6 +247882,8 @@ Generated by [AVA](https://avajs.dev). * The ports that were opened for the virtual machine␊ */␊ ports: (JitNetworkAccessRequestPort1[] | string)␊ + id: unknown␊ + ports: unknown␊ [k: string]: unknown␊ }␊ export interface JitNetworkAccessRequestPort1 {␊ @@ -225945,6 +247912,10 @@ Generated by [AVA](https://avajs.dev). * A description of why the \`status\` has its value.␊ */␊ statusReason: (("Expired" | "UserRequested" | "NewerRequestInitiated") | string)␊ + endTimeUtc: unknown␊ + number: unknown␊ + status: unknown␊ + statusReason: unknown␊ [k: string]: unknown␊ }␊ export interface JitNetworkAccessPolicyVirtualMachine1 {␊ @@ -225960,6 +247931,8 @@ Generated by [AVA](https://avajs.dev). * Public IP address of the Azure Firewall that is linked to this policy, if applicable␊ */␊ publicIpAddress?: string␊ + id: unknown␊ + ports: unknown␊ [k: string]: unknown␊ }␊ export interface JitNetworkAccessPortRule1 {␊ @@ -225977,6 +247950,9 @@ Generated by [AVA](https://avajs.dev). maxRequestAccessDuration: string␊ number: (number | string)␊ protocol: (("TCP" | "UDP" | "*") | string)␊ + maxRequestAccessDuration: unknown␊ + number: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -225993,6 +247969,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAssessmentProperties1 | string)␊ type: "Microsoft.Security/assessments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226025,6 +248005,8 @@ Generated by [AVA](https://avajs.dev). * The result of the assessment␊ */␊ status: (AssessmentStatus1 | string)␊ + resourceDetails: unknown␊ + status: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226075,6 +248057,9 @@ Generated by [AVA](https://avajs.dev). * The user impact of the assessment.␊ */␊ userImpact?: (("Low" | "Moderate" | "High") | string)␊ + assessmentType: unknown␊ + displayName: unknown␊ + severity: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226093,6 +248078,8 @@ Generated by [AVA](https://avajs.dev). * Secret to authenticate the partner and verify it created the assessment - write only␊ */␊ secret: string␊ + partnerName: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226107,6 +248094,8 @@ Generated by [AVA](https://avajs.dev). * secret to authenticate the partner - write only␊ */␊ secret: string␊ + partnerName: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226114,6 +248103,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AzureResourceDetails1 {␊ source: "Azure"␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226129,6 +248119,9 @@ Generated by [AVA](https://avajs.dev). */␊ serverName: string␊ source: "OnPremiseSql"␊ + databaseName: unknown␊ + serverName: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226147,6 +248140,7 @@ Generated by [AVA](https://avajs.dev). * Human readable description of the assessment status␊ */␊ description?: string␊ + code: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226178,6 +248172,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "Microsoft.Migrate/assessmentProjects"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226228,6 +248226,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (GroupProperties | string)␊ type: "groups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226252,6 +248254,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (CollectorProperties | string)␊ type: "hypervcollectors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface CollectorProperties {␊ @@ -226301,6 +248307,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (CollectorProperties | string)␊ type: "servercollectors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226315,6 +248325,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (CollectorProperties | string)␊ type: "vmwarecollectors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226329,6 +248343,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (ImportCollectorProperties | string)␊ type: "importcollectors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface ImportCollectorProperties {␊ @@ -226353,6 +248371,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties17 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226402,6 +248424,10 @@ Generated by [AVA](https://avajs.dev). properties: (GroupProperties | string)␊ resources?: AssessmentProjectsGroupsAssessmentsChildResource[]␊ type: "Microsoft.Migrate/assessmentProjects/groups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226422,6 +248448,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AssessmentProperties | string)␊ type: "assessments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226489,6 +248519,22 @@ Generated by [AVA](https://avajs.dev). */␊ timeRange: (("Day" | "Week" | "Month" | "Custom") | string)␊ vmUptime: (VmUptime | string)␊ + azureDiskType: unknown␊ + azureHybridUseBenefit: unknown␊ + azureLocation: unknown␊ + azureOfferCode: unknown␊ + azurePricingTier: unknown␊ + azureStorageRedundancy: unknown␊ + azureVmFamilies: unknown␊ + currency: unknown␊ + discountPercentage: unknown␊ + percentile: unknown␊ + reservedInstance: unknown␊ + scalingFactor: unknown␊ + sizingCriterion: unknown␊ + stage: unknown␊ + timeRange: unknown␊ + vmUptime: unknown␊ [k: string]: unknown␊ }␊ export interface VmUptime {␊ @@ -226520,6 +248566,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AssessmentProperties | string)␊ type: "Microsoft.Migrate/assessmentProjects/groups/assessments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226534,6 +248584,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (CollectorProperties | string)␊ type: "Microsoft.Migrate/assessmentProjects/hypervcollectors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226548,6 +248602,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (CollectorProperties | string)␊ type: "Microsoft.Migrate/assessmentProjects/vmwarecollectors"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226564,6 +248622,10 @@ Generated by [AVA](https://avajs.dev). * Properties of a registration assignment.␊ */␊ properties: (RegistrationAssignmentProperties | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226574,6 +248636,7 @@ Generated by [AVA](https://avajs.dev). * Fully qualified path of the registration definition.␊ */␊ registrationDefinitionId: string␊ + registrationDefinitionId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226594,6 +248657,10 @@ Generated by [AVA](https://avajs.dev). * Plan details for the managed services.␊ */␊ plan?: (Plan7 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226616,6 +248683,8 @@ Generated by [AVA](https://avajs.dev). * Id of the managedBy tenant.␊ */␊ managedByTenantId: string␊ + authorizations: unknown␊ + managedByTenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226630,6 +248699,8 @@ Generated by [AVA](https://avajs.dev). * The role definition identifier. This role will define all the permissions that the security group/service principal/user must have on the projected subscription. This role cannot be an owner role.␊ */␊ roleDefinitionId: string␊ + principalId: unknown␊ + roleDefinitionId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226652,6 +248723,10 @@ Generated by [AVA](https://avajs.dev). * The plan's version.␊ */␊ version: string␊ + name: unknown␊ + publisher: unknown␊ + product: unknown␊ + version: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226668,6 +248743,10 @@ Generated by [AVA](https://avajs.dev). * Properties of a registration assignment.␊ */␊ properties: (RegistrationAssignmentProperties1 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226678,6 +248757,7 @@ Generated by [AVA](https://avajs.dev). * Fully qualified path of the registration definition.␊ */␊ registrationDefinitionId: string␊ + registrationDefinitionId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226698,6 +248778,10 @@ Generated by [AVA](https://avajs.dev). * Plan details for the managed services.␊ */␊ plan?: (Plan8 | string)␊ + name: unknown␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226720,6 +248804,8 @@ Generated by [AVA](https://avajs.dev). * Id of the managedBy tenant.␊ */␊ managedByTenantId: string␊ + authorizations: unknown␊ + managedByTenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226734,6 +248820,8 @@ Generated by [AVA](https://avajs.dev). * The role definition identifier. This role will define all the permissions that the security group/service principal/user must have on the projected subscription. This role cannot be an owner role.␊ */␊ roleDefinitionId: string␊ + principalId: unknown␊ + roleDefinitionId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226756,6 +248844,10 @@ Generated by [AVA](https://avajs.dev). * The plan's version.␊ */␊ version: string␊ + name: unknown␊ + publisher: unknown␊ + product: unknown␊ + version: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226782,6 +248874,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ properties: (CrayServersProperties | string)␊ + name: unknown␊ + type: unknown␊ + location: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226796,6 +248893,8 @@ Generated by [AVA](https://avajs.dev). * Subnet resource ID.␊ */␊ subnetResourceId: string␊ + ipAddress: unknown␊ + subnetResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226827,6 +248926,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ContainerService/managedClusters"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226919,6 +249023,8 @@ Generated by [AVA](https://avajs.dev). * The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.␊ */␊ tenantID?: string␊ + clientAppID: unknown␊ + serverAppID: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -226935,6 +249041,7 @@ Generated by [AVA](https://avajs.dev). * Whether the add-on is enabled or not.␊ */␊ enabled: (boolean | string)␊ + enabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227009,6 +249116,7 @@ Generated by [AVA](https://avajs.dev). * VNet SubnetID specifies the VNet's subnet identifier.␊ */␊ vnetSubnetID?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227023,6 +249131,8 @@ Generated by [AVA](https://avajs.dev). * SSH configuration for Linux-based VMs running on Azure.␊ */␊ ssh: (ContainerServiceSshConfiguration3 | string)␊ + adminUsername: unknown␊ + ssh: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227033,6 +249143,7 @@ Generated by [AVA](https://avajs.dev). * The list of SSH public keys used to authenticate with Linux-based VMs. Only expect one key specified.␊ */␊ publicKeys: (ContainerServiceSshPublicKey3[] | string)␊ + publicKeys: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227043,6 +249154,7 @@ Generated by [AVA](https://avajs.dev). * Certificate public key used to authenticate with VMs through SSH. The certificate must be in PEM format with or without headers.␊ */␊ keyData: string␊ + keyData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227091,6 +249203,7 @@ Generated by [AVA](https://avajs.dev). * The secret password associated with the service principal in plain text.␊ */␊ secret?: string␊ + clientId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227105,6 +249218,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the name of the administrator account.

**restriction:** Cannot end in "."

**Disallowed values:** "administrator", "admin", "user", "user1", "test", "user2", "test1", "user3", "admin1", "1", "123", "a", "actuser", "adm", "admin2", "aspnet", "backup", "console", "david", "guest", "john", "owner", "root", "server", "sql", "support", "support_388945a0", "sys", "test2", "test3", "user4", "user5".

**Minimum-length:** 1 character

**Max-length:** 20 characters␊ */␊ adminUsername: string␊ + adminUsername: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227121,6 +249235,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagedClusterAgentPoolProfileProperties | string)␊ type: "agentPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227207,6 +249325,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagedClusterAgentPoolProfileProperties | string)␊ type: "Microsoft.ContainerService/managedClusters/agentPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227236,6 +249358,10 @@ Generated by [AVA](https://avajs.dev). */␊ tags?: (MigrateProjectTags | string)␊ type: "Microsoft.Migrate/migrateProjects"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227270,6 +249396,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SolutionProperties1 | string)␊ type: "solutions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227351,6 +249481,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the count of servers test migrated.␊ */␊ testMigratedCount?: (number | string)␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227370,6 +249501,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets the count of databases ready for migration.␊ */␊ migrationReadyCount?: (number | string)␊ + instanceType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227397,6 +249529,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SolutionProperties1 | string)␊ type: "Microsoft.Migrate/migrateProjects/solutions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227428,6 +249564,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ServiceBus/namespaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227466,6 +249607,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties3 | string)␊ type: "AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227476,6 +249621,7 @@ Generated by [AVA](https://avajs.dev). * The rights associated with the rule.␊ */␊ rights: (("Manage" | "Send" | "Listen")[] | string)␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227496,6 +249642,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (QueueProperties1 | string)␊ type: "queues"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227586,6 +249737,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TopicProperties | string)␊ type: "topics"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227663,6 +249819,7 @@ Generated by [AVA](https://avajs.dev). * The billing tier of this particular SKU.␊ */␊ tier: (("Basic" | "Standard" | "Premium") | string)␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227683,6 +249840,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties3 | string)␊ type: "Microsoft.ServiceBus/namespaces/AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227704,6 +249865,11 @@ Generated by [AVA](https://avajs.dev). properties: (QueueProperties1 | string)␊ resources?: NamespacesQueuesAuthorizationRulesChildResource[]␊ type: "Microsoft.ServiceBus/namespaces/queues"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227724,6 +249890,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties3 | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227744,6 +249914,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties3 | string)␊ type: "Microsoft.ServiceBus/namespaces/queues/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227765,6 +249939,11 @@ Generated by [AVA](https://avajs.dev). properties: (TopicProperties | string)␊ resources?: (NamespacesTopicsAuthorizationRulesChildResource | NamespacesTopicsSubscriptionsChildResource)[]␊ type: "Microsoft.ServiceBus/namespaces/topics"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227785,6 +249964,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties3 | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227805,6 +249988,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SubscriptionProperties | string)␊ type: "subscriptions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227875,6 +250063,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties3 | string)␊ type: "Microsoft.ServiceBus/namespaces/topics/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227895,6 +250087,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SubscriptionProperties | string)␊ type: "Microsoft.ServiceBus/namespaces/topics/subscriptions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227926,6 +250123,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ServiceBus/namespaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227948,6 +250150,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBAuthorizationRuleProperties | string)␊ type: "AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227958,6 +250164,7 @@ Generated by [AVA](https://avajs.dev). * The rights associated with the rule.␊ */␊ rights: (("Manage" | "Send" | "Listen")[] | string)␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -227971,6 +250178,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkRuleSetProperties | string)␊ type: "networkRuleSets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228027,6 +250238,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID of Virtual Network Subnet␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228043,6 +250255,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBQueueProperties | string)␊ type: "queues"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228125,6 +250341,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBTopicProperties | string)␊ type: "topics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228187,6 +250407,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ArmDisasterRecoveryProperties | string)␊ type: "disasterRecoveryConfigs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228217,6 +250441,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MigrationConfigPropertiesProperties | string)␊ type: "migrationConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228231,6 +250459,8 @@ Generated by [AVA](https://avajs.dev). * Existing premium Namespace ARM Id name which has no entities, will be used for migration␊ */␊ targetNamespace: string␊ + postMigrationName: unknown␊ + targetNamespace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228249,6 +250479,7 @@ Generated by [AVA](https://avajs.dev). * The billing tier of this particular SKU.␊ */␊ tier?: (("Basic" | "Standard" | "Premium") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228265,6 +250496,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBAuthorizationRuleProperties | string)␊ type: "Microsoft.ServiceBus/namespaces/AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228281,6 +250516,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ArmDisasterRecoveryProperties | string)␊ type: "Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228297,6 +250536,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MigrationConfigPropertiesProperties | string)␊ type: "Microsoft.ServiceBus/namespaces/migrationConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228310,6 +250553,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkRuleSetProperties | string)␊ type: "Microsoft.ServiceBus/namespaces/networkRuleSets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228327,6 +250574,10 @@ Generated by [AVA](https://avajs.dev). properties: (SBQueueProperties | string)␊ resources?: NamespacesQueuesAuthorizationRulesChildResource1[]␊ type: "Microsoft.ServiceBus/namespaces/queues"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228343,6 +250594,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBAuthorizationRuleProperties | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228359,6 +250614,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBAuthorizationRuleProperties | string)␊ type: "Microsoft.ServiceBus/namespaces/queues/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228376,6 +250635,10 @@ Generated by [AVA](https://avajs.dev). properties: (SBTopicProperties | string)␊ resources?: (NamespacesTopicsAuthorizationRulesChildResource1 | NamespacesTopicsSubscriptionsChildResource1)[]␊ type: "Microsoft.ServiceBus/namespaces/topics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228392,6 +250655,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBAuthorizationRuleProperties | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228408,6 +250675,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBSubscriptionProperties | string)␊ type: "subscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228478,6 +250749,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBAuthorizationRuleProperties | string)␊ type: "Microsoft.ServiceBus/namespaces/topics/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228495,6 +250770,10 @@ Generated by [AVA](https://avajs.dev). properties: (SBSubscriptionProperties | string)␊ resources?: NamespacesTopicsSubscriptionsRulesChildResource[]␊ type: "Microsoft.ServiceBus/namespaces/topics/subscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228511,6 +250790,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (Ruleproperties | string)␊ type: "rules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228633,6 +250916,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (Ruleproperties | string)␊ type: "Microsoft.ServiceBus/namespaces/topics/subscriptions/rules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228668,6 +250955,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ServiceBus/namespaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228744,6 +251036,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IpFilterRuleProperties | string)␊ type: "ipfilterrules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228778,6 +251074,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties6 | string)␊ type: "virtualnetworkrules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228804,6 +251104,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBAuthorizationRuleProperties1 | string)␊ type: "AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228814,6 +251118,7 @@ Generated by [AVA](https://avajs.dev). * The rights associated with the rule.␊ */␊ rights: (("Manage" | "Send" | "Listen")[] | string)␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228827,6 +251132,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkRuleSetProperties1 | string)␊ type: "networkRuleSets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228883,6 +251192,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID of Virtual Network Subnet␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228899,6 +251209,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties18 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228957,6 +251271,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ArmDisasterRecoveryProperties1 | string)␊ type: "disasterRecoveryConfigs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -228987,6 +251305,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBQueueProperties1 | string)␊ type: "queues"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229069,6 +251391,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBTopicProperties1 | string)␊ type: "topics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229131,6 +251457,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MigrationConfigPropertiesProperties1 | string)␊ type: "migrationConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229145,6 +251475,8 @@ Generated by [AVA](https://avajs.dev). * Existing premium Namespace ARM Id name which has no entities, will be used for migration␊ */␊ targetNamespace: string␊ + postMigrationName: unknown␊ + targetNamespace: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229163,6 +251495,7 @@ Generated by [AVA](https://avajs.dev). * The billing tier of this particular SKU.␊ */␊ tier?: (("Basic" | "Standard" | "Premium") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229179,6 +251512,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IpFilterRuleProperties | string)␊ type: "Microsoft.ServiceBus/namespaces/ipfilterrules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229192,6 +251529,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkRuleSetProperties1 | string)␊ type: "Microsoft.ServiceBus/namespaces/networkRuleSets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229208,6 +251549,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties6 | string)␊ type: "Microsoft.ServiceBus/namespaces/virtualnetworkrules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229224,6 +251569,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties18 | string)␊ type: "Microsoft.ServiceBus/namespaces/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229241,6 +251590,10 @@ Generated by [AVA](https://avajs.dev). properties: (SBQueueProperties1 | string)␊ resources?: NamespacesQueuesAuthorizationRulesChildResource2[]␊ type: "Microsoft.ServiceBus/namespaces/queues"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229257,6 +251610,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBAuthorizationRuleProperties1 | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229273,6 +251630,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBAuthorizationRuleProperties1 | string)␊ type: "Microsoft.ServiceBus/namespaces/queues/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229290,6 +251651,10 @@ Generated by [AVA](https://avajs.dev). properties: (SBTopicProperties1 | string)␊ resources?: (NamespacesTopicsAuthorizationRulesChildResource2 | NamespacesTopicsSubscriptionsChildResource2)[]␊ type: "Microsoft.ServiceBus/namespaces/topics"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229306,6 +251671,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBAuthorizationRuleProperties1 | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229322,6 +251691,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBSubscriptionProperties1 | string)␊ type: "subscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229392,6 +251765,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBAuthorizationRuleProperties1 | string)␊ type: "Microsoft.ServiceBus/namespaces/topics/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229409,6 +251786,10 @@ Generated by [AVA](https://avajs.dev). properties: (SBSubscriptionProperties1 | string)␊ resources?: NamespacesTopicsSubscriptionsRulesChildResource1[]␊ type: "Microsoft.ServiceBus/namespaces/topics/subscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229425,6 +251806,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (Ruleproperties1 | string)␊ type: "rules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229547,6 +251932,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (Ruleproperties1 | string)␊ type: "Microsoft.ServiceBus/namespaces/topics/subscriptions/rules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229563,6 +251952,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ArmDisasterRecoveryProperties1 | string)␊ type: "Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229579,6 +251972,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MigrationConfigPropertiesProperties1 | string)␊ type: "Microsoft.ServiceBus/namespaces/migrationConfigurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229595,6 +251992,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SBAuthorizationRuleProperties1 | string)␊ type: "Microsoft.ServiceBus/namespaces/AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229634,6 +252035,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.visualstudio/account"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229666,6 +252071,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "extension"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229720,6 +252129,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "project"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229752,6 +252165,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.visualstudio/account/extension"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229780,6 +252197,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.visualstudio/account/project"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229811,6 +252232,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventHub/namespaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229861,6 +252287,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties4 | string)␊ type: "AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229871,6 +252301,7 @@ Generated by [AVA](https://avajs.dev). * The rights associated with the rule.␊ */␊ rights: (("Manage" | "Send" | "Listen")[] | string)␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229891,6 +252322,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EventHubProperties4 | string)␊ type: "eventhubs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229927,6 +252363,7 @@ Generated by [AVA](https://avajs.dev). * The billing tier of this particular SKU.␊ */␊ tier: (("Basic" | "Standard" | "Premium") | string)␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229947,6 +252384,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties4 | string)␊ type: "Microsoft.EventHub/namespaces/AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229968,6 +252409,11 @@ Generated by [AVA](https://avajs.dev). properties: (EventHubProperties4 | string)␊ resources?: (NamespacesEventhubsAuthorizationRulesChildResource | NamespacesEventhubsConsumergroupsChildResource)[]␊ type: "Microsoft.EventHub/namespaces/eventhubs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -229988,6 +252434,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties4 | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230008,6 +252458,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConsumerGroupProperties | string)␊ type: "consumergroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230038,6 +252493,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties4 | string)␊ type: "Microsoft.EventHub/namespaces/eventhubs/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230058,6 +252517,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConsumerGroupProperties | string)␊ type: "Microsoft.EventHub/namespaces/eventhubs/consumergroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230089,6 +252553,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventHub/namespaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230139,6 +252608,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties5 | string)␊ type: "AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230149,6 +252622,7 @@ Generated by [AVA](https://avajs.dev). * The rights associated with the rule.␊ */␊ rights: (("Manage" | "Send" | "Listen")[] | string)␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230169,6 +252643,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EventHubProperties5 | string)␊ type: "eventhubs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230205,6 +252684,7 @@ Generated by [AVA](https://avajs.dev). * The billing tier of this particular SKU.␊ */␊ tier: (("Basic" | "Standard" | "Premium") | string)␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230225,6 +252705,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties5 | string)␊ type: "Microsoft.EventHub/namespaces/AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230246,6 +252730,11 @@ Generated by [AVA](https://avajs.dev). properties: (EventHubProperties5 | string)␊ resources?: (NamespacesEventhubsAuthorizationRulesChildResource1 | NamespacesEventhubsConsumergroupsChildResource1)[]␊ type: "Microsoft.EventHub/namespaces/eventhubs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230266,6 +252755,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties5 | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230286,6 +252779,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConsumerGroupProperties1 | string)␊ type: "consumergroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230316,6 +252814,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SharedAccessAuthorizationRuleProperties5 | string)␊ type: "Microsoft.EventHub/namespaces/eventhubs/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230336,6 +252838,11 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConsumerGroupProperties1 | string)␊ type: "Microsoft.EventHub/namespaces/eventhubs/consumergroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230367,6 +252874,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventHub/namespaces"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230401,6 +252912,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230411,6 +252926,7 @@ Generated by [AVA](https://avajs.dev). * The rights associated with the rule.␊ */␊ rights: (("Manage" | "Send" | "Listen")[] | string)␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230424,6 +252940,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkRuleSetProperties2 | string)␊ type: "networkRuleSets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230480,6 +253000,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID of Virtual Network Subnet␊ */␊ id: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230496,6 +253017,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ArmDisasterRecoveryProperties2 | string)␊ type: "disasterRecoveryConfigs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230526,6 +253051,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EventhubProperties | string)␊ type: "eventhubs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230628,6 +253157,7 @@ Generated by [AVA](https://avajs.dev). * The billing tier of this particular SKU.␊ */␊ tier?: (("Basic" | "Standard") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230644,6 +253174,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties | string)␊ type: "Microsoft.EventHub/namespaces/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230660,6 +253194,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ArmDisasterRecoveryProperties2 | string)␊ type: "Microsoft.EventHub/namespaces/disasterRecoveryConfigs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230677,6 +253215,10 @@ Generated by [AVA](https://avajs.dev). properties: (EventhubProperties | string)␊ resources?: (NamespacesEventhubsAuthorizationRulesChildResource2 | NamespacesEventhubsConsumergroupsChildResource2)[]␊ type: "Microsoft.EventHub/namespaces/eventhubs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230693,6 +253235,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230709,6 +253255,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConsumerGroupProperties2 | string)␊ type: "consumergroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230735,6 +253285,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties | string)␊ type: "Microsoft.EventHub/namespaces/eventhubs/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230751,6 +253305,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ConsumerGroupProperties2 | string)␊ type: "Microsoft.EventHub/namespaces/eventhubs/consumergroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230764,6 +253322,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkRuleSetProperties2 | string)␊ type: "Microsoft.EventHub/namespaces/networkRuleSets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230794,6 +253356,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventHub/clusters"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230814,6 +253380,7 @@ Generated by [AVA](https://avajs.dev). * Name of this SKU.␊ */␊ name: ("Dedicated" | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230849,6 +253416,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventHub/namespaces"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230945,6 +253516,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IpFilterRuleProperties1 | string)␊ type: "ipfilterrules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -230979,6 +253554,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties7 | string)␊ type: "virtualnetworkrules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231002,6 +253581,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkRuleSetProperties3 | string)␊ type: "networkRuleSets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231078,6 +253661,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties1 | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231088,6 +253675,7 @@ Generated by [AVA](https://avajs.dev). * The rights associated with the rule.␊ */␊ rights: (("Manage" | "Send" | "Listen")[] | string)␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231104,6 +253692,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties19 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231162,6 +253754,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ArmDisasterRecoveryProperties3 | string)␊ type: "disasterRecoveryConfigs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231192,6 +253788,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EventhubProperties1 | string)␊ type: "eventhubs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231294,6 +253894,7 @@ Generated by [AVA](https://avajs.dev). * The billing tier of this particular SKU.␊ */␊ tier?: (("Basic" | "Standard") | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231310,6 +253911,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IpFilterRuleProperties1 | string)␊ type: "Microsoft.EventHub/namespaces/ipfilterrules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231323,6 +253928,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (NetworkRuleSetProperties3 | string)␊ type: "Microsoft.EventHub/namespaces/networkRuleSets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231339,6 +253948,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualNetworkRuleProperties7 | string)␊ type: "Microsoft.EventHub/namespaces/virtualnetworkrules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231370,6 +253983,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Relay/namespaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231392,6 +254010,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties2 | string)␊ type: "AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231402,6 +254024,7 @@ Generated by [AVA](https://avajs.dev). * The rights associated with the rule.␊ */␊ rights: (("Manage" | "Send" | "Listen")[] | string)␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231418,6 +254041,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties | string)␊ type: "HybridConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231448,6 +254075,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (WcfRelayProperties | string)␊ type: "WcfRelays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231484,6 +254115,8 @@ Generated by [AVA](https://avajs.dev). * The tier of this particular SKU␊ */␊ tier: ("Standard" | string)␊ + name: unknown␊ + tier: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231500,6 +254133,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties2 | string)␊ type: "Microsoft.Relay/namespaces/AuthorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231517,6 +254154,10 @@ Generated by [AVA](https://avajs.dev). properties: (HybridConnectionProperties | string)␊ resources?: Namespaces_HybridConnectionsAuthorizationRulesChildResource[]␊ type: "Microsoft.Relay/namespaces/HybridConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231533,6 +254174,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties2 | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231549,6 +254194,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties2 | string)␊ type: "Microsoft.Relay/namespaces/HybridConnections/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231566,6 +254215,10 @@ Generated by [AVA](https://avajs.dev). properties: (WcfRelayProperties | string)␊ resources?: Namespaces_WcfRelaysAuthorizationRulesChildResource[]␊ type: "Microsoft.Relay/namespaces/WcfRelays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231582,6 +254235,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties2 | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231598,6 +254255,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties2 | string)␊ type: "Microsoft.Relay/namespaces/WcfRelays/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231629,6 +254290,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Relay/namespaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231651,6 +254317,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties3 | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231661,6 +254331,7 @@ Generated by [AVA](https://avajs.dev). * The rights associated with the rule.␊ */␊ rights: (("Manage" | "Send" | "Listen")[] | string)␊ + rights: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231677,6 +254348,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties1 | string)␊ type: "hybridConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231707,6 +254382,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (WcfRelayProperties1 | string)␊ type: "wcfRelays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231743,6 +254422,7 @@ Generated by [AVA](https://avajs.dev). * The tier of this SKU.␊ */␊ tier?: ("Standard" | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231759,6 +254439,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties3 | string)␊ type: "Microsoft.Relay/namespaces/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231776,6 +254460,10 @@ Generated by [AVA](https://avajs.dev). properties: (HybridConnectionProperties1 | string)␊ resources?: NamespacesHybridConnectionsAuthorizationRulesChildResource[]␊ type: "Microsoft.Relay/namespaces/hybridConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231792,6 +254480,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties3 | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231808,6 +254500,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties3 | string)␊ type: "Microsoft.Relay/namespaces/hybridConnections/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231825,6 +254521,10 @@ Generated by [AVA](https://avajs.dev). properties: (WcfRelayProperties1 | string)␊ resources?: NamespacesWcfRelaysAuthorizationRulesChildResource[]␊ type: "Microsoft.Relay/namespaces/wcfRelays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231841,6 +254541,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties3 | string)␊ type: "authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231857,6 +254561,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AuthorizationRuleProperties3 | string)␊ type: "Microsoft.Relay/namespaces/wcfRelays/authorizationRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231888,6 +254596,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DataFactory/factories"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231898,6 +254610,7 @@ Generated by [AVA](https://avajs.dev). * The identity type. Currently the only supported type is 'SystemAssigned'.␊ */␊ type: ("SystemAssigned" | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231958,6 +254671,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IntegrationRuntime | string)␊ type: "integrationRuntimes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -231969,6 +254686,8 @@ Generated by [AVA](https://avajs.dev). * Managed integration runtime type properties.␊ */␊ typeProperties: (ManagedIntegrationRuntimeTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232114,6 +254833,8 @@ Generated by [AVA](https://avajs.dev). * Value of secure string.␊ */␊ value: string␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232171,6 +254892,8 @@ Generated by [AVA](https://avajs.dev). * The base definition of a secret type.␊ */␊ typeProperties: (LinkedIntegrationRuntimeTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232192,6 +254915,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Factory secure string definition. The string value will be masked with asterisks '*' during Get or List API calls.␊ */␊ key: (SecureString | string)␊ + authorizationType: unknown␊ + key: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232203,6 +254928,8 @@ Generated by [AVA](https://avajs.dev). * The resource ID of the integration runtime to be shared.␊ */␊ resourceId: string␊ + authorizationType: unknown␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232219,6 +254946,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LinkedService | string)␊ type: "linkedservices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232241,6 +254972,8 @@ Generated by [AVA](https://avajs.dev). * Type of integration runtime.␊ */␊ type: ("IntegrationRuntimeReference" | string)␊ + referenceName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232257,6 +254990,7 @@ Generated by [AVA](https://avajs.dev). * Parameter type.␊ */␊ type: (("Object" | "String" | "Int" | "Float" | "Bool" | "Array" | "SecureString") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232268,6 +255002,8 @@ Generated by [AVA](https://avajs.dev). * Azure Storage linked service properties.␊ */␊ typeProperties: (AzureStorageLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232313,6 +255049,9 @@ Generated by [AVA](https://avajs.dev). */␊ store: (LinkedServiceReference | string)␊ type: "AzureKeyVaultSecret"␊ + secretName: unknown␊ + store: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232335,6 +255074,8 @@ Generated by [AVA](https://avajs.dev). * Linked service reference type.␊ */␊ type: ("LinkedServiceReference" | string)␊ + referenceName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232346,6 +255087,8 @@ Generated by [AVA](https://avajs.dev). * Azure SQL Data Warehouse linked service properties.␊ */␊ typeProperties: (AzureSqlDWLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232373,13 +255116,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + servicePrincipalKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ tenant?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232391,6 +255137,8 @@ Generated by [AVA](https://avajs.dev). * SQL Server linked service properties.␊ */␊ typeProperties: (SqlServerLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232412,13 +255160,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The on-premises Windows authentication user name. Type: string (or Expression with resultType string).␊ */␊ userName?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232430,6 +255181,8 @@ Generated by [AVA](https://avajs.dev). * Azure SQL Database linked service properties.␊ */␊ typeProperties: (AzureSqlDatabaseLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232457,13 +255210,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + servicePrincipalKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ tenant?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232475,6 +255231,8 @@ Generated by [AVA](https://avajs.dev). * Azure Batch linked service properties.␊ */␊ typeProperties: (AzureBatchLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232484,7 +255242,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The Azure Batch account name. Type: string (or Expression with resultType string).␊ */␊ @@ -232513,6 +255273,10 @@ Generated by [AVA](https://avajs.dev). poolName: {␊ [k: string]: unknown␊ }␊ + accountName: unknown␊ + batchUri: unknown␊ + linkedServiceName: unknown␊ + poolName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232524,6 +255288,8 @@ Generated by [AVA](https://avajs.dev). * Azure Key Vault linked service properties.␊ */␊ typeProperties: (AzureKeyVaultLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232536,6 +255302,7 @@ Generated by [AVA](https://avajs.dev). baseUrl: {␊ [k: string]: unknown␊ }␊ + baseUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232547,6 +255314,8 @@ Generated by [AVA](https://avajs.dev). * CosmosDB linked service properties.␊ */␊ typeProperties: (CosmosDbLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232565,6 +255334,7 @@ Generated by [AVA](https://avajs.dev). encryptedCredential?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232576,6 +255346,8 @@ Generated by [AVA](https://avajs.dev). * Dynamics linked service properties.␊ */␊ typeProperties: (DynamicsLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232611,7 +255383,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -232630,6 +255404,9 @@ Generated by [AVA](https://avajs.dev). username: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + deploymentType: unknown␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232641,6 +255418,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight linked service properties.␊ */␊ typeProperties: (HDInsightLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232670,13 +255449,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * HDInsight cluster user name. Type: string (or Expression with resultType string).␊ */␊ userName?: {␊ [k: string]: unknown␊ }␊ + clusterUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232688,6 +255470,8 @@ Generated by [AVA](https://avajs.dev). * File system linked service properties.␊ */␊ typeProperties: (FileServerLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232709,13 +255493,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User ID to logon the server. Type: string (or Expression with resultType string).␊ */␊ userId?: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232727,6 +255514,8 @@ Generated by [AVA](https://avajs.dev). * Oracle database linked service properties.␊ */␊ typeProperties: (OracleLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232745,6 +255534,7 @@ Generated by [AVA](https://avajs.dev). encryptedCredential?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232756,6 +255546,8 @@ Generated by [AVA](https://avajs.dev). * Azure MySQL database linked service properties.␊ */␊ typeProperties: (AzureMySqlLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232774,6 +255566,7 @@ Generated by [AVA](https://avajs.dev). encryptedCredential?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232785,6 +255578,8 @@ Generated by [AVA](https://avajs.dev). * MySQL linked service properties.␊ */␊ typeProperties: (MySqlLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232794,13 +255589,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - connectionString: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + connectionString: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ encryptedCredential?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232812,6 +255610,8 @@ Generated by [AVA](https://avajs.dev). * PostgreSQL linked service properties.␊ */␊ typeProperties: (PostgreSqlLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232821,13 +255621,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - connectionString: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + connectionString: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ encryptedCredential?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232839,6 +255642,8 @@ Generated by [AVA](https://avajs.dev). * Sybase linked service properties.␊ */␊ typeProperties: (SybaseLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232864,7 +255669,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Schema name for connection. Type: string (or Expression with resultType string).␊ */␊ @@ -232883,6 +255690,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + database: unknown␊ + server: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232894,6 +255703,8 @@ Generated by [AVA](https://avajs.dev). * DB2 linked service properties.␊ */␊ typeProperties: (Db2LinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232919,7 +255730,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Server name for connection. Type: string (or Expression with resultType string).␊ */␊ @@ -232932,6 +255745,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + database: unknown␊ + server: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232943,6 +255758,8 @@ Generated by [AVA](https://avajs.dev). * Teradata linked service properties.␊ */␊ typeProperties: (TeradataLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232962,7 +255779,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Server name for connection. Type: string (or Expression with resultType string).␊ */␊ @@ -232975,6 +255794,7 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + server: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232986,6 +255806,8 @@ Generated by [AVA](https://avajs.dev). * Azure ML Web Service linked service properties.␊ */␊ typeProperties: (AzureMLLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -232995,7 +255817,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiKey: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + apiKey: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -233017,7 +255841,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + servicePrincipalKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -233030,6 +255856,8 @@ Generated by [AVA](https://avajs.dev). updateResourceEndpoint?: {␊ [k: string]: unknown␊ }␊ + apiKey: unknown␊ + mlEndpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233041,6 +255869,8 @@ Generated by [AVA](https://avajs.dev). * ODBC linked service properties.␊ */␊ typeProperties: (OdbcLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233062,7 +255892,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - credential?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + credential?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -233072,13 +255904,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User name for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ userName?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233090,6 +255925,8 @@ Generated by [AVA](https://avajs.dev). * HDFS linked service properties.␊ */␊ typeProperties: (HdfsLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233111,7 +255948,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).␊ */␊ @@ -233124,6 +255963,7 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233135,6 +255975,8 @@ Generated by [AVA](https://avajs.dev). * OData linked service properties.␊ */␊ typeProperties: (ODataLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233154,7 +255996,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of the OData service endpoint. Type: string (or Expression with resultType string).␊ */␊ @@ -233167,6 +256011,7 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233178,6 +256023,8 @@ Generated by [AVA](https://avajs.dev). * Base definition of WebLinkedServiceTypeProperties, this typeProperties is polymorphic based on authenticationType, so not flattened in SDK models.␊ */␊ typeProperties: (WebLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233185,6 +256032,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface WebAnonymousAuthentication {␊ authenticationType: "Anonymous"␊ + authenticationType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233195,13 +256043,18 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User name for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ username: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + password: unknown␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233212,11 +256065,18 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - pfx: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + pfx: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ + authenticationType: unknown␊ + password: unknown␊ + pfx: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233228,6 +256088,8 @@ Generated by [AVA](https://avajs.dev). * Cassandra linked service properties.␊ */␊ typeProperties: (CassandraLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233255,7 +256117,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The port for the connection. Type: integer (or Expression with resultType integer).␊ */␊ @@ -233268,6 +256132,7 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233279,6 +256144,8 @@ Generated by [AVA](https://avajs.dev). * MongoDB linked service properties.␊ */␊ typeProperties: (MongoDbLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233322,7 +256189,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -233341,6 +256210,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + databaseName: unknown␊ + server: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233352,6 +256223,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Lake Store linked service properties.␊ */␊ typeProperties: (AzureDataLakeStoreLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233391,7 +256264,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + servicePrincipalKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).␊ */␊ @@ -233404,6 +256279,7 @@ Generated by [AVA](https://avajs.dev). tenant?: {␊ [k: string]: unknown␊ }␊ + dataLakeStoreUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233415,6 +256291,8 @@ Generated by [AVA](https://avajs.dev). * Salesforce linked service properties.␊ */␊ typeProperties: (SalesforceLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233436,11 +256314,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - securityToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + securityToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).␊ */␊ @@ -233458,6 +256340,8 @@ Generated by [AVA](https://avajs.dev). * SAP Cloud for Customer linked service properties.␊ */␊ typeProperties: (SapCloudForCustomerLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233473,7 +256357,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).␊ */␊ @@ -233486,6 +256372,7 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233497,6 +256384,8 @@ Generated by [AVA](https://avajs.dev). * SAP ECC linked service properties.␊ */␊ typeProperties: (SapEccLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233510,7 +256399,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).␊ */␊ @@ -233519,6 +256410,7 @@ Generated by [AVA](https://avajs.dev). * The username for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ username?: string␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233530,6 +256422,8 @@ Generated by [AVA](https://avajs.dev). * Amazon S3 linked service properties.␊ */␊ typeProperties: (AmazonS3LinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233551,7 +256445,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - secretAccessKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + secretAccessKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -233563,6 +256459,8 @@ Generated by [AVA](https://avajs.dev). * Amazon Redshift linked service properties.␊ */␊ typeProperties: (AmazonRedshiftLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233584,7 +256482,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).␊ */␊ @@ -233603,6 +256503,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + database: unknown␊ + server: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233616,6 +256518,8 @@ Generated by [AVA](https://avajs.dev). typeProperties: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233627,6 +256531,8 @@ Generated by [AVA](https://avajs.dev). * Windows Azure Search Service linked service properties.␊ */␊ typeProperties: (AzureSearchLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233642,13 +256548,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - key?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + key?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * URL for Azure Search service. Type: string (or Expression with resultType string).␊ */␊ url: {␊ [k: string]: unknown␊ }␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233660,6 +256569,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this linked service type.␊ */␊ typeProperties: (HttpLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233697,7 +256608,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).␊ */␊ @@ -233710,6 +256623,7 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233721,6 +256635,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this linked service type.␊ */␊ typeProperties: (FtpServerLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233758,7 +256674,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -233771,6 +256689,7 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233782,6 +256701,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this linked service type.␊ */␊ typeProperties: (SftpServerLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233813,11 +256734,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - passPhrase?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + passPhrase?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -233827,7 +256752,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - privateKeyContent?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + privateKeyContent?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).␊ */␊ @@ -233846,6 +256773,7 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233857,6 +256785,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this linked service type.␊ */␊ typeProperties: (SapBWLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233878,7 +256808,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP BW instance. Type: string (or Expression with resultType string).␊ */␊ @@ -233897,6 +256829,9 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ + server: unknown␊ + systemNumber: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233908,6 +256843,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this linked service type.␊ */␊ typeProperties: (SapHanaLinkedServiceProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233927,7 +256864,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP HANA server. Type: string (or Expression with resultType string).␊ */␊ @@ -233940,6 +256879,7 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + server: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233951,6 +256891,8 @@ Generated by [AVA](https://avajs.dev). * Amazon Marketplace Web Service linked service properties.␊ */␊ typeProperties: (AmazonMWSLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -233984,11 +256926,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - mwsAuthToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + mwsAuthToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - secretKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + secretKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The Amazon seller ID.␊ */␊ @@ -234013,6 +256959,10 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + accessKeyId: unknown␊ + endpoint: unknown␊ + marketplaceID: unknown␊ + sellerID: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234024,6 +256974,8 @@ Generated by [AVA](https://avajs.dev). * Azure PostgreSQL linked service properties.␊ */␊ typeProperties: (AzurePostgreSqlLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234053,6 +257005,8 @@ Generated by [AVA](https://avajs.dev). * Concur Service linked service properties.␊ */␊ typeProperties: (ConcurLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234074,7 +257028,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -234099,6 +257055,8 @@ Generated by [AVA](https://avajs.dev). username: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234110,6 +257068,8 @@ Generated by [AVA](https://avajs.dev). * Couchbase server linked service properties.␊ */␊ typeProperties: (CouchbaseLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234139,6 +257099,8 @@ Generated by [AVA](https://avajs.dev). * Drill server linked service properties.␊ */␊ typeProperties: (DrillLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234168,6 +257130,8 @@ Generated by [AVA](https://avajs.dev). * Eloqua server linked service properties.␊ */␊ typeProperties: (EloquaLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234189,7 +257153,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -234214,6 +257180,8 @@ Generated by [AVA](https://avajs.dev). username: {␊ [k: string]: unknown␊ }␊ + endpoint: unknown␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234225,6 +257193,8 @@ Generated by [AVA](https://avajs.dev). * Google BigQuery service linked service properties.␊ */␊ typeProperties: (GoogleBigQueryLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234244,11 +257214,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientId?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientId?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR.␊ */␊ @@ -234276,7 +257250,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - refreshToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + refreshToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false.␊ */␊ @@ -234295,6 +257271,8 @@ Generated by [AVA](https://avajs.dev). useSystemTrustStore?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + project: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234306,6 +257284,8 @@ Generated by [AVA](https://avajs.dev). * Greenplum Database linked service properties.␊ */␊ typeProperties: (GreenplumLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234335,6 +257315,8 @@ Generated by [AVA](https://avajs.dev). * HBase server linked service properties.␊ */␊ typeProperties: (HBaseLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234384,7 +257366,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.␊ */␊ @@ -234403,6 +257387,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234414,6 +257400,8 @@ Generated by [AVA](https://avajs.dev). * Hive Server linked service properties.␊ */␊ typeProperties: (HiveLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234463,7 +257451,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Hive server uses to listen for client connections.␊ */␊ @@ -234514,6 +257504,8 @@ Generated by [AVA](https://avajs.dev). zooKeeperNameSpace?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234525,6 +257517,8 @@ Generated by [AVA](https://avajs.dev). * Hubspot Service linked service properties.␊ */␊ typeProperties: (HubspotLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234534,7 +257528,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The client ID associated with your Hubspot application.␊ */␊ @@ -234544,7 +257540,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -234554,7 +257552,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - refreshToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + refreshToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -234573,6 +257573,7 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234584,6 +257585,8 @@ Generated by [AVA](https://avajs.dev). * Impala server linked service properties.␊ */␊ typeProperties: (ImpalaLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234627,7 +257630,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Impala server uses to listen for client connections. The default value is 21050.␊ */␊ @@ -234652,6 +257657,8 @@ Generated by [AVA](https://avajs.dev). useSystemTrustStore?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234663,6 +257670,8 @@ Generated by [AVA](https://avajs.dev). * Jira Service linked service properties.␊ */␊ typeProperties: (JiraLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234684,7 +257693,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.␊ */␊ @@ -234715,6 +257726,8 @@ Generated by [AVA](https://avajs.dev). username: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234726,6 +257739,8 @@ Generated by [AVA](https://avajs.dev). * Magento server linked service properties.␊ */␊ typeProperties: (MagentoLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234735,7 +257750,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -234766,6 +257783,7 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234777,6 +257795,8 @@ Generated by [AVA](https://avajs.dev). * MariaDB server linked service properties.␊ */␊ typeProperties: (MariaDBLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234806,6 +257826,8 @@ Generated by [AVA](https://avajs.dev). * Marketo server linked service properties.␊ */␊ typeProperties: (MarketoLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234821,7 +257843,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -234852,6 +257876,8 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ + endpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234863,6 +257889,8 @@ Generated by [AVA](https://avajs.dev). * Paypal Service linked service properties.␊ */␊ typeProperties: (PaypalLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234878,7 +257906,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -234909,6 +257939,8 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234920,6 +257952,8 @@ Generated by [AVA](https://avajs.dev). * Phoenix server linked service properties.␊ */␊ typeProperties: (PhoenixLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -234969,7 +258003,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Phoenix server uses to listen for client connections. The default value is 8765.␊ */␊ @@ -234994,6 +258030,8 @@ Generated by [AVA](https://avajs.dev). useSystemTrustStore?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235005,6 +258043,8 @@ Generated by [AVA](https://avajs.dev). * Presto server linked service properties.␊ */␊ typeProperties: (PrestoLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235054,7 +258094,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Presto server uses to listen for client connections. The default value is 8080.␊ */␊ @@ -235091,6 +258133,10 @@ Generated by [AVA](https://avajs.dev). useSystemTrustStore?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + catalog: unknown␊ + host: unknown␊ + serverVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235102,6 +258148,8 @@ Generated by [AVA](https://avajs.dev). * QuickBooks server linked service properties.␊ */␊ typeProperties: (QuickBooksLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235111,11 +258159,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessToken: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - accessTokenSecret: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessTokenSecret: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The company ID of the QuickBooks company to authorize.␊ */␊ @@ -235131,7 +258183,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - consumerSecret: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + consumerSecret: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235150,6 +258204,12 @@ Generated by [AVA](https://avajs.dev). useEncryptedEndpoints?: {␊ [k: string]: unknown␊ }␊ + accessToken: unknown␊ + accessTokenSecret: unknown␊ + companyId: unknown␊ + consumerKey: unknown␊ + consumerSecret: unknown␊ + endpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235161,6 +258221,8 @@ Generated by [AVA](https://avajs.dev). * ServiceNow server linked service properties.␊ */␊ typeProperties: (ServiceNowLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235180,7 +258242,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235196,7 +258260,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -235221,6 +258287,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + endpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235232,6 +258300,8 @@ Generated by [AVA](https://avajs.dev). * Shopify Service linked service properties.␊ */␊ typeProperties: (ShopifyLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235241,7 +258311,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235272,6 +258344,7 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235283,6 +258356,8 @@ Generated by [AVA](https://avajs.dev). * Spark Server linked service properties.␊ */␊ typeProperties: (SparkLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235332,7 +258407,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Spark server uses to listen for client connections.␊ */␊ @@ -235365,6 +258442,9 @@ Generated by [AVA](https://avajs.dev). useSystemTrustStore?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + host: unknown␊ + port: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235376,6 +258456,8 @@ Generated by [AVA](https://avajs.dev). * Square Service linked service properties.␊ */␊ typeProperties: (SquareLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235391,7 +258473,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235428,6 +258512,9 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ + host: unknown␊ + redirectUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235439,6 +258526,8 @@ Generated by [AVA](https://avajs.dev). * Xero Service linked service properties.␊ */␊ typeProperties: (XeroLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235448,7 +258537,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - consumerKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + consumerKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235464,7 +258555,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - privateKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + privateKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -235483,6 +258576,7 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235494,6 +258588,8 @@ Generated by [AVA](https://avajs.dev). * Zoho server linked service properties.␊ */␊ typeProperties: (ZohoLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235503,7 +258599,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessToken?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235534,6 +258632,7 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + endpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235545,6 +258644,8 @@ Generated by [AVA](https://avajs.dev). * Vertica linked service properties.␊ */␊ typeProperties: (VerticaLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235574,6 +258675,8 @@ Generated by [AVA](https://avajs.dev). * Netezza linked service properties.␊ */␊ typeProperties: (NetezzaLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235603,6 +258706,8 @@ Generated by [AVA](https://avajs.dev). * Salesforce Marketing Cloud linked service properties.␊ */␊ typeProperties: (SalesforceMarketingCloudLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235618,7 +258723,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -235643,6 +258750,7 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235654,6 +258762,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight ondemand linked service properties.␊ */␊ typeProperties: (HDInsightOnDemandLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235673,7 +258783,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clusterPassword?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clusterPassword?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The resource group where the cluster belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -235689,7 +258801,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clusterSshPassword?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clusterSshPassword?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).␊ */␊ @@ -235785,7 +258899,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + servicePrincipalKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).␊ */␊ @@ -235828,6 +258944,13 @@ Generated by [AVA](https://avajs.dev). zookeeperNodeSize?: {␊ [k: string]: unknown␊ }␊ + clusterResourceGroup: unknown␊ + clusterSize: unknown␊ + hostSubscriptionId: unknown␊ + linkedServiceName: unknown␊ + tenant: unknown␊ + timeToLive: unknown␊ + version: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235839,6 +258962,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Lake Analytics linked service properties.␊ */␊ typeProperties: (AzureDataLakeAnalyticsLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235878,7 +259003,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + servicePrincipalKey?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).␊ */␊ @@ -235891,6 +259018,8 @@ Generated by [AVA](https://avajs.dev). tenant: {␊ [k: string]: unknown␊ }␊ + accountName: unknown␊ + tenant: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235902,6 +259031,8 @@ Generated by [AVA](https://avajs.dev). * Azure Databricks linked service properties.␊ */␊ typeProperties: (AzureDatabricksLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235911,7 +259042,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + accessToken: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * .azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).␊ */␊ @@ -235956,6 +259089,8 @@ Generated by [AVA](https://avajs.dev). newClusterVersion?: {␊ [k: string]: unknown␊ }␊ + accessToken: unknown␊ + domain: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235967,6 +259102,8 @@ Generated by [AVA](https://avajs.dev). * Responsys linked service properties.␊ */␊ typeProperties: (ResponsysLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -235982,7 +259119,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + clientSecret?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -236013,6 +259152,8 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ + endpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236029,6 +259170,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (Dataset | string)␊ type: "datasets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236040,6 +259185,8 @@ Generated by [AVA](https://avajs.dev). * Amazon S3 dataset properties.␊ */␊ typeProperties: (AmazonS3DatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236078,6 +259225,7 @@ Generated by [AVA](https://avajs.dev). version?: {␊ [k: string]: unknown␊ }␊ + bucketName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236085,6 +259233,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface DatasetBZip2Compression {␊ type: "BZip2"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236096,6 +259245,7 @@ Generated by [AVA](https://avajs.dev). */␊ level?: (("Optimal" | "Fastest") | string)␊ type: "GZip"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236107,6 +259257,7 @@ Generated by [AVA](https://avajs.dev). */␊ level?: (("Optimal" | "Fastest") | string)␊ type: "Deflate"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236118,6 +259269,7 @@ Generated by [AVA](https://avajs.dev). */␊ level?: (("Optimal" | "Fastest") | string)␊ type: "ZipDeflate"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236155,6 +259307,8 @@ Generated by [AVA](https://avajs.dev). * Azure Blob dataset properties.␊ */␊ typeProperties: (AzureBlobDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236164,7 +259318,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * The compression method used on a dataset.␊ */␊ - compression?: ((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) | string)␊ + compression?: (((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name of the Azure Blob. Type: string (or Expression with resultType string).␊ */␊ @@ -236198,6 +259362,8 @@ Generated by [AVA](https://avajs.dev). * Azure Table dataset properties.␊ */␊ typeProperties: (AzureTableDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236210,6 +259376,7 @@ Generated by [AVA](https://avajs.dev). tableName: {␊ [k: string]: unknown␊ }␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236221,6 +259388,8 @@ Generated by [AVA](https://avajs.dev). * Azure SQL dataset properties.␊ */␊ typeProperties: (AzureSqlTableDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236233,6 +259402,7 @@ Generated by [AVA](https://avajs.dev). tableName: {␊ [k: string]: unknown␊ }␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236244,6 +259414,8 @@ Generated by [AVA](https://avajs.dev). * Azure SQL Data Warehouse dataset properties.␊ */␊ typeProperties: (AzureSqlDWTableDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236256,6 +259428,7 @@ Generated by [AVA](https://avajs.dev). tableName: {␊ [k: string]: unknown␊ }␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236267,6 +259440,8 @@ Generated by [AVA](https://avajs.dev). * Cassandra dataset properties.␊ */␊ typeProperties: (CassandraTableDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236296,6 +259471,8 @@ Generated by [AVA](https://avajs.dev). * DocumentDB Collection dataset properties.␊ */␊ typeProperties: (DocumentDbCollectionDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236308,6 +259485,7 @@ Generated by [AVA](https://avajs.dev). collectionName: {␊ [k: string]: unknown␊ }␊ + collectionName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236319,6 +259497,8 @@ Generated by [AVA](https://avajs.dev). * Dynamics entity dataset properties.␊ */␊ typeProperties: (DynamicsEntityDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236342,6 +259522,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Lake Store dataset properties.␊ */␊ typeProperties: (AzureDataLakeStoreDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236351,7 +259533,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * The compression method used on a dataset.␊ */␊ - compression?: ((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) | string)␊ + compression?: (((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).␊ */␊ @@ -236368,6 +259560,7 @@ Generated by [AVA](https://avajs.dev). * The format definition of a storage.␊ */␊ format?: (DatasetStorageFormat | string)␊ + folderPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236379,6 +259572,8 @@ Generated by [AVA](https://avajs.dev). * On-premises file system dataset properties.␊ */␊ typeProperties: (FileShareDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236388,7 +259583,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * The compression method used on a dataset.␊ */␊ - compression?: ((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) | string)␊ + compression?: (((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).␊ */␊ @@ -236422,6 +259627,8 @@ Generated by [AVA](https://avajs.dev). * MongoDB database dataset properties.␊ */␊ typeProperties: (MongoDbCollectionDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236434,6 +259641,7 @@ Generated by [AVA](https://avajs.dev). collectionName: {␊ [k: string]: unknown␊ }␊ + collectionName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236445,6 +259653,8 @@ Generated by [AVA](https://avajs.dev). * OData dataset properties.␊ */␊ typeProperties: (ODataResourceDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236468,6 +259678,8 @@ Generated by [AVA](https://avajs.dev). * On-premises Oracle dataset properties.␊ */␊ typeProperties: (OracleTableDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236480,6 +259692,7 @@ Generated by [AVA](https://avajs.dev). tableName: {␊ [k: string]: unknown␊ }␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236491,6 +259704,8 @@ Generated by [AVA](https://avajs.dev). * Azure MySQL database dataset properties.␊ */␊ typeProperties: (AzureMySqlTableDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236514,6 +259729,8 @@ Generated by [AVA](https://avajs.dev). * Relational table dataset properties.␊ */␊ typeProperties: (RelationalTableDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236537,6 +259754,8 @@ Generated by [AVA](https://avajs.dev). * Salesforce object dataset properties.␊ */␊ typeProperties: (SalesforceObjectDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236560,6 +259779,8 @@ Generated by [AVA](https://avajs.dev). * Sap Cloud For Customer OData resource dataset properties.␊ */␊ typeProperties: (SapCloudForCustomerResourceDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236572,6 +259793,7 @@ Generated by [AVA](https://avajs.dev). path: {␊ [k: string]: unknown␊ }␊ + path: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236583,6 +259805,8 @@ Generated by [AVA](https://avajs.dev). * Sap ECC OData resource dataset properties.␊ */␊ typeProperties: (SapEccResourceDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236595,6 +259819,7 @@ Generated by [AVA](https://avajs.dev). path: {␊ [k: string]: unknown␊ }␊ + path: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236606,6 +259831,8 @@ Generated by [AVA](https://avajs.dev). * On-premises SQL Server dataset properties.␊ */␊ typeProperties: (SqlServerTableDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236618,6 +259845,7 @@ Generated by [AVA](https://avajs.dev). tableName: {␊ [k: string]: unknown␊ }␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236629,6 +259857,8 @@ Generated by [AVA](https://avajs.dev). * Web table dataset properties.␊ */␊ typeProperties: (WebTableDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236647,6 +259877,7 @@ Generated by [AVA](https://avajs.dev). path?: {␊ [k: string]: unknown␊ }␊ + index: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236658,6 +259889,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties: (AzureSearchIndexDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236670,6 +259903,7 @@ Generated by [AVA](https://avajs.dev). indexName: {␊ [k: string]: unknown␊ }␊ + indexName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236681,6 +259915,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties: (HttpDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236698,7 +259934,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * The compression method used on a dataset.␊ */␊ - compression?: ((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) | string)␊ + compression?: (((DatasetBZip2Compression | DatasetGZipCompression | DatasetDeflateCompression | DatasetZipDeflateCompression) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The format definition of a storage.␊ */␊ @@ -236728,6 +259974,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AmazonMWSObjectDataset {␊ type: "AmazonMWSObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236735,6 +259982,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AzurePostgreSqlTableDataset {␊ type: "AzurePostgreSqlTable"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236742,6 +259990,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ConcurObjectDataset {␊ type: "ConcurObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236749,6 +259998,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface CouchbaseTableDataset {␊ type: "CouchbaseTable"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236756,6 +260006,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface DrillTableDataset {␊ type: "DrillTable"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236763,6 +260014,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface EloquaObjectDataset {␊ type: "EloquaObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236770,6 +260022,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface GoogleBigQueryObjectDataset {␊ type: "GoogleBigQueryObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236777,6 +260030,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface GreenplumTableDataset {␊ type: "GreenplumTable"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236784,6 +260038,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface HBaseObjectDataset {␊ type: "HBaseObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236791,6 +260046,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface HiveObjectDataset {␊ type: "HiveObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236798,6 +260054,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface HubspotObjectDataset {␊ type: "HubspotObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236805,6 +260062,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ImpalaObjectDataset {␊ type: "ImpalaObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236812,6 +260070,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface JiraObjectDataset {␊ type: "JiraObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236819,6 +260078,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface MagentoObjectDataset {␊ type: "MagentoObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236826,6 +260086,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface MariaDBTableDataset {␊ type: "MariaDBTable"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236833,6 +260094,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface MarketoObjectDataset {␊ type: "MarketoObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236840,6 +260102,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface PaypalObjectDataset {␊ type: "PaypalObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236847,6 +260110,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface PhoenixObjectDataset {␊ type: "PhoenixObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236854,6 +260118,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface PrestoObjectDataset {␊ type: "PrestoObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236861,6 +260126,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface QuickBooksObjectDataset {␊ type: "QuickBooksObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236868,6 +260134,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ServiceNowObjectDataset {␊ type: "ServiceNowObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236875,6 +260142,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ShopifyObjectDataset {␊ type: "ShopifyObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236882,6 +260150,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface SparkObjectDataset {␊ type: "SparkObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236889,6 +260158,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface SquareObjectDataset {␊ type: "SquareObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236896,6 +260166,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface XeroObjectDataset {␊ type: "XeroObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236903,6 +260174,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ZohoObjectDataset {␊ type: "ZohoObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236910,6 +260182,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface NetezzaTableDataset {␊ type: "NetezzaTable"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236917,6 +260190,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface VerticaTableDataset {␊ type: "VerticaTable"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236924,6 +260198,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface SalesforceMarketingCloudObjectDataset {␊ type: "SalesforceMarketingCloudObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236931,6 +260206,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ResponsysObjectDataset {␊ type: "ResponsysObject"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236947,6 +260223,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (Pipeline | string)␊ type: "pipelines"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -236999,6 +260279,8 @@ Generated by [AVA](https://avajs.dev). * Match-Condition for the dependency.␊ */␊ dependencyConditions: (("Succeeded" | "Failed" | "Skipped" | "Completed")[] | string)␊ + activity: unknown␊ + dependencyConditions: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237010,6 +260292,8 @@ Generated by [AVA](https://avajs.dev). * Execute pipeline activity properties.␊ */␊ typeProperties: (ExecutePipelineActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237032,6 +260316,7 @@ Generated by [AVA](https://avajs.dev). * Defines whether activity execution will wait for the dependent pipeline execution to finish. Default is false.␊ */␊ waitOnCompletion?: (boolean | string)␊ + pipeline: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237050,6 +260335,8 @@ Generated by [AVA](https://avajs.dev). * Pipeline reference type.␊ */␊ type: ("PipelineReference" | string)␊ + referenceName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237061,6 +260348,8 @@ Generated by [AVA](https://avajs.dev). * IfCondition activity properties.␊ */␊ typeProperties: (IfConditionActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237074,11 +260363,58 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute if expression is evaluated to false. This is an optional property and if not provided, the activity will exit without any action.␊ */␊ - ifFalseActivities?: ((ControlActivity | ExecutionActivity)[] | string)␊ + ifFalseActivities?: (((ControlActivity | ExecutionActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + name: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * List of activities to execute if expression is evaluated to true. This is an optional property and if not provided, the activity will exit without any action.␊ */␊ - ifTrueActivities?: ((ControlActivity | ExecutionActivity)[] | string)␊ + ifTrueActivities?: (((ControlActivity | ExecutionActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + name: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ + expression: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237093,6 +260429,8 @@ Generated by [AVA](https://avajs.dev). * Expression value.␊ */␊ value: string␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237104,6 +260442,8 @@ Generated by [AVA](https://avajs.dev). * ForEach activity properties.␊ */␊ typeProperties: (ForEachActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237113,7 +260453,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute .␊ */␊ - activities: ((ControlActivity | ExecutionActivity)[] | string)␊ + activities: (((ControlActivity | ExecutionActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + name: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * Batch count to be used for controlling the number of parallel execution (when isSequential is set to false).␊ */␊ @@ -237126,6 +260489,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Factory expression definition.␊ */␊ items: (Expression | string)␊ + activities: unknown␊ + items: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237137,6 +260502,8 @@ Generated by [AVA](https://avajs.dev). * Wait activity properties.␊ */␊ typeProperties: (WaitActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237147,6 +260514,7 @@ Generated by [AVA](https://avajs.dev). * Duration in seconds.␊ */␊ waitTimeInSeconds: (number | string)␊ + waitTimeInSeconds: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237158,6 +260526,8 @@ Generated by [AVA](https://avajs.dev). * Until activity properties.␊ */␊ typeProperties: (UntilActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237167,7 +260537,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute.␊ */␊ - activities: ((ControlActivity | ExecutionActivity)[] | string)␊ + activities: (((ControlActivity | ExecutionActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + name: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * Azure Data Factory expression definition.␊ */␊ @@ -237178,6 +260571,8 @@ Generated by [AVA](https://avajs.dev). timeout?: {␊ [k: string]: unknown␊ }␊ + activities: unknown␊ + expression: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237189,6 +260584,8 @@ Generated by [AVA](https://avajs.dev). * Filter activity properties.␊ */␊ typeProperties: (FilterActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237203,6 +260600,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Factory expression definition.␊ */␊ items: (Expression | string)␊ + condition: unknown␊ + items: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237256,6 +260655,8 @@ Generated by [AVA](https://avajs.dev). * Copy activity properties.␊ */␊ typeProperties: (CopyActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237278,6 +260679,8 @@ Generated by [AVA](https://avajs.dev). * Dataset reference type.␊ */␊ type: ("DatasetReference" | string)␊ + referenceName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237330,6 +260733,8 @@ Generated by [AVA](https://avajs.dev). translator?: {␊ [k: string]: unknown␊ }␊ + sink: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237356,6 +260761,7 @@ Generated by [AVA](https://avajs.dev). path?: {␊ [k: string]: unknown␊ }␊ + linkedServiceName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237450,6 +260856,7 @@ Generated by [AVA](https://avajs.dev). path?: {␊ [k: string]: unknown␊ }␊ + linkedServiceName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237461,6 +260868,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight Hive activity properties.␊ */␊ typeProperties: (HDInsightHiveActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237510,6 +260919,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight Pig activity properties.␊ */␊ typeProperties: (HDInsightPigActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237559,6 +260970,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight MapReduce activity properties.␊ */␊ typeProperties: (HDInsightMapReduceActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237609,6 +261022,8 @@ Generated by [AVA](https://avajs.dev). * Storage linked service references.␊ */␊ storageLinkedServices?: (LinkedServiceReference[] | string)␊ + className: unknown␊ + jarFilePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237620,6 +261035,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight streaming activity properties.␊ */␊ typeProperties: (HDInsightStreamingActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237694,6 +261111,11 @@ Generated by [AVA](https://avajs.dev). * Storage linked service references.␊ */␊ storageLinkedServices?: (LinkedServiceReference[] | string)␊ + filePaths: unknown␊ + input: unknown␊ + mapper: unknown␊ + output: unknown␊ + reducer: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237705,6 +261127,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight spark activity properties.␊ */␊ typeProperties: (HDInsightSparkActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237755,6 +261179,8 @@ Generated by [AVA](https://avajs.dev). * Linked service reference type.␊ */␊ sparkJobLinkedService?: (LinkedServiceReference | string)␊ + entryFilePath: unknown␊ + rootPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237766,6 +261192,8 @@ Generated by [AVA](https://avajs.dev). * Execute SSIS package activity properties.␊ */␊ typeProperties: (ExecuteSSISPackageActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237840,6 +261268,8 @@ Generated by [AVA](https://avajs.dev). runtime?: {␊ [k: string]: unknown␊ }␊ + connectVia: unknown␊ + packageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237862,6 +261292,9 @@ Generated by [AVA](https://avajs.dev). userName: {␊ [k: string]: unknown␊ }␊ + domain: unknown␊ + password: unknown␊ + userName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237882,6 +261315,9 @@ Generated by [AVA](https://avajs.dev). * SSIS package execution log location properties.␊ */␊ typeProperties: (SSISLogLocationTypeProperties | string)␊ + logPath: unknown␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237913,13 +261349,18 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + password: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * UseName for windows authentication.␊ */␊ userName: {␊ [k: string]: unknown␊ }␊ + domain: unknown␊ + password: unknown␊ + userName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237932,6 +261373,7 @@ Generated by [AVA](https://avajs.dev). value: {␊ [k: string]: unknown␊ }␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237952,6 +261394,7 @@ Generated by [AVA](https://avajs.dev). * SSIS package location properties.␊ */␊ typeProperties?: (SSISPackageLocationTypeProperties | string)␊ + packagePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237971,7 +261414,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - packagePassword?: ((SecureString | AzureKeyVaultSecretReference) | string)␊ + packagePassword?: (((SecureString | AzureKeyVaultSecretReference) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -237988,6 +261433,7 @@ Generated by [AVA](https://avajs.dev). value: {␊ [k: string]: unknown␊ }␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -237999,6 +261445,8 @@ Generated by [AVA](https://avajs.dev). * Custom activity properties.␊ */␊ typeProperties: (CustomActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238033,6 +261481,7 @@ Generated by [AVA](https://avajs.dev). * Linked service reference type.␊ */␊ resourceLinkedService?: (LinkedServiceReference | string)␊ + command: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238058,6 +261507,8 @@ Generated by [AVA](https://avajs.dev). * SQL stored procedure activity properties.␊ */␊ typeProperties: (SqlServerStoredProcedureActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238076,6 +261527,7 @@ Generated by [AVA](https://avajs.dev). storedProcedureParameters?: ({␊ [k: string]: StoredProcedureParameter␊ } | string)␊ + storedProcedureName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238092,6 +261544,7 @@ Generated by [AVA](https://avajs.dev). value: {␊ [k: string]: unknown␊ }␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238103,6 +261556,8 @@ Generated by [AVA](https://avajs.dev). * Lookup activity properties.␊ */␊ typeProperties: (LookupActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238123,6 +261578,8 @@ Generated by [AVA](https://avajs.dev). * A copy activity source.␊ */␊ source: (CopySource | string)␊ + dataset: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238134,6 +261591,8 @@ Generated by [AVA](https://avajs.dev). * Web activity type properties.␊ */␊ typeProperties: (WebActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238178,6 +261637,8 @@ Generated by [AVA](https://avajs.dev). url: {␊ [k: string]: unknown␊ }␊ + method: unknown␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238204,6 +261665,7 @@ Generated by [AVA](https://avajs.dev). * Web activity authentication user name for basic authentication.␊ */␊ username?: string␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238215,6 +261677,8 @@ Generated by [AVA](https://avajs.dev). * GetMetadata activity properties.␊ */␊ typeProperties: (GetMetadataActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238231,6 +261695,7 @@ Generated by [AVA](https://avajs.dev). fieldList?: ({␊ [k: string]: unknown␊ }[] | string)␊ + dataset: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238242,6 +261707,8 @@ Generated by [AVA](https://avajs.dev). * Azure ML Batch Execution activity properties.␊ */␊ typeProperties: (AzureMLBatchExecutionActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238284,6 +261751,8 @@ Generated by [AVA](https://avajs.dev). * Linked service reference type.␊ */␊ linkedServiceName: (LinkedServiceReference | string)␊ + filePath: unknown␊ + linkedServiceName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238295,6 +261764,8 @@ Generated by [AVA](https://avajs.dev). * Azure ML Update Resource activity properties.␊ */␊ typeProperties: (AzureMLUpdateResourceActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238317,6 +261788,9 @@ Generated by [AVA](https://avajs.dev). trainedModelName: {␊ [k: string]: unknown␊ }␊ + trainedModelFilePath: unknown␊ + trainedModelLinkedServiceName: unknown␊ + trainedModelName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238328,6 +261802,8 @@ Generated by [AVA](https://avajs.dev). * DataLakeAnalyticsU-SQL activity properties.␊ */␊ typeProperties: (DataLakeAnalyticsUSQLActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238376,6 +261852,8 @@ Generated by [AVA](https://avajs.dev). scriptPath: {␊ [k: string]: unknown␊ }␊ + scriptLinkedService: unknown␊ + scriptPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238387,6 +261865,8 @@ Generated by [AVA](https://avajs.dev). * Databricks Notebook activity properties.␊ */␊ typeProperties: (DatabricksNotebookActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238407,6 +261887,7 @@ Generated by [AVA](https://avajs.dev). notebookPath: {␊ [k: string]: unknown␊ }␊ + notebookPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238423,6 +261904,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (Trigger | string)␊ type: "triggers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238434,6 +261919,7 @@ Generated by [AVA](https://avajs.dev). */␊ pipelines?: (TriggerPipelineReference[] | string)␊ type: "MultiplePipelineTrigger"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238466,8 +261952,49 @@ Generated by [AVA](https://avajs.dev). /**␊ * The Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents.␊ */␊ - properties: ((AmazonS3Dataset | AzureBlobDataset | AzureTableDataset | AzureSqlTableDataset | AzureSqlDWTableDataset | CassandraTableDataset | DocumentDbCollectionDataset | DynamicsEntityDataset | AzureDataLakeStoreDataset | FileShareDataset | MongoDbCollectionDataset | ODataResourceDataset | OracleTableDataset | AzureMySqlTableDataset | RelationalTableDataset | SalesforceObjectDataset | SapCloudForCustomerResourceDataset | SapEccResourceDataset | SqlServerTableDataset | WebTableDataset | AzureSearchIndexDataset | HttpDataset | AmazonMWSObjectDataset | AzurePostgreSqlTableDataset | ConcurObjectDataset | CouchbaseTableDataset | DrillTableDataset | EloquaObjectDataset | GoogleBigQueryObjectDataset | GreenplumTableDataset | HBaseObjectDataset | HiveObjectDataset | HubspotObjectDataset | ImpalaObjectDataset | JiraObjectDataset | MagentoObjectDataset | MariaDBTableDataset | MarketoObjectDataset | PaypalObjectDataset | PhoenixObjectDataset | PrestoObjectDataset | QuickBooksObjectDataset | ServiceNowObjectDataset | ShopifyObjectDataset | SparkObjectDataset | SquareObjectDataset | XeroObjectDataset | ZohoObjectDataset | NetezzaTableDataset | VerticaTableDataset | SalesforceMarketingCloudObjectDataset | ResponsysObjectDataset) | string)␊ + properties: (((AmazonS3Dataset | AzureBlobDataset | AzureTableDataset | AzureSqlTableDataset | AzureSqlDWTableDataset | CassandraTableDataset | DocumentDbCollectionDataset | DynamicsEntityDataset | AzureDataLakeStoreDataset | FileShareDataset | MongoDbCollectionDataset | ODataResourceDataset | OracleTableDataset | AzureMySqlTableDataset | RelationalTableDataset | SalesforceObjectDataset | SapCloudForCustomerResourceDataset | SapEccResourceDataset | SqlServerTableDataset | WebTableDataset | AzureSearchIndexDataset | HttpDataset | AmazonMWSObjectDataset | AzurePostgreSqlTableDataset | ConcurObjectDataset | CouchbaseTableDataset | DrillTableDataset | EloquaObjectDataset | GoogleBigQueryObjectDataset | GreenplumTableDataset | HBaseObjectDataset | HiveObjectDataset | HubspotObjectDataset | ImpalaObjectDataset | JiraObjectDataset | MagentoObjectDataset | MariaDBTableDataset | MarketoObjectDataset | PaypalObjectDataset | PhoenixObjectDataset | PrestoObjectDataset | QuickBooksObjectDataset | ServiceNowObjectDataset | ShopifyObjectDataset | SparkObjectDataset | SquareObjectDataset | XeroObjectDataset | ZohoObjectDataset | NetezzaTableDataset | VerticaTableDataset | SalesforceMarketingCloudObjectDataset | ResponsysObjectDataset) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * List of tags that can be used for describing the Dataset.␊ + */␊ + annotations?: ({␊ + [k: string]: unknown␊ + }[] | string)␊ + /**␊ + * Dataset description.␊ + */␊ + description?: string␊ + /**␊ + * Linked service reference type.␊ + */␊ + linkedServiceName: (LinkedServiceReference | string)␊ + /**␊ + * Definition of all parameters for an entity.␊ + */␊ + parameters?: ({␊ + [k: string]: ParameterSpecification␊ + } | string)␊ + /**␊ + * Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.␊ + */␊ + structure?: {␊ + [k: string]: unknown␊ + }␊ + linkedServiceName: unknown␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/datasets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238482,8 +262009,26 @@ Generated by [AVA](https://avajs.dev). /**␊ * Azure Data Factory nested object which serves as a compute resource for activities.␊ */␊ - properties: ((ManagedIntegrationRuntime | SelfHostedIntegrationRuntime) | string)␊ + properties: (((ManagedIntegrationRuntime | SelfHostedIntegrationRuntime) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Integration runtime description.␊ + */␊ + description?: string␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/integrationRuntimes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238498,8 +262043,42 @@ Generated by [AVA](https://avajs.dev). /**␊ * The Azure Data Factory nested object which contains the information and credential which can be used to connect with related store or compute resource.␊ */␊ - properties: ((AzureStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | HDInsightLinkedService | FileServerLinkedService | OracleLinkedService | AzureMySqlLinkedService | MySqlLinkedService | PostgreSqlLinkedService | SybaseLinkedService | Db2LinkedService | TeradataLinkedService | AzureMLLinkedService | OdbcLinkedService | HdfsLinkedService | ODataLinkedService | WebLinkedService | CassandraLinkedService | MongoDbLinkedService | AzureDataLakeStoreLinkedService | SalesforceLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | AmazonS3LinkedService | AmazonRedshiftLinkedService | CustomDataSourceLinkedService | AzureSearchLinkedService | HttpLinkedService | FtpServerLinkedService | SftpServerLinkedService | SapBWLinkedService | SapHanaLinkedService | AmazonMWSLinkedService | AzurePostgreSqlLinkedService | ConcurLinkedService | CouchbaseLinkedService | DrillLinkedService | EloquaLinkedService | GoogleBigQueryLinkedService | GreenplumLinkedService | HBaseLinkedService | HiveLinkedService | HubspotLinkedService | ImpalaLinkedService | JiraLinkedService | MagentoLinkedService | MariaDBLinkedService | MarketoLinkedService | PaypalLinkedService | PhoenixLinkedService | PrestoLinkedService | QuickBooksLinkedService | ServiceNowLinkedService | ShopifyLinkedService | SparkLinkedService | SquareLinkedService | XeroLinkedService | ZohoLinkedService | VerticaLinkedService | NetezzaLinkedService | SalesforceMarketingCloudLinkedService | HDInsightOnDemandLinkedService | AzureDataLakeAnalyticsLinkedService | AzureDatabricksLinkedService | ResponsysLinkedService) | string)␊ + properties: (((AzureStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | HDInsightLinkedService | FileServerLinkedService | OracleLinkedService | AzureMySqlLinkedService | MySqlLinkedService | PostgreSqlLinkedService | SybaseLinkedService | Db2LinkedService | TeradataLinkedService | AzureMLLinkedService | OdbcLinkedService | HdfsLinkedService | ODataLinkedService | WebLinkedService | CassandraLinkedService | MongoDbLinkedService | AzureDataLakeStoreLinkedService | SalesforceLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | AmazonS3LinkedService | AmazonRedshiftLinkedService | CustomDataSourceLinkedService | AzureSearchLinkedService | HttpLinkedService | FtpServerLinkedService | SftpServerLinkedService | SapBWLinkedService | SapHanaLinkedService | AmazonMWSLinkedService | AzurePostgreSqlLinkedService | ConcurLinkedService | CouchbaseLinkedService | DrillLinkedService | EloquaLinkedService | GoogleBigQueryLinkedService | GreenplumLinkedService | HBaseLinkedService | HiveLinkedService | HubspotLinkedService | ImpalaLinkedService | JiraLinkedService | MagentoLinkedService | MariaDBLinkedService | MarketoLinkedService | PaypalLinkedService | PhoenixLinkedService | PrestoLinkedService | QuickBooksLinkedService | ServiceNowLinkedService | ShopifyLinkedService | SparkLinkedService | SquareLinkedService | XeroLinkedService | ZohoLinkedService | VerticaLinkedService | NetezzaLinkedService | SalesforceMarketingCloudLinkedService | HDInsightOnDemandLinkedService | AzureDataLakeAnalyticsLinkedService | AzureDatabricksLinkedService | ResponsysLinkedService) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * List of tags that can be used for describing the Dataset.␊ + */␊ + annotations?: ({␊ + [k: string]: unknown␊ + }[] | string)␊ + /**␊ + * Integration runtime reference type.␊ + */␊ + connectVia?: (IntegrationRuntimeReference | string)␊ + /**␊ + * Linked service description.␊ + */␊ + description?: string␊ + /**␊ + * Definition of all parameters for an entity.␊ + */␊ + parameters?: ({␊ + [k: string]: ParameterSpecification␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/linkedservices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238516,6 +262095,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (Pipeline | string)␊ type: "Microsoft.DataFactory/factories/pipelines"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238530,8 +262113,26 @@ Generated by [AVA](https://avajs.dev). /**␊ * Azure data factory nested object which contains information about creating pipeline run␊ */␊ - properties: (MultiplePipelineTrigger | string)␊ + properties: ((MultiplePipelineTrigger & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Trigger description.␊ + */␊ + description?: string␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/triggers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238563,6 +262164,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DataFactory/factories"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238581,6 +262186,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ } | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238631,6 +262237,8 @@ Generated by [AVA](https://avajs.dev). * The url of the Azure Key Vault used for CMK.␊ */␊ vaultBaseUrl: string␊ + keyName: unknown␊ + vaultBaseUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238657,6 +262265,8 @@ Generated by [AVA](https://avajs.dev). value: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238682,6 +262292,8 @@ Generated by [AVA](https://avajs.dev). */␊ tenantId?: string␊ type: "FactoryVSTSConfiguration"␊ + projectName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238701,6 +262313,7 @@ Generated by [AVA](https://avajs.dev). */␊ hostName?: string␊ type: "FactoryGitHubConfiguration"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238731,6 +262344,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IntegrationRuntime1 | string)␊ type: "integrationRuntimes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238746,6 +262363,8 @@ Generated by [AVA](https://avajs.dev). * Managed integration runtime type properties.␊ */␊ typeProperties: (ManagedIntegrationRuntimeTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238760,6 +262379,8 @@ Generated by [AVA](https://avajs.dev). * Managed Virtual Network reference type.␊ */␊ type: ("ManagedVirtualNetworkReference" | string)␊ + referenceName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238977,6 +262598,8 @@ Generated by [AVA](https://avajs.dev). * Value of secure string.␊ */␊ value: string␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -238999,6 +262622,8 @@ Generated by [AVA](https://avajs.dev). * Credential reference type.␊ */␊ type: ("CredentialReference" | string)␊ + referenceName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239056,6 +262681,8 @@ Generated by [AVA](https://avajs.dev). * Cmdkey command custom setup type properties.␊ */␊ typeProperties: (CmdkeySetupTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239078,6 +262705,9 @@ Generated by [AVA](https://avajs.dev). userName: {␊ [k: string]: unknown␊ }␊ + password: unknown␊ + targetName: unknown␊ + userName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239101,6 +262731,9 @@ Generated by [AVA](https://avajs.dev). */␊ store: (LinkedServiceReference1 | string)␊ type: "AzureKeyVaultSecret"␊ + secretName: unknown␊ + store: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239123,6 +262756,8 @@ Generated by [AVA](https://avajs.dev). * Linked service reference type.␊ */␊ type: ("LinkedServiceReference" | string)␊ + referenceName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239134,6 +262769,8 @@ Generated by [AVA](https://avajs.dev). * Environment variable custom setup type properties.␊ */␊ typeProperties: (EnvironmentVariableSetupTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239148,6 +262785,8 @@ Generated by [AVA](https://avajs.dev). * The value of the environment variable.␊ */␊ variableValue: string␊ + variableName: unknown␊ + variableValue: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239159,6 +262798,8 @@ Generated by [AVA](https://avajs.dev). * Installation of licensed component setup type properties.␊ */␊ typeProperties: (LicensedComponentSetupTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239172,7 +262813,10 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - licenseKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + licenseKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ + componentName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239184,6 +262828,8 @@ Generated by [AVA](https://avajs.dev). * Installation of Azure PowerShell type properties.␊ */␊ typeProperties: (AzPowerShellSetupTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239194,6 +262840,7 @@ Generated by [AVA](https://avajs.dev). * The required version of Azure PowerShell to install.␊ */␊ version: string␊ + version: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239208,6 +262855,8 @@ Generated by [AVA](https://avajs.dev). * The entity reference.␊ */␊ packageStoreLinkedService: (EntityReference1 | string)␊ + name: unknown␊ + packageStoreLinkedService: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239219,6 +262868,7 @@ Generated by [AVA](https://avajs.dev). * The self-hosted integration runtime properties.␊ */␊ typeProperties?: (SelfHostedIntegrationRuntimeTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239240,6 +262890,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Factory secure string definition. The string value will be masked with asterisks '*' during Get or List API calls.␊ */␊ key: (SecureString1 | string)␊ + authorizationType: unknown␊ + key: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239255,6 +262907,8 @@ Generated by [AVA](https://avajs.dev). * The resource identifier of the integration runtime to be shared.␊ */␊ resourceId: string␊ + authorizationType: unknown␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239271,6 +262925,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LinkedService1 | string)␊ type: "linkedservices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239293,6 +262951,8 @@ Generated by [AVA](https://avajs.dev). * Type of integration runtime.␊ */␊ type: ("IntegrationRuntimeReference" | string)␊ + referenceName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239309,6 +262969,7 @@ Generated by [AVA](https://avajs.dev). * Parameter type.␊ */␊ type: (("Object" | "String" | "Int" | "Float" | "Bool" | "Array" | "SecureString") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239320,6 +262981,8 @@ Generated by [AVA](https://avajs.dev). * Azure Storage linked service properties.␊ */␊ typeProperties: (AzureStorageLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239361,6 +263024,8 @@ Generated by [AVA](https://avajs.dev). * Azure Blob Storage linked service properties.␊ */␊ typeProperties: (AzureBlobStorageLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239418,7 +263083,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -239436,6 +263103,8 @@ Generated by [AVA](https://avajs.dev). * Azure Storage linked service properties.␊ */␊ typeProperties: (AzureStorageLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239447,6 +263116,8 @@ Generated by [AVA](https://avajs.dev). * Azure SQL Data Warehouse linked service properties.␊ */␊ typeProperties: (AzureSqlDWLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239488,13 +263159,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ tenant?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239506,6 +263180,8 @@ Generated by [AVA](https://avajs.dev). * SQL Server linked service properties.␊ */␊ typeProperties: (SqlServerLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239531,13 +263207,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The on-premises Windows authentication user name. Type: string (or Expression with resultType string).␊ */␊ userName?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239561,7 +263240,10 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ + alwaysEncryptedAkvAuthType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239573,6 +263255,8 @@ Generated by [AVA](https://avajs.dev). * Amazon Rds for SQL Server linked service properties.␊ */␊ typeProperties: (AmazonRdsForSqlServerLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239598,13 +263282,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The on-premises Windows authentication user name. Type: string (or Expression with resultType string).␊ */␊ userName?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239616,6 +263303,8 @@ Generated by [AVA](https://avajs.dev). * Azure SQL Database linked service properties.␊ */␊ typeProperties: (AzureSqlDatabaseLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239661,13 +263350,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ tenant?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239679,6 +263371,8 @@ Generated by [AVA](https://avajs.dev). * Azure SQL Managed Instance linked service properties.␊ */␊ typeProperties: (AzureSqlMILinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239724,13 +263418,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ tenant?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239742,6 +263439,8 @@ Generated by [AVA](https://avajs.dev). * Azure Batch linked service properties.␊ */␊ typeProperties: (AzureBatchLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239751,7 +263450,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The Azure Batch account name. Type: string (or Expression with resultType string).␊ */␊ @@ -239784,6 +263485,10 @@ Generated by [AVA](https://avajs.dev). poolName: {␊ [k: string]: unknown␊ }␊ + accountName: unknown␊ + batchUri: unknown␊ + linkedServiceName: unknown␊ + poolName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239795,6 +263500,8 @@ Generated by [AVA](https://avajs.dev). * Azure Key Vault linked service properties.␊ */␊ typeProperties: (AzureKeyVaultLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239811,6 +263518,7 @@ Generated by [AVA](https://avajs.dev). * Credential reference type.␊ */␊ credential?: (CredentialReference | string)␊ + baseUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239822,6 +263530,8 @@ Generated by [AVA](https://avajs.dev). * CosmosDB linked service properties.␊ */␊ typeProperties: (CosmosDbLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239837,7 +263547,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accountKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accountKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string).␊ */␊ @@ -239873,7 +263585,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalCredential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalCredential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).␊ */␊ @@ -239901,6 +263615,8 @@ Generated by [AVA](https://avajs.dev). * Dynamics linked service properties.␊ */␊ typeProperties: (DynamicsLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239944,7 +263660,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -239954,7 +263672,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalCredential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalCredential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).␊ */␊ @@ -239979,6 +263699,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + deploymentType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -239990,6 +263712,8 @@ Generated by [AVA](https://avajs.dev). * Dynamics CRM linked service properties.␊ */␊ typeProperties: (DynamicsCrmLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240029,7 +263753,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The port of on-premises Dynamics CRM server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -240039,7 +263765,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalCredential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalCredential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).␊ */␊ @@ -240064,6 +263792,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + deploymentType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240075,6 +263805,8 @@ Generated by [AVA](https://avajs.dev). * Common Data Service for Apps linked service properties.␊ */␊ typeProperties: (CommonDataServiceForAppsLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240114,7 +263846,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The port of on-premises Common Data Service for Apps server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -240124,7 +263858,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalCredential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalCredential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).␊ */␊ @@ -240149,6 +263885,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + deploymentType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240160,6 +263898,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight linked service properties.␊ */␊ typeProperties: (HDInsightLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240201,13 +263941,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * HDInsight cluster user name. Type: string (or Expression with resultType string).␊ */␊ userName?: {␊ [k: string]: unknown␊ }␊ + clusterUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240219,6 +263962,8 @@ Generated by [AVA](https://avajs.dev). * File system linked service properties.␊ */␊ typeProperties: (FileServerLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240240,13 +263985,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User ID to logon the server. Type: string (or Expression with resultType string).␊ */␊ userId?: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240258,6 +264006,8 @@ Generated by [AVA](https://avajs.dev). * Azure File Storage linked service properties.␊ */␊ typeProperties: (AzureFileStorageLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240295,7 +264045,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Azure Key Vault secret reference.␊ */␊ @@ -240329,6 +264081,8 @@ Generated by [AVA](https://avajs.dev). * Amazon S3 Compatible linked service properties.␊ */␊ typeProperties: (AmazonS3CompatibleLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240356,7 +264110,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - secretAccessKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + secretAccessKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * This value specifies the endpoint to access with the Amazon S3 Compatible Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).␊ */␊ @@ -240374,6 +264130,8 @@ Generated by [AVA](https://avajs.dev). * Oracle Cloud Storage linked service properties.␊ */␊ typeProperties: (OracleCloudStorageLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240395,7 +264153,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - secretAccessKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + secretAccessKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).␊ */␊ @@ -240413,6 +264173,8 @@ Generated by [AVA](https://avajs.dev). * Google Cloud Storage linked service properties.␊ */␊ typeProperties: (GoogleCloudStorageLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240434,7 +264196,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - secretAccessKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + secretAccessKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).␊ */␊ @@ -240452,6 +264216,8 @@ Generated by [AVA](https://avajs.dev). * Oracle database linked service properties.␊ */␊ typeProperties: (OracleLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240474,6 +264240,7 @@ Generated by [AVA](https://avajs.dev). * Azure Key Vault secret reference.␊ */␊ password?: (AzureKeyVaultSecretReference1 | string)␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240485,6 +264252,8 @@ Generated by [AVA](https://avajs.dev). * AmazonRdsForOracle database linked service properties.␊ */␊ typeProperties: (AmazonRdsForLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240506,7 +264275,10 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240518,6 +264290,8 @@ Generated by [AVA](https://avajs.dev). * Azure MySQL database linked service properties.␊ */␊ typeProperties: (AzureMySqlLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240540,6 +264314,7 @@ Generated by [AVA](https://avajs.dev). * Azure Key Vault secret reference.␊ */␊ password?: (AzureKeyVaultSecretReference1 | string)␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240551,6 +264326,8 @@ Generated by [AVA](https://avajs.dev). * MySQL linked service properties.␊ */␊ typeProperties: (MySqlLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240573,6 +264350,7 @@ Generated by [AVA](https://avajs.dev). * Azure Key Vault secret reference.␊ */␊ password?: (AzureKeyVaultSecretReference1 | string)␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240584,6 +264362,8 @@ Generated by [AVA](https://avajs.dev). * PostgreSQL linked service properties.␊ */␊ typeProperties: (PostgreSqlLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240606,6 +264386,7 @@ Generated by [AVA](https://avajs.dev). * Azure Key Vault secret reference.␊ */␊ password?: (AzureKeyVaultSecretReference1 | string)␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240617,6 +264398,8 @@ Generated by [AVA](https://avajs.dev). * Sybase linked service properties.␊ */␊ typeProperties: (SybaseLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240642,7 +264425,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Schema name for connection. Type: string (or Expression with resultType string).␊ */␊ @@ -240661,6 +264446,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + database: unknown␊ + server: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240672,6 +264459,8 @@ Generated by [AVA](https://avajs.dev). * DB2 linked service properties.␊ */␊ typeProperties: (Db2LinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240715,7 +264504,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Server name for connection. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string).␊ */␊ @@ -240739,6 +264530,8 @@ Generated by [AVA](https://avajs.dev). * Teradata linked service properties.␊ */␊ typeProperties: (TeradataLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240764,7 +264557,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Server name for connection. Type: string (or Expression with resultType string).␊ */␊ @@ -240788,6 +264583,8 @@ Generated by [AVA](https://avajs.dev). * Azure ML Studio Web Service linked service properties.␊ */␊ typeProperties: (AzureMLLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240797,7 +264594,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiKey: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + apiKey: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string).␊ */␊ @@ -240825,7 +264624,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -240838,6 +264639,8 @@ Generated by [AVA](https://avajs.dev). updateResourceEndpoint?: {␊ [k: string]: unknown␊ }␊ + apiKey: unknown␊ + mlEndpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240849,6 +264652,8 @@ Generated by [AVA](https://avajs.dev). * Azure ML Service linked service properties.␊ */␊ typeProperties: (AzureMLServiceLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240882,7 +264687,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Azure ML Service workspace subscription ID. Type: string (or Expression with resultType string).␊ */␊ @@ -240895,6 +264702,9 @@ Generated by [AVA](https://avajs.dev). tenant?: {␊ [k: string]: unknown␊ }␊ + mlWorkspaceName: unknown␊ + resourceGroupName: unknown␊ + subscriptionId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240906,6 +264716,8 @@ Generated by [AVA](https://avajs.dev). * ODBC linked service properties.␊ */␊ typeProperties: (OdbcLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240927,7 +264739,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - credential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + credential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -240937,13 +264751,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User name for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ userName?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240955,6 +264772,8 @@ Generated by [AVA](https://avajs.dev). * Informix linked service properties.␊ */␊ typeProperties: (InformixLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -240976,7 +264795,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - credential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + credential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -240986,13 +264807,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User name for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ userName?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241004,6 +264828,8 @@ Generated by [AVA](https://avajs.dev). * Microsoft Access linked service properties.␊ */␊ typeProperties: (MicrosoftAccessLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241025,7 +264851,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - credential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + credential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -241035,13 +264863,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User name for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ userName?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241053,6 +264884,8 @@ Generated by [AVA](https://avajs.dev). * HDFS linked service properties.␊ */␊ typeProperties: (HdfsLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241074,7 +264907,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).␊ */␊ @@ -241087,6 +264922,7 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241098,6 +264934,8 @@ Generated by [AVA](https://avajs.dev). * OData linked service properties.␊ */␊ typeProperties: (ODataLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241139,15 +264977,21 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalEmbeddedCert?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalEmbeddedCert?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalEmbeddedCertPassword?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalEmbeddedCertPassword?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specify the application id of your application registered in Azure Active Directory. Type: string (or Expression with resultType string).␊ */␊ @@ -241157,7 +265001,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string).␊ */␊ @@ -241176,6 +265022,7 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241187,6 +265034,8 @@ Generated by [AVA](https://avajs.dev). * Base definition of WebLinkedServiceTypeProperties, this typeProperties is polymorphic based on authenticationType, so not flattened in SDK models.␊ */␊ typeProperties: (WebLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241194,6 +265043,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface WebAnonymousAuthentication1 {␊ authenticationType: "Anonymous"␊ + authenticationType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241204,13 +265054,18 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * User name for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ username: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + password: unknown␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241221,11 +265076,18 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - pfx: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + pfx: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ + authenticationType: unknown␊ + password: unknown␊ + pfx: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241237,6 +265099,8 @@ Generated by [AVA](https://avajs.dev). * Cassandra linked service properties.␊ */␊ typeProperties: (CassandraLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241264,7 +265128,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The port for the connection. Type: integer (or Expression with resultType integer).␊ */␊ @@ -241277,6 +265143,7 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241288,6 +265155,8 @@ Generated by [AVA](https://avajs.dev). * MongoDB linked service properties.␊ */␊ typeProperties: (MongoDbLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241331,7 +265200,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -241350,6 +265221,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + databaseName: unknown␊ + server: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241361,6 +265234,8 @@ Generated by [AVA](https://avajs.dev). * MongoDB Atlas linked service properties.␊ */␊ typeProperties: (MongoDbAtlasLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241379,6 +265254,8 @@ Generated by [AVA](https://avajs.dev). database: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ + database: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241390,6 +265267,8 @@ Generated by [AVA](https://avajs.dev). * MongoDB linked service properties.␊ */␊ typeProperties: (MongoDbV2LinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241408,6 +265287,8 @@ Generated by [AVA](https://avajs.dev). database: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ + database: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241419,6 +265300,8 @@ Generated by [AVA](https://avajs.dev). * CosmosDB (MongoDB API) linked service properties.␊ */␊ typeProperties: (CosmosDbMongoDbApiLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241443,6 +265326,8 @@ Generated by [AVA](https://avajs.dev). isServerVersionAbove32?: {␊ [k: string]: unknown␊ }␊ + connectionString: unknown␊ + database: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241454,6 +265339,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Lake Store linked service properties.␊ */␊ typeProperties: (AzureDataLakeStoreLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241503,7 +265390,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).␊ */␊ @@ -241516,6 +265405,7 @@ Generated by [AVA](https://avajs.dev). tenant?: {␊ [k: string]: unknown␊ }␊ + dataLakeStoreUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241527,6 +265417,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Lake Storage Gen2 linked service properties.␊ */␊ typeProperties: (AzureBlobFSLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241558,7 +265450,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalCredential?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalCredential?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string).␊ */␊ @@ -241574,7 +265468,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -241587,6 +265483,7 @@ Generated by [AVA](https://avajs.dev). url: {␊ [k: string]: unknown␊ }␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241598,6 +265495,8 @@ Generated by [AVA](https://avajs.dev). * Office365 linked service properties.␊ */␊ typeProperties: (Office365LinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241625,13 +265524,19 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).␊ */␊ servicePrincipalTenantId: {␊ [k: string]: unknown␊ }␊ + office365TenantId: unknown␊ + servicePrincipalId: unknown␊ + servicePrincipalKey: unknown␊ + servicePrincipalTenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241643,6 +265548,8 @@ Generated by [AVA](https://avajs.dev). * Salesforce linked service properties.␊ */␊ typeProperties: (SalesforceLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241670,11 +265577,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - securityToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + securityToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).␊ */␊ @@ -241692,6 +265603,8 @@ Generated by [AVA](https://avajs.dev). * Salesforce Service Cloud linked service properties.␊ */␊ typeProperties: (SalesforceServiceCloudLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241725,11 +265638,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - securityToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + securityToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).␊ */␊ @@ -241747,6 +265664,8 @@ Generated by [AVA](https://avajs.dev). * SAP Cloud for Customer linked service properties.␊ */␊ typeProperties: (SapCloudForCustomerLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241762,7 +265681,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).␊ */␊ @@ -241775,6 +265696,7 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241786,6 +265708,8 @@ Generated by [AVA](https://avajs.dev). * SAP ECC linked service properties.␊ */␊ typeProperties: (SapEccLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241799,7 +265723,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).␊ */␊ @@ -241808,6 +265734,7 @@ Generated by [AVA](https://avajs.dev). * The username for Basic authentication. Type: string (or Expression with resultType string).␊ */␊ username?: string␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241819,6 +265746,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to SAP Business Warehouse Open Hub Destination linked service type.␊ */␊ typeProperties: (SapOpenHubLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241864,7 +265793,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP BW instance where the open hub destination is located. Type: string (or Expression with resultType string).␊ */␊ @@ -241900,6 +265831,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this linked service type.␊ */␊ typeProperties: (SapOdpLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -241945,7 +265878,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).␊ */␊ @@ -242023,6 +265958,8 @@ Generated by [AVA](https://avajs.dev). * Rest Service linked service properties.␊ */␊ typeProperties: (RestServiceLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242060,7 +265997,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Credential reference type.␊ */␊ @@ -242080,7 +266019,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The target service or resource to which the access will be requested. Type: string (or Expression with resultType string).␊ */␊ @@ -242102,7 +266043,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides.␊ */␊ @@ -242127,6 +266070,8 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242138,6 +266083,8 @@ Generated by [AVA](https://avajs.dev). * TeamDesk linked service type properties.␊ */␊ typeProperties: (TeamDeskLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242147,7 +266094,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + apiToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The authentication type to use.␊ */␊ @@ -242161,7 +266110,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The url to connect TeamDesk source. Type: string (or Expression with resultType string).␊ */␊ @@ -242174,6 +266125,8 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242185,6 +266138,8 @@ Generated by [AVA](https://avajs.dev). * Quickbase linked service type properties.␊ */␊ typeProperties: (QuickbaseLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242206,7 +266161,11 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - userToken: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + userToken: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ + url: unknown␊ + userToken: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242218,6 +266177,8 @@ Generated by [AVA](https://avajs.dev). * Smartsheet linked service type properties.␊ */␊ typeProperties: (SmartsheetLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242227,13 +266188,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiToken: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + apiToken: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ encryptedCredential?: {␊ [k: string]: unknown␊ }␊ + apiToken: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242245,6 +266209,8 @@ Generated by [AVA](https://avajs.dev). * Zendesk linked service type properties.␊ */␊ typeProperties: (ZendeskLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242254,7 +266220,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + apiToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The authentication type to use.␊ */␊ @@ -242268,7 +266236,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The url to connect Zendesk source. Type: string (or Expression with resultType string).␊ */␊ @@ -242281,6 +266251,8 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242292,6 +266264,8 @@ Generated by [AVA](https://avajs.dev). * Dataworld linked service type properties.␊ */␊ typeProperties: (DataworldLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242301,13 +266275,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiToken: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + apiToken: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ encryptedCredential?: {␊ [k: string]: unknown␊ }␊ + apiToken: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242319,6 +266296,8 @@ Generated by [AVA](https://avajs.dev). * AppFigures linked service type properties.␊ */␊ typeProperties: (AppFiguresLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242328,17 +266307,24 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientKey: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientKey: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The username of the Appfigures source.␊ */␊ userName: {␊ [k: string]: unknown␊ }␊ + clientKey: unknown␊ + password: unknown␊ + userName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242350,6 +266336,8 @@ Generated by [AVA](https://avajs.dev). * Asana linked service type properties.␊ */␊ typeProperties: (AsanaLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242359,13 +266347,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - apiToken: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + apiToken: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ encryptedCredential?: {␊ [k: string]: unknown␊ }␊ + apiToken: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242377,6 +266368,8 @@ Generated by [AVA](https://avajs.dev). * Twilio linked service type properties.␊ */␊ typeProperties: (TwilioLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242386,13 +266379,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The Account SID of Twilio service.␊ */␊ userName: {␊ [k: string]: unknown␊ }␊ + password: unknown␊ + userName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242404,6 +266401,8 @@ Generated by [AVA](https://avajs.dev). * Amazon S3 linked service properties.␊ */␊ typeProperties: (AmazonS3LinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242431,7 +266430,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - secretAccessKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + secretAccessKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string).␊ */␊ @@ -242441,7 +266442,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - sessionToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + sessionToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -242453,6 +266456,8 @@ Generated by [AVA](https://avajs.dev). * Amazon Redshift linked service properties.␊ */␊ typeProperties: (AmazonRedshiftLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242474,7 +266479,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).␊ */␊ @@ -242493,6 +266500,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + database: unknown␊ + server: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242506,6 +266515,8 @@ Generated by [AVA](https://avajs.dev). typeProperties: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242517,6 +266528,8 @@ Generated by [AVA](https://avajs.dev). * Windows Azure Search Service linked service properties.␊ */␊ typeProperties: (AzureSearchLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242532,13 +266545,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - key?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + key?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * URL for Azure Search service. Type: string (or Expression with resultType string).␊ */␊ url: {␊ [k: string]: unknown␊ }␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242550,6 +266566,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this linked service type.␊ */␊ typeProperties: (HttpLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242593,7 +266611,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string).␊ */␊ @@ -242606,6 +266626,7 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242617,6 +266638,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this linked service type.␊ */␊ typeProperties: (FtpServerLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242654,7 +266677,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -242667,6 +266692,7 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242678,6 +266704,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this linked service type.␊ */␊ typeProperties: (SftpServerLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242709,11 +266737,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - passPhrase?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + passPhrase?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.␊ */␊ @@ -242723,7 +266755,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - privateKeyContent?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + privateKeyContent?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).␊ */␊ @@ -242742,6 +266776,7 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242753,6 +266788,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this linked service type.␊ */␊ typeProperties: (SapBWLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242774,7 +266811,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP BW instance. Type: string (or Expression with resultType string).␊ */␊ @@ -242793,6 +266832,9 @@ Generated by [AVA](https://avajs.dev). userName?: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ + server: unknown␊ + systemNumber: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242804,6 +266846,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this linked service type.␊ */␊ typeProperties: (SapHanaLinkedServiceProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242829,7 +266873,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP HANA server. Type: string (or Expression with resultType string).␊ */␊ @@ -242853,6 +266899,8 @@ Generated by [AVA](https://avajs.dev). * Amazon Marketplace Web Service linked service properties.␊ */␊ typeProperties: (AmazonMWSLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242886,11 +266934,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - mwsAuthToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + mwsAuthToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - secretKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + secretKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The Amazon seller ID.␊ */␊ @@ -242915,6 +266967,10 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + accessKeyId: unknown␊ + endpoint: unknown␊ + marketplaceID: unknown␊ + sellerID: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242926,6 +266982,8 @@ Generated by [AVA](https://avajs.dev). * Azure PostgreSQL linked service properties.␊ */␊ typeProperties: (AzurePostgreSqlLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242959,6 +267017,8 @@ Generated by [AVA](https://avajs.dev). * Concur Service linked service properties.␊ */␊ typeProperties: (ConcurLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -242986,7 +267046,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -243011,6 +267073,8 @@ Generated by [AVA](https://avajs.dev). username: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243022,6 +267086,8 @@ Generated by [AVA](https://avajs.dev). * Couchbase server linked service properties.␊ */␊ typeProperties: (CouchbaseLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243055,6 +267121,8 @@ Generated by [AVA](https://avajs.dev). * Drill server linked service properties.␊ */␊ typeProperties: (DrillLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243088,6 +267156,8 @@ Generated by [AVA](https://avajs.dev). * Eloqua server linked service properties.␊ */␊ typeProperties: (EloquaLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243109,7 +267179,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -243134,6 +267206,8 @@ Generated by [AVA](https://avajs.dev). username: {␊ [k: string]: unknown␊ }␊ + endpoint: unknown␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243145,6 +267219,8 @@ Generated by [AVA](https://avajs.dev). * Google BigQuery service linked service properties.␊ */␊ typeProperties: (GoogleBigQueryLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243170,7 +267246,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR.␊ */␊ @@ -243198,7 +267276,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - refreshToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + refreshToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false.␊ */␊ @@ -243217,6 +267297,8 @@ Generated by [AVA](https://avajs.dev). useSystemTrustStore?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + project: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243228,6 +267310,8 @@ Generated by [AVA](https://avajs.dev). * Greenplum Database linked service properties.␊ */␊ typeProperties: (GreenplumLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243261,6 +267345,8 @@ Generated by [AVA](https://avajs.dev). * HBase server linked service properties.␊ */␊ typeProperties: (HBaseLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243310,7 +267396,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.␊ */␊ @@ -243329,6 +267417,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243340,6 +267430,8 @@ Generated by [AVA](https://avajs.dev). * Hive Server linked service properties.␊ */␊ typeProperties: (HiveLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243389,7 +267481,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Hive server uses to listen for client connections.␊ */␊ @@ -243440,6 +267534,8 @@ Generated by [AVA](https://avajs.dev). zooKeeperNameSpace?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243451,6 +267547,8 @@ Generated by [AVA](https://avajs.dev). * Hubspot Service linked service properties.␊ */␊ typeProperties: (HubspotLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243460,7 +267558,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The client ID associated with your Hubspot application.␊ */␊ @@ -243470,7 +267570,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -243480,7 +267582,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - refreshToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + refreshToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -243499,6 +267603,7 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243510,6 +267615,8 @@ Generated by [AVA](https://avajs.dev). * Impala server linked service properties.␊ */␊ typeProperties: (ImpalaLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243553,7 +267660,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Impala server uses to listen for client connections. The default value is 21050.␊ */␊ @@ -243578,6 +267687,8 @@ Generated by [AVA](https://avajs.dev). useSystemTrustStore?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243589,6 +267700,8 @@ Generated by [AVA](https://avajs.dev). * Jira Service linked service properties.␊ */␊ typeProperties: (JiraLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243610,7 +267723,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.␊ */␊ @@ -243641,6 +267756,8 @@ Generated by [AVA](https://avajs.dev). username: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243652,6 +267769,8 @@ Generated by [AVA](https://avajs.dev). * Magento server linked service properties.␊ */␊ typeProperties: (MagentoLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243661,7 +267780,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -243692,6 +267813,7 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243703,6 +267825,8 @@ Generated by [AVA](https://avajs.dev). * MariaDB server linked service properties.␊ */␊ typeProperties: (MariaDBLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243736,6 +267860,8 @@ Generated by [AVA](https://avajs.dev). * Azure Database for MariaDB linked service properties.␊ */␊ typeProperties: (AzureMariaDBLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243769,6 +267895,8 @@ Generated by [AVA](https://avajs.dev). * Marketo server linked service properties.␊ */␊ typeProperties: (MarketoLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243784,7 +267912,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -243815,6 +267945,8 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ + endpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243826,6 +267958,8 @@ Generated by [AVA](https://avajs.dev). * Paypal Service linked service properties.␊ */␊ typeProperties: (PaypalLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243841,7 +267975,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -243872,6 +268008,8 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243883,6 +268021,8 @@ Generated by [AVA](https://avajs.dev). * Phoenix server linked service properties.␊ */␊ typeProperties: (PhoenixLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243932,7 +268072,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Phoenix server uses to listen for client connections. The default value is 8765.␊ */␊ @@ -243957,6 +268099,8 @@ Generated by [AVA](https://avajs.dev). useSystemTrustStore?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -243968,6 +268112,8 @@ Generated by [AVA](https://avajs.dev). * Presto server linked service properties.␊ */␊ typeProperties: (PrestoLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244017,7 +268163,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Presto server uses to listen for client connections. The default value is 8080.␊ */␊ @@ -244054,6 +268202,10 @@ Generated by [AVA](https://avajs.dev). useSystemTrustStore?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + catalog: unknown␊ + host: unknown␊ + serverVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244065,6 +268217,8 @@ Generated by [AVA](https://avajs.dev). * QuickBooks server linked service properties.␊ */␊ typeProperties: (QuickBooksLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244074,11 +268228,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - accessTokenSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessTokenSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The company ID of the QuickBooks company to authorize.␊ */␊ @@ -244100,7 +268258,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - consumerSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + consumerSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -244130,6 +268290,8 @@ Generated by [AVA](https://avajs.dev). * ServiceNow server linked service properties.␊ */␊ typeProperties: (ServiceNowLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244149,7 +268311,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -244165,7 +268329,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -244190,6 +268356,8 @@ Generated by [AVA](https://avajs.dev). username?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + endpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244201,6 +268369,8 @@ Generated by [AVA](https://avajs.dev). * Shopify Service linked service properties.␊ */␊ typeProperties: (ShopifyLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244210,7 +268380,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -244241,6 +268413,7 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244252,6 +268425,8 @@ Generated by [AVA](https://avajs.dev). * Spark Server linked service properties.␊ */␊ typeProperties: (SparkLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244301,7 +268476,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The TCP port that the Spark server uses to listen for client connections.␊ */␊ @@ -244334,6 +268511,9 @@ Generated by [AVA](https://avajs.dev). useSystemTrustStore?: {␊ [k: string]: unknown␊ }␊ + authenticationType: unknown␊ + host: unknown␊ + port: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244345,6 +268525,8 @@ Generated by [AVA](https://avajs.dev). * Square Service linked service properties.␊ */␊ typeProperties: (SquareLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244360,7 +268542,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object.␊ */␊ @@ -244414,6 +268598,8 @@ Generated by [AVA](https://avajs.dev). * Xero Service linked service properties.␊ */␊ typeProperties: (XeroLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244429,7 +268615,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - consumerKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + consumerKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -244445,7 +268633,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - privateKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + privateKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.␊ */␊ @@ -244475,6 +268665,8 @@ Generated by [AVA](https://avajs.dev). * Zoho server linked service properties.␊ */␊ typeProperties: (ZohoLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244484,7 +268676,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Properties used to connect to Zoho. It is mutually exclusive with any other properties in the linked service. Type: object.␊ */␊ @@ -244532,6 +268726,8 @@ Generated by [AVA](https://avajs.dev). * Vertica linked service properties.␊ */␊ typeProperties: (VerticaLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244565,6 +268761,8 @@ Generated by [AVA](https://avajs.dev). * Netezza linked service properties.␊ */␊ typeProperties: (NetezzaLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244598,6 +268796,8 @@ Generated by [AVA](https://avajs.dev). * Salesforce Marketing Cloud linked service properties.␊ */␊ typeProperties: (SalesforceMarketingCloudLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244613,7 +268813,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Properties used to connect to Salesforce Marketing Cloud. It is mutually exclusive with any other properties in the linked service. Type: object.␊ */␊ @@ -244655,6 +268857,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight ondemand linked service properties.␊ */␊ typeProperties: (HDInsightOnDemandLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244674,7 +268878,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clusterPassword?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clusterPassword?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The resource group where the cluster belongs. Type: string (or Expression with resultType string).␊ */␊ @@ -244690,7 +268896,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clusterSshPassword?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clusterSshPassword?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).␊ */␊ @@ -244794,7 +269002,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).␊ */␊ @@ -244849,6 +269059,13 @@ Generated by [AVA](https://avajs.dev). zookeeperNodeSize?: {␊ [k: string]: unknown␊ }␊ + clusterResourceGroup: unknown␊ + clusterSize: unknown␊ + hostSubscriptionId: unknown␊ + linkedServiceName: unknown␊ + tenant: unknown␊ + timeToLive: unknown␊ + version: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244873,6 +269090,9 @@ Generated by [AVA](https://avajs.dev). * The URI for the script action.␊ */␊ uri: string␊ + name: unknown␊ + roles: unknown␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244884,6 +269104,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Lake Analytics linked service properties.␊ */␊ typeProperties: (AzureDataLakeAnalyticsLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244923,7 +269145,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).␊ */␊ @@ -244936,6 +269160,8 @@ Generated by [AVA](https://avajs.dev). tenant: {␊ [k: string]: unknown␊ }␊ + accountName: unknown␊ + tenant: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244947,6 +269173,8 @@ Generated by [AVA](https://avajs.dev). * Azure Databricks linked service properties.␊ */␊ typeProperties: (AzureDatabricksLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -244956,7 +269184,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).␊ */␊ @@ -245069,6 +269299,7 @@ Generated by [AVA](https://avajs.dev). workspaceResourceId?: {␊ [k: string]: unknown␊ }␊ + domain: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245080,6 +269311,8 @@ Generated by [AVA](https://avajs.dev). * Azure Databricks Delta Lake linked service properties.␊ */␊ typeProperties: (AzureDatabricksDetltaLakeLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245089,7 +269322,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - accessToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + accessToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).␊ */␊ @@ -245118,6 +269353,7 @@ Generated by [AVA](https://avajs.dev). workspaceResourceId?: {␊ [k: string]: unknown␊ }␊ + domain: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245129,6 +269365,8 @@ Generated by [AVA](https://avajs.dev). * Responsys linked service properties.␊ */␊ typeProperties: (ResponsysLinkedServiceTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245144,7 +269382,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).␊ */␊ @@ -245175,6 +269415,8 @@ Generated by [AVA](https://avajs.dev). usePeerVerification?: {␊ [k: string]: unknown␊ }␊ + clientId: unknown␊ + endpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245186,6 +269428,8 @@ Generated by [AVA](https://avajs.dev). * Dynamics AX linked service properties.␊ */␊ typeProperties: (DynamicsAXLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245213,7 +269457,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the top-right corner of the Azure portal. Type: string (or Expression with resultType string).␊ */␊ @@ -245226,6 +269472,11 @@ Generated by [AVA](https://avajs.dev). url: {␊ [k: string]: unknown␊ }␊ + aadResourceId: unknown␊ + servicePrincipalId: unknown␊ + servicePrincipalKey: unknown␊ + tenant: unknown␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245237,6 +269488,8 @@ Generated by [AVA](https://avajs.dev). * Oracle Service Cloud linked service properties.␊ */␊ typeProperties: (OracleServiceCloudLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245258,7 +269511,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).␊ */␊ @@ -245283,6 +269538,9 @@ Generated by [AVA](https://avajs.dev). username: {␊ [k: string]: unknown␊ }␊ + host: unknown␊ + password: unknown␊ + username: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245294,6 +269552,8 @@ Generated by [AVA](https://avajs.dev). * Google AdWords service linked service properties.␊ */␊ typeProperties: (GoogleAdWordsLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245319,7 +269579,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - clientSecret?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + clientSecret?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object.␊ */␊ @@ -245329,7 +269591,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - developerToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + developerToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR.␊ */␊ @@ -245351,7 +269615,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - refreshToken?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + refreshToken?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.␊ */␊ @@ -245375,6 +269641,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this linked service type.␊ */␊ typeProperties: (SapTableLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245420,7 +269688,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string).␊ */␊ @@ -245486,6 +269756,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Explorer (Kusto) linked service properties.␊ */␊ typeProperties: (AzureDataExplorerLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245517,13 +269789,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).␊ */␊ tenant?: {␊ [k: string]: unknown␊ }␊ + database: unknown␊ + endpoint: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245535,6 +269811,8 @@ Generated by [AVA](https://avajs.dev). * Azure Function linked service properties.␊ */␊ typeProperties: (AzureFunctionLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245566,13 +269844,16 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - functionKey?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + functionKey?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Allowed token audiences for azure function.␊ */␊ resourceId?: {␊ [k: string]: unknown␊ }␊ + functionAppUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245584,6 +269865,8 @@ Generated by [AVA](https://avajs.dev). * Snowflake linked service properties.␊ */␊ typeProperties: (SnowflakeLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245606,6 +269889,7 @@ Generated by [AVA](https://avajs.dev). * Azure Key Vault secret reference.␊ */␊ password?: (AzureKeyVaultSecretReference1 | string)␊ + connectionString: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245617,6 +269901,8 @@ Generated by [AVA](https://avajs.dev). * SharePoint Online List linked service properties.␊ */␊ typeProperties: (SharePointOnlineListLinkedServiceTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245638,7 +269924,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - servicePrincipalKey: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + servicePrincipalKey: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The URL of the SharePoint Online site. For example, https://contoso.sharepoint.com/sites/siteName. Type: string (or Expression with resultType string).␊ */␊ @@ -245651,6 +269939,10 @@ Generated by [AVA](https://avajs.dev). tenantId: {␊ [k: string]: unknown␊ }␊ + servicePrincipalId: unknown␊ + servicePrincipalKey: unknown␊ + siteUrl: unknown␊ + tenantId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245667,6 +269959,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (Dataset1 | string)␊ type: "datasets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245688,6 +269984,8 @@ Generated by [AVA](https://avajs.dev). * Amazon S3 dataset properties.␊ */␊ typeProperties: (AmazonS3DatasetTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245738,6 +270036,7 @@ Generated by [AVA](https://avajs.dev). version?: {␊ [k: string]: unknown␊ }␊ + bucketName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245764,6 +270063,7 @@ Generated by [AVA](https://avajs.dev). type: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245825,6 +270125,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "TextFormat"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245862,6 +270163,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "JsonFormat"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245869,6 +270171,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AvroFormat {␊ type: "AvroFormat"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245876,6 +270179,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface OrcFormat {␊ type: "OrcFormat"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245883,6 +270187,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface ParquetFormat {␊ type: "ParquetFormat"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245894,6 +270199,7 @@ Generated by [AVA](https://avajs.dev). * Avro dataset properties.␊ */␊ typeProperties?: (AvroDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245911,6 +270217,7 @@ Generated by [AVA](https://avajs.dev). * Dataset location.␊ */␊ location: (DatasetLocation | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245924,6 +270231,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureBlobStorageLocation"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245937,6 +270245,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureBlobFSLocation"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245944,6 +270253,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AzureDataLakeStoreLocation {␊ type: "AzureDataLakeStoreLocation"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245963,6 +270273,7 @@ Generated by [AVA](https://avajs.dev). version?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245970,6 +270281,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface FileServerLocation {␊ type: "FileServerLocation"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245977,6 +270289,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AzureFileStorageLocation {␊ type: "AzureFileStorageLocation"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -245996,6 +270309,7 @@ Generated by [AVA](https://avajs.dev). version?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246015,6 +270329,7 @@ Generated by [AVA](https://avajs.dev). version?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246034,6 +270349,7 @@ Generated by [AVA](https://avajs.dev). version?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246041,6 +270357,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface FtpServerLocation {␊ type: "FtpServerLocation"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246048,6 +270365,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface SftpLocation {␊ type: "SftpLocation"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246061,6 +270379,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "HttpServerLocation"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246068,6 +270387,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface HdfsLocation {␊ type: "HdfsLocation"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246079,6 +270399,7 @@ Generated by [AVA](https://avajs.dev). * Excel dataset properties.␊ */␊ typeProperties?: (ExcelDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246098,7 +270419,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The null value string. Type: string (or Expression with resultType string).␊ */␊ @@ -246123,6 +270466,7 @@ Generated by [AVA](https://avajs.dev). sheetName?: {␊ [k: string]: unknown␊ }␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246134,6 +270478,7 @@ Generated by [AVA](https://avajs.dev). * Parquet dataset properties.␊ */␊ typeProperties?: (ParquetDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246149,7 +270494,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246161,6 +270529,7 @@ Generated by [AVA](https://avajs.dev). * DelimitedText dataset properties.␊ */␊ typeProperties?: (DelimitedTextDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246206,7 +270575,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The null value string. Type: string (or Expression with resultType string).␊ */␊ @@ -246225,6 +270616,7 @@ Generated by [AVA](https://avajs.dev). rowDelimiter?: {␊ [k: string]: unknown␊ }␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246236,6 +270628,7 @@ Generated by [AVA](https://avajs.dev). * Json dataset properties.␊ */␊ typeProperties?: (JsonDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246255,7 +270648,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246267,6 +270683,7 @@ Generated by [AVA](https://avajs.dev). * Xml dataset properties.␊ */␊ typeProperties?: (XmlDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246286,13 +270703,36 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The null value string. Type: string (or Expression with resultType string).␊ */␊ nullValue?: {␊ [k: string]: unknown␊ }␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246304,6 +270744,7 @@ Generated by [AVA](https://avajs.dev). * ORC dataset properties.␊ */␊ typeProperties?: (OrcDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246313,13 +270754,36 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The data orcCompressionCodec. Type: string (or Expression with resultType string).␊ */␊ orcCompressionCodec?: {␊ [k: string]: unknown␊ }␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246331,6 +270795,7 @@ Generated by [AVA](https://avajs.dev). * Binary dataset properties.␊ */␊ typeProperties?: (BinaryDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246344,7 +270809,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * Dataset location.␊ */␊ - location: ((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) | string)␊ + location: (((AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Specify the file name of dataset. Type: string (or Expression with resultType string).␊ + */␊ + fileName?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Specify the folder path of dataset. Type: string (or Expression with resultType string)␊ + */␊ + folderPath?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246356,6 +270844,7 @@ Generated by [AVA](https://avajs.dev). * Azure Blob dataset properties.␊ */␊ typeProperties?: (AzureBlobDatasetTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246381,7 +270870,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * The format definition of a storage.␊ */␊ - format?: ((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) | string)␊ + format?: (((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Deserializer. Type: string (or Expression with resultType string).␊ + */␊ + deserializer?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Serializer. Type: string (or Expression with resultType string).␊ + */␊ + serializer?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).␊ */␊ @@ -246411,6 +270922,8 @@ Generated by [AVA](https://avajs.dev). * Azure Table dataset properties.␊ */␊ typeProperties: (AzureTableDatasetTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246423,6 +270936,7 @@ Generated by [AVA](https://avajs.dev). tableName: {␊ [k: string]: unknown␊ }␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246434,6 +270948,7 @@ Generated by [AVA](https://avajs.dev). * Azure SQL dataset properties.␊ */␊ typeProperties?: (AzureSqlTableDatasetTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246469,6 +270984,7 @@ Generated by [AVA](https://avajs.dev). * Azure SQL Managed Instance dataset properties.␊ */␊ typeProperties?: (AzureSqlMITableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246504,6 +271020,7 @@ Generated by [AVA](https://avajs.dev). * Azure SQL Data Warehouse dataset properties.␊ */␊ typeProperties?: (AzureSqlDWTableDatasetTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246539,6 +271056,7 @@ Generated by [AVA](https://avajs.dev). * Cassandra dataset properties.␊ */␊ typeProperties?: (CassandraTableDatasetTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246570,6 +271088,7 @@ Generated by [AVA](https://avajs.dev). typeProperties?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246581,6 +271100,8 @@ Generated by [AVA](https://avajs.dev). * CosmosDB (SQL API) Collection dataset properties.␊ */␊ typeProperties: (CosmosDbSqlApiCollectionDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246593,6 +271114,7 @@ Generated by [AVA](https://avajs.dev). collectionName: {␊ [k: string]: unknown␊ }␊ + collectionName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246604,6 +271126,8 @@ Generated by [AVA](https://avajs.dev). * DocumentDB Collection dataset properties.␊ */␊ typeProperties: (DocumentDbCollectionDatasetTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246616,6 +271140,7 @@ Generated by [AVA](https://avajs.dev). collectionName: {␊ [k: string]: unknown␊ }␊ + collectionName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246627,6 +271152,7 @@ Generated by [AVA](https://avajs.dev). * Dynamics entity dataset properties.␊ */␊ typeProperties?: (DynamicsEntityDatasetTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246650,6 +271176,7 @@ Generated by [AVA](https://avajs.dev). * Dynamics CRM entity dataset properties.␊ */␊ typeProperties?: (DynamicsCrmEntityDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246673,6 +271200,7 @@ Generated by [AVA](https://avajs.dev). * Common Data Service for Apps entity dataset properties.␊ */␊ typeProperties?: (CommonDataServiceForAppsEntityDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246696,6 +271224,7 @@ Generated by [AVA](https://avajs.dev). * Azure Data Lake Store dataset properties.␊ */␊ typeProperties?: (AzureDataLakeStoreDatasetTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246721,7 +271250,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * The format definition of a storage.␊ */␊ - format?: ((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) | string)␊ + format?: (((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Deserializer. Type: string (or Expression with resultType string).␊ + */␊ + deserializer?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Serializer. Type: string (or Expression with resultType string).␊ + */␊ + serializer?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -246733,6 +271284,7 @@ Generated by [AVA](https://avajs.dev). * Azure Data Lake Storage Gen2 dataset properties.␊ */␊ typeProperties?: (AzureBlobFSDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246758,7 +271310,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * The format definition of a storage.␊ */␊ - format?: ((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) | string)␊ + format?: (((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Deserializer. Type: string (or Expression with resultType string).␊ + */␊ + deserializer?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Serializer. Type: string (or Expression with resultType string).␊ + */␊ + serializer?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -246770,6 +271344,8 @@ Generated by [AVA](https://avajs.dev). * Office365 dataset properties.␊ */␊ typeProperties: (Office365DatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246788,6 +271364,7 @@ Generated by [AVA](https://avajs.dev). tableName: {␊ [k: string]: unknown␊ }␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246799,6 +271376,7 @@ Generated by [AVA](https://avajs.dev). * On-premises file system dataset properties.␊ */␊ typeProperties?: (FileShareDatasetTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246830,7 +271408,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * The format definition of a storage.␊ */␊ - format?: ((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) | string)␊ + format?: (((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Deserializer. Type: string (or Expression with resultType string).␊ + */␊ + deserializer?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Serializer. Type: string (or Expression with resultType string).␊ + */␊ + serializer?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The end of file's modified datetime. Type: string (or Expression with resultType string).␊ */␊ @@ -246854,6 +271454,8 @@ Generated by [AVA](https://avajs.dev). * MongoDB database dataset properties.␊ */␊ typeProperties: (MongoDbCollectionDatasetTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246866,6 +271468,7 @@ Generated by [AVA](https://avajs.dev). collectionName: {␊ [k: string]: unknown␊ }␊ + collectionName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246877,6 +271480,8 @@ Generated by [AVA](https://avajs.dev). * MongoDB Atlas database dataset properties.␊ */␊ typeProperties: (MongoDbAtlasCollectionDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246889,6 +271494,7 @@ Generated by [AVA](https://avajs.dev). collection: {␊ [k: string]: unknown␊ }␊ + collection: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246900,6 +271506,8 @@ Generated by [AVA](https://avajs.dev). * MongoDB database dataset properties.␊ */␊ typeProperties: (MongoDbV2CollectionDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246912,6 +271520,7 @@ Generated by [AVA](https://avajs.dev). collection: {␊ [k: string]: unknown␊ }␊ + collection: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246923,6 +271532,8 @@ Generated by [AVA](https://avajs.dev). * CosmosDB (MongoDB API) database dataset properties.␊ */␊ typeProperties: (CosmosDbMongoDbApiCollectionDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246935,6 +271546,7 @@ Generated by [AVA](https://avajs.dev). collection: {␊ [k: string]: unknown␊ }␊ + collection: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246946,6 +271558,7 @@ Generated by [AVA](https://avajs.dev). * OData dataset properties.␊ */␊ typeProperties?: (ODataResourceDatasetTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -246969,6 +271582,7 @@ Generated by [AVA](https://avajs.dev). * On-premises Oracle dataset properties.␊ */␊ typeProperties?: (OracleTableDatasetTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247004,6 +271618,7 @@ Generated by [AVA](https://avajs.dev). * AmazonRdsForOracle dataset properties.␊ */␊ typeProperties?: (AmazonRdsForOracleTableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247033,6 +271648,7 @@ Generated by [AVA](https://avajs.dev). * Teradata dataset properties.␊ */␊ typeProperties?: (TeradataTableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247062,6 +271678,8 @@ Generated by [AVA](https://avajs.dev). * Azure MySQL database dataset properties.␊ */␊ typeProperties: (AzureMySqlTableDatasetTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247091,6 +271709,7 @@ Generated by [AVA](https://avajs.dev). * Amazon Redshift table dataset properties.␊ */␊ typeProperties?: (AmazonRedshiftTableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247126,6 +271745,7 @@ Generated by [AVA](https://avajs.dev). * Db2 table dataset properties.␊ */␊ typeProperties?: (Db2TableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247161,6 +271781,7 @@ Generated by [AVA](https://avajs.dev). * Relational table dataset properties.␊ */␊ typeProperties?: (RelationalTableDatasetTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247184,6 +271805,7 @@ Generated by [AVA](https://avajs.dev). * Informix table dataset properties.␊ */␊ typeProperties?: (InformixTableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247207,6 +271829,7 @@ Generated by [AVA](https://avajs.dev). * ODBC table dataset properties.␊ */␊ typeProperties?: (OdbcTableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247230,6 +271853,7 @@ Generated by [AVA](https://avajs.dev). * MySql table dataset properties.␊ */␊ typeProperties?: (MySqlTableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247253,6 +271877,7 @@ Generated by [AVA](https://avajs.dev). * PostgreSQL table dataset properties.␊ */␊ typeProperties?: (PostgreSqlTableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247288,6 +271913,7 @@ Generated by [AVA](https://avajs.dev). * Microsoft Access table dataset properties.␊ */␊ typeProperties?: (MicrosoftAccessTableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247311,6 +271937,7 @@ Generated by [AVA](https://avajs.dev). * Salesforce object dataset properties.␊ */␊ typeProperties?: (SalesforceObjectDatasetTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247334,6 +271961,7 @@ Generated by [AVA](https://avajs.dev). * Salesforce Service Cloud object dataset properties.␊ */␊ typeProperties?: (SalesforceServiceCloudObjectDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247357,6 +271985,7 @@ Generated by [AVA](https://avajs.dev). * Sybase table dataset properties.␊ */␊ typeProperties?: (SybaseTableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247376,6 +272005,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface SapBwCubeDataset {␊ type: "SapBwCube"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247387,6 +272017,8 @@ Generated by [AVA](https://avajs.dev). * Sap Cloud For Customer OData resource dataset properties.␊ */␊ typeProperties: (SapCloudForCustomerResourceDatasetTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247399,6 +272031,7 @@ Generated by [AVA](https://avajs.dev). path: {␊ [k: string]: unknown␊ }␊ + path: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247410,6 +272043,8 @@ Generated by [AVA](https://avajs.dev). * Sap ECC OData resource dataset properties.␊ */␊ typeProperties: (SapEccResourceDatasetTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247422,6 +272057,7 @@ Generated by [AVA](https://avajs.dev). path: {␊ [k: string]: unknown␊ }␊ + path: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247433,6 +272069,7 @@ Generated by [AVA](https://avajs.dev). * SAP HANA Table properties.␊ */␊ typeProperties?: (SapHanaTableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247462,6 +272099,8 @@ Generated by [AVA](https://avajs.dev). * Sap Business Warehouse Open Hub Destination Table properties.␊ */␊ typeProperties: (SapOpenHubTableDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247486,6 +272125,7 @@ Generated by [AVA](https://avajs.dev). openHubDestinationName: {␊ [k: string]: unknown␊ }␊ + openHubDestinationName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247497,6 +272137,7 @@ Generated by [AVA](https://avajs.dev). * On-premises SQL Server dataset properties.␊ */␊ typeProperties?: (SqlServerTableDatasetTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247532,6 +272173,7 @@ Generated by [AVA](https://avajs.dev). * The Amazon RDS for SQL Server dataset properties.␊ */␊ typeProperties?: (AmazonRdsForSqlServerTableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247561,6 +272203,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (RestResourceDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247608,6 +272251,8 @@ Generated by [AVA](https://avajs.dev). * SAP Table Resource properties.␊ */␊ typeProperties: (SapTableResourceDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247620,6 +272265,7 @@ Generated by [AVA](https://avajs.dev). tableName: {␊ [k: string]: unknown␊ }␊ + tableName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247631,6 +272277,8 @@ Generated by [AVA](https://avajs.dev). * SAP ODP Resource properties.␊ */␊ typeProperties: (SapOdpResourceDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247649,6 +272297,8 @@ Generated by [AVA](https://avajs.dev). objectName: {␊ [k: string]: unknown␊ }␊ + context: unknown␊ + objectName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247660,6 +272310,8 @@ Generated by [AVA](https://avajs.dev). * Web table dataset properties.␊ */␊ typeProperties: (WebTableDatasetTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247678,6 +272330,7 @@ Generated by [AVA](https://avajs.dev). path?: {␊ [k: string]: unknown␊ }␊ + index: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247689,6 +272342,8 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties: (AzureSearchIndexDatasetTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247701,6 +272356,7 @@ Generated by [AVA](https://avajs.dev). indexName: {␊ [k: string]: unknown␊ }␊ + indexName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247712,6 +272368,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (HttpDatasetTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247733,7 +272390,29 @@ Generated by [AVA](https://avajs.dev). /**␊ * The format definition of a storage.␊ */␊ - format?: ((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) | string)␊ + format?: (((TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Deserializer. Type: string (or Expression with resultType string).␊ + */␊ + deserializer?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Serializer. Type: string (or Expression with resultType string).␊ + */␊ + serializer?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).␊ */␊ @@ -247763,6 +272442,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247786,6 +272466,7 @@ Generated by [AVA](https://avajs.dev). * Azure PostgreSQL dataset properties.␊ */␊ typeProperties?: (AzurePostgreSqlTableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247821,6 +272502,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247832,6 +272514,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247843,6 +272526,7 @@ Generated by [AVA](https://avajs.dev). * Drill Dataset Properties␊ */␊ typeProperties?: (DrillDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247878,6 +272562,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247889,6 +272574,7 @@ Generated by [AVA](https://avajs.dev). * Google BigQuery Dataset Properties␊ */␊ typeProperties?: (GoogleBigQueryDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247924,6 +272610,7 @@ Generated by [AVA](https://avajs.dev). * Greenplum Dataset Properties␊ */␊ typeProperties?: (GreenplumDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247959,6 +272646,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -247970,6 +272658,7 @@ Generated by [AVA](https://avajs.dev). * Hive Properties␊ */␊ typeProperties?: (HiveDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248005,6 +272694,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248016,6 +272706,7 @@ Generated by [AVA](https://avajs.dev). * Impala Dataset Properties␊ */␊ typeProperties?: (ImpalaDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248051,6 +272742,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248062,6 +272754,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248073,6 +272766,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248084,6 +272778,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248095,6 +272790,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248106,6 +272802,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248117,6 +272814,7 @@ Generated by [AVA](https://avajs.dev). * Phoenix Dataset Properties␊ */␊ typeProperties?: (PhoenixDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248152,6 +272850,7 @@ Generated by [AVA](https://avajs.dev). * Presto Dataset Properties␊ */␊ typeProperties?: (PrestoDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248187,6 +272886,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248198,6 +272898,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248209,6 +272910,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248220,6 +272922,7 @@ Generated by [AVA](https://avajs.dev). * Spark Properties␊ */␊ typeProperties?: (SparkDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248255,6 +272958,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248266,6 +272970,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248277,6 +272982,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248288,6 +272994,7 @@ Generated by [AVA](https://avajs.dev). * Netezza dataset properties.␊ */␊ typeProperties?: (NetezzaTableDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248323,6 +273030,7 @@ Generated by [AVA](https://avajs.dev). * Vertica Properties␊ */␊ typeProperties?: (VerticaDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248358,6 +273066,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248369,6 +273078,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248380,6 +273090,8 @@ Generated by [AVA](https://avajs.dev). * Dynamics AX OData resource dataset properties.␊ */␊ typeProperties: (DynamicsAXResourceDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248392,6 +273104,7 @@ Generated by [AVA](https://avajs.dev). path: {␊ [k: string]: unknown␊ }␊ + path: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248403,6 +273116,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248414,6 +273128,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Explorer (Kusto) dataset properties.␊ */␊ typeProperties: (AzureDataExplorerDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248437,6 +273153,7 @@ Generated by [AVA](https://avajs.dev). * Properties specific to this dataset type.␊ */␊ typeProperties?: (GenericDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248448,6 +273165,8 @@ Generated by [AVA](https://avajs.dev). * Snowflake dataset properties.␊ */␊ typeProperties: (SnowflakeDatasetTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248477,6 +273196,7 @@ Generated by [AVA](https://avajs.dev). * Sharepoint online list dataset properties.␊ */␊ typeProperties?: (SharePointOnlineListDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248500,6 +273220,7 @@ Generated by [AVA](https://avajs.dev). * Azure Databricks Delta Lake Dataset Properties␊ */␊ typeProperties?: (AzureDatabricksDeltaLakeDatasetTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248534,6 +273255,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (Pipeline1 | string)␊ type: "pipelines"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248608,6 +273333,8 @@ Generated by [AVA](https://avajs.dev). * Match-Condition for the dependency.␊ */␊ dependencyConditions: (("Succeeded" | "Failed" | "Skipped" | "Completed")[] | string)␊ + activity: unknown␊ + dependencyConditions: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248624,6 +273351,8 @@ Generated by [AVA](https://avajs.dev). value: {␊ [k: string]: unknown␊ }␊ + name: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248639,6 +273368,8 @@ Generated by [AVA](https://avajs.dev). * Execute pipeline activity properties.␊ */␊ typeProperties: (ExecutePipelineActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248679,6 +273410,7 @@ Generated by [AVA](https://avajs.dev). * Defines whether activity execution will wait for the dependent pipeline execution to finish. Default is false.␊ */␊ waitOnCompletion?: (boolean | string)␊ + pipeline: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248697,6 +273429,8 @@ Generated by [AVA](https://avajs.dev). * Pipeline reference type.␊ */␊ type: ("PipelineReference" | string)␊ + referenceName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248708,6 +273442,8 @@ Generated by [AVA](https://avajs.dev). * IfCondition activity properties.␊ */␊ typeProperties: (IfConditionActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248721,11 +273457,66 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute if expression is evaluated to false. This is an optional property and if not provided, the activity will exit without any action.␊ */␊ - ifFalseActivities?: ((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity)[] | string)␊ + ifFalseActivities?: (((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency1[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + /**␊ + * Activity user properties.␊ + */␊ + userProperties?: (UserProperty[] | string)␊ + name: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * List of activities to execute if expression is evaluated to true. This is an optional property and if not provided, the activity will exit without any action.␊ */␊ - ifTrueActivities?: ((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity)[] | string)␊ + ifTrueActivities?: (((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency1[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + /**␊ + * Activity user properties.␊ + */␊ + userProperties?: (UserProperty[] | string)␊ + name: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ + expression: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248740,6 +273531,8 @@ Generated by [AVA](https://avajs.dev). * Expression value.␊ */␊ value: string␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248751,6 +273544,8 @@ Generated by [AVA](https://avajs.dev). * Switch activity properties.␊ */␊ typeProperties: (SwitchActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248764,11 +273559,39 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute if no case condition is satisfied. This is an optional property and if not provided, the activity will exit without any action.␊ */␊ - defaultActivities?: ((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity)[] | string)␊ + defaultActivities?: (((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency1[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + /**␊ + * Activity user properties.␊ + */␊ + userProperties?: (UserProperty[] | string)␊ + name: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * Azure Data Factory expression definition.␊ */␊ on: (Expression1 | string)␊ + on: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248778,7 +273601,34 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute for satisfied case condition.␊ */␊ - activities?: ((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity)[] | string)␊ + activities?: (((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency1[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + /**␊ + * Activity user properties.␊ + */␊ + userProperties?: (UserProperty[] | string)␊ + name: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * Expected value that satisfies the expression result of the 'on' property.␊ */␊ @@ -248794,6 +273644,8 @@ Generated by [AVA](https://avajs.dev). * ForEach activity properties.␊ */␊ typeProperties: (ForEachActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248803,7 +273655,34 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute .␊ */␊ - activities: ((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity)[] | string)␊ + activities: (((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency1[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + /**␊ + * Activity user properties.␊ + */␊ + userProperties?: (UserProperty[] | string)␊ + name: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * Batch count to be used for controlling the number of parallel execution (when isSequential is set to false).␊ */␊ @@ -248816,6 +273695,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Factory expression definition.␊ */␊ items: (Expression1 | string)␊ + activities: unknown␊ + items: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248827,6 +273708,8 @@ Generated by [AVA](https://avajs.dev). * Wait activity properties.␊ */␊ typeProperties: (WaitActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248839,6 +273722,7 @@ Generated by [AVA](https://avajs.dev). waitTimeInSeconds: {␊ [k: string]: unknown␊ }␊ + waitTimeInSeconds: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248850,6 +273734,8 @@ Generated by [AVA](https://avajs.dev). * Fail activity properties.␊ */␊ typeProperties: (FailActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248868,6 +273754,8 @@ Generated by [AVA](https://avajs.dev). message: {␊ [k: string]: unknown␊ }␊ + errorCode: unknown␊ + message: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248879,6 +273767,8 @@ Generated by [AVA](https://avajs.dev). * Until activity properties.␊ */␊ typeProperties: (UntilActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248888,7 +273778,34 @@ Generated by [AVA](https://avajs.dev). /**␊ * List of activities to execute.␊ */␊ - activities: ((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity)[] | string)␊ + activities: (((ControlActivity1 | ExecutionActivity1 | ExecuteWranglingDataflowActivity) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Activity depends on condition.␊ + */␊ + dependsOn?: (ActivityDependency1[] | string)␊ + /**␊ + * Activity description.␊ + */␊ + description?: string␊ + /**␊ + * Activity name.␊ + */␊ + name: string␊ + /**␊ + * Activity user properties.␊ + */␊ + userProperties?: (UserProperty[] | string)␊ + name: unknown␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * Azure Data Factory expression definition.␊ */␊ @@ -248899,6 +273816,8 @@ Generated by [AVA](https://avajs.dev). timeout?: {␊ [k: string]: unknown␊ }␊ + activities: unknown␊ + expression: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248910,6 +273829,8 @@ Generated by [AVA](https://avajs.dev). * Validation activity properties.␊ */␊ typeProperties: (ValidationActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248944,6 +273865,7 @@ Generated by [AVA](https://avajs.dev). timeout?: {␊ [k: string]: unknown␊ }␊ + dataset: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248966,6 +273888,8 @@ Generated by [AVA](https://avajs.dev). * Dataset reference type.␊ */␊ type: ("DatasetReference" | string)␊ + referenceName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248977,6 +273901,8 @@ Generated by [AVA](https://avajs.dev). * Filter activity properties.␊ */␊ typeProperties: (FilterActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -248991,6 +273917,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Factory expression definition.␊ */␊ items: (Expression1 | string)␊ + condition: unknown␊ + items: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249002,6 +273930,8 @@ Generated by [AVA](https://avajs.dev). * SetVariable activity properties.␊ */␊ typeProperties: (SetVariableActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249029,6 +273959,8 @@ Generated by [AVA](https://avajs.dev). * AppendVariable activity properties.␊ */␊ typeProperties: (AppendVariableActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249056,6 +273988,8 @@ Generated by [AVA](https://avajs.dev). * WebHook activity type properties.␊ */␊ typeProperties: (WebHookActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249098,6 +274032,8 @@ Generated by [AVA](https://avajs.dev). url: {␊ [k: string]: unknown␊ }␊ + method: unknown␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249111,11 +274047,15 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * The base definition of a secret type.␊ */␊ - pfx?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + pfx?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Resource for which Azure Auth token will be requested when using MSI Authentication. Type: string (or Expression with resultType string).␊ */␊ @@ -249195,6 +274135,8 @@ Generated by [AVA](https://avajs.dev). * Copy activity properties.␊ */␊ typeProperties: (CopyActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249277,6 +274219,8 @@ Generated by [AVA](https://avajs.dev). validateDataConsistency?: {␊ [k: string]: unknown␊ }␊ + sink: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249297,6 +274241,7 @@ Generated by [AVA](https://avajs.dev). * Log location settings.␊ */␊ logLocationSettings: (LogLocationSettings | string)␊ + logLocationSettings: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249331,6 +274276,7 @@ Generated by [AVA](https://avajs.dev). path?: {␊ [k: string]: unknown␊ }␊ + linkedServiceName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249367,6 +274313,7 @@ Generated by [AVA](https://avajs.dev). path?: {␊ [k: string]: unknown␊ }␊ + linkedServiceName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249393,6 +274340,7 @@ Generated by [AVA](https://avajs.dev). path?: {␊ [k: string]: unknown␊ }␊ + linkedServiceName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249408,6 +274356,7 @@ Generated by [AVA](https://avajs.dev). */␊ storeSettings?: (StoreWriteSettings | string)␊ type: "DelimitedTextSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249446,6 +274395,7 @@ Generated by [AVA](https://avajs.dev). quoteAllText?: {␊ [k: string]: unknown␊ }␊ + fileExtension: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249465,6 +274415,7 @@ Generated by [AVA](https://avajs.dev). useTempFileRename?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249478,6 +274429,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureBlobStorageWriteSettings"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249491,6 +274443,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureBlobFSWriteSettings"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249504,6 +274457,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureDataLakeStoreWriteSettings"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249511,6 +274465,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface FileServerWriteSettings {␊ type: "FileServerWriteSettings"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249518,6 +274473,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AzureFileStorageWriteSettings {␊ type: "AzureFileStorageWriteSettings"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249531,8 +274487,37 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector write settings.␊ */␊ - storeSettings?: ((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) | string)␊ + storeSettings?: (((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * The type of copy behavior for copy sink.␊ + */␊ + copyBehavior?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "JsonSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249566,8 +274551,37 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector write settings.␊ */␊ - storeSettings?: ((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) | string)␊ + storeSettings?: (((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * The type of copy behavior for copy sink.␊ + */␊ + copyBehavior?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "OrcSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249631,6 +274645,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "RestSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249644,6 +274659,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzurePostgreSqlSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249657,6 +274673,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureMySqlSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249674,6 +274691,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureDatabricksDeltaLakeSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249717,6 +274735,7 @@ Generated by [AVA](https://avajs.dev). * The write behavior for the operation. Default is 'Insert'.␊ */␊ writeBehavior?: (("Insert" | "Update") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249724,6 +274743,7 @@ Generated by [AVA](https://avajs.dev). */␊ export interface AzureQueueSink {␊ type: "AzureQueueSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249755,6 +274775,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureTableSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249768,8 +274789,37 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector write settings.␊ */␊ - storeSettings?: ((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) | string)␊ + storeSettings?: (((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * The type of copy behavior for copy sink.␊ + */␊ + copyBehavior?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "AvroSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249817,8 +274867,37 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector write settings.␊ */␊ - storeSettings?: ((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) | string)␊ + storeSettings?: (((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * The type of copy behavior for copy sink.␊ + */␊ + copyBehavior?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "ParquetSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249854,8 +274933,37 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector write settings.␊ */␊ - storeSettings?: ((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) | string)␊ + storeSettings?: (((SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * The type of copy behavior for copy sink.␊ + */␊ + copyBehavior?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "BinarySink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249891,6 +274999,7 @@ Generated by [AVA](https://avajs.dev). */␊ metadata?: (MetadataItem1[] | string)␊ type: "BlobSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249922,6 +275031,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "FileSystemSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249941,6 +275051,7 @@ Generated by [AVA](https://avajs.dev). writeBehavior?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -249954,6 +275065,7 @@ Generated by [AVA](https://avajs.dev). writeBehavior?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250013,6 +275125,7 @@ Generated by [AVA](https://avajs.dev). writeBehavior?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250112,6 +275225,7 @@ Generated by [AVA](https://avajs.dev). writeBehavior?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250171,6 +275285,7 @@ Generated by [AVA](https://avajs.dev). writeBehavior?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250230,6 +275345,7 @@ Generated by [AVA](https://avajs.dev). writeBehavior?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250285,6 +275401,7 @@ Generated by [AVA](https://avajs.dev). writeBehavior?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250390,6 +275507,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SnowflakeSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250433,6 +275551,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "OracleSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250452,6 +275571,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureDataLakeStoreSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250469,6 +275589,7 @@ Generated by [AVA](https://avajs.dev). */␊ metadata?: (MetadataItem1[] | string)␊ type: "AzureBlobFSSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250480,6 +275601,7 @@ Generated by [AVA](https://avajs.dev). * Specify the write behavior when upserting documents into Azure Search Index.␊ */␊ writeBehavior?: (("Merge" | "Upload") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250493,6 +275615,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "OdbcSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250506,6 +275629,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "InformixSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250519,6 +275643,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "MicrosoftAccessSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250542,6 +275667,8 @@ Generated by [AVA](https://avajs.dev). * The write behavior for the operation.␊ */␊ writeBehavior: ("Upsert" | string)␊ + type: unknown␊ + writeBehavior: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250565,6 +275692,8 @@ Generated by [AVA](https://avajs.dev). * The write behavior for the operation.␊ */␊ writeBehavior: ("Upsert" | string)␊ + type: unknown␊ + writeBehavior: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250588,6 +275717,8 @@ Generated by [AVA](https://avajs.dev). * The write behavior for the operation.␊ */␊ writeBehavior: ("Upsert" | string)␊ + type: unknown␊ + writeBehavior: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250613,6 +275744,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureDataExplorerSink"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250636,6 +275768,7 @@ Generated by [AVA](https://avajs.dev). * The write behavior for the operation. Default is Insert.␊ */␊ writeBehavior?: (("Insert" | "Upsert") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250659,6 +275792,7 @@ Generated by [AVA](https://avajs.dev). * The write behavior for the operation. Default is Insert.␊ */␊ writeBehavior?: (("Insert" | "Upsert") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250672,6 +275806,7 @@ Generated by [AVA](https://avajs.dev). writeBehavior?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250685,6 +275820,7 @@ Generated by [AVA](https://avajs.dev). writeBehavior?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250698,6 +275834,7 @@ Generated by [AVA](https://avajs.dev). writeBehavior?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250733,6 +275870,7 @@ Generated by [AVA](https://avajs.dev). */␊ storeSettings?: (StoreReadSettings | string)␊ type: "AvroSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250798,6 +275936,7 @@ Generated by [AVA](https://avajs.dev). wildcardFolderPath?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250857,6 +275996,7 @@ Generated by [AVA](https://avajs.dev). wildcardFolderPath?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250928,6 +276068,7 @@ Generated by [AVA](https://avajs.dev). wildcardFolderPath?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -250993,6 +276134,7 @@ Generated by [AVA](https://avajs.dev). wildcardFolderPath?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251058,6 +276200,7 @@ Generated by [AVA](https://avajs.dev). wildcardFolderPath?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251123,6 +276266,7 @@ Generated by [AVA](https://avajs.dev). wildcardFolderPath?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251188,6 +276332,7 @@ Generated by [AVA](https://avajs.dev). wildcardFolderPath?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251253,6 +276398,7 @@ Generated by [AVA](https://avajs.dev). wildcardFolderPath?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251318,6 +276464,7 @@ Generated by [AVA](https://avajs.dev). wildcardFolderPath?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251375,6 +276522,7 @@ Generated by [AVA](https://avajs.dev). wildcardFolderPath?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251440,6 +276588,7 @@ Generated by [AVA](https://avajs.dev). wildcardFolderPath?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251481,6 +276630,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "HttpReadSettings"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251544,6 +276694,7 @@ Generated by [AVA](https://avajs.dev). wildcardFolderPath?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251568,6 +276719,8 @@ Generated by [AVA](https://avajs.dev). tempScriptPath: {␊ [k: string]: unknown␊ }␊ + resourceManagerEndpoint: unknown␊ + tempScriptPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251583,8 +276736,31 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "ExcelSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251600,8 +276776,31 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "ParquetSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251621,8 +276820,31 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "DelimitedTextSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251648,6 +276870,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "DelimitedTextReadSettings"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251661,6 +276884,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "ZipDeflateReadSettings"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251674,6 +276898,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "TarReadSettings"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251687,6 +276912,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "TarGZipReadSettings"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251706,8 +276932,31 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "JsonSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251725,8 +276974,19 @@ Generated by [AVA](https://avajs.dev). /**␊ * Compression read settings.␊ */␊ - compressionProperties?: ((ZipDeflateReadSettings | TarReadSettings | TarGZipReadSettings) | string)␊ + compressionProperties?: (((ZipDeflateReadSettings | TarReadSettings | TarGZipReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "JsonReadSettings"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251746,8 +277006,31 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "XmlSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251765,7 +277048,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * Compression read settings.␊ */␊ - compressionProperties?: ((ZipDeflateReadSettings | TarReadSettings | TarGZipReadSettings) | string)␊ + compressionProperties?: (((ZipDeflateReadSettings | TarReadSettings | TarGZipReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * Indicates whether type detection is enabled when reading the xml files. Type: boolean (or Expression with resultType boolean).␊ */␊ @@ -251791,6 +277084,7 @@ Generated by [AVA](https://avajs.dev). validationMode?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251806,8 +277100,31 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "OrcSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251821,8 +277138,31 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ type: "BinarySource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251840,8 +277180,19 @@ Generated by [AVA](https://avajs.dev). /**␊ * Compression read settings.␊ */␊ - compressionProperties?: ((ZipDeflateReadSettings | TarReadSettings | TarGZipReadSettings) | string)␊ + compressionProperties?: (((ZipDeflateReadSettings | TarReadSettings | TarGZipReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "BinaryReadSettings"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251861,6 +277212,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureTableSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251874,6 +277226,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "InformixSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251887,6 +277240,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "Db2Source"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251900,6 +277254,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "OdbcSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251913,6 +277268,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "MySqlSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251926,6 +277282,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "PostgreSqlSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251939,6 +277296,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SybaseSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251952,6 +277310,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SapBwSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251969,6 +277328,7 @@ Generated by [AVA](https://avajs.dev). */␊ readBehavior?: (("Query" | "QueryAll") | string)␊ type: "SalesforceSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -251988,6 +277348,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SapCloudForCustomerSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252007,6 +277368,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SapEccSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252036,6 +277398,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SapHanaSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252079,6 +277442,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SapOpenHubSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252110,6 +277474,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SapOdpSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252169,6 +277534,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SapTableSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252240,6 +277606,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: StoredProcedureParameter1␊ } | string)␊ type: "SqlSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252305,6 +277672,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: StoredProcedureParameter1␊ } | string)␊ type: "SqlServerSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252346,6 +277714,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: StoredProcedureParameter1␊ } | string)␊ type: "AmazonRdsForSqlServerSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252387,6 +277756,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: StoredProcedureParameter1␊ } | string)␊ type: "AzureSqlSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252428,6 +277798,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: StoredProcedureParameter1␊ } | string)␊ type: "SqlMISource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252463,6 +277834,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SqlDWSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252476,6 +277848,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureMySqlSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252499,6 +277872,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "TeradataSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252540,6 +277914,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "CassandraSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252553,6 +277928,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AmazonMWSSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252566,6 +277942,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzurePostgreSqlSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252579,6 +277956,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "ConcurSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252592,6 +277970,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "CouchbaseSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252605,6 +277984,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "DrillSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252618,6 +277998,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "EloquaSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252631,6 +278012,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "GoogleBigQuerySource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252644,6 +278026,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "GreenplumSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252657,6 +278040,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "HBaseSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252670,6 +278054,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "HiveSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252683,6 +278068,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "HubspotSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252696,6 +278082,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "ImpalaSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252709,6 +278096,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "JiraSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252722,6 +278110,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "MagentoSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252735,6 +278124,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "MariaDBSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252748,6 +278138,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureMariaDBSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252761,6 +278152,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "MarketoSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252774,6 +278166,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "PaypalSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252787,6 +278180,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "PhoenixSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252800,6 +278194,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "PrestoSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252813,6 +278208,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "QuickBooksSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252826,6 +278222,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "ServiceNowSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252839,6 +278236,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "ShopifySource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252852,6 +278250,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SparkSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252865,6 +278264,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SquareSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252878,6 +278278,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "XeroSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252891,6 +278292,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "ZohoSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252914,6 +278316,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "NetezzaSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252951,6 +278354,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "VerticaSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252964,6 +278368,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SalesforceMarketingCloudSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252977,6 +278382,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "ResponsysSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -252996,6 +278402,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "DynamicsAXSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253009,6 +278416,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "OracleServiceCloudSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253022,6 +278430,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "GoogleAdWordsSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253039,6 +278448,7 @@ Generated by [AVA](https://avajs.dev). */␊ redshiftUnloadSettings?: (RedshiftUnloadSettings | string)␊ type: "AmazonRedshiftSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253055,6 +278465,8 @@ Generated by [AVA](https://avajs.dev). * Linked service reference type.␊ */␊ s3LinkedServiceName: (LinkedServiceReference1 | string)␊ + bucketName: unknown␊ + s3LinkedServiceName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253080,6 +278492,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "BlobSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253111,6 +278524,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "DocumentDbCollectionSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253148,6 +278562,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "CosmosDbSqlApiSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253167,6 +278582,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "DynamicsSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253186,6 +278602,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "DynamicsCrmSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253205,6 +278622,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "CommonDataServiceForAppsSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253224,6 +278642,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "RelationalSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253243,6 +278662,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "MicrosoftAccessSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253268,6 +278688,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "ODataSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253291,6 +278712,7 @@ Generated by [AVA](https://avajs.dev). */␊ readBehavior?: (("Query" | "QueryAll") | string)␊ type: "SalesforceServiceCloudSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253340,6 +278762,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "RestSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253359,6 +278782,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "FileSystemSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253376,6 +278800,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "HdfsSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253407,6 +278832,8 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureDataExplorerSource"␊ + query: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253442,6 +278869,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "OracleSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253507,6 +278935,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AmazonRdsForOracleSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253550,6 +278979,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "WebSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253569,6 +278999,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "MongoDbSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253604,6 +279035,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "MongoDbAtlasSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253677,6 +279109,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "MongoDbV2Source"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253712,6 +279145,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "CosmosDbMongoDbApiSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253755,6 +279189,7 @@ Generated by [AVA](https://avajs.dev). userScopeFilterUri?: {␊ [k: string]: unknown␊ }␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253768,6 +279203,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureDataLakeStoreSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253793,6 +279229,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureBlobFSSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253806,6 +279243,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "HttpSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253823,6 +279261,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SnowflakeSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253870,6 +279309,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "AzureDatabricksDeltaLakeSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253915,6 +279355,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ type: "SharePointOnlineListSource"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253945,6 +279386,7 @@ Generated by [AVA](https://avajs.dev). path?: {␊ [k: string]: unknown␊ }␊ + linkedServiceName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -253956,6 +279398,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight Hive activity properties.␊ */␊ typeProperties: (HDInsightHiveActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254015,6 +279459,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight Pig activity properties.␊ */␊ typeProperties: (HDInsightPigActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254064,6 +279510,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight MapReduce activity properties.␊ */␊ typeProperties: (HDInsightMapReduceActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254114,6 +279562,8 @@ Generated by [AVA](https://avajs.dev). * Storage linked service references.␊ */␊ storageLinkedServices?: (LinkedServiceReference1[] | string)␊ + className: unknown␊ + jarFilePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254125,6 +279575,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight streaming activity properties.␊ */␊ typeProperties: (HDInsightStreamingActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254199,6 +279651,11 @@ Generated by [AVA](https://avajs.dev). * Storage linked service references.␊ */␊ storageLinkedServices?: (LinkedServiceReference1[] | string)␊ + filePaths: unknown␊ + input: unknown␊ + mapper: unknown␊ + output: unknown␊ + reducer: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254210,6 +279667,8 @@ Generated by [AVA](https://avajs.dev). * HDInsight spark activity properties.␊ */␊ typeProperties: (HDInsightSparkActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254260,6 +279719,8 @@ Generated by [AVA](https://avajs.dev). * Linked service reference type.␊ */␊ sparkJobLinkedService?: (LinkedServiceReference1 | string)␊ + entryFilePath: unknown␊ + rootPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254271,6 +279732,8 @@ Generated by [AVA](https://avajs.dev). * Execute SSIS package activity properties.␊ */␊ typeProperties: (ExecuteSSISPackageActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254345,6 +279808,8 @@ Generated by [AVA](https://avajs.dev). runtime?: {␊ [k: string]: unknown␊ }␊ + connectVia: unknown␊ + packageLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254367,6 +279832,9 @@ Generated by [AVA](https://avajs.dev). userName: {␊ [k: string]: unknown␊ }␊ + domain: unknown␊ + password: unknown␊ + userName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254387,6 +279855,9 @@ Generated by [AVA](https://avajs.dev). * SSIS package execution log location properties.␊ */␊ typeProperties: (SSISLogLocationTypeProperties1 | string)␊ + logPath: unknown␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254418,13 +279889,18 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - password: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + password: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ /**␊ * UseName for windows authentication.␊ */␊ userName: {␊ [k: string]: unknown␊ }␊ + domain: unknown␊ + password: unknown␊ + userName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254437,6 +279913,7 @@ Generated by [AVA](https://avajs.dev). value: {␊ [k: string]: unknown␊ }␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254498,7 +279975,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - packagePassword?: ((SecureString1 | AzureKeyVaultSecretReference1) | string)␊ + packagePassword?: (((SecureString1 | AzureKeyVaultSecretReference1) & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -254525,6 +280004,8 @@ Generated by [AVA](https://avajs.dev). packagePath: {␊ [k: string]: unknown␊ }␊ + packageContent: unknown␊ + packagePath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254541,6 +280022,7 @@ Generated by [AVA](https://avajs.dev). value: {␊ [k: string]: unknown␊ }␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254552,6 +280034,8 @@ Generated by [AVA](https://avajs.dev). * Custom activity properties.␊ */␊ typeProperties: (CustomActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254598,6 +280082,7 @@ Generated by [AVA](https://avajs.dev). retentionTimeInDays?: {␊ [k: string]: unknown␊ }␊ + command: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254623,6 +280108,8 @@ Generated by [AVA](https://avajs.dev). * SQL stored procedure activity properties.␊ */␊ typeProperties: (SqlServerStoredProcedureActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254641,6 +280128,7 @@ Generated by [AVA](https://avajs.dev). storedProcedureParameters?: {␊ [k: string]: unknown␊ }␊ + storedProcedureName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254652,6 +280140,8 @@ Generated by [AVA](https://avajs.dev). * Delete activity properties.␊ */␊ typeProperties: (DeleteActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254685,7 +280175,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ + dataset: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254697,6 +280210,8 @@ Generated by [AVA](https://avajs.dev). * Azure Data Explorer command activity properties.␊ */␊ typeProperties: (AzureDataExplorerCommandActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254715,6 +280230,7 @@ Generated by [AVA](https://avajs.dev). commandTimeout?: {␊ [k: string]: unknown␊ }␊ + command: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254726,6 +280242,8 @@ Generated by [AVA](https://avajs.dev). * Lookup activity properties.␊ */␊ typeProperties: (LookupActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254745,7 +280263,43 @@ Generated by [AVA](https://avajs.dev). /**␊ * A copy activity source.␊ */␊ - source: ((AvroSource | ExcelSource | ParquetSource | DelimitedTextSource | JsonSource | XmlSource | OrcSource | BinarySource | TabularSource | BlobSource | DocumentDbCollectionSource | CosmosDbSqlApiSource | DynamicsSource | DynamicsCrmSource | CommonDataServiceForAppsSource | RelationalSource | MicrosoftAccessSource | ODataSource | SalesforceServiceCloudSource | RestSource | FileSystemSource | HdfsSource | AzureDataExplorerSource | OracleSource | AmazonRdsForOracleSource | WebSource | MongoDbSource | MongoDbAtlasSource | MongoDbV2Source | CosmosDbMongoDbApiSource | Office365Source | AzureDataLakeStoreSource | AzureBlobFSSource | HttpSource | SnowflakeSource | AzureDatabricksDeltaLakeSource | SharePointOnlineListSource) | string)␊ + source: (((AvroSource | ExcelSource | ParquetSource | DelimitedTextSource | JsonSource | XmlSource | OrcSource | BinarySource | TabularSource | BlobSource | DocumentDbCollectionSource | CosmosDbSqlApiSource | DynamicsSource | DynamicsCrmSource | CommonDataServiceForAppsSource | RelationalSource | MicrosoftAccessSource | ODataSource | SalesforceServiceCloudSource | RestSource | FileSystemSource | HdfsSource | AzureDataExplorerSource | OracleSource | AmazonRdsForOracleSource | WebSource | MongoDbSource | MongoDbAtlasSource | MongoDbV2Source | CosmosDbMongoDbApiSource | Office365Source | AzureDataLakeStoreSource | AzureBlobFSSource | HttpSource | SnowflakeSource | AzureDatabricksDeltaLakeSource | SharePointOnlineListSource) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Source retry count. Type: integer (or Expression with resultType integer).␊ + */␊ + sourceRetryCount?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Source retry wait. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9])).␊ + */␊ + sourceRetryWait?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ + dataset: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254757,6 +280311,8 @@ Generated by [AVA](https://avajs.dev). * Web activity type properties.␊ */␊ typeProperties: (WebActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254805,6 +280361,8 @@ Generated by [AVA](https://avajs.dev). url: {␊ [k: string]: unknown␊ }␊ + method: unknown␊ + url: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254816,6 +280374,8 @@ Generated by [AVA](https://avajs.dev). * GetMetadata activity properties.␊ */␊ typeProperties: (GetMetadataActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254839,7 +280399,30 @@ Generated by [AVA](https://avajs.dev). /**␊ * Connector read setting.␊ */␊ - storeSettings?: ((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) | string)␊ + storeSettings?: (((AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).␊ + */␊ + disableMetricsCollection?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).␊ + */␊ + maxConcurrentConnections?: {␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + }) | string)␊ + dataset: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254851,6 +280434,8 @@ Generated by [AVA](https://avajs.dev). * Azure ML Batch Execution activity properties.␊ */␊ typeProperties: (AzureMLBatchExecutionActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254893,6 +280478,8 @@ Generated by [AVA](https://avajs.dev). * Linked service reference type.␊ */␊ linkedServiceName: (LinkedServiceReference1 | string)␊ + filePath: unknown␊ + linkedServiceName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254904,6 +280491,8 @@ Generated by [AVA](https://avajs.dev). * Azure ML Update Resource activity properties.␊ */␊ typeProperties: (AzureMLUpdateResourceActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254926,6 +280515,9 @@ Generated by [AVA](https://avajs.dev). trainedModelName: {␊ [k: string]: unknown␊ }␊ + trainedModelFilePath: unknown␊ + trainedModelLinkedServiceName: unknown␊ + trainedModelName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -254937,6 +280529,8 @@ Generated by [AVA](https://avajs.dev). * Azure ML Execute Pipeline activity properties.␊ */␊ typeProperties: (AzureMLExecutePipelineActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255002,6 +280596,8 @@ Generated by [AVA](https://avajs.dev). * DataLakeAnalyticsU-SQL activity properties.␊ */␊ typeProperties: (DataLakeAnalyticsUSQLActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255050,6 +280646,8 @@ Generated by [AVA](https://avajs.dev). scriptPath: {␊ [k: string]: unknown␊ }␊ + scriptLinkedService: unknown␊ + scriptPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255061,6 +280659,8 @@ Generated by [AVA](https://avajs.dev). * Databricks Notebook activity properties.␊ */␊ typeProperties: (DatabricksNotebookActivityTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255089,6 +280689,7 @@ Generated by [AVA](https://avajs.dev). notebookPath: {␊ [k: string]: unknown␊ }␊ + notebookPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255100,6 +280701,8 @@ Generated by [AVA](https://avajs.dev). * Databricks SparkJar activity properties.␊ */␊ typeProperties: (DatabricksSparkJarActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255126,6 +280729,7 @@ Generated by [AVA](https://avajs.dev). parameters?: ({␊ [k: string]: unknown␊ }[] | string)␊ + mainClassName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255137,6 +280741,8 @@ Generated by [AVA](https://avajs.dev). * Databricks SparkPython activity properties.␊ */␊ typeProperties: (DatabricksSparkPythonActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255163,6 +280769,7 @@ Generated by [AVA](https://avajs.dev). pythonFile: {␊ [k: string]: unknown␊ }␊ + pythonFile: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255174,6 +280781,8 @@ Generated by [AVA](https://avajs.dev). * Azure Function activity type properties.␊ */␊ typeProperties: (AzureFunctionActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255202,6 +280811,8 @@ Generated by [AVA](https://avajs.dev). * Rest API method for target endpoint.␊ */␊ method: (("GET" | "POST" | "PUT" | "DELETE" | "OPTIONS" | "HEAD" | "TRACE") | string)␊ + functionName: unknown␊ + method: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255213,6 +280824,8 @@ Generated by [AVA](https://avajs.dev). * Execute data flow activity properties.␊ */␊ typeProperties: (ExecuteDataFlowActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255259,6 +280872,7 @@ Generated by [AVA](https://avajs.dev). traceLevel?: {␊ [k: string]: unknown␊ }␊ + dataFlow: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255313,6 +280927,8 @@ Generated by [AVA](https://avajs.dev). * Data flow reference type.␊ */␊ type: ("DataFlowReference" | string)␊ + referenceName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255340,6 +280956,8 @@ Generated by [AVA](https://avajs.dev). * Script activity properties.␊ */␊ typeProperties: (ScriptActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255368,6 +280986,7 @@ Generated by [AVA](https://avajs.dev). * Log location settings.␊ */␊ logLocationSettings?: (LogLocationSettings | string)␊ + logDestination: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255388,6 +281007,8 @@ Generated by [AVA](https://avajs.dev). * The type of the query. Type: string.␊ */␊ type: (("Query" | "NonQuery") | string)␊ + text: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255433,6 +281054,8 @@ Generated by [AVA](https://avajs.dev). * Execute power query data flow activity properties.␊ */␊ typeProperties: (ExecutePowerQueryActivityTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255489,6 +281112,7 @@ Generated by [AVA](https://avajs.dev). traceLevel?: {␊ [k: string]: unknown␊ }␊ + dataFlow: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255541,6 +281165,7 @@ Generated by [AVA](https://avajs.dev). * sink script.␊ */␊ script?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255589,6 +281214,7 @@ Generated by [AVA](https://avajs.dev). * Variable type.␊ */␊ type: (("String" | "Bool" | "Array") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255605,6 +281231,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (Trigger1 | string)␊ type: "triggers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255634,6 +281264,8 @@ Generated by [AVA](https://avajs.dev). * Schedule Trigger properties.␊ */␊ typeProperties: (ScheduleTriggerTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255644,6 +281276,7 @@ Generated by [AVA](https://avajs.dev). * The workflow trigger recurrence.␊ */␊ recurrence: (ScheduleTriggerRecurrence | string)␊ + recurrence: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255749,6 +281382,8 @@ Generated by [AVA](https://avajs.dev). * Blob Trigger properties.␊ */␊ typeProperties: (BlobTriggerTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255767,6 +281402,9 @@ Generated by [AVA](https://avajs.dev). * The max number of parallel files to handle when it is triggered.␊ */␊ maxConcurrency: (number | string)␊ + folderPath: unknown␊ + linkedService: unknown␊ + maxConcurrency: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255778,6 +281416,8 @@ Generated by [AVA](https://avajs.dev). * Blob Events Trigger properties.␊ */␊ typeProperties: (BlobEventsTriggerTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255804,6 +281444,8 @@ Generated by [AVA](https://avajs.dev). * The ARM resource ID of the Storage Account.␊ */␊ scope: string␊ + events: unknown␊ + scope: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255815,6 +281457,8 @@ Generated by [AVA](https://avajs.dev). * Custom Events Trigger properties.␊ */␊ typeProperties: (CustomEventsTriggerTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255839,6 +281483,8 @@ Generated by [AVA](https://avajs.dev). * The event subject must end with the pattern provided for trigger to fire. At least one of these must be provided: subjectBeginsWith, subjectEndsWith.␊ */␊ subjectEndsWith?: string␊ + events: unknown␊ + scope: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255854,6 +281500,9 @@ Generated by [AVA](https://avajs.dev). * Tumbling Window Trigger properties.␊ */␊ typeProperties: (TumblingWindowTriggerTypeProperties | string)␊ + pipeline: unknown␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255894,6 +281543,10 @@ Generated by [AVA](https://avajs.dev). * The start time for the time period for the trigger during which events are fired for windows that are ready. Only UTC time is currently supported.␊ */␊ startTime: string␊ + frequency: unknown␊ + interval: unknown␊ + maxConcurrency: unknown␊ + startTime: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255908,6 +281561,8 @@ Generated by [AVA](https://avajs.dev). * Trigger reference type.␊ */␊ type: ("TriggerReference" | string)␊ + referenceName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255923,6 +281578,7 @@ Generated by [AVA](https://avajs.dev). */␊ size?: (string | string)␊ type: "TumblingWindowTriggerDependencyReference"␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255938,6 +281594,8 @@ Generated by [AVA](https://avajs.dev). */␊ size?: (string | string)␊ type: "SelfDependencyTumblingWindowTriggerReference"␊ + offset: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255965,6 +281623,8 @@ Generated by [AVA](https://avajs.dev). * Rerun Trigger properties.␊ */␊ typeProperties: (RerunTumblingWindowTriggerTypeProperties | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -255989,6 +281649,10 @@ Generated by [AVA](https://avajs.dev). * The max number of parallel time windows (ready for execution) for which a rerun is triggered.␊ */␊ rerunConcurrency: (number | string)␊ + parentTrigger: unknown␊ + requestedEndTime: unknown␊ + requestedStartTime: unknown␊ + rerunConcurrency: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256004,6 +281668,9 @@ Generated by [AVA](https://avajs.dev). * Chaining Trigger properties.␊ */␊ typeProperties: (ChainingTriggerTypeProperties | string)␊ + pipeline: unknown␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256018,6 +281685,8 @@ Generated by [AVA](https://avajs.dev). * Run Dimension property that needs to be emitted by upstream pipelines.␊ */␊ runDimension: string␊ + dependsOn: unknown␊ + runDimension: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256034,6 +281703,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DataFlow | string)␊ type: "dataflows"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256055,6 +281728,7 @@ Generated by [AVA](https://avajs.dev). * Mapping data flow type properties.␊ */␊ typeProperties?: (MappingDataFlowTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256115,6 +281789,7 @@ Generated by [AVA](https://avajs.dev). * Linked service reference type.␊ */␊ schemaLinkedService?: (LinkedServiceReference1 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256145,6 +281820,7 @@ Generated by [AVA](https://avajs.dev). * Linked service reference type.␊ */␊ schemaLinkedService?: (LinkedServiceReference1 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256171,6 +281847,7 @@ Generated by [AVA](https://avajs.dev). * Transformation name.␊ */␊ name: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256182,6 +281859,7 @@ Generated by [AVA](https://avajs.dev). * Flowlet type properties.␊ */␊ typeProperties?: (FlowletTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256219,6 +281897,7 @@ Generated by [AVA](https://avajs.dev). * Power Query data flow type properties.␊ */␊ typeProperties?: (PowerQueryTypeProperties | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256271,6 +281950,7 @@ Generated by [AVA](https://avajs.dev). * source script.␊ */␊ script?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256287,6 +281967,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagedVirtualNetwork | string)␊ type: "managedVirtualNetworks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256317,6 +282001,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkConnectionApprovalRequest | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256377,6 +282065,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: GlobalParameterSpecification␊ } | string)␊ type: "globalParameters"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256391,8 +282083,28 @@ Generated by [AVA](https://avajs.dev). /**␊ * Azure Data Factory nested object which contains a flow with data movements and transformations.␊ */␊ - properties: ((MappingDataFlow | Flowlet | WranglingDataFlow) | string)␊ + properties: (((MappingDataFlow | Flowlet | WranglingDataFlow) & {␊ + /**␊ + * List of tags that can be used for describing the data flow.␊ + */␊ + annotations?: ({␊ + [k: string]: unknown␊ + }[] | string)␊ + /**␊ + * The description of the data flow.␊ + */␊ + description?: string␊ + /**␊ + * The folder that this data flow is in. If not specified, Data flow will appear at the root level.␊ + */␊ + folder?: (DataFlowFolder | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/dataflows"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256407,8 +282119,59 @@ Generated by [AVA](https://avajs.dev). /**␊ * The Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents.␊ */␊ - properties: ((AmazonS3Dataset1 | AvroDataset | ExcelDataset | ParquetDataset | DelimitedTextDataset | JsonDataset | XmlDataset | OrcDataset | BinaryDataset | AzureBlobDataset1 | AzureTableDataset1 | AzureSqlTableDataset1 | AzureSqlMITableDataset | AzureSqlDWTableDataset1 | CassandraTableDataset1 | CustomDataset | CosmosDbSqlApiCollectionDataset | DocumentDbCollectionDataset1 | DynamicsEntityDataset1 | DynamicsCrmEntityDataset | CommonDataServiceForAppsEntityDataset | AzureDataLakeStoreDataset1 | AzureBlobFSDataset | Office365Dataset | FileShareDataset1 | MongoDbCollectionDataset1 | MongoDbAtlasCollectionDataset | MongoDbV2CollectionDataset | CosmosDbMongoDbApiCollectionDataset | ODataResourceDataset1 | OracleTableDataset1 | AmazonRdsForOracleTableDataset | TeradataTableDataset | AzureMySqlTableDataset1 | AmazonRedshiftTableDataset | Db2TableDataset | RelationalTableDataset1 | InformixTableDataset | OdbcTableDataset | MySqlTableDataset | PostgreSqlTableDataset | MicrosoftAccessTableDataset | SalesforceObjectDataset1 | SalesforceServiceCloudObjectDataset | SybaseTableDataset | SapBwCubeDataset | SapCloudForCustomerResourceDataset1 | SapEccResourceDataset1 | SapHanaTableDataset | SapOpenHubTableDataset | SqlServerTableDataset1 | AmazonRdsForSqlServerTableDataset | RestResourceDataset | SapTableResourceDataset | SapOdpResourceDataset | WebTableDataset1 | AzureSearchIndexDataset1 | HttpDataset1 | AmazonMWSObjectDataset1 | AzurePostgreSqlTableDataset1 | ConcurObjectDataset1 | CouchbaseTableDataset1 | DrillTableDataset1 | EloquaObjectDataset1 | GoogleBigQueryObjectDataset1 | GreenplumTableDataset1 | HBaseObjectDataset1 | HiveObjectDataset1 | HubspotObjectDataset1 | ImpalaObjectDataset1 | JiraObjectDataset1 | MagentoObjectDataset1 | MariaDBTableDataset1 | AzureMariaDBTableDataset | MarketoObjectDataset1 | PaypalObjectDataset1 | PhoenixObjectDataset1 | PrestoObjectDataset1 | QuickBooksObjectDataset1 | ServiceNowObjectDataset1 | ShopifyObjectDataset1 | SparkObjectDataset1 | SquareObjectDataset1 | XeroObjectDataset1 | ZohoObjectDataset1 | NetezzaTableDataset1 | VerticaTableDataset1 | SalesforceMarketingCloudObjectDataset1 | ResponsysObjectDataset1 | DynamicsAXResourceDataset | OracleServiceCloudObjectDataset | AzureDataExplorerTableDataset | GoogleAdWordsObjectDataset | SnowflakeDataset | SharePointOnlineListResourceDataset | AzureDatabricksDeltaLakeDataset) | string)␊ + properties: (((AmazonS3Dataset1 | AvroDataset | ExcelDataset | ParquetDataset | DelimitedTextDataset | JsonDataset | XmlDataset | OrcDataset | BinaryDataset | AzureBlobDataset1 | AzureTableDataset1 | AzureSqlTableDataset1 | AzureSqlMITableDataset | AzureSqlDWTableDataset1 | CassandraTableDataset1 | CustomDataset | CosmosDbSqlApiCollectionDataset | DocumentDbCollectionDataset1 | DynamicsEntityDataset1 | DynamicsCrmEntityDataset | CommonDataServiceForAppsEntityDataset | AzureDataLakeStoreDataset1 | AzureBlobFSDataset | Office365Dataset | FileShareDataset1 | MongoDbCollectionDataset1 | MongoDbAtlasCollectionDataset | MongoDbV2CollectionDataset | CosmosDbMongoDbApiCollectionDataset | ODataResourceDataset1 | OracleTableDataset1 | AmazonRdsForOracleTableDataset | TeradataTableDataset | AzureMySqlTableDataset1 | AmazonRedshiftTableDataset | Db2TableDataset | RelationalTableDataset1 | InformixTableDataset | OdbcTableDataset | MySqlTableDataset | PostgreSqlTableDataset | MicrosoftAccessTableDataset | SalesforceObjectDataset1 | SalesforceServiceCloudObjectDataset | SybaseTableDataset | SapBwCubeDataset | SapCloudForCustomerResourceDataset1 | SapEccResourceDataset1 | SapHanaTableDataset | SapOpenHubTableDataset | SqlServerTableDataset1 | AmazonRdsForSqlServerTableDataset | RestResourceDataset | SapTableResourceDataset | SapOdpResourceDataset | WebTableDataset1 | AzureSearchIndexDataset1 | HttpDataset1 | AmazonMWSObjectDataset1 | AzurePostgreSqlTableDataset1 | ConcurObjectDataset1 | CouchbaseTableDataset1 | DrillTableDataset1 | EloquaObjectDataset1 | GoogleBigQueryObjectDataset1 | GreenplumTableDataset1 | HBaseObjectDataset1 | HiveObjectDataset1 | HubspotObjectDataset1 | ImpalaObjectDataset1 | JiraObjectDataset1 | MagentoObjectDataset1 | MariaDBTableDataset1 | AzureMariaDBTableDataset | MarketoObjectDataset1 | PaypalObjectDataset1 | PhoenixObjectDataset1 | PrestoObjectDataset1 | QuickBooksObjectDataset1 | ServiceNowObjectDataset1 | ShopifyObjectDataset1 | SparkObjectDataset1 | SquareObjectDataset1 | XeroObjectDataset1 | ZohoObjectDataset1 | NetezzaTableDataset1 | VerticaTableDataset1 | SalesforceMarketingCloudObjectDataset1 | ResponsysObjectDataset1 | DynamicsAXResourceDataset | OracleServiceCloudObjectDataset | AzureDataExplorerTableDataset | GoogleAdWordsObjectDataset | SnowflakeDataset | SharePointOnlineListResourceDataset | AzureDatabricksDeltaLakeDataset) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * List of tags that can be used for describing the Dataset.␊ + */␊ + annotations?: ({␊ + [k: string]: unknown␊ + }[] | string)␊ + /**␊ + * Dataset description.␊ + */␊ + description?: string␊ + /**␊ + * The folder that this Dataset is in. If not specified, Dataset will appear at the root level.␊ + */␊ + folder?: (DatasetFolder | string)␊ + /**␊ + * Linked service reference type.␊ + */␊ + linkedServiceName: (LinkedServiceReference1 | string)␊ + /**␊ + * Definition of all parameters for an entity.␊ + */␊ + parameters?: ({␊ + [k: string]: ParameterSpecification1␊ + } | string)␊ + /**␊ + * Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.␊ + */␊ + schema?: {␊ + [k: string]: unknown␊ + }␊ + /**␊ + * Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.␊ + */␊ + structure?: {␊ + [k: string]: unknown␊ + }␊ + linkedServiceName: unknown␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/datasets"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256423,8 +282186,26 @@ Generated by [AVA](https://avajs.dev). /**␊ * Azure Data Factory nested object which serves as a compute resource for activities.␊ */␊ - properties: ((ManagedIntegrationRuntime1 | SelfHostedIntegrationRuntime1) | string)␊ + properties: (((ManagedIntegrationRuntime1 | SelfHostedIntegrationRuntime1) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * Integration runtime description.␊ + */␊ + description?: string␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/integrationRuntimes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256439,8 +282220,42 @@ Generated by [AVA](https://avajs.dev). /**␊ * The nested object which contains the information and credential which can be used to connect with related store or compute resource.␊ */␊ - properties: ((AzureStorageLinkedService1 | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService1 | SqlServerLinkedService1 | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService1 | AzureSqlMILinkedService | AzureBatchLinkedService1 | AzureKeyVaultLinkedService1 | CosmosDbLinkedService1 | DynamicsLinkedService1 | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService1 | FileServerLinkedService1 | AzureFileStorageLinkedService | AmazonS3CompatibleLinkedService | OracleCloudStorageLinkedService | GoogleCloudStorageLinkedService | OracleLinkedService1 | AmazonRdsForOracleLinkedService | AzureMySqlLinkedService1 | MySqlLinkedService1 | PostgreSqlLinkedService1 | SybaseLinkedService1 | Db2LinkedService1 | TeradataLinkedService1 | AzureMLLinkedService1 | AzureMLServiceLinkedService | OdbcLinkedService1 | InformixLinkedService | MicrosoftAccessLinkedService | HdfsLinkedService1 | ODataLinkedService1 | WebLinkedService1 | CassandraLinkedService1 | MongoDbLinkedService1 | MongoDbAtlasLinkedService | MongoDbV2LinkedService | CosmosDbMongoDbApiLinkedService | AzureDataLakeStoreLinkedService1 | AzureBlobFSLinkedService | Office365LinkedService | SalesforceLinkedService1 | SalesforceServiceCloudLinkedService | SapCloudForCustomerLinkedService1 | SapEccLinkedService1 | SapOpenHubLinkedService | SapOdpLinkedService | RestServiceLinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | DataworldLinkedService | AppFiguresLinkedService | AsanaLinkedService | TwilioLinkedService | AmazonS3LinkedService1 | AmazonRedshiftLinkedService1 | CustomDataSourceLinkedService1 | AzureSearchLinkedService1 | HttpLinkedService1 | FtpServerLinkedService1 | SftpServerLinkedService1 | SapBWLinkedService1 | SapHanaLinkedService1 | AmazonMWSLinkedService1 | AzurePostgreSqlLinkedService1 | ConcurLinkedService1 | CouchbaseLinkedService1 | DrillLinkedService1 | EloquaLinkedService1 | GoogleBigQueryLinkedService1 | GreenplumLinkedService1 | HBaseLinkedService1 | HiveLinkedService1 | HubspotLinkedService1 | ImpalaLinkedService1 | JiraLinkedService1 | MagentoLinkedService1 | MariaDBLinkedService1 | AzureMariaDBLinkedService | MarketoLinkedService1 | PaypalLinkedService1 | PhoenixLinkedService1 | PrestoLinkedService1 | QuickBooksLinkedService1 | ServiceNowLinkedService1 | ShopifyLinkedService1 | SparkLinkedService1 | SquareLinkedService1 | XeroLinkedService1 | ZohoLinkedService1 | VerticaLinkedService1 | NetezzaLinkedService1 | SalesforceMarketingCloudLinkedService1 | HDInsightOnDemandLinkedService1 | AzureDataLakeAnalyticsLinkedService1 | AzureDatabricksLinkedService1 | AzureDatabricksDeltaLakeLinkedService | ResponsysLinkedService1 | DynamicsAXLinkedService | OracleServiceCloudLinkedService | GoogleAdWordsLinkedService | SapTableLinkedService | AzureDataExplorerLinkedService | AzureFunctionLinkedService | SnowflakeLinkedService | SharePointOnlineListLinkedService) | string)␊ + properties: (((AzureStorageLinkedService1 | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService1 | SqlServerLinkedService1 | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService1 | AzureSqlMILinkedService | AzureBatchLinkedService1 | AzureKeyVaultLinkedService1 | CosmosDbLinkedService1 | DynamicsLinkedService1 | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService1 | FileServerLinkedService1 | AzureFileStorageLinkedService | AmazonS3CompatibleLinkedService | OracleCloudStorageLinkedService | GoogleCloudStorageLinkedService | OracleLinkedService1 | AmazonRdsForOracleLinkedService | AzureMySqlLinkedService1 | MySqlLinkedService1 | PostgreSqlLinkedService1 | SybaseLinkedService1 | Db2LinkedService1 | TeradataLinkedService1 | AzureMLLinkedService1 | AzureMLServiceLinkedService | OdbcLinkedService1 | InformixLinkedService | MicrosoftAccessLinkedService | HdfsLinkedService1 | ODataLinkedService1 | WebLinkedService1 | CassandraLinkedService1 | MongoDbLinkedService1 | MongoDbAtlasLinkedService | MongoDbV2LinkedService | CosmosDbMongoDbApiLinkedService | AzureDataLakeStoreLinkedService1 | AzureBlobFSLinkedService | Office365LinkedService | SalesforceLinkedService1 | SalesforceServiceCloudLinkedService | SapCloudForCustomerLinkedService1 | SapEccLinkedService1 | SapOpenHubLinkedService | SapOdpLinkedService | RestServiceLinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | DataworldLinkedService | AppFiguresLinkedService | AsanaLinkedService | TwilioLinkedService | AmazonS3LinkedService1 | AmazonRedshiftLinkedService1 | CustomDataSourceLinkedService1 | AzureSearchLinkedService1 | HttpLinkedService1 | FtpServerLinkedService1 | SftpServerLinkedService1 | SapBWLinkedService1 | SapHanaLinkedService1 | AmazonMWSLinkedService1 | AzurePostgreSqlLinkedService1 | ConcurLinkedService1 | CouchbaseLinkedService1 | DrillLinkedService1 | EloquaLinkedService1 | GoogleBigQueryLinkedService1 | GreenplumLinkedService1 | HBaseLinkedService1 | HiveLinkedService1 | HubspotLinkedService1 | ImpalaLinkedService1 | JiraLinkedService1 | MagentoLinkedService1 | MariaDBLinkedService1 | AzureMariaDBLinkedService | MarketoLinkedService1 | PaypalLinkedService1 | PhoenixLinkedService1 | PrestoLinkedService1 | QuickBooksLinkedService1 | ServiceNowLinkedService1 | ShopifyLinkedService1 | SparkLinkedService1 | SquareLinkedService1 | XeroLinkedService1 | ZohoLinkedService1 | VerticaLinkedService1 | NetezzaLinkedService1 | SalesforceMarketingCloudLinkedService1 | HDInsightOnDemandLinkedService1 | AzureDataLakeAnalyticsLinkedService1 | AzureDatabricksLinkedService1 | AzureDatabricksDeltaLakeLinkedService | ResponsysLinkedService1 | DynamicsAXLinkedService | OracleServiceCloudLinkedService | GoogleAdWordsLinkedService | SapTableLinkedService | AzureDataExplorerLinkedService | AzureFunctionLinkedService | SnowflakeLinkedService | SharePointOnlineListLinkedService) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * List of tags that can be used for describing the linked service.␊ + */␊ + annotations?: ({␊ + [k: string]: unknown␊ + }[] | string)␊ + /**␊ + * Integration runtime reference type.␊ + */␊ + connectVia?: (IntegrationRuntimeReference1 | string)␊ + /**␊ + * Linked service description.␊ + */␊ + description?: string␊ + /**␊ + * Definition of all parameters for an entity.␊ + */␊ + parameters?: ({␊ + [k: string]: ParameterSpecification1␊ + } | string)␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/linkedservices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256457,6 +282272,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (Pipeline1 | string)␊ type: "Microsoft.DataFactory/factories/pipelines"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256471,8 +282290,32 @@ Generated by [AVA](https://avajs.dev). /**␊ * Azure data factory nested object which contains information about creating pipeline run␊ */␊ - properties: ((MultiplePipelineTrigger1 | TumblingWindowTrigger | RerunTumblingWindowTrigger | ChainingTrigger) | string)␊ + properties: (((MultiplePipelineTrigger1 | TumblingWindowTrigger | RerunTumblingWindowTrigger | ChainingTrigger) & {␊ + /**␊ + * Unmatched properties from the message are deserialized this collection␊ + */␊ + additionalProperties?: ({␊ + [k: string]: {␊ + [k: string]: unknown␊ + }␊ + } | string)␊ + /**␊ + * List of tags that can be used for describing the trigger.␊ + */␊ + annotations?: ({␊ + [k: string]: unknown␊ + }[] | string)␊ + /**␊ + * Trigger description.␊ + */␊ + description?: string␊ + [k: string]: unknown␊ + }) | string)␊ type: "Microsoft.DataFactory/factories/triggers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256490,6 +282333,10 @@ Generated by [AVA](https://avajs.dev). properties: (ManagedVirtualNetwork | string)␊ resources?: FactoriesManagedVirtualNetworksManagedPrivateEndpointsChildResource[]␊ type: "Microsoft.DataFactory/factories/managedVirtualNetworks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256506,6 +282353,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagedPrivateEndpoint | string)␊ type: "managedPrivateEndpoints"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256558,6 +282409,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagedPrivateEndpoint | string)␊ type: "Microsoft.DataFactory/factories/managedVirtualNetworks/managedPrivateEndpoints"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256584,6 +282439,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventGrid/topics"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256606,6 +282466,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EventSubscriptionProperties | string)␊ type: "Microsoft.EventGrid/eventSubscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256701,6 +282565,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventGrid/topics"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256723,6 +282592,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EventSubscriptionProperties1 | string)␊ type: "Microsoft.EventGrid/eventSubscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256752,6 +282625,7 @@ Generated by [AVA](https://avajs.dev). * Information about the webhook destination properties for an event subscription␊ */␊ properties?: (WebHookEventSubscriptionDestinationProperties | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256773,6 +282647,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a event hub destination.␊ */␊ properties?: (EventHubEventSubscriptionDestinationProperties | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256836,6 +282711,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventGrid/topics"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256858,6 +282738,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EventSubscriptionProperties2 | string)␊ type: "Microsoft.EventGrid/eventSubscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256887,6 +282771,7 @@ Generated by [AVA](https://avajs.dev). * Information about the webhook destination properties for an event subscription.␊ */␊ properties?: (WebHookEventSubscriptionDestinationProperties1 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256908,6 +282793,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a event hub destination.␊ */␊ properties?: (EventHubEventSubscriptionDestinationProperties1 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256971,6 +282857,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventGrid/topics"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -256996,6 +282887,7 @@ Generated by [AVA](https://avajs.dev). * This can be used to map properties of a source schema (or default values, for certain supported properties) to properties of the EventGridEvent schema.␊ */␊ properties?: (JsonInputSchemaMappingProperties | string)␊ + inputSchemaMappingType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257066,6 +282958,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EventSubscriptionProperties3 | string)␊ type: "Microsoft.EventGrid/eventSubscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257107,6 +283003,7 @@ Generated by [AVA](https://avajs.dev). * Properties of the storage blob based dead letter destination.␊ */␊ properties?: (StorageBlobDeadLetterDestinationProperties | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257132,6 +283029,7 @@ Generated by [AVA](https://avajs.dev). * Information about the webhook destination properties for an event subscription.␊ */␊ properties?: (WebHookEventSubscriptionDestinationProperties2 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257153,6 +283051,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a event hub destination.␊ */␊ properties?: (EventHubEventSubscriptionDestinationProperties2 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257174,6 +283073,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a storage queue destination.␊ */␊ properties?: (StorageQueueEventSubscriptionDestinationProperties | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257199,6 +283099,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a hybrid connection destination.␊ */␊ properties?: (HybridConnectionEventSubscriptionDestinationProperties | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257276,6 +283177,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventGrid/domains"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257301,6 +283207,7 @@ Generated by [AVA](https://avajs.dev). * This can be used to map properties of a source schema (or default values, for certain supported properties) to properties of the EventGridEvent schema.␊ */␊ properties?: (JsonInputSchemaMappingProperties1 | string)␊ + inputSchemaMappingType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257381,6 +283288,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventGrid/topics"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257394,7 +283306,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * By default, Event Grid expects events to be in the Event Grid event schema. Specifying an input schema mapping enables publishing to Event Grid using a custom input schema. Currently, the only supported type of InputSchemaMapping is 'JsonInputSchemaMapping'.␊ */␊ - inputSchemaMapping?: (JsonInputSchemaMapping1 | string)␊ + inputSchemaMapping?: ((JsonInputSchemaMapping1 & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -257411,6 +283325,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EventSubscriptionProperties4 | string)␊ type: "Microsoft.EventGrid/eventSubscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257456,6 +283374,7 @@ Generated by [AVA](https://avajs.dev). * Properties of the storage blob based dead letter destination.␊ */␊ properties?: (StorageBlobDeadLetterDestinationProperties1 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257481,6 +283400,7 @@ Generated by [AVA](https://avajs.dev). * Information about the webhook destination properties for an event subscription.␊ */␊ properties?: (WebHookEventSubscriptionDestinationProperties3 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257502,6 +283422,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a event hub destination.␊ */␊ properties?: (EventHubEventSubscriptionDestinationProperties3 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257523,6 +283444,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a storage queue destination.␊ */␊ properties?: (StorageQueueEventSubscriptionDestinationProperties1 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257548,6 +283470,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a hybrid connection destination.␊ */␊ properties?: (HybridConnectionEventSubscriptionDestinationProperties1 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257600,6 +283523,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values␊ */␊ values?: (number[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257611,6 +283535,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values␊ */␊ values?: (number[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257622,6 +283547,7 @@ Generated by [AVA](https://avajs.dev). * The filter value␊ */␊ value?: (number | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257633,6 +283559,7 @@ Generated by [AVA](https://avajs.dev). * The filter value␊ */␊ value?: (number | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257644,6 +283571,7 @@ Generated by [AVA](https://avajs.dev). * The filter value␊ */␊ value?: (number | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257655,6 +283583,7 @@ Generated by [AVA](https://avajs.dev). * The filter value␊ */␊ value?: (number | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257666,6 +283595,7 @@ Generated by [AVA](https://avajs.dev). * The filter value␊ */␊ value?: (boolean | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257677,6 +283607,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257688,6 +283619,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257699,6 +283631,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257710,6 +283643,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257721,6 +283655,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257761,6 +283696,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventGrid/topics"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257783,6 +283723,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EventSubscriptionProperties5 | string)␊ type: "Microsoft.EventGrid/eventSubscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257820,6 +283764,7 @@ Generated by [AVA](https://avajs.dev). * Properties of the storage blob based dead letter destination.␊ */␊ properties?: (StorageBlobDeadLetterDestinationProperties2 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257845,6 +283790,7 @@ Generated by [AVA](https://avajs.dev). * Information about the webhook destination properties for an event subscription.␊ */␊ properties?: (WebHookEventSubscriptionDestinationProperties4 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257866,6 +283812,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a event hub destination.␊ */␊ properties?: (EventHubEventSubscriptionDestinationProperties4 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257887,6 +283834,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a storage queue destination.␊ */␊ properties?: (StorageQueueEventSubscriptionDestinationProperties2 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257912,6 +283860,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a hybrid connection destination.␊ */␊ properties?: (HybridConnectionEventSubscriptionDestinationProperties2 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -257990,6 +283939,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventGrid/domains"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258015,6 +283969,7 @@ Generated by [AVA](https://avajs.dev). * This can be used to map properties of a source schema (or default values, for certain supported properties) to properties of the EventGridEvent schema.␊ */␊ properties?: (JsonInputSchemaMappingProperties2 | string)␊ + inputSchemaMappingType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258093,6 +284048,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "topics"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258105,6 +284063,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.EventGrid/domains/topics"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258131,6 +284092,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventGrid/topics"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258144,7 +284110,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * By default, Event Grid expects events to be in the Event Grid event schema. Specifying an input schema mapping enables publishing to Event Grid using a custom input schema. Currently, the only supported type of InputSchemaMapping is 'JsonInputSchemaMapping'.␊ */␊ - inputSchemaMapping?: (JsonInputSchemaMapping2 | string)␊ + inputSchemaMapping?: ((JsonInputSchemaMapping2 & {␊ + [k: string]: unknown␊ + }) | string)␊ [k: string]: unknown␊ }␊ /**␊ @@ -258161,6 +284129,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EventSubscriptionProperties6 | string)␊ type: "Microsoft.EventGrid/eventSubscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258206,6 +284178,7 @@ Generated by [AVA](https://avajs.dev). * Properties of the storage blob based dead letter destination.␊ */␊ properties?: (StorageBlobDeadLetterDestinationProperties3 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258231,6 +284204,7 @@ Generated by [AVA](https://avajs.dev). * Information about the webhook destination properties for an event subscription.␊ */␊ properties?: (WebHookEventSubscriptionDestinationProperties5 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258252,6 +284226,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a event hub destination.␊ */␊ properties?: (EventHubEventSubscriptionDestinationProperties5 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258273,6 +284248,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a storage queue destination.␊ */␊ properties?: (StorageQueueEventSubscriptionDestinationProperties3 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258298,6 +284274,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a hybrid connection destination.␊ */␊ properties?: (HybridConnectionEventSubscriptionDestinationProperties3 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258319,6 +284296,7 @@ Generated by [AVA](https://avajs.dev). * The properties that represent the Service Bus destination of an event subscription.␊ */␊ properties?: (ServiceBusQueueEventSubscriptionDestinationProperties | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258370,6 +284348,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (number[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258381,6 +284360,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (number[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258392,6 +284372,7 @@ Generated by [AVA](https://avajs.dev). * The filter value.␊ */␊ value?: (number | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258403,6 +284384,7 @@ Generated by [AVA](https://avajs.dev). * The filter value.␊ */␊ value?: (number | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258414,6 +284396,7 @@ Generated by [AVA](https://avajs.dev). * The filter value.␊ */␊ value?: (number | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258425,6 +284408,7 @@ Generated by [AVA](https://avajs.dev). * The filter value.␊ */␊ value?: (number | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258436,6 +284420,7 @@ Generated by [AVA](https://avajs.dev). * The boolean filter value.␊ */␊ value?: (boolean | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258447,6 +284432,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258458,6 +284444,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258469,6 +284456,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258480,6 +284468,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258491,6 +284480,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258532,6 +284522,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventGrid/domains"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258550,6 +284545,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "topics"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258562,6 +284560,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.EventGrid/domains/topics"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258588,6 +284589,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.EventGrid/topics"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258610,6 +284616,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (EventSubscriptionProperties7 | string)␊ type: "Microsoft.EventGrid/eventSubscriptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258651,6 +284661,7 @@ Generated by [AVA](https://avajs.dev). * Properties of the storage blob based dead letter destination.␊ */␊ properties?: (StorageBlobDeadLetterDestinationProperties4 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258676,6 +284687,7 @@ Generated by [AVA](https://avajs.dev). * Information about the webhook destination properties for an event subscription.␊ */␊ properties?: (WebHookEventSubscriptionDestinationProperties6 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258697,6 +284709,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a event hub destination.␊ */␊ properties?: (EventHubEventSubscriptionDestinationProperties6 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258718,6 +284731,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a storage queue destination.␊ */␊ properties?: (StorageQueueEventSubscriptionDestinationProperties4 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258743,6 +284757,7 @@ Generated by [AVA](https://avajs.dev). * The properties for a hybrid connection destination.␊ */␊ properties?: (HybridConnectionEventSubscriptionDestinationProperties4 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258764,6 +284779,7 @@ Generated by [AVA](https://avajs.dev). * The properties that represent the Service Bus destination of an event subscription.␊ */␊ properties?: (ServiceBusQueueEventSubscriptionDestinationProperties1 | string)␊ + endpointType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258815,6 +284831,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (number[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258826,6 +284843,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (number[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258837,6 +284855,7 @@ Generated by [AVA](https://avajs.dev). * The filter value.␊ */␊ value?: (number | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258848,6 +284867,7 @@ Generated by [AVA](https://avajs.dev). * The filter value.␊ */␊ value?: (number | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258859,6 +284879,7 @@ Generated by [AVA](https://avajs.dev). * The filter value.␊ */␊ value?: (number | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258870,6 +284891,7 @@ Generated by [AVA](https://avajs.dev). * The filter value.␊ */␊ value?: (number | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258881,6 +284903,7 @@ Generated by [AVA](https://avajs.dev). * The boolean filter value.␊ */␊ value?: (boolean | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258892,6 +284915,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258903,6 +284927,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258914,6 +284939,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258925,6 +284951,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258936,6 +284963,7 @@ Generated by [AVA](https://avajs.dev). * The set of filter values.␊ */␊ values?: (string[] | string)␊ + operatorType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -258980,6 +285008,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/availabilitySets"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259051,6 +285084,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/diskEncryptionSets"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259082,6 +285120,8 @@ Generated by [AVA](https://avajs.dev). * The vault id is an Azure Resource Manager Resource id in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}␊ */␊ sourceVault: (SourceVault4 | string)␊ + keyUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259126,6 +285166,11 @@ Generated by [AVA](https://avajs.dev). * The Logical zone list for Disk.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259164,6 +285209,7 @@ Generated by [AVA](https://avajs.dev). * The Operating System type.␊ */␊ osType?: (("Windows" | "Linux") | string)␊ + creationData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259194,6 +285240,7 @@ Generated by [AVA](https://avajs.dev). * If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).␊ */␊ uploadSizeBytes?: (number | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259208,6 +285255,7 @@ Generated by [AVA](https://avajs.dev). * If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.␊ */␊ lun?: (number | string)␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259222,6 +285270,7 @@ Generated by [AVA](https://avajs.dev). * The type of key used to encrypt the data of the disk.␊ */␊ type: (("EncryptionAtRestWithPlatformKey" | "EncryptionAtRestWithCustomerKey") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259240,6 +285289,7 @@ Generated by [AVA](https://avajs.dev). * Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.␊ */␊ encryptionSettingsVersion?: string␊ + enabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259268,6 +285318,8 @@ Generated by [AVA](https://avajs.dev). * The vault id is an Azure Resource Manager Resource id in the form /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}␊ */␊ sourceVault: (SourceVault4 | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259309,6 +285361,11 @@ Generated by [AVA](https://avajs.dev). * Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259319,6 +285376,7 @@ Generated by [AVA](https://avajs.dev). * Number of fault domains that the host group can span.␊ */␊ platformFaultDomainCount: (number | string)␊ + platformFaultDomainCount: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259349,6 +285407,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "hosts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259397,6 +285461,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/hostGroups/hosts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + sku: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259423,6 +285493,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/images"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259488,6 +285563,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.␊ */␊ storageAccountType?: (("Standard_LRS" | "Premium_LRS" | "StandardSSD_LRS" | "UltraSSD_LRS") | string)␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259534,6 +285610,8 @@ Generated by [AVA](https://avajs.dev). * Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.␊ */␊ storageAccountType?: (("Standard_LRS" | "Premium_LRS" | "StandardSSD_LRS" | "UltraSSD_LRS") | string)␊ + osState: unknown␊ + osType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259560,6 +285638,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/proximityPlacementGroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259630,6 +285713,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/snapshots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259664,6 +285752,7 @@ Generated by [AVA](https://avajs.dev). * The Operating System type.␊ */␊ osType?: (("Windows" | "Linux") | string)␊ + creationData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -259713,6 +285802,11 @@ Generated by [AVA](https://avajs.dev). * The virtual machine zones.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -260137,6 +286231,8 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -260241,6 +286337,7 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -260280,6 +286377,8 @@ Generated by [AVA](https://avajs.dev). */␊ secretUrl: string␊ sourceVault: (SubResource42 | string)␊ + secretUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -260291,6 +286390,8 @@ Generated by [AVA](https://avajs.dev). */␊ keyUrl: string␊ sourceVault: (SubResource42 | string)␊ + keyUrl: unknown␊ + sourceVault: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -260314,6 +286415,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface GenericExtension7 {␊ @@ -260335,6 +286441,10 @@ Generated by [AVA](https://avajs.dev). settings: ({␊ [k: string]: unknown␊ } | string)␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSDiagnostics7 {␊ @@ -260345,14 +286455,25 @@ Generated by [AVA](https://avajs.dev). settings: {␊ xmlCfg: string␊ StorageAccount: string␊ + xmlCfg: unknown␊ + StorageAccount: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + storageAccountEndPoint: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface IaaSAntimalware7 {␊ @@ -260366,6 +286487,9 @@ Generated by [AVA](https://avajs.dev). Paths: string␊ Extensions: string␊ Processes: string␊ + Paths: unknown␊ + Extensions: unknown␊ + Processes: unknown␊ [k: string]: unknown␊ }␊ RealtimeProtectionEnabled: ("true" | "false")␊ @@ -260374,10 +286498,23 @@ Generated by [AVA](https://avajs.dev). scanType: string␊ day: string␊ time: string␊ + isEnabled: unknown␊ + scanType: unknown␊ + day: unknown␊ + time: unknown␊ [k: string]: unknown␊ }␊ + AntimalwareEnabled: unknown␊ + Exclusions: unknown␊ + RealtimeProtectionEnabled: unknown␊ + ScheduledScanSettings: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptExtension7 {␊ @@ -260388,6 +286525,7 @@ Generated by [AVA](https://avajs.dev). settings: {␊ fileUris?: string[]␊ commandToExecute: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -260395,6 +286533,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScriptForLinux7 {␊ @@ -260410,8 +286554,15 @@ Generated by [AVA](https://avajs.dev). commandToExecute: string␊ storageAccountName?: string␊ storageAccountKey?: string␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxDiagnostic7 {␊ @@ -260438,8 +286589,16 @@ Generated by [AVA](https://avajs.dev). storageAccountName: string␊ storageAccountKey: string␊ storageAccountEndPoint?: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessForLinux7 {␊ @@ -260459,8 +286618,20 @@ Generated by [AVA](https://avajs.dev). reset_ssh: string␊ remove_user: string␊ expiration: string␊ + username: unknown␊ + password: unknown␊ + ssh_key: unknown␊ + reset_ssh: unknown␊ + remove_user: unknown␊ + expiration: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BgInfo7 {␊ @@ -260468,6 +286639,10 @@ Generated by [AVA](https://avajs.dev). type: "bginfo"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface VmAccessAgent7 {␊ @@ -260483,6 +286658,12 @@ Generated by [AVA](https://avajs.dev). password?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DscExtension7 {␊ @@ -260499,12 +286680,20 @@ Generated by [AVA](https://avajs.dev). dataCollection?: string␊ [k: string]: unknown␊ }␊ + modulesUrl: unknown␊ + configurationFunction: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ dataBlobUri?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackupLinux7 {␊ @@ -260514,13 +286703,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface AcronisBackup7 {␊ @@ -260530,13 +286728,22 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ absURL: string␊ + absURL: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ userLogin: string␊ userPassword: string␊ + userLogin: unknown␊ + userPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface LinuxChefClient7 {␊ @@ -260552,6 +286759,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -260562,8 +286774,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface ChefClient7 {␊ @@ -260578,6 +286799,11 @@ Generated by [AVA](https://avajs.dev). validation_client_name: string␊ node_ssl_verify_mode: string␊ environment: string␊ + chef_node_name: unknown␊ + chef_server_url: unknown␊ + validation_client_name: unknown␊ + node_ssl_verify_mode: unknown␊ + environment: unknown␊ [k: string]: unknown␊ }␊ runlist?: string␊ @@ -260588,8 +286814,17 @@ Generated by [AVA](https://avajs.dev). validation_key: string␊ chef_server_crt: string␊ secret: string␊ + validation_key: unknown␊ + chef_server_crt: unknown␊ + secret: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogLinuxAgent7 {␊ @@ -260599,8 +286834,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DatadogWindowsAgent7 {␊ @@ -260610,8 +286851,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ api_key: string␊ + api_key: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DockerExtension7 {␊ @@ -260622,8 +286869,10 @@ Generated by [AVA](https://avajs.dev). settings: {␊ docker: {␊ port: string␊ + port: unknown␊ [k: string]: unknown␊ }␊ + docker: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -260631,10 +286880,20 @@ Generated by [AVA](https://avajs.dev). ca: string␊ cert: string␊ key: string␊ + ca: unknown␊ + cert: unknown␊ + key: unknown␊ [k: string]: unknown␊ }␊ + certs: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceLinux7 {␊ @@ -260645,8 +286904,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface DynatraceWindows7 {␊ @@ -260657,8 +286923,15 @@ Generated by [AVA](https://avajs.dev). settings: {␊ tenantId: string␊ token: string␊ + tenantId: unknown␊ + token: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface Eset7 {␊ @@ -260674,8 +286947,20 @@ Generated by [AVA](https://avajs.dev). "Enable-Cloud": boolean␊ "Enable-PUA": boolean␊ ERAAgentCfgUrl: string␊ + LicenseKey: unknown␊ + "Install-RealtimeProtection": unknown␊ + "Install-ProtocolFiltering": unknown␊ + "Install-DeviceControl": unknown␊ + "Enable-Cloud": unknown␊ + "Enable-PUA": unknown␊ + ERAAgentCfgUrl: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface HpeSecurityApplicationDefender7 {␊ @@ -260686,8 +286971,15 @@ Generated by [AVA](https://avajs.dev). protectedSettings: {␊ key: string␊ serverURL: string␊ + key: unknown␊ + serverURL: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface PuppetAgent7 {␊ @@ -260697,8 +286989,14 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ protectedSettings: {␊ PUPPET_MASTER_SERVER: string␊ + PUPPET_MASTER_SERVER: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7LinuxServerExtn7 {␊ @@ -260712,8 +287010,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7WindowsServerExtn7 {␊ @@ -260727,8 +287032,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface Site24X7ApmInsightExtn7 {␊ @@ -260742,8 +287054,15 @@ Generated by [AVA](https://avajs.dev). }␊ protectedSettings: {␊ site24x7LicenseKey: string␊ + site24x7LicenseKey: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSALinux7 {␊ @@ -260755,13 +287074,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface TrendMicroDSA7 {␊ @@ -260773,13 +287102,23 @@ Generated by [AVA](https://avajs.dev). DSMname: string␊ DSMport: string␊ policyNameorID?: string␊ + DSMname: unknown␊ + DSMport: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ tenantID: string␊ tenantPassword: string␊ + tenantID: unknown␊ + tenantPassword: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentLinux7 {␊ @@ -260792,8 +287131,17 @@ Generated by [AVA](https://avajs.dev). "Agent Port": string␊ "Host Group": string␊ "User Account": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ + "User Account": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface BmcCtmAgentWindows7 {␊ @@ -260805,8 +287153,16 @@ Generated by [AVA](https://avajs.dev). "Control-M Server Name": string␊ "Agent Port": string␊ "Host Group": string␊ + "Control-M Server Name": unknown␊ + "Agent Port": unknown␊ + "Host Group": unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface OSPatchingForLinux7 {␊ @@ -260832,6 +287188,8 @@ Generated by [AVA](https://avajs.dev). vmStatusTest?: {␊ [k: string]: unknown␊ }␊ + disabled: unknown␊ + stop: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ @@ -260839,6 +287197,12 @@ Generated by [AVA](https://avajs.dev). storageAccountKey?: string␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshot7 {␊ @@ -260855,8 +287219,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface VMSnapshotLinux7 {␊ @@ -260873,8 +287250,21 @@ Generated by [AVA](https://avajs.dev). statusBlobUri: string␊ commandStartTimeUTCTicks: string␊ vmType: string␊ + locale: unknown␊ + taskId: unknown␊ + commandToExecute: unknown␊ + objectStr: unknown␊ + logsBlobUri: unknown␊ + statusBlobUri: unknown␊ + commandStartTimeUTCTicks: unknown␊ + vmType: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ [k: string]: unknown␊ }␊ export interface CustomScript7 {␊ @@ -260884,14 +287274,24 @@ Generated by [AVA](https://avajs.dev). autoUpgradeMinorVersion: boolean␊ settings: {␊ fileUris: string[]␊ + fileUris: unknown␊ [k: string]: unknown␊ }␊ protectedSettings: {␊ storageAccountName: string␊ storageAccountKey: string␊ commandToExecute: string␊ + storageAccountName: unknown␊ + storageAccountKey: unknown␊ + commandToExecute: unknown␊ [k: string]: unknown␊ }␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ + settings: unknown␊ + protectedSettings: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentWindows7 {␊ @@ -260899,6 +287299,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentWindows"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ export interface NetworkWatcherAgentLinux7 {␊ @@ -260906,6 +287310,10 @@ Generated by [AVA](https://avajs.dev). type: "NetworkWatcherAgentLinux"␊ typeHandlerVersion: string␊ autoUpgradeMinorVersion: boolean␊ + publisher: unknown␊ + type: unknown␊ + typeHandlerVersion: unknown␊ + autoUpgradeMinorVersion: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -260949,6 +287357,11 @@ Generated by [AVA](https://avajs.dev). * The virtual machine scale set zones. NOTE: Availability zones can only be set when you create the scale set.␊ */␊ zones?: (string[] | string)␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261199,6 +287612,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration.␊ */␊ properties?: (VirtualMachineScaleSetNetworkConfigurationProperties6 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261226,6 +287640,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the primary network interface in case the virtual machine has more than 1 network interface.␊ */␊ primary?: (boolean | string)␊ + ipConfigurations: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261254,6 +287669,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machine scale set network profile's IP configuration properties.␊ */␊ properties?: (VirtualMachineScaleSetIPConfigurationProperties6 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261306,6 +287722,7 @@ Generated by [AVA](https://avajs.dev). * Describes a virtual machines scale set IP Configuration's PublicIPAddress configuration␊ */␊ properties?: (VirtualMachineScaleSetPublicIPAddressConfigurationProperties5 | string)␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261339,6 +287756,7 @@ Generated by [AVA](https://avajs.dev). * The Domain name label.The concatenation of the domain name label and vm index will be the domain name labels of the PublicIPAddress resources that will be created␊ */␊ domainNameLabel: string␊ + domainNameLabel: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261462,6 +287880,8 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ + lun: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261522,6 +287942,7 @@ Generated by [AVA](https://avajs.dev). * Specifies whether writeAccelerator should be enabled or disabled on the disk.␊ */␊ writeAcceleratorEnabled?: (boolean | string)␊ + createOption: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261538,6 +287959,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VirtualMachineScaleSetExtensionProperties5 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261610,6 +288035,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "virtualmachines"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261708,6 +288138,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachineScaleSets/virtualmachines"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261734,6 +288169,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261828,6 +288268,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachineScaleSets/virtualMachines/extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261851,6 +288296,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Compute/virtualMachines/extensions"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261864,6 +288314,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (GenericExtension7 | IaaSDiagnostics7 | IaaSAntimalware7 | CustomScriptExtension7 | CustomScriptForLinux7 | LinuxDiagnostic7 | VmAccessForLinux7 | BgInfo7 | VmAccessAgent7 | DscExtension7 | AcronisBackupLinux7 | AcronisBackup7 | LinuxChefClient7 | ChefClient7 | DatadogLinuxAgent7 | DatadogWindowsAgent7 | DockerExtension7 | DynatraceLinux7 | DynatraceWindows7 | Eset7 | HpeSecurityApplicationDefender7 | PuppetAgent7 | Site24X7LinuxServerExtn7 | Site24X7WindowsServerExtn7 | Site24X7ApmInsightExtn7 | TrendMicroDSALinux7 | TrendMicroDSA7 | BmcCtmAgentLinux7 | BmcCtmAgentWindows7 | OSPatchingForLinux7 | VMSnapshot7 | VMSnapshotLinux7 | CustomScript7 | NetworkWatcherAgentWindows7 | NetworkWatcherAgentLinux7)␊ type: "Microsoft.Compute/virtualMachineScaleSets/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261890,6 +288344,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.WindowsESU/multipleActivationKeys"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261929,6 +288388,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (JobProperties | string)␊ type: "Microsoft.Scheduler/jobCollections/jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -261953,6 +288416,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Scheduler/jobCollections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface JobCollectionProperties2 {␊ @@ -262005,6 +288472,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (JobProperties4 | string)␊ type: "jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface JobProperties4 {␊ @@ -262297,6 +288768,10 @@ Generated by [AVA](https://avajs.dev). name: string␊ properties: (JobProperties4 | string)␊ type: "Microsoft.Scheduler/jobCollections/jobs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -262323,6 +288798,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Search/searchServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -262386,6 +288865,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Search/searchServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -262396,6 +288879,7 @@ Generated by [AVA](https://avajs.dev). * The identity type.␊ */␊ type: (("None" | "SystemAssigned") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -262462,6 +288946,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties20 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -262534,6 +289022,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties20 | string)␊ type: "Microsoft.Search/searchServices/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -262565,6 +289057,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Synapse/workspaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -262851,6 +289348,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "bigDataPools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263023,6 +289525,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IpFirewallRuleProperties | string)␊ type: "firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263067,6 +289573,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "sqlPools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263148,6 +289659,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AadAdminProperties | string)␊ type: "administrators"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263183,6 +289698,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AadAdminProperties | string)␊ type: "sqlAdministrators"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263196,6 +289715,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagedIdentitySqlControlSettingsModelProperties | string)␊ type: "managedIdentitySqlControlSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263232,6 +289755,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IntegrationRuntime2 | string)␊ type: "integrationRuntimes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263247,6 +289774,8 @@ Generated by [AVA](https://avajs.dev). * Managed integration runtime type properties.␊ */␊ typeProperties: (ManagedIntegrationRuntimeTypeProperties2 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263261,6 +289790,8 @@ Generated by [AVA](https://avajs.dev). * Managed Virtual Network reference type.␊ */␊ type: ("ManagedVirtualNetworkReference" | string)␊ + referenceName: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263448,6 +289979,8 @@ Generated by [AVA](https://avajs.dev). * Value of secure string.␊ */␊ value: string␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263505,6 +290038,8 @@ Generated by [AVA](https://avajs.dev). * Cmdkey command custom setup type properties.␊ */␊ typeProperties: (CmdkeySetupTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263527,6 +290062,9 @@ Generated by [AVA](https://avajs.dev). userName: {␊ [k: string]: unknown␊ }␊ + password: unknown␊ + targetName: unknown␊ + userName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263538,6 +290076,8 @@ Generated by [AVA](https://avajs.dev). * Environment variable custom setup type properties.␊ */␊ typeProperties: (EnvironmentVariableSetupTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263552,6 +290092,8 @@ Generated by [AVA](https://avajs.dev). * The value of the environment variable.␊ */␊ variableValue: string␊ + variableName: unknown␊ + variableValue: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263563,6 +290105,8 @@ Generated by [AVA](https://avajs.dev). * Installation of licensed component setup type properties.␊ */␊ typeProperties: (LicensedComponentSetupTypeProperties1 | string)␊ + type: unknown␊ + typeProperties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263576,7 +290120,10 @@ Generated by [AVA](https://avajs.dev). /**␊ * The base definition of a secret type.␊ */␊ - licenseKey?: (SecureString2 | string)␊ + licenseKey?: ((SecureString2 & {␊ + [k: string]: unknown␊ + }) | string)␊ + componentName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263588,6 +290135,7 @@ Generated by [AVA](https://avajs.dev). * The self-hosted integration runtime properties.␊ */␊ typeProperties?: (SelfHostedIntegrationRuntimeTypeProperties1 | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263609,6 +290157,8 @@ Generated by [AVA](https://avajs.dev). * Azure Synapse secure string definition. The string value will be masked with asterisks '*' during Get or List API calls.␊ */␊ key: (SecureString2 | string)␊ + authorizationType: unknown␊ + key: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263620,6 +290170,8 @@ Generated by [AVA](https://avajs.dev). * The resource identifier of the integration runtime to be shared.␊ */␊ resourceId: string␊ + authorizationType: unknown␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263636,6 +290188,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties21 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263652,6 +290208,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerBlobAuditingPolicyProperties1 | string)␊ type: "auditingSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263767,6 +290327,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). If state is Enabled, storageEndpoint or isAzureMonitorTargetEnabled is required.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263783,6 +290344,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExtendedServerBlobAuditingPolicyProperties1 | string)␊ type: "extendedAuditingSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263902,6 +290467,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). If state is Enabled, storageEndpoint or isAzureMonitorTargetEnabled is required.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263918,6 +290484,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerSecurityAlertPolicyProperties | string)␊ type: "securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263952,6 +290522,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263968,6 +290539,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ServerVulnerabilityAssessmentProperties1 | string)␊ type: "vulnerabilityAssessments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -263990,6 +290565,7 @@ Generated by [AVA](https://avajs.dev). * A shared access signature (SAS Key) that has read and write access to the blob container specified in 'storageContainerPath' parameter. If 'storageAccountAccessKey' isn't specified, StorageContainerSasKey is required.␊ */␊ storageContainerSasKey?: string␊ + storageContainerPath: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264024,6 +290600,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (KeyProperties3 | string)␊ type: "keys"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264051,6 +290631,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AadAdminProperties | string)␊ type: "Microsoft.Synapse/workspaces/administrators"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264077,6 +290661,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Synapse/workspaces/bigDataPools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264093,6 +290682,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IpFirewallRuleProperties | string)␊ type: "Microsoft.Synapse/workspaces/firewallRules"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264106,6 +290699,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagedIdentitySqlControlSettingsModelProperties | string)␊ type: "Microsoft.Synapse/workspaces/managedIdentitySqlControlSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264137,6 +290734,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Synapse/workspaces/sqlPools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264150,6 +290752,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MetadataSyncConfigProperties | string)␊ type: "metadataSync"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264180,6 +290786,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (GeoBackupPolicyProperties1 | string)␊ type: "geoBackupPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264190,6 +290800,7 @@ Generated by [AVA](https://avajs.dev). * The state of the geo backup policy.␊ */␊ state: (("Disabled" | "Enabled") | string)␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264203,6 +290814,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MaintenanceWindowsProperties | string)␊ type: "maintenancewindows"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264244,6 +290859,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TransparentDataEncryptionProperties1 | string)␊ type: "transparentDataEncryption"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264270,6 +290889,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SqlPoolBlobAuditingPolicyProperties | string)␊ type: "auditingSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264375,6 +290998,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). If state is Enabled, storageEndpoint is required.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264391,6 +291015,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SqlPoolVulnerabilityAssessmentProperties | string)␊ type: "vulnerabilityAssessments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264429,6 +291057,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties7 | string)␊ type: "securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264463,6 +291095,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264479,6 +291112,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ExtendedSqlPoolBlobAuditingPolicyProperties | string)␊ type: "extendedAuditingSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264598,6 +291235,7 @@ Generated by [AVA](https://avajs.dev). * Specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). If state is Enabled, storageEndpoint or isAzureMonitorTargetEnabled is required.␊ */␊ storageEndpoint?: string␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264614,6 +291252,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DataMaskingPolicyProperties1 | string)␊ type: "dataMaskingPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264628,6 +291270,7 @@ Generated by [AVA](https://avajs.dev). * The list of the exempt principals. Specifies the semicolon-separated list of database users for which the data masking policy does not apply. The specified users receive data results without masking for all of the database queries.␊ */␊ exemptPrincipals?: string␊ + dataMaskingState: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264644,6 +291287,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (WorkloadGroupProperties | string)␊ type: "workloadGroups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264674,6 +291321,9 @@ Generated by [AVA](https://avajs.dev). * The workload group query execution timeout.␊ */␊ queryExecutionTimeout?: (number | string)␊ + maxResourcePercent: unknown␊ + minResourcePercent: unknown␊ + minResourcePercentPerRequest: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264690,6 +291340,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SqlPoolBlobAuditingPolicyProperties | string)␊ type: "Microsoft.Synapse/workspaces/sqlPools/auditingSettings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264703,6 +291357,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MetadataSyncConfigProperties | string)␊ type: "Microsoft.Synapse/workspaces/sqlPools/metadataSync"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264719,6 +291377,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SensitivityLabelProperties | string)␊ type: "Microsoft.Synapse/workspaces/sqlPools/schemas/tables/columns/sensitivityLabels"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264758,6 +291420,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SecurityAlertPolicyProperties7 | string)␊ type: "Microsoft.Synapse/workspaces/sqlPools/securityAlertPolicies"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264774,6 +291440,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (TransparentDataEncryptionProperties1 | string)␊ type: "Microsoft.Synapse/workspaces/sqlPools/transparentDataEncryption"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264790,6 +291460,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SqlPoolVulnerabilityAssessmentProperties | string)␊ type: "Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264806,6 +291480,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SqlPoolVulnerabilityAssessmentRuleBaselineProperties | string)␊ type: "Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments/rules/baselines"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264816,6 +291494,7 @@ Generated by [AVA](https://avajs.dev). * The rule baseline result␊ */␊ baselineResults: (SqlPoolVulnerabilityAssessmentRuleBaselineItem[] | string)␊ + baselineResults: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264826,6 +291505,7 @@ Generated by [AVA](https://avajs.dev). * The rule baseline result␊ */␊ result: (string[] | string)␊ + result: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264856,6 +291536,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.ResourceGraph/queries"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264870,6 +291554,7 @@ Generated by [AVA](https://avajs.dev). * KQL query that will be graph.␊ */␊ query: string␊ + query: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264896,6 +291581,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Communication/communicationServices"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264906,6 +291595,7 @@ Generated by [AVA](https://avajs.dev). * The location where the communication service stores its data at rest.␊ */␊ dataLocation: string␊ + dataLocation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264932,6 +291622,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Insights/alertrules"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264945,7 +291640,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * the array of actions that are performed when the alert rule becomes active, and when an alert condition is resolved.␊ */␊ - actions?: ((RuleEmailAction | RuleWebhookAction)[] | string)␊ + actions?: (((RuleEmailAction | RuleWebhookAction) & {␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * The condition that results in the alert rule being activated.␊ */␊ @@ -264966,6 +291663,9 @@ Generated by [AVA](https://avajs.dev). * the provisioning state.␊ */␊ provisioningState?: string␊ + condition: unknown␊ + isEnabled: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264981,6 +291681,7 @@ Generated by [AVA](https://avajs.dev). * Whether the administrators (service and co-administrators) of the service should be notified when the alert is activated.␊ */␊ sendToServiceOwners?: (boolean | string)␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -264998,6 +291699,7 @@ Generated by [AVA](https://avajs.dev). * the service uri to Post the notification when the alert activates or resolves.␊ */␊ serviceUri?: string␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265009,6 +291711,7 @@ Generated by [AVA](https://avajs.dev). */␊ metricName?: string␊ "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource"␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265052,6 +291755,7 @@ Generated by [AVA](https://avajs.dev). * the substatus.␊ */␊ subStatus?: string␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265085,6 +291789,9 @@ Generated by [AVA](https://avajs.dev). * the period of time (in ISO 8601 duration format) that is used to monitor alert activity based on the threshold. If specified then it must be between 5 minutes and 1 day.␊ */␊ windowSize?: string␊ + "odata.type": unknown␊ + operator: unknown␊ + threshold: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265100,6 +291807,8 @@ Generated by [AVA](https://avajs.dev). * the period of time (in ISO 8601 duration format) that is used to monitor alert activity based on the threshold. If specified then it must be between 5 minutes and 1 day.␊ */␊ windowSize?: string␊ + failedLocationCount: unknown␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265111,6 +291820,7 @@ Generated by [AVA](https://avajs.dev). */␊ aggregation?: (ManagementEventAggregationCondition | string)␊ "odata.type": "Microsoft.Azure.Management.Insights.Models.ManagementEventRuleCondition"␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265144,6 +291854,10 @@ Generated by [AVA](https://avajs.dev). applicationId?: string␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265203,6 +291917,10 @@ Generated by [AVA](https://avajs.dev). SyntheticMonitorId?: string␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265369,6 +292087,10 @@ Generated by [AVA](https://avajs.dev). targetResourceUri?: string␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ + location: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265400,6 +292122,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Insights/components"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265442,6 +292170,7 @@ Generated by [AVA](https://avajs.dev). * Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.␊ */␊ SamplingPercentage?: (number | string)␊ + Application_Type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265475,6 +292204,9 @@ Generated by [AVA](https://avajs.dev). */␊ RelatedAnnotation?: string␊ type: "Annotations"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265523,6 +292255,9 @@ Generated by [AVA](https://avajs.dev). */␊ RecordTypes?: string␊ type: "exportconfiguration"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265540,6 +292275,9 @@ Generated by [AVA](https://avajs.dev). DataVolumeCap?: (ApplicationInsightsComponentDataVolumeCap | string)␊ name: "currentbillingfeatures"␊ type: "currentbillingfeatures"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265598,6 +292336,9 @@ Generated by [AVA](https://avajs.dev). */␊ SendEmailsToSubscriptionOwners?: (boolean | string)␊ type: "ProactiveDetectionConfigs"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265680,6 +292421,9 @@ Generated by [AVA](https://avajs.dev). * This instance's version of the data model. This can change as new features are added that can be marked favorite. Current examples include MetricsExplorer (ME) and Search.␊ */␊ Version?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265713,6 +292457,9 @@ Generated by [AVA](https://avajs.dev). */␊ Type?: (("none" | "query" | "recent" | "function") | string)␊ type: "analyticsItems"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265756,6 +292503,9 @@ Generated by [AVA](https://avajs.dev). */␊ Type?: (("none" | "query" | "recent" | "function") | string)␊ type: "myanalyticsItems"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265785,6 +292535,9 @@ Generated by [AVA](https://avajs.dev). */␊ Scope?: (("shared" | "user") | string)␊ type: "microsoft.insights/components/analyticsItems"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265818,6 +292571,9 @@ Generated by [AVA](https://avajs.dev). */␊ RelatedAnnotation?: string␊ type: "Microsoft.Insights/components/Annotations"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265835,6 +292591,9 @@ Generated by [AVA](https://avajs.dev). DataVolumeCap?: (ApplicationInsightsComponentDataVolumeCap | string)␊ name: string␊ type: "Microsoft.Insights/components/currentbillingfeatures"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265879,6 +292638,9 @@ Generated by [AVA](https://avajs.dev). * This instance's version of the data model. This can change as new features are added that can be marked favorite. Current examples include MetricsExplorer (ME) and Search.␊ */␊ Version?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265908,6 +292670,9 @@ Generated by [AVA](https://avajs.dev). */␊ Scope?: (("shared" | "user") | string)␊ type: "microsoft.insights/components/myanalyticsItems"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265944,6 +292709,9 @@ Generated by [AVA](https://avajs.dev). */␊ SendEmailsToSubscriptionOwners?: (boolean | string)␊ type: "Microsoft.Insights/components/ProactiveDetectionConfigs"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -265978,6 +292746,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Insights/myWorkbooks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266008,6 +292780,9 @@ Generated by [AVA](https://avajs.dev). * This instance's version of the data model. This can change as new features are added that can be marked private workbook.␊ */␊ version?: string␊ + category: unknown␊ + displayName: unknown␊ + serializedData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266038,6 +292813,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Insights/webtests"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266084,6 +292864,10 @@ Generated by [AVA](https://avajs.dev). * Seconds until this WebTest will timeout and fail. Default value is 30.␊ */␊ Timeout?: ((number & string) | string)␊ + Kind: unknown␊ + Locations: unknown␊ + Name: unknown␊ + SyntheticMonitorId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266134,6 +292918,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.insights/workbooks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266176,6 +292964,12 @@ Generated by [AVA](https://avajs.dev). * Internally assigned unique id of the workbook definition.␊ */␊ workbookId: string␊ + category: unknown␊ + kind: unknown␊ + name: unknown␊ + serializedData: unknown␊ + userId: unknown␊ + workbookId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266224,6 +293018,9 @@ Generated by [AVA](https://avajs.dev). */␊ RecordTypes?: string␊ type: "Microsoft.Insights/components/exportconfiguration"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266237,6 +293034,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PricingPlanProperties | string)␊ type: "microsoft.insights/components/pricingPlans"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266294,6 +293095,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Insights/components"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266344,6 +293151,7 @@ Generated by [AVA](https://avajs.dev). * Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.␊ */␊ SamplingPercentage?: (number | string)␊ + Application_Type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266364,6 +293172,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApplicationInsightsComponentProactiveDetectionConfigurationProperties | string)␊ type: "ProactiveDetectionConfigs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266444,6 +293256,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ApplicationInsightsComponentProactiveDetectionConfigurationProperties | string)␊ type: "Microsoft.Insights/components/ProactiveDetectionConfigs"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266474,6 +293290,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.insights/workbooks"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266504,6 +293325,9 @@ Generated by [AVA](https://avajs.dev). * Workbook version␊ */␊ version?: string␊ + category: unknown␊ + displayName: unknown␊ + serializedData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266530,6 +293354,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.insights/workbooktemplates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266560,6 +293389,8 @@ Generated by [AVA](https://avajs.dev). templateData: {␊ [k: string]: unknown␊ }␊ + galleries: unknown␊ + templateData: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266636,6 +293467,12 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Insights/components"␊ + apiVersion: unknown␊ + kind: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266694,6 +293531,7 @@ Generated by [AVA](https://avajs.dev). * Resource Id of the log analytics workspace which the data will be ingested to. This property is required to create an application with this API version. Applications from older versions will not have this property.␊ */␊ WorkspaceResourceId?: string␊ + Application_Type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266710,6 +293548,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (LinkedStorageAccountsProperties | string)␊ type: "microsoft.insights/components/linkedStorageAccounts"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266746,6 +293588,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Insights/autoscalesettings"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266776,6 +293623,7 @@ Generated by [AVA](https://avajs.dev). * the resource identifier of the resource that the autoscale setting should be added to.␊ */␊ targetResourceUri?: string␊ + profiles: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266794,6 +293642,7 @@ Generated by [AVA](https://avajs.dev). * the collection of webhook notifications.␊ */␊ webhooks?: (WebhookNotification[] | string)␊ + operation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266854,6 +293703,9 @@ Generated by [AVA](https://avajs.dev). * the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.␊ */␊ rules: (ScaleRule[] | string)␊ + capacity: unknown␊ + name: unknown␊ + rules: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266872,6 +293724,9 @@ Generated by [AVA](https://avajs.dev). * the minimum number of instances for the resource.␊ */␊ minimum: string␊ + default: unknown␊ + maximum: unknown␊ + minimum: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266890,6 +293745,8 @@ Generated by [AVA](https://avajs.dev). * the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time␊ */␊ timeZone?: string␊ + end: unknown␊ + start: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266904,6 +293761,8 @@ Generated by [AVA](https://avajs.dev). * The scheduling constraints for when the profile begins.␊ */␊ schedule: (RecurrentSchedule | string)␊ + frequency: unknown␊ + schedule: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266926,6 +293785,10 @@ Generated by [AVA](https://avajs.dev). * the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time␊ */␊ timeZone: string␊ + days: unknown␊ + hours: unknown␊ + minutes: unknown␊ + timeZone: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266940,6 +293803,8 @@ Generated by [AVA](https://avajs.dev). * The parameters for the scaling action.␊ */␊ scaleAction: (ScaleAction | string)␊ + metricTrigger: unknown␊ + scaleAction: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -266994,6 +293859,14 @@ Generated by [AVA](https://avajs.dev). * the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.␊ */␊ timeWindow: string␊ + metricName: unknown␊ + metricResourceUri: unknown␊ + operator: unknown␊ + statistic: unknown␊ + threshold: unknown␊ + timeAggregation: unknown␊ + timeGrain: unknown␊ + timeWindow: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267012,6 +293885,9 @@ Generated by [AVA](https://avajs.dev). * list of dimension values. For example: ["App1","App2"].␊ */␊ Values: (string[] | string)␊ + DimensionName: unknown␊ + Operator: unknown␊ + Values: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267034,6 +293910,9 @@ Generated by [AVA](https://avajs.dev). * the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.␊ */␊ value?: string␊ + cooldown: unknown␊ + direction: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267060,6 +293939,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Insights/alertrules"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267073,7 +293957,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * the array of actions that are performed when the alert rule becomes active, and when an alert condition is resolved.␊ */␊ - actions?: ((RuleEmailAction1 | RuleWebhookAction1)[] | string)␊ + actions?: (((RuleEmailAction1 | RuleWebhookAction1) & {␊ + [k: string]: unknown␊ + })[] | string)␊ /**␊ * The condition that results in the alert rule being activated.␊ */␊ @@ -267094,6 +293980,9 @@ Generated by [AVA](https://avajs.dev). * the provisioning state.␊ */␊ provisioningState?: string␊ + condition: unknown␊ + isEnabled: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267109,6 +293998,7 @@ Generated by [AVA](https://avajs.dev). * Whether the administrators (service and co-administrators) of the service should be notified when the alert is activated.␊ */␊ sendToServiceOwners?: (boolean | string)␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267126,6 +294016,7 @@ Generated by [AVA](https://avajs.dev). * the service uri to Post the notification when the alert activates or resolves.␊ */␊ serviceUri?: string␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267137,6 +294028,7 @@ Generated by [AVA](https://avajs.dev). */␊ metricName?: string␊ "odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource"␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267180,6 +294072,7 @@ Generated by [AVA](https://avajs.dev). * the substatus.␊ */␊ subStatus?: string␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267213,6 +294106,9 @@ Generated by [AVA](https://avajs.dev). * the period of time (in ISO 8601 duration format) that is used to monitor alert activity based on the threshold. If specified then it must be between 5 minutes and 1 day.␊ */␊ windowSize?: string␊ + "odata.type": unknown␊ + operator: unknown␊ + threshold: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267228,6 +294124,8 @@ Generated by [AVA](https://avajs.dev). * the period of time (in ISO 8601 duration format) that is used to monitor alert activity based on the threshold. If specified then it must be between 5 minutes and 1 day.␊ */␊ windowSize?: string␊ + failedLocationCount: unknown␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267239,6 +294137,7 @@ Generated by [AVA](https://avajs.dev). */␊ aggregation?: (ManagementEventAggregationCondition1 | string)␊ "odata.type": "Microsoft.Azure.Management.Insights.Models.ManagementEventRuleCondition"␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267283,6 +294182,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.insights/activityLogAlerts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267309,6 +294213,9 @@ Generated by [AVA](https://avajs.dev). * A list of resourceIds that will be used as prefixes. The alert will only apply to activityLogs with resourceIds that fall under one of these prefixes. This list must include at least one item.␊ */␊ scopes: (string[] | string)␊ + actions: unknown␊ + condition: unknown␊ + scopes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267335,6 +294242,7 @@ Generated by [AVA](https://avajs.dev). webhookProperties?: ({␊ [k: string]: string␊ } | string)␊ + actionGroupId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267345,6 +294253,7 @@ Generated by [AVA](https://avajs.dev). * The list of activity log alert conditions.␊ */␊ allOf: (ActivityLogAlertLeafCondition[] | string)␊ + allOf: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267359,6 +294268,8 @@ Generated by [AVA](https://avajs.dev). * The name of the field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties.'.␊ */␊ field: string␊ + equals: unknown␊ + field: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267385,6 +294296,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.insights/actionGroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267423,6 +294339,8 @@ Generated by [AVA](https://avajs.dev). * The list of webhook receivers that are part of this action group.␊ */␊ webhookReceivers?: (WebhookReceiver[] | string)␊ + enabled: unknown␊ + groupShortName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267453,6 +294371,10 @@ Generated by [AVA](https://avajs.dev). * The resource id for webhook linked to this runbook.␊ */␊ webhookResourceId: string␊ + automationAccountId: unknown␊ + isGlobalRunbook: unknown␊ + runbookName: unknown␊ + webhookResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267467,6 +294389,8 @@ Generated by [AVA](https://avajs.dev). * The name of the Azure mobile app push receiver. Names must be unique across all receivers within an action group.␊ */␊ name: string␊ + emailAddress: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267481,6 +294405,8 @@ Generated by [AVA](https://avajs.dev). * The name of the email receiver. Names must be unique across all receivers within an action group.␊ */␊ name: string␊ + emailAddress: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267507,6 +294433,11 @@ Generated by [AVA](https://avajs.dev). * OMS LA instance identifier.␊ */␊ workspaceId: string␊ + connectionId: unknown␊ + name: unknown␊ + region: unknown␊ + ticketConfiguration: unknown␊ + workspaceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267525,6 +294456,9 @@ Generated by [AVA](https://avajs.dev). * The phone number of the SMS receiver.␊ */␊ phoneNumber: string␊ + countryCode: unknown␊ + name: unknown␊ + phoneNumber: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267539,6 +294473,8 @@ Generated by [AVA](https://avajs.dev). * The URI where webhooks should be sent.␊ */␊ serviceUri: string␊ + name: unknown␊ + serviceUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267565,6 +294501,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.insights/activityLogAlerts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267591,6 +294532,9 @@ Generated by [AVA](https://avajs.dev). * A list of resourceIds that will be used as prefixes. The alert will only apply to activityLogs with resourceIds that fall under one of these prefixes. This list must include at least one item.␊ */␊ scopes: (string[] | string)␊ + actions: unknown␊ + condition: unknown␊ + scopes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267617,6 +294561,7 @@ Generated by [AVA](https://avajs.dev). webhookProperties?: ({␊ [k: string]: string␊ } | string)␊ + actionGroupId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267627,6 +294572,7 @@ Generated by [AVA](https://avajs.dev). * The list of activity log alert conditions.␊ */␊ allOf: (ActivityLogAlertLeafCondition1[] | string)␊ + allOf: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267641,6 +294587,8 @@ Generated by [AVA](https://avajs.dev). * The name of the field that this condition will examine. The possible values for this field are (case-insensitive): 'resourceId', 'category', 'caller', 'level', 'operationName', 'resourceGroup', 'resourceProvider', 'status', 'subStatus', 'resourceType', or anything beginning with 'properties.'.␊ */␊ field: string␊ + equals: unknown␊ + field: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267667,6 +294615,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.insights/actionGroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267717,6 +294670,8 @@ Generated by [AVA](https://avajs.dev). * The list of webhook receivers that are part of this action group.␊ */␊ webhookReceivers?: (WebhookReceiver1[] | string)␊ + enabled: unknown␊ + groupShortName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267747,6 +294702,10 @@ Generated by [AVA](https://avajs.dev). * The resource id for webhook linked to this runbook.␊ */␊ webhookResourceId: string␊ + automationAccountId: unknown␊ + isGlobalRunbook: unknown␊ + runbookName: unknown␊ + webhookResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267761,6 +294720,8 @@ Generated by [AVA](https://avajs.dev). * The name of the Azure mobile app push receiver. Names must be unique across all receivers within an action group.␊ */␊ name: string␊ + emailAddress: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267783,6 +294744,10 @@ Generated by [AVA](https://avajs.dev). * The name of the azure function receiver. Names must be unique across all receivers within an action group.␊ */␊ name: string␊ + functionAppResourceId: unknown␊ + functionName: unknown␊ + httpTriggerUrl: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267797,6 +294762,8 @@ Generated by [AVA](https://avajs.dev). * The name of the email receiver. Names must be unique across all receivers within an action group.␊ */␊ name: string␊ + emailAddress: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267823,6 +294790,11 @@ Generated by [AVA](https://avajs.dev). * OMS LA instance identifier.␊ */␊ workspaceId: string␊ + connectionId: unknown␊ + name: unknown␊ + region: unknown␊ + ticketConfiguration: unknown␊ + workspaceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267841,6 +294813,9 @@ Generated by [AVA](https://avajs.dev). * The azure resource id of the logic app receiver.␊ */␊ resourceId: string␊ + callbackUrl: unknown␊ + name: unknown␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267859,6 +294834,9 @@ Generated by [AVA](https://avajs.dev). * The phone number of the SMS receiver.␊ */␊ phoneNumber: string␊ + countryCode: unknown␊ + name: unknown␊ + phoneNumber: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267877,6 +294855,9 @@ Generated by [AVA](https://avajs.dev). * The phone number of the voice receiver.␊ */␊ phoneNumber: string␊ + countryCode: unknown␊ + name: unknown␊ + phoneNumber: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267891,6 +294872,8 @@ Generated by [AVA](https://avajs.dev). * The URI where webhooks should be sent.␊ */␊ serviceUri: string␊ + name: unknown␊ + serviceUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267917,6 +294900,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Insights/metricAlerts"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267967,6 +294955,12 @@ Generated by [AVA](https://avajs.dev). * the period of time (in ISO 8601 duration format) that is used to monitor alert activity based on the threshold.␊ */␊ windowSize: string␊ + criteria: unknown␊ + enabled: unknown␊ + evaluationFrequency: unknown␊ + scopes: unknown␊ + severity: unknown␊ + windowSize: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -267994,6 +294988,7 @@ Generated by [AVA](https://avajs.dev). */␊ allOf?: (MetricCriteria[] | string)␊ "odata.type": "Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria"␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268041,6 +295036,12 @@ Generated by [AVA](https://avajs.dev). * the criteria time aggregation types.␊ */␊ timeAggregation: (("Average" | "Count" | "Minimum" | "Maximum" | "Total") | string)␊ + criterionType: unknown␊ + metricName: unknown␊ + name: unknown␊ + operator: unknown␊ + threshold: unknown␊ + timeAggregation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268059,6 +295060,9 @@ Generated by [AVA](https://avajs.dev). * list of dimension values.␊ */␊ values: (string[] | string)␊ + name: unknown␊ + operator: unknown␊ + values: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268078,6 +295082,10 @@ Generated by [AVA](https://avajs.dev). * The Application Insights web test Id.␊ */␊ webTestId: string␊ + componentId: unknown␊ + failedLocationCount: unknown␊ + "odata.type": unknown␊ + webTestId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268089,6 +295097,7 @@ Generated by [AVA](https://avajs.dev). */␊ allOf?: (MultiMetricCriteria[] | string)␊ "odata.type": "Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria"␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268112,6 +295121,10 @@ Generated by [AVA](https://avajs.dev). * The operator used to compare the metric value against the threshold.␊ */␊ operator: (("GreaterThan" | "LessThan" | "GreaterOrLessThan") | string)␊ + alertSensitivity: unknown␊ + criterionType: unknown␊ + failingPeriods: unknown␊ + operator: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268126,6 +295139,8 @@ Generated by [AVA](https://avajs.dev). * The number of aggregated lookback points. The lookback time window is calculated based on the aggregation granularity (windowSize) and the selected number of aggregated points.␊ */␊ numberOfEvaluationPeriods: (number | string)␊ + minFailingPeriodsToAlert: unknown␊ + numberOfEvaluationPeriods: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268152,6 +295167,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Insights/scheduledQueryRules"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268186,6 +295206,8 @@ Generated by [AVA](https://avajs.dev). * Specifies the log search query.␊ */␊ source: (Source | string)␊ + action: unknown␊ + source: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268209,6 +295231,9 @@ Generated by [AVA](https://avajs.dev). * The condition that results in the Log Search rule.␊ */␊ trigger: (TriggerCondition | string)␊ + "odata.type": unknown␊ + severity: unknown␊ + trigger: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268245,6 +295270,8 @@ Generated by [AVA](https://avajs.dev). * Evaluation operation for rule - 'GreaterThan' or 'LessThan.␊ */␊ thresholdOperator: (("GreaterThanOrEqual" | "LessThanOrEqual" | "GreaterThan" | "LessThan" | "Equal") | string)␊ + threshold: unknown␊ + thresholdOperator: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268278,6 +295305,8 @@ Generated by [AVA](https://avajs.dev). */␊ criteria: (Criteria[] | string)␊ "odata.type": "Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.Microsoft.AppInsights.Nexus.DataContracts.Resources.ScheduledQueryRules.LogToMetricAction"␊ + criteria: unknown␊ + "odata.type": unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268292,6 +295321,7 @@ Generated by [AVA](https://avajs.dev). * Name of the metric␊ */␊ metricName: string␊ + metricName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268310,6 +295340,9 @@ Generated by [AVA](https://avajs.dev). * List of dimension values␊ */␊ values: (string[] | string)␊ + name: unknown␊ + operator: unknown␊ + values: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268324,6 +295357,8 @@ Generated by [AVA](https://avajs.dev). * Time window for which data needs to be fetched for query (should be greater than or equal to frequencyInMinutes).␊ */␊ timeWindowInMinutes: (number | string)␊ + frequencyInMinutes: unknown␊ + timeWindowInMinutes: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268346,6 +295381,7 @@ Generated by [AVA](https://avajs.dev). * Set value to 'ResultCount'.␊ */␊ queryType?: ("ResultCount" | string)␊ + dataSourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268372,6 +295408,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.insights/guestDiagnosticSettings"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268399,6 +295440,9 @@ Generated by [AVA](https://avajs.dev). */␊ kind: (("PerformanceCounter" | "ETWProviders" | "WindowsEventLogs") | string)␊ sinks: (SinkConfiguration[] | string)␊ + configuration: unknown␊ + kind: unknown␊ + sinks: unknown␊ [k: string]: unknown␊ }␊ export interface DataSourceConfiguration {␊ @@ -268419,27 +295463,35 @@ Generated by [AVA](https://avajs.dev). export interface EventLogConfiguration {␊ filter?: string␊ logName: string␊ + logName: unknown␊ [k: string]: unknown␊ }␊ export interface PerformanceCounterConfiguration {␊ instance?: string␊ name: string␊ samplingPeriod: string␊ + name: unknown␊ + samplingPeriod: unknown␊ [k: string]: unknown␊ }␊ export interface EtwProviderConfiguration {␊ events: (EtwEventConfiguration[] | string)␊ id: string␊ + events: unknown␊ + id: unknown␊ [k: string]: unknown␊ }␊ export interface EtwEventConfiguration {␊ filter?: string␊ id: (number | string)␊ name: string␊ + id: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ export interface SinkConfiguration {␊ kind: (("EventHub" | "ApplicationInsights" | "LogAnalytics") | string)␊ + kind: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268466,6 +295518,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.insights/actionGroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268520,6 +295577,8 @@ Generated by [AVA](https://avajs.dev). * The list of webhook receivers that are part of this action group.␊ */␊ webhookReceivers?: (WebhookReceiver2[] | string)␊ + enabled: unknown␊ + groupShortName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268534,6 +295593,8 @@ Generated by [AVA](https://avajs.dev). * The arm role id.␊ */␊ roleId: string␊ + name: unknown␊ + roleId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268564,6 +295625,10 @@ Generated by [AVA](https://avajs.dev). * The resource id for webhook linked to this runbook.␊ */␊ webhookResourceId: string␊ + automationAccountId: unknown␊ + isGlobalRunbook: unknown␊ + runbookName: unknown␊ + webhookResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268578,6 +295643,8 @@ Generated by [AVA](https://avajs.dev). * The name of the Azure mobile app push receiver. Names must be unique across all receivers within an action group.␊ */␊ name: string␊ + emailAddress: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268600,6 +295667,10 @@ Generated by [AVA](https://avajs.dev). * The name of the azure function receiver. Names must be unique across all receivers within an action group.␊ */␊ name: string␊ + functionAppResourceId: unknown␊ + functionName: unknown␊ + httpTriggerUrl: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268614,6 +295685,8 @@ Generated by [AVA](https://avajs.dev). * The name of the email receiver. Names must be unique across all receivers within an action group.␊ */␊ name: string␊ + emailAddress: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268640,6 +295713,11 @@ Generated by [AVA](https://avajs.dev). * OMS LA instance identifier.␊ */␊ workspaceId: string␊ + connectionId: unknown␊ + name: unknown␊ + region: unknown␊ + ticketConfiguration: unknown␊ + workspaceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268658,6 +295736,9 @@ Generated by [AVA](https://avajs.dev). * The azure resource id of the logic app receiver.␊ */␊ resourceId: string␊ + callbackUrl: unknown␊ + name: unknown␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268676,6 +295757,9 @@ Generated by [AVA](https://avajs.dev). * The phone number of the SMS receiver.␊ */␊ phoneNumber: string␊ + countryCode: unknown␊ + name: unknown␊ + phoneNumber: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268694,6 +295778,9 @@ Generated by [AVA](https://avajs.dev). * The phone number of the voice receiver.␊ */␊ phoneNumber: string␊ + countryCode: unknown␊ + name: unknown␊ + phoneNumber: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268708,6 +295795,8 @@ Generated by [AVA](https://avajs.dev). * The URI where webhooks should be sent.␊ */␊ serviceUri: string␊ + name: unknown␊ + serviceUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268734,6 +295823,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.insights/actionGroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268788,6 +295882,8 @@ Generated by [AVA](https://avajs.dev). * The list of webhook receivers that are part of this action group.␊ */␊ webhookReceivers?: (WebhookReceiver3[] | string)␊ + enabled: unknown␊ + groupShortName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268806,6 +295902,8 @@ Generated by [AVA](https://avajs.dev). * Indicates whether to use common alert schema.␊ */␊ useCommonAlertSchema?: (boolean | string)␊ + name: unknown␊ + roleId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268840,6 +295938,10 @@ Generated by [AVA](https://avajs.dev). * The resource id for webhook linked to this runbook.␊ */␊ webhookResourceId: string␊ + automationAccountId: unknown␊ + isGlobalRunbook: unknown␊ + runbookName: unknown␊ + webhookResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268854,6 +295956,8 @@ Generated by [AVA](https://avajs.dev). * The name of the Azure mobile app push receiver. Names must be unique across all receivers within an action group.␊ */␊ name: string␊ + emailAddress: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268880,6 +295984,10 @@ Generated by [AVA](https://avajs.dev). * Indicates whether to use common alert schema.␊ */␊ useCommonAlertSchema?: (boolean | string)␊ + functionAppResourceId: unknown␊ + functionName: unknown␊ + httpTriggerUrl: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268898,6 +296006,8 @@ Generated by [AVA](https://avajs.dev). * Indicates whether to use common alert schema.␊ */␊ useCommonAlertSchema?: (boolean | string)␊ + emailAddress: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268924,6 +296034,11 @@ Generated by [AVA](https://avajs.dev). * OMS LA instance identifier.␊ */␊ workspaceId: string␊ + connectionId: unknown␊ + name: unknown␊ + region: unknown␊ + ticketConfiguration: unknown␊ + workspaceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268946,6 +296061,9 @@ Generated by [AVA](https://avajs.dev). * Indicates whether to use common alert schema.␊ */␊ useCommonAlertSchema?: (boolean | string)␊ + callbackUrl: unknown␊ + name: unknown␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268964,6 +296082,9 @@ Generated by [AVA](https://avajs.dev). * The phone number of the SMS receiver.␊ */␊ phoneNumber: string␊ + countryCode: unknown␊ + name: unknown␊ + phoneNumber: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -268982,6 +296103,9 @@ Generated by [AVA](https://avajs.dev). * The phone number of the voice receiver.␊ */␊ phoneNumber: string␊ + countryCode: unknown␊ + name: unknown␊ + phoneNumber: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269000,6 +296124,8 @@ Generated by [AVA](https://avajs.dev). * Indicates whether to use common alert schema.␊ */␊ useCommonAlertSchema?: (boolean | string)␊ + name: unknown␊ + serviceUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269026,6 +296152,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.insights/actionGroups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269080,6 +296211,8 @@ Generated by [AVA](https://avajs.dev). * The list of webhook receivers that are part of this action group.␊ */␊ webhookReceivers?: (WebhookReceiver4[] | string)␊ + enabled: unknown␊ + groupShortName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269098,6 +296231,8 @@ Generated by [AVA](https://avajs.dev). * Indicates whether to use common alert schema.␊ */␊ useCommonAlertSchema?: (boolean | string)␊ + name: unknown␊ + roleId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269132,6 +296267,10 @@ Generated by [AVA](https://avajs.dev). * The resource id for webhook linked to this runbook.␊ */␊ webhookResourceId: string␊ + automationAccountId: unknown␊ + isGlobalRunbook: unknown␊ + runbookName: unknown␊ + webhookResourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269146,6 +296285,8 @@ Generated by [AVA](https://avajs.dev). * The name of the Azure mobile app push receiver. Names must be unique across all receivers within an action group.␊ */␊ name: string␊ + emailAddress: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269172,6 +296313,10 @@ Generated by [AVA](https://avajs.dev). * Indicates whether to use common alert schema.␊ */␊ useCommonAlertSchema?: (boolean | string)␊ + functionAppResourceId: unknown␊ + functionName: unknown␊ + httpTriggerUrl: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269190,6 +296335,8 @@ Generated by [AVA](https://avajs.dev). * Indicates whether to use common alert schema.␊ */␊ useCommonAlertSchema?: (boolean | string)␊ + emailAddress: unknown␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269216,6 +296363,11 @@ Generated by [AVA](https://avajs.dev). * OMS LA instance identifier.␊ */␊ workspaceId: string␊ + connectionId: unknown␊ + name: unknown␊ + region: unknown␊ + ticketConfiguration: unknown␊ + workspaceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269238,6 +296390,9 @@ Generated by [AVA](https://avajs.dev). * Indicates whether to use common alert schema.␊ */␊ useCommonAlertSchema?: (boolean | string)␊ + callbackUrl: unknown␊ + name: unknown␊ + resourceId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269256,6 +296411,9 @@ Generated by [AVA](https://avajs.dev). * The phone number of the SMS receiver.␊ */␊ phoneNumber: string␊ + countryCode: unknown␊ + name: unknown␊ + phoneNumber: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269274,6 +296432,9 @@ Generated by [AVA](https://avajs.dev). * The phone number of the voice receiver.␊ */␊ phoneNumber: string␊ + countryCode: unknown␊ + name: unknown␊ + phoneNumber: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269308,6 +296469,8 @@ Generated by [AVA](https://avajs.dev). * Indicates whether to use common alert schema.␊ */␊ useCommonAlertSchema?: (boolean | string)␊ + name: unknown␊ + serviceUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269335,6 +296498,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "microsoft.insights/privateLinkScopes"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269357,6 +296525,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties22 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269395,6 +296567,8 @@ Generated by [AVA](https://avajs.dev). * The private link service connection status.␊ */␊ status: string␊ + description: unknown␊ + status: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269411,6 +296585,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ScopedResourceProperties | string)␊ type: "scopedResources"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269437,6 +296615,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateEndpointConnectionProperties22 | string)␊ type: "Microsoft.Insights/privateLinkScopes/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269453,6 +296635,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ScopedResourceProperties | string)␊ type: "Microsoft.Insights/privateLinkScopes/scopedResources"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269483,6 +296669,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Insights/dataCollectionRules"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269574,6 +296765,7 @@ Generated by [AVA](https://avajs.dev). * A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.␊ */␊ streams?: (("Microsoft-Event" | "Microsoft-InsightsMetrics" | "Microsoft-Perf" | "Microsoft-Syslog" | "Microsoft-WindowsEvent")[] | string)␊ + extensionName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269713,6 +296905,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Insights/scheduledQueryRules"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269828,6 +297025,9 @@ Generated by [AVA](https://avajs.dev). * Aggregation type.␊ */␊ timeAggregation: (("Count" | "Average" | "Minimum" | "Maximum" | "Total") | string)␊ + operator: unknown␊ + threshold: unknown␊ + timeAggregation: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269846,6 +297046,9 @@ Generated by [AVA](https://avajs.dev). * List of dimension values␊ */␊ values: (string[] | string)␊ + name: unknown␊ + operator: unknown␊ + values: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269890,6 +297093,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Quantum/workspaces"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269960,6 +297168,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagementLockProperties | string)␊ type: "Microsoft.Authorization/locks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -269994,6 +297206,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyAssignmentProperties | string)␊ type: "Microsoft.Authorization/policyassignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270032,6 +297248,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyAssignmentProperties1 | string)␊ type: "Microsoft.Authorization/policyassignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270066,6 +297286,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (ManagementLockProperties1 | string)␊ type: "Microsoft.Authorization/locks"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270084,6 +297308,7 @@ Generated by [AVA](https://avajs.dev). * The owners of the lock.␊ */␊ owners?: (ManagementLockOwner[] | string)␊ + level: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270110,6 +297335,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyAssignmentProperties2 | string)␊ type: "Microsoft.Authorization/policyAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270158,6 +297387,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (PolicySku | string)␊ type: "Microsoft.Authorization/policyAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270210,6 +297443,7 @@ Generated by [AVA](https://avajs.dev). * The policy sku tier. Possible values are Free and Standard.␊ */␊ tier?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270230,6 +297464,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (PolicySku1 | string)␊ type: "Microsoft.Authorization/policyAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270282,6 +297520,7 @@ Generated by [AVA](https://avajs.dev). * The policy sku tier. Possible values are Free and Standard.␊ */␊ tier?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270310,6 +297549,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (PolicySku2 | string)␊ type: "Microsoft.Authorization/policyAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270372,6 +297615,7 @@ Generated by [AVA](https://avajs.dev). * The policy sku tier. Possible values are Free and Standard.␊ */␊ tier?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270400,6 +297644,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (PolicySku3 | string)␊ type: "Microsoft.Authorization/policyAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270462,6 +297710,7 @@ Generated by [AVA](https://avajs.dev). * The policy sku tier. Possible values are Free and Standard.␊ */␊ tier?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270490,6 +297739,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (PolicySku4 | string)␊ type: "Microsoft.Authorization/policyAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270556,6 +297809,7 @@ Generated by [AVA](https://avajs.dev). * The policy sku tier. Possible values are Free and Standard.␊ */␊ tier?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270584,6 +297838,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (PolicySku5 | string)␊ type: "Microsoft.Authorization/policyAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270650,6 +297908,7 @@ Generated by [AVA](https://avajs.dev). * The policy sku tier. Possible values are Free and Standard.␊ */␊ tier?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270678,6 +297937,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (PolicySku6 | string)␊ type: "Microsoft.Authorization/policyAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270744,6 +298007,7 @@ Generated by [AVA](https://avajs.dev). * The policy sku tier. Possible values are Free and Standard.␊ */␊ tier?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270760,6 +298024,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyExemptionProperties | string)␊ type: "Microsoft.Authorization/policyExemptions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270796,6 +298064,8 @@ Generated by [AVA](https://avajs.dev). * The policy definition reference ID list when the associated policy assignment is an assignment of a policy set definition.␊ */␊ policyDefinitionReferenceIds?: (string[] | string)␊ + exemptionCategory: unknown␊ + policyAssignmentId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270820,6 +298090,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PolicyAssignmentProperties10 | string)␊ type: "Microsoft.Authorization/policyAssignments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270886,6 +298160,7 @@ Generated by [AVA](https://avajs.dev). * The policy definition reference ID within a policy set definition the message is intended for. This is only applicable if the policy assignment assigns a policy set definition. If this is not provided the message applies to all policies assigned by this policy assignment.␊ */␊ policyDefinitionReferenceId?: string␊ + message: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270917,6 +298192,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270953,6 +298233,7 @@ Generated by [AVA](https://avajs.dev). * Duration in years (must be between 1 and 3).␊ */␊ validityInYears?: ((number & string) | string)␊ + productType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -270997,6 +298278,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271027,6 +298313,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271058,6 +298349,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271094,6 +298390,7 @@ Generated by [AVA](https://avajs.dev). * Duration in years (must be between 1 and 3).␊ */␊ validityInYears?: ((number & string) | string)␊ + productType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271138,6 +298435,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271168,6 +298470,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271199,6 +298506,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271235,6 +298547,7 @@ Generated by [AVA](https://avajs.dev). * Duration in years (must be between 1 and 3).␊ */␊ validityInYears?: ((number & string) | string)␊ + productType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271279,6 +298592,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271309,6 +298627,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271340,6 +298663,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271376,6 +298704,7 @@ Generated by [AVA](https://avajs.dev). * Duration in years (must be between 1 and 3).␊ */␊ validityInYears?: ((number & string) | string)␊ + productType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271420,6 +298749,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271450,6 +298784,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271485,6 +298824,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271521,6 +298865,7 @@ Generated by [AVA](https://avajs.dev). * Duration in years (must be between 1 and 3).␊ */␊ validityInYears?: ((number & string) | string)␊ + productType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271569,6 +298914,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271633,6 +298983,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271668,6 +299023,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271704,6 +299064,7 @@ Generated by [AVA](https://avajs.dev). * Duration in years (must be between 1 and 3).␊ */␊ validityInYears?: ((number & string) | string)␊ + productType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271752,6 +299113,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271816,6 +299182,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271847,6 +299218,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271883,6 +299259,7 @@ Generated by [AVA](https://avajs.dev). * Duration in years (must be 1).␊ */␊ validityInYears?: ((number & string) | string)␊ + productType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271927,6 +299304,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271957,6 +299339,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.CertificateRegistration/certificateOrders/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -271988,6 +299375,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DomainRegistration/domains"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272039,6 +299431,11 @@ Generated by [AVA](https://avajs.dev). * Target DNS type (would be used for migration).␊ */␊ targetDnsType?: (("AzureDns" | "DefaultDomainRegistrarDns") | string)␊ + consent: unknown␊ + contactAdmin: unknown␊ + contactBilling: unknown␊ + contactRegistrant: unknown␊ + contactTech: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272100,6 +299497,10 @@ Generated by [AVA](https://avajs.dev). * Phone number.␊ */␊ phone: string␊ + email: unknown␊ + nameFirst: unknown␊ + nameLast: unknown␊ + phone: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272130,6 +299531,11 @@ Generated by [AVA](https://avajs.dev). * The state or province for the address.␊ */␊ state: string␊ + address1: unknown␊ + city: unknown␊ + country: unknown␊ + postalCode: unknown␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272150,6 +299556,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DomainOwnershipIdentifierProperties | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272180,6 +299590,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DomainOwnershipIdentifierProperties | string)␊ type: "Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272211,6 +299625,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DomainRegistration/domains"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272262,6 +299681,11 @@ Generated by [AVA](https://avajs.dev). * Target DNS type (would be used for migration).␊ */␊ targetDnsType?: (("AzureDns" | "DefaultDomainRegistrarDns") | string)␊ + consent: unknown␊ + contactAdmin: unknown␊ + contactBilling: unknown␊ + contactRegistrant: unknown␊ + contactTech: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272323,6 +299747,10 @@ Generated by [AVA](https://avajs.dev). * Phone number.␊ */␊ phone: string␊ + email: unknown␊ + nameFirst: unknown␊ + nameLast: unknown␊ + phone: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272353,6 +299781,11 @@ Generated by [AVA](https://avajs.dev). * The state or province for the address.␊ */␊ state: string␊ + address1: unknown␊ + city: unknown␊ + country: unknown␊ + postalCode: unknown␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272373,6 +299806,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DomainOwnershipIdentifierProperties1 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272403,6 +299840,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DomainOwnershipIdentifierProperties1 | string)␊ type: "Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272434,6 +299875,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DomainRegistration/domains"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272485,6 +299931,11 @@ Generated by [AVA](https://avajs.dev). * Target DNS type (would be used for migration).␊ */␊ targetDnsType?: (("AzureDns" | "DefaultDomainRegistrarDns") | string)␊ + consent: unknown␊ + contactAdmin: unknown␊ + contactBilling: unknown␊ + contactRegistrant: unknown␊ + contactTech: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272546,6 +299997,10 @@ Generated by [AVA](https://avajs.dev). * Phone number.␊ */␊ phone: string␊ + email: unknown␊ + nameFirst: unknown␊ + nameLast: unknown␊ + phone: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272576,6 +300031,11 @@ Generated by [AVA](https://avajs.dev). * The state or province for the address.␊ */␊ state: string␊ + address1: unknown␊ + city: unknown␊ + country: unknown␊ + postalCode: unknown␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272596,6 +300056,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DomainOwnershipIdentifierProperties2 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272626,6 +300090,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DomainOwnershipIdentifierProperties2 | string)␊ type: "Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272657,6 +300125,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DomainRegistration/domains"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272708,6 +300181,11 @@ Generated by [AVA](https://avajs.dev). * Target DNS type (would be used for migration).␊ */␊ targetDnsType?: (("AzureDns" | "DefaultDomainRegistrarDns") | string)␊ + consent: unknown␊ + contactAdmin: unknown␊ + contactBilling: unknown␊ + contactRegistrant: unknown␊ + contactTech: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272769,6 +300247,10 @@ Generated by [AVA](https://avajs.dev). * Phone number.␊ */␊ phone: string␊ + email: unknown␊ + nameFirst: unknown␊ + nameLast: unknown␊ + phone: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272799,6 +300281,11 @@ Generated by [AVA](https://avajs.dev). * The state or province for the address.␊ */␊ state: string␊ + address1: unknown␊ + city: unknown␊ + country: unknown␊ + postalCode: unknown␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272819,6 +300306,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DomainOwnershipIdentifierProperties3 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272849,6 +300340,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DomainOwnershipIdentifierProperties3 | string)␊ type: "Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272884,6 +300379,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DomainRegistration/domains"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272935,6 +300435,11 @@ Generated by [AVA](https://avajs.dev). * Target DNS type (would be used for migration).␊ */␊ targetDnsType?: (("AzureDns" | "DefaultDomainRegistrarDns") | string)␊ + consent: unknown␊ + contactAdmin: unknown␊ + contactBilling: unknown␊ + contactRegistrant: unknown␊ + contactTech: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -272996,6 +300501,10 @@ Generated by [AVA](https://avajs.dev). * Phone number.␊ */␊ phone: string␊ + email: unknown␊ + nameFirst: unknown␊ + nameLast: unknown␊ + phone: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273026,6 +300535,11 @@ Generated by [AVA](https://avajs.dev). * The state or province for the address.␊ */␊ state: string␊ + address1: unknown␊ + city: unknown␊ + country: unknown␊ + postalCode: unknown␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273050,6 +300564,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData3 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273114,6 +300632,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData3 | string)␊ type: "Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273149,6 +300671,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DomainRegistration/domains"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273200,6 +300727,11 @@ Generated by [AVA](https://avajs.dev). * Target DNS type (would be used for migration).␊ */␊ targetDnsType?: (("AzureDns" | "DefaultDomainRegistrarDns") | string)␊ + consent: unknown␊ + contactAdmin: unknown␊ + contactBilling: unknown␊ + contactRegistrant: unknown␊ + contactTech: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273261,6 +300793,10 @@ Generated by [AVA](https://avajs.dev). * Phone number.␊ */␊ phone: string␊ + email: unknown␊ + nameFirst: unknown␊ + nameLast: unknown␊ + phone: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273291,6 +300827,11 @@ Generated by [AVA](https://avajs.dev). * The state or province for the address.␊ */␊ state: string␊ + address1: unknown␊ + city: unknown␊ + country: unknown␊ + postalCode: unknown␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273315,6 +300856,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData4 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273379,6 +300924,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData4 | string)␊ type: "Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273410,6 +300959,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.DomainRegistration/domains"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273461,6 +301015,11 @@ Generated by [AVA](https://avajs.dev). * Target DNS type (would be used for migration).␊ */␊ targetDnsType?: (("AzureDns" | "DefaultDomainRegistrarDns") | string)␊ + consent: unknown␊ + contactAdmin: unknown␊ + contactBilling: unknown␊ + contactRegistrant: unknown␊ + contactTech: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273522,6 +301081,10 @@ Generated by [AVA](https://avajs.dev). * Phone number.␊ */␊ phone: string␊ + email: unknown␊ + nameFirst: unknown␊ + nameLast: unknown␊ + phone: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273552,6 +301115,11 @@ Generated by [AVA](https://avajs.dev). * The state or province for the address.␊ */␊ state: string␊ + address1: unknown␊ + city: unknown␊ + country: unknown␊ + postalCode: unknown␊ + state: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273572,6 +301140,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DomainOwnershipIdentifierProperties6 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273602,6 +301174,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DomainOwnershipIdentifierProperties6 | string)␊ type: "Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -273633,6 +301209,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface CertificateProperties {␊ @@ -273745,6 +301326,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/csrs"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface CsrProperties {␊ @@ -273808,6 +301394,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/hostingEnvironments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface HostingEnvironmentProperties {␊ @@ -273940,6 +301531,7 @@ Generated by [AVA](https://avajs.dev). * Description of worker pools with worker size ids, VM sizes, and number of workers in each pool␊ */␊ workerPools?: (WorkerPool[] | string)␊ + status: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -274092,6 +301684,7 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface WorkerPoolProperties {␊ @@ -274173,6 +301766,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "multiRolePools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -274208,6 +301806,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "workerPools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -274240,6 +301843,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/hostingEnvironments/multiRolePools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -274275,6 +301883,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/hostingEnvironments/workerPools"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -274306,6 +301919,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/managedHostingEnvironments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -274341,6 +301959,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/serverfarms"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface ServerFarmWithRichSkuProperties {␊ @@ -274404,6 +302027,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface VnetGatewayProperties {␊ @@ -274446,6 +302074,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/routes"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface VnetRouteProperties {␊ @@ -274503,6 +302136,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface SiteProperties {␊ @@ -274641,6 +302279,7 @@ Generated by [AVA](https://avajs.dev). * Virtual IP address assigned to the host name if IP based SSL is enabled␊ */␊ virtualIP?: string␊ + sslState: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -274674,6 +302313,7 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface SiteConfigProperties {␊ @@ -274891,6 +302531,7 @@ Generated by [AVA](https://avajs.dev). * before taking the action␊ */␊ minProcessExecutionTime?: string␊ + actionType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -275004,6 +302645,7 @@ Generated by [AVA](https://avajs.dev). * Type of database.␊ */␊ type: (("MySql" | "SQLServer" | "SQLAzure" | "Custom") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -275160,6 +302802,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface VnetInfoProperties {␊ @@ -275221,6 +302868,7 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface SlotConfigNamesResourceProperties {␊ @@ -275246,6 +302894,7 @@ Generated by [AVA](https://avajs.dev). * Value of pair␊ */␊ value?: string␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface SiteLogsConfigProperties {␊ @@ -275420,6 +303069,7 @@ Generated by [AVA](https://avajs.dev). * Type of the backup.␊ */␊ type: (("Default" | "Clone" | "Relocation") | string)␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -275450,6 +303100,7 @@ Generated by [AVA](https://avajs.dev). * When the schedule should start working␊ */␊ startTime?: string␊ + frequencyUnit: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -275503,6 +303154,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -275512,6 +303168,9 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2015-08-01"␊ name: "snapshots"␊ type: "snapshots"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -275543,6 +303202,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface DeploymentProperties2 {␊ @@ -275617,6 +303281,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface HostNameBindingProperties {␊ @@ -275676,6 +303345,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface SiteSourceControlProperties {␊ @@ -275729,6 +303403,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -275783,6 +303461,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "backups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface RestoreRequestProperties {␊ @@ -275823,6 +303506,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to the container␊ */␊ storageAccountUrl?: string␊ + operationType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -275854,6 +303538,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface RelayServiceConnectionEntityProperties {␊ @@ -275892,6 +303581,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/backups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -275923,6 +303617,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/deployments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -275954,6 +303653,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/hostNameBindings"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -275985,6 +303689,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/hybridconnection"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276016,6 +303725,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/instances/deployments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276046,6 +303760,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/premieraddons"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276078,6 +303796,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276109,6 +303832,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276118,6 +303846,9 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2015-08-01"␊ name: "snapshots"␊ type: "snapshots"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276149,6 +303880,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276180,6 +303916,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276208,6 +303949,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276238,6 +303984,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276266,6 +304016,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "backups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276297,6 +304052,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276325,6 +304085,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/backups"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276356,6 +304121,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/deployments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276387,6 +304157,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/hostNameBindings"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276418,6 +304193,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/hybridconnection"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276449,6 +304229,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/instances/deployments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276479,6 +304264,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/premieraddons"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276488,6 +304277,9 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2015-08-01"␊ name: string␊ type: "Microsoft.Web/sites/slots/snapshots"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276516,6 +304308,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/sourcecontrols"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276548,6 +304345,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276579,6 +304381,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276610,6 +304417,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276619,6 +304431,9 @@ Generated by [AVA](https://avajs.dev). apiVersion: "2015-08-01"␊ name: string␊ type: "Microsoft.Web/sites/snapshots"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276647,6 +304462,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/sourcecontrols"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276679,6 +304499,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/virtualNetworkConnections"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276710,6 +304535,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276741,6 +304571,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -276772,6 +304607,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/connections"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface ConnectionProperties {␊ @@ -276866,6 +304706,7 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface ExpandedParentApiEntityProperties {␊ @@ -276978,6 +304819,7 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface ApiEntityProperties {␊ @@ -277068,6 +304910,7 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface BackendServiceDefinitionProperties {␊ @@ -277208,6 +305051,7 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface GeneralApiInformationProperties {␊ @@ -277267,6 +305111,7 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface ApiPoliciesProperties {␊ @@ -277333,6 +305178,7 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface ParameterCustomLoginSettingValuesProperties {␊ @@ -277375,6 +305221,7 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface CustomLoginSettingValueProperties {␊ @@ -277415,6 +305262,7 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface ConnectionStatusProperties {␊ @@ -277463,6 +305311,7 @@ Generated by [AVA](https://avajs.dev). * Resource type␊ */␊ type?: string␊ + location: unknown␊ [k: string]: unknown␊ }␊ export interface ConnectionErrorProperties {␊ @@ -277504,6 +305353,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -277534,6 +305388,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID of the associated App Service plan, formatted as: "/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}".␊ */␊ serverFarmId?: string␊ + password: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -277561,6 +305416,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/connectionGateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface ConnectionGatewayDefinitionProperties {␊ @@ -277643,6 +305502,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/connections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ export interface ApiConnectionDefinitionProperties {␊ @@ -277816,6 +305679,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/customApis"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -278002,6 +305869,7 @@ Generated by [AVA](https://avajs.dev). * The service's qualified name␊ */␊ qualifiedName: string␊ + qualifiedName: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -278037,6 +305905,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -278172,6 +306045,7 @@ Generated by [AVA](https://avajs.dev). * Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist.␊ */␊ trafficManagerProfileName?: string␊ + sourceWebAppId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -278660,6 +306534,7 @@ Generated by [AVA](https://avajs.dev). * Subnet mask for the range of IP addresses the restriction is valid for.␊ */␊ subnetMask?: string␊ + ipAddress: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -278717,6 +306592,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.␊ */␊ tagWhitelistJson?: string␊ + isPushEnabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -278794,6 +306670,7 @@ Generated by [AVA](https://avajs.dev). * Point in time in which the app recovery should be attempted, formatted as a DateTime string.␊ */␊ snapshotTime?: string␊ + overwrite: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -278827,6 +306704,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RestoreRequestProperties1 | string)␊ type: "backups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -278878,6 +306759,8 @@ Generated by [AVA](https://avajs.dev). * SAS URL to the container.␊ */␊ storageAccountUrl: string␊ + overwrite: unknown␊ + storageAccountUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -278898,6 +306781,7 @@ Generated by [AVA](https://avajs.dev). */␊ databaseType: (("SqlAzure" | "MySql" | "LocalMySql" | "PostgreSql") | string)␊ name?: string␊ + databaseType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279067,6 +306951,8 @@ Generated by [AVA](https://avajs.dev). * Type of the backup.␊ */␊ type?: (("Default" | "Clone" | "Relocation" | "Snapshot") | string)␊ + name: unknown␊ + storageAccountUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279093,6 +306979,10 @@ Generated by [AVA](https://avajs.dev). * When the schedule should start working.␊ */␊ startTime?: string␊ + frequencyInterval: unknown␊ + frequencyUnit: unknown␊ + keepAtLeastOneBackup: unknown␊ + retentionPeriodInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279107,6 +306997,8 @@ Generated by [AVA](https://avajs.dev). * Value of pair.␊ */␊ value: string␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279181,6 +307073,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to an Azure table with add/query/delete permissions.␊ */␊ sasUrl: string␊ + sasUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279292,6 +307185,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties3 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279358,6 +307255,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279385,6 +307286,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279445,6 +307350,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279507,6 +307416,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties1 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279565,6 +307478,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties1 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279595,6 +307512,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageMigrationOptionsProperties | string)␊ type: "migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279617,6 +307538,8 @@ Generated by [AVA](https://avajs.dev). * trueif the app should be switched over; otherwise, false.␊ */␊ switchSiteAfterMigration?: (boolean | string)␊ + azurefilesConnectionString: unknown␊ + azurefilesShare: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279647,6 +307570,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279707,6 +307635,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279733,6 +307665,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279767,6 +307702,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279784,6 +307724,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties1 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279830,6 +307774,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetInfoProperties1 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279866,6 +307814,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RestoreRequestProperties1 | string)␊ type: "Microsoft.Web/sites/backups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279886,6 +307838,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties3 | string)␊ type: "Microsoft.Web/sites/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279906,6 +307862,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties | string)␊ type: "Microsoft.Web/sites/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279923,6 +307883,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore | string)␊ type: "Microsoft.Web/sites/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279943,6 +307907,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties | string)␊ type: "Microsoft.Web/sites/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279963,6 +307931,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties1 | string)␊ type: "Microsoft.Web/sites/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -279983,6 +307955,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties1 | string)␊ type: "Microsoft.Web/sites/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280003,6 +307979,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties2 | string)␊ type: "Microsoft.Web/sites/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280059,6 +308039,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore | string)␊ type: "Microsoft.Web/sites/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280076,6 +308060,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageMigrationOptionsProperties | string)␊ type: "Microsoft.Web/sites/migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280106,6 +308094,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280126,6 +308119,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties | string)␊ type: "Microsoft.Web/sites/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280138,6 +308135,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280173,6 +308173,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280190,6 +308195,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RestoreRequestProperties1 | string)␊ type: "backups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280210,6 +308219,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties3 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280230,6 +308243,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280247,6 +308264,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280267,6 +308288,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280287,6 +308312,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties1 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280307,6 +308336,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties1 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280337,6 +308370,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280357,6 +308395,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280369,6 +308411,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280386,6 +308431,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties1 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280406,6 +308455,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetInfoProperties1 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280423,6 +308476,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RestoreRequestProperties1 | string)␊ type: "Microsoft.Web/sites/slots/backups"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280443,6 +308500,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties3 | string)␊ type: "Microsoft.Web/sites/slots/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280463,6 +308524,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties | string)␊ type: "Microsoft.Web/sites/slots/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280480,6 +308545,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore | string)␊ type: "Microsoft.Web/sites/slots/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280500,6 +308569,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties | string)␊ type: "Microsoft.Web/sites/slots/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280520,6 +308593,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties1 | string)␊ type: "Microsoft.Web/sites/slots/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280540,6 +308617,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties1 | string)␊ type: "Microsoft.Web/sites/slots/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280560,6 +308641,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties2 | string)␊ type: "Microsoft.Web/sites/slots/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280577,6 +308662,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore | string)␊ type: "Microsoft.Web/sites/slots/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280607,6 +308696,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280627,6 +308721,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties | string)␊ type: "Microsoft.Web/sites/slots/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280639,6 +308737,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/slots/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280656,6 +308757,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties1 | string)␊ type: "Microsoft.Web/sites/slots/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280677,6 +308782,10 @@ Generated by [AVA](https://avajs.dev). properties: (VnetInfoProperties1 | string)␊ resources?: SitesSlotsVirtualNetworkConnectionsGatewaysChildResource1[]␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280697,6 +308806,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties1 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280711,6 +308824,7 @@ Generated by [AVA](https://avajs.dev). * The URI where the VPN package can be downloaded.␊ */␊ vpnPackageUri: string␊ + vpnPackageUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280731,6 +308845,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties1 | string)␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280748,6 +308866,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties1 | string)␊ type: "Microsoft.Web/sites/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280769,6 +308891,10 @@ Generated by [AVA](https://avajs.dev). properties: (VnetInfoProperties1 | string)␊ resources?: SitesVirtualNetworkConnectionsGatewaysChildResource1[]␊ type: "Microsoft.Web/sites/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280789,6 +308915,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties1 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280809,6 +308939,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties1 | string)␊ type: "Microsoft.Web/sites/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280840,6 +308974,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/hostingEnvironments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -280924,6 +309063,10 @@ Generated by [AVA](https://avajs.dev). * Description of worker pools with worker size IDs, VM sizes, and number of workers in each pool.␊ */␊ workerPools: (WorkerPool1[] | string)␊ + location: unknown␊ + name: unknown␊ + virtualNetwork: unknown␊ + workerPools: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281017,6 +309160,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription3 | string)␊ type: "multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281119,6 +309266,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription3 | string)␊ type: "workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281140,6 +309291,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription3 | string)␊ type: "Microsoft.Web/hostingEnvironments/multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281164,6 +309319,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription3 | string)␊ type: "Microsoft.Web/hostingEnvironments/workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281198,6 +309357,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/serverfarms"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281245,6 +309409,7 @@ Generated by [AVA](https://avajs.dev). * Target worker tier assigned to the App Service plan.␊ */␊ workerTierName?: string␊ + name: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281275,6 +309440,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties2 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281289,6 +309458,7 @@ Generated by [AVA](https://avajs.dev). * The URI where the VPN package can be downloaded.␊ */␊ vpnPackageUri: string␊ + vpnPackageUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281309,6 +309479,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetRouteProperties1 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/routes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281366,6 +309540,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281396,6 +309575,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID of the associated App Service plan, formatted as: "/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}".␊ */␊ serverFarmId?: string␊ + password: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281427,6 +309607,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/hostingEnvironments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281523,6 +309708,10 @@ Generated by [AVA](https://avajs.dev). * Description of worker pools with worker size IDs, VM sizes, and number of workers in each pool.␊ */␊ workerPools: (WorkerPool2[] | string)␊ + location: unknown␊ + name: unknown␊ + virtualNetwork: unknown␊ + workerPools: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281616,6 +309805,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription4 | string)␊ type: "multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281718,6 +309911,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription4 | string)␊ type: "workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281739,6 +309936,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription4 | string)␊ type: "Microsoft.Web/hostingEnvironments/multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281763,6 +309964,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription4 | string)␊ type: "Microsoft.Web/hostingEnvironments/workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281797,6 +310002,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/serverfarms"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281882,6 +310092,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties3 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281896,6 +310110,7 @@ Generated by [AVA](https://avajs.dev). * The URI where the VPN package can be downloaded.␊ */␊ vpnPackageUri: string␊ + vpnPackageUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281916,6 +310131,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetRouteProperties2 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/routes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -281974,6 +310193,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -282134,6 +310358,7 @@ Generated by [AVA](https://avajs.dev). * Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist.␊ */␊ trafficManagerProfileName?: string␊ + sourceWebAppId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -282771,6 +310996,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.␊ */␊ tagWhitelistJson?: string␊ + isPushEnabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -282981,6 +311207,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to the container.␊ */␊ storageAccountUrl: string␊ + storageAccountUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283007,6 +311234,10 @@ Generated by [AVA](https://avajs.dev). * When the schedule should start working.␊ */␊ startTime?: string␊ + frequencyInterval: unknown␊ + frequencyUnit: unknown␊ + keepAtLeastOneBackup: unknown␊ + retentionPeriodInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283027,6 +311258,7 @@ Generated by [AVA](https://avajs.dev). */␊ databaseType: (("SqlAzure" | "MySql" | "LocalMySql" | "PostgreSql") | string)␊ name?: string␊ + databaseType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283041,6 +311273,8 @@ Generated by [AVA](https://avajs.dev). * Value of pair.␊ */␊ value: string␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283115,6 +311349,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to an Azure table with add/query/delete permissions.␊ */␊ sasUrl: string␊ + sasUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283231,6 +311466,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties4 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283293,6 +311532,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties1 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283320,6 +311563,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore1 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283380,6 +311627,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties1 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283462,6 +311713,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties2 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283520,6 +311775,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties2 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283550,6 +311809,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageMigrationOptionsProperties1 | string)␊ type: "migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283572,6 +311835,8 @@ Generated by [AVA](https://avajs.dev). * trueif the app should be switched over; otherwise, false.␊ */␊ switchSiteAfterMigration?: (boolean | string)␊ + azurefilesConnectionString: unknown␊ + azurefilesShare: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283589,6 +311854,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties | string)␊ type: "networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283633,6 +311902,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283676,6 +311950,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283746,6 +312024,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties1 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283772,6 +312054,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283806,6 +312091,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283823,6 +312113,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties2 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283869,6 +312163,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetInfoProperties2 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283912,6 +312210,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties4 | string)␊ type: "Microsoft.Web/sites/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283932,6 +312234,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties1 | string)␊ type: "Microsoft.Web/sites/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283949,6 +312255,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore1 | string)␊ type: "Microsoft.Web/sites/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283970,6 +312280,10 @@ Generated by [AVA](https://avajs.dev). properties: (FunctionEnvelopeProperties1 | string)␊ resources?: SitesFunctionsKeysChildResource[]␊ type: "Microsoft.Web/sites/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -283986,6 +312300,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284002,6 +312319,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284022,6 +312342,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties2 | string)␊ type: "Microsoft.Web/sites/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284042,6 +312366,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties2 | string)␊ type: "Microsoft.Web/sites/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284062,6 +312390,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties3 | string)␊ type: "Microsoft.Web/sites/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284118,6 +312450,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore1 | string)␊ type: "Microsoft.Web/sites/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284135,6 +312471,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageMigrationOptionsProperties1 | string)␊ type: "Microsoft.Web/sites/migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284152,6 +312492,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties | string)␊ type: "Microsoft.Web/sites/networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284182,6 +312526,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284199,6 +312548,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties | string)␊ type: "Microsoft.Web/sites/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284219,6 +312572,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties1 | string)␊ type: "Microsoft.Web/sites/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284231,6 +312588,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284266,6 +312626,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284286,6 +312651,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties4 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284306,6 +312675,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties1 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284323,6 +312696,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore1 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284343,6 +312720,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties1 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284363,6 +312744,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties2 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284383,6 +312768,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties2 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284400,6 +312789,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties | string)␊ type: "networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284430,6 +312823,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284447,6 +312845,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284467,6 +312869,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties1 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284479,6 +312885,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284496,6 +312905,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties2 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284516,6 +312929,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetInfoProperties2 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284536,6 +312953,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties4 | string)␊ type: "Microsoft.Web/sites/slots/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284556,6 +312977,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties1 | string)␊ type: "Microsoft.Web/sites/slots/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284573,6 +312998,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore1 | string)␊ type: "Microsoft.Web/sites/slots/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284594,6 +313023,10 @@ Generated by [AVA](https://avajs.dev). properties: (FunctionEnvelopeProperties1 | string)␊ resources?: SitesSlotsFunctionsKeysChildResource[]␊ type: "Microsoft.Web/sites/slots/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284610,6 +313043,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284626,6 +313062,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284646,6 +313085,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties2 | string)␊ type: "Microsoft.Web/sites/slots/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284666,6 +313109,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties2 | string)␊ type: "Microsoft.Web/sites/slots/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284686,6 +313133,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties3 | string)␊ type: "Microsoft.Web/sites/slots/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284703,6 +313154,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore1 | string)␊ type: "Microsoft.Web/sites/slots/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284720,6 +313175,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties | string)␊ type: "Microsoft.Web/sites/slots/networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284750,6 +313209,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284767,6 +313231,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties | string)␊ type: "Microsoft.Web/sites/slots/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284787,6 +313255,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties1 | string)␊ type: "Microsoft.Web/sites/slots/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284799,6 +313271,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/slots/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284816,6 +313291,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties2 | string)␊ type: "Microsoft.Web/sites/slots/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284837,6 +313316,10 @@ Generated by [AVA](https://avajs.dev). properties: (VnetInfoProperties2 | string)␊ resources?: SitesSlotsVirtualNetworkConnectionsGatewaysChildResource2[]␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284857,6 +313340,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties3 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284877,6 +313364,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties3 | string)␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284894,6 +313385,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties2 | string)␊ type: "Microsoft.Web/sites/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284915,6 +313410,10 @@ Generated by [AVA](https://avajs.dev). properties: (VnetInfoProperties2 | string)␊ resources?: SitesVirtualNetworkConnectionsGatewaysChildResource2[]␊ type: "Microsoft.Web/sites/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284935,6 +313434,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties3 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284955,6 +313458,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties3 | string)␊ type: "Microsoft.Web/sites/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -284985,6 +313492,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -285015,6 +313527,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID of the associated App Service plan, formatted as: "/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}".␊ */␊ serverFarmId?: string␊ + password: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -285050,6 +313563,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -285210,6 +313728,7 @@ Generated by [AVA](https://avajs.dev). * Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist.␊ */␊ trafficManagerProfileName?: string␊ + sourceWebAppId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -285871,6 +314390,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.␊ */␊ tagWhitelistJson?: string␊ + isPushEnabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286081,6 +314601,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to the container.␊ */␊ storageAccountUrl: string␊ + storageAccountUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286107,6 +314628,10 @@ Generated by [AVA](https://avajs.dev). * When the schedule should start working.␊ */␊ startTime?: string␊ + frequencyInterval: unknown␊ + frequencyUnit: unknown␊ + keepAtLeastOneBackup: unknown␊ + retentionPeriodInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286127,6 +314652,7 @@ Generated by [AVA](https://avajs.dev). */␊ databaseType: (("SqlAzure" | "MySql" | "LocalMySql" | "PostgreSql") | string)␊ name?: string␊ + databaseType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286141,6 +314667,8 @@ Generated by [AVA](https://avajs.dev). * Value of pair.␊ */␊ value: string␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286215,6 +314743,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to an Azure table with add/query/delete permissions.␊ */␊ sasUrl: string␊ + sasUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286331,6 +314860,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties5 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286393,6 +314926,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties2 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286420,6 +314957,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore2 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286480,6 +315021,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties2 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286546,6 +315091,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties3 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286604,6 +315153,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties3 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286634,6 +315187,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageMigrationOptionsProperties2 | string)␊ type: "migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286656,6 +315213,8 @@ Generated by [AVA](https://avajs.dev). * trueif the app should be switched over; otherwise, false.␊ */␊ switchSiteAfterMigration?: (boolean | string)␊ + azurefilesConnectionString: unknown␊ + azurefilesShare: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286673,6 +315232,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties1 | string)␊ type: "networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286717,6 +315280,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286760,6 +315328,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties1 | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286830,6 +315402,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties2 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286856,6 +315432,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286890,6 +315469,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286907,6 +315491,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties3 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286953,6 +315541,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetInfoProperties3 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -286996,6 +315588,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties5 | string)␊ type: "Microsoft.Web/sites/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287016,6 +315612,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties2 | string)␊ type: "Microsoft.Web/sites/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287033,6 +315633,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore2 | string)␊ type: "Microsoft.Web/sites/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287053,6 +315657,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties2 | string)␊ type: "Microsoft.Web/sites/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287073,6 +315681,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties3 | string)␊ type: "Microsoft.Web/sites/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287093,6 +315705,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties3 | string)␊ type: "Microsoft.Web/sites/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287113,6 +315729,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties4 | string)␊ type: "Microsoft.Web/sites/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287169,6 +315789,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore2 | string)␊ type: "Microsoft.Web/sites/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287186,6 +315810,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageMigrationOptionsProperties2 | string)␊ type: "Microsoft.Web/sites/migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287203,6 +315831,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties1 | string)␊ type: "Microsoft.Web/sites/networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287233,6 +315865,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287250,6 +315887,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties1 | string)␊ type: "Microsoft.Web/sites/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287270,6 +315911,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties2 | string)␊ type: "Microsoft.Web/sites/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287282,6 +315927,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287317,6 +315965,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287337,6 +315990,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties5 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287357,6 +316014,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties2 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287374,6 +316035,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore2 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287394,6 +316059,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties2 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287414,6 +316083,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties3 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287434,6 +316107,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties3 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287451,6 +316128,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties1 | string)␊ type: "networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287481,6 +316162,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287498,6 +316184,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties1 | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287518,6 +316208,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties2 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287530,6 +316224,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287547,6 +316244,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties3 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287567,6 +316268,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetInfoProperties3 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287587,6 +316292,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties5 | string)␊ type: "Microsoft.Web/sites/slots/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287607,6 +316316,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties2 | string)␊ type: "Microsoft.Web/sites/slots/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287624,6 +316337,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore2 | string)␊ type: "Microsoft.Web/sites/slots/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287644,6 +316361,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties2 | string)␊ type: "Microsoft.Web/sites/slots/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287664,6 +316385,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties3 | string)␊ type: "Microsoft.Web/sites/slots/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287684,6 +316409,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties3 | string)␊ type: "Microsoft.Web/sites/slots/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287704,6 +316433,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties4 | string)␊ type: "Microsoft.Web/sites/slots/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287721,6 +316454,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore2 | string)␊ type: "Microsoft.Web/sites/slots/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287738,6 +316475,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties1 | string)␊ type: "Microsoft.Web/sites/slots/networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287768,6 +316509,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287785,6 +316531,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties1 | string)␊ type: "Microsoft.Web/sites/slots/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287805,6 +316555,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties2 | string)␊ type: "Microsoft.Web/sites/slots/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287817,6 +316571,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/slots/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287834,6 +316591,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties3 | string)␊ type: "Microsoft.Web/sites/slots/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287855,6 +316616,10 @@ Generated by [AVA](https://avajs.dev). properties: (VnetInfoProperties3 | string)␊ resources?: SitesSlotsVirtualNetworkConnectionsGatewaysChildResource3[]␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287875,6 +316640,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties4 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287889,6 +316658,7 @@ Generated by [AVA](https://avajs.dev). * The URI where the VPN package can be downloaded.␊ */␊ vpnPackageUri: string␊ + vpnPackageUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287909,6 +316679,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties4 | string)␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287926,6 +316700,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties3 | string)␊ type: "Microsoft.Web/sites/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287947,6 +316725,10 @@ Generated by [AVA](https://avajs.dev). properties: (VnetInfoProperties3 | string)␊ resources?: SitesVirtualNetworkConnectionsGatewaysChildResource3[]␊ type: "Microsoft.Web/sites/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287967,6 +316749,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties4 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -287987,6 +316773,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties4 | string)␊ type: "Microsoft.Web/sites/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288017,6 +316807,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288051,6 +316846,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID of the associated App Service plan, formatted as: "/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}".␊ */␊ serverFarmId?: string␊ + password: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288082,6 +316878,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/hostingEnvironments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288178,6 +316979,10 @@ Generated by [AVA](https://avajs.dev). * Description of worker pools with worker size IDs, VM sizes, and number of workers in each pool.␊ */␊ workerPools: (WorkerPool3[] | string)␊ + location: unknown␊ + name: unknown␊ + virtualNetwork: unknown␊ + workerPools: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288271,6 +317076,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription5 | string)␊ type: "multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288373,6 +317182,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription5 | string)␊ type: "workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288394,6 +317207,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription5 | string)␊ type: "Microsoft.Web/hostingEnvironments/multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288418,6 +317235,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription5 | string)␊ type: "Microsoft.Web/hostingEnvironments/workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288452,6 +317273,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/serverfarms"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288537,6 +317363,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties5 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288551,6 +317381,7 @@ Generated by [AVA](https://avajs.dev). * The URI where the VPN package can be downloaded.␊ */␊ vpnPackageUri: string␊ + vpnPackageUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288571,6 +317402,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetRouteProperties3 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/routes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288629,6 +317464,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -288785,6 +317625,7 @@ Generated by [AVA](https://avajs.dev). * Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist.␊ */␊ trafficManagerProfileName?: string␊ + sourceWebAppId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -289406,6 +318247,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.␊ */␊ tagWhitelistJson?: string␊ + isPushEnabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -289452,6 +318294,7 @@ Generated by [AVA](https://avajs.dev). * true to allow access to a publishing method; otherwise, false.␊ */␊ allow: (boolean | string)␊ + allow: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -289652,6 +318495,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to the container.␊ */␊ storageAccountUrl: string␊ + storageAccountUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -289678,6 +318522,10 @@ Generated by [AVA](https://avajs.dev). * When the schedule should start working.␊ */␊ startTime?: string␊ + frequencyInterval: unknown␊ + frequencyUnit: unknown␊ + keepAtLeastOneBackup: unknown␊ + retentionPeriodInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -289698,6 +318546,7 @@ Generated by [AVA](https://avajs.dev). */␊ databaseType: (("SqlAzure" | "MySql" | "LocalMySql" | "PostgreSql") | string)␊ name?: string␊ + databaseType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -289712,6 +318561,8 @@ Generated by [AVA](https://avajs.dev). * Value of pair.␊ */␊ value: string␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -289786,6 +318637,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to an Azure table with add/query/delete permissions.␊ */␊ sasUrl: string␊ + sasUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -289902,6 +318754,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties6 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -289964,6 +318820,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties3 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -289991,6 +318851,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore3 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290051,6 +318915,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties3 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290133,6 +319001,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties4 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290191,6 +319063,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties4 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290221,6 +319097,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageMigrationOptionsProperties3 | string)␊ type: "migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290243,6 +319123,8 @@ Generated by [AVA](https://avajs.dev). * trueif the app should be switched over; otherwise, false.␊ */␊ switchSiteAfterMigration?: (boolean | string)␊ + azurefilesConnectionString: unknown␊ + azurefilesShare: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290260,6 +319142,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties2 | string)␊ type: "networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290304,6 +319190,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290347,6 +319238,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties2 | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290417,6 +319312,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties3 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290443,6 +319342,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290477,6 +319379,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290494,6 +319401,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkConnectionApprovalRequest1 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290539,6 +319450,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties4 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290585,6 +319500,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetInfoProperties4 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290628,6 +319547,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties6 | string)␊ type: "Microsoft.Web/sites/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290648,6 +319571,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties3 | string)␊ type: "Microsoft.Web/sites/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290665,6 +319592,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore3 | string)␊ type: "Microsoft.Web/sites/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290686,6 +319617,10 @@ Generated by [AVA](https://avajs.dev). properties: (FunctionEnvelopeProperties3 | string)␊ resources?: SitesFunctionsKeysChildResource1[]␊ type: "Microsoft.Web/sites/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290702,6 +319637,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290718,6 +319656,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290738,6 +319679,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties4 | string)␊ type: "Microsoft.Web/sites/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290758,6 +319703,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties4 | string)␊ type: "Microsoft.Web/sites/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290778,6 +319727,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties5 | string)␊ type: "Microsoft.Web/sites/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290834,6 +319787,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore3 | string)␊ type: "Microsoft.Web/sites/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290851,6 +319808,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageMigrationOptionsProperties3 | string)␊ type: "Microsoft.Web/sites/migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290868,6 +319829,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties2 | string)␊ type: "Microsoft.Web/sites/networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290898,6 +319863,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290915,6 +319885,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties2 | string)␊ type: "Microsoft.Web/sites/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290932,6 +319906,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkConnectionApprovalRequest1 | string)␊ type: "Microsoft.Web/sites/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290952,6 +319930,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties3 | string)␊ type: "Microsoft.Web/sites/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290964,6 +319946,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -290999,6 +319984,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291019,6 +320009,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties6 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291039,6 +320033,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties3 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291056,6 +320054,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore3 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291076,6 +320078,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties3 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291096,6 +320102,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties4 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291116,6 +320126,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties4 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291133,6 +320147,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties2 | string)␊ type: "networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291163,6 +320181,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291180,6 +320203,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties2 | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291200,6 +320227,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties3 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291212,6 +320243,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291229,6 +320263,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties4 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291249,6 +320287,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetInfoProperties4 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291269,6 +320311,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties6 | string)␊ type: "Microsoft.Web/sites/slots/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291289,6 +320335,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties3 | string)␊ type: "Microsoft.Web/sites/slots/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291306,6 +320356,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore3 | string)␊ type: "Microsoft.Web/sites/slots/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291327,6 +320381,10 @@ Generated by [AVA](https://avajs.dev). properties: (FunctionEnvelopeProperties3 | string)␊ resources?: SitesSlotsFunctionsKeysChildResource1[]␊ type: "Microsoft.Web/sites/slots/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291343,6 +320401,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291359,6 +320420,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291379,6 +320443,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties4 | string)␊ type: "Microsoft.Web/sites/slots/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291399,6 +320467,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties4 | string)␊ type: "Microsoft.Web/sites/slots/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291419,6 +320491,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties5 | string)␊ type: "Microsoft.Web/sites/slots/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291436,6 +320512,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore3 | string)␊ type: "Microsoft.Web/sites/slots/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291453,6 +320533,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties2 | string)␊ type: "Microsoft.Web/sites/slots/networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291483,6 +320567,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291500,6 +320589,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties2 | string)␊ type: "Microsoft.Web/sites/slots/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291520,6 +320613,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties3 | string)␊ type: "Microsoft.Web/sites/slots/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291532,6 +320629,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/slots/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291549,6 +320649,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties4 | string)␊ type: "Microsoft.Web/sites/slots/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291570,6 +320674,10 @@ Generated by [AVA](https://avajs.dev). properties: (VnetInfoProperties4 | string)␊ resources?: SitesSlotsVirtualNetworkConnectionsGatewaysChildResource4[]␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291590,6 +320698,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties5 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291610,6 +320722,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties5 | string)␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291627,6 +320743,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties4 | string)␊ type: "Microsoft.Web/sites/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291648,6 +320768,10 @@ Generated by [AVA](https://avajs.dev). properties: (VnetInfoProperties4 | string)␊ resources?: SitesVirtualNetworkConnectionsGatewaysChildResource4[]␊ type: "Microsoft.Web/sites/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291668,6 +320792,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties5 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291688,6 +320816,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties5 | string)␊ type: "Microsoft.Web/sites/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291723,6 +320855,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/staticSites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291782,6 +320919,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "config"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291794,6 +320935,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291813,6 +320957,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/staticSites/builds/config"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291832,6 +320980,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/staticSites/config"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291844,6 +320996,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/staticSites/customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291874,6 +321029,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291908,6 +321068,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID of the associated App Service plan, formatted as: "/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}".␊ */␊ serverFarmId?: string␊ + password: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -291939,6 +321100,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/hostingEnvironments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -292035,6 +321201,10 @@ Generated by [AVA](https://avajs.dev). * Description of worker pools with worker size IDs, VM sizes, and number of workers in each pool.␊ */␊ workerPools: (WorkerPool4[] | string)␊ + location: unknown␊ + name: unknown␊ + virtualNetwork: unknown␊ + workerPools: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -292128,6 +321298,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription6 | string)␊ type: "multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -292230,6 +321404,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription6 | string)␊ type: "workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -292251,6 +321429,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription6 | string)␊ type: "Microsoft.Web/hostingEnvironments/multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -292275,6 +321457,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription6 | string)␊ type: "Microsoft.Web/hostingEnvironments/workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -292309,6 +321495,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/serverfarms"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -292394,6 +321585,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties6 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -292408,6 +321603,7 @@ Generated by [AVA](https://avajs.dev). * The URI where the VPN package can be downloaded.␊ */␊ vpnPackageUri: string␊ + vpnPackageUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -292428,6 +321624,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetRouteProperties4 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/routes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -292486,6 +321686,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -292653,6 +321858,7 @@ Generated by [AVA](https://avajs.dev). * Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist.␊ */␊ trafficManagerProfileName?: string␊ + sourceWebAppId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -293307,6 +322513,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.␊ */␊ tagWhitelistJson?: string␊ + isPushEnabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -293353,6 +322560,7 @@ Generated by [AVA](https://avajs.dev). * true to allow access to a publishing method; otherwise, false.␊ */␊ allow: (boolean | string)␊ + allow: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294255,6 +323463,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to the container.␊ */␊ storageAccountUrl: string␊ + storageAccountUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294281,6 +323490,10 @@ Generated by [AVA](https://avajs.dev). * When the schedule should start working.␊ */␊ startTime?: string␊ + frequencyInterval: unknown␊ + frequencyUnit: unknown␊ + keepAtLeastOneBackup: unknown␊ + retentionPeriodInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294301,6 +323514,7 @@ Generated by [AVA](https://avajs.dev). */␊ databaseType: (("SqlAzure" | "MySql" | "LocalMySql" | "PostgreSql") | string)␊ name?: string␊ + databaseType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294315,6 +323529,8 @@ Generated by [AVA](https://avajs.dev). * Value of pair.␊ */␊ value: string␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294389,6 +323605,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to an Azure table with add/query/delete permissions.␊ */␊ sasUrl: string␊ + sasUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294505,6 +323722,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties7 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294567,6 +323788,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties4 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294594,6 +323819,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore4 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294654,6 +323883,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties4 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294736,6 +323969,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties5 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294794,6 +324031,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties5 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294824,6 +324065,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageMigrationOptionsProperties4 | string)␊ type: "migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294846,6 +324091,8 @@ Generated by [AVA](https://avajs.dev). * trueif the app should be switched over; otherwise, false.␊ */␊ switchSiteAfterMigration?: (boolean | string)␊ + azurefilesConnectionString: unknown␊ + azurefilesShare: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294863,6 +324110,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties3 | string)␊ type: "networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294907,6 +324158,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -294950,6 +324206,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties3 | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295020,6 +324280,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties4 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295046,6 +324310,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295080,6 +324347,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295097,6 +324369,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkConnectionApprovalRequest2 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295142,6 +324418,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties5 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295192,6 +324472,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetInfoProperties5 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295235,6 +324519,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties7 | string)␊ type: "Microsoft.Web/sites/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295255,6 +324543,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties4 | string)␊ type: "Microsoft.Web/sites/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295272,6 +324564,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore4 | string)␊ type: "Microsoft.Web/sites/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295293,6 +324589,10 @@ Generated by [AVA](https://avajs.dev). properties: (FunctionEnvelopeProperties4 | string)␊ resources?: SitesFunctionsKeysChildResource2[]␊ type: "Microsoft.Web/sites/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295309,6 +324609,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295325,6 +324628,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295345,6 +324651,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties5 | string)␊ type: "Microsoft.Web/sites/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295365,6 +324675,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties5 | string)␊ type: "Microsoft.Web/sites/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295385,6 +324699,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties6 | string)␊ type: "Microsoft.Web/sites/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295441,6 +324759,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore4 | string)␊ type: "Microsoft.Web/sites/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295458,6 +324780,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageMigrationOptionsProperties4 | string)␊ type: "Microsoft.Web/sites/migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295475,6 +324801,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties3 | string)␊ type: "Microsoft.Web/sites/networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295505,6 +324835,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295522,6 +324857,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties3 | string)␊ type: "Microsoft.Web/sites/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295539,6 +324878,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkConnectionApprovalRequest2 | string)␊ type: "Microsoft.Web/sites/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295559,6 +324902,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties4 | string)␊ type: "Microsoft.Web/sites/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295571,6 +324918,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295606,6 +324956,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295626,6 +324981,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties7 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295646,6 +325005,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties4 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295663,6 +325026,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore4 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295683,6 +325050,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties4 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295703,6 +325074,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties5 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295723,6 +325098,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties5 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295740,6 +325119,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties3 | string)␊ type: "networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295770,6 +325153,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295787,6 +325175,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties3 | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295807,6 +325199,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties4 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295819,6 +325215,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295836,6 +325235,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties5 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295856,6 +325259,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetInfoProperties5 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295876,6 +325283,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties7 | string)␊ type: "Microsoft.Web/sites/slots/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295896,6 +325307,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties4 | string)␊ type: "Microsoft.Web/sites/slots/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295913,6 +325328,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore4 | string)␊ type: "Microsoft.Web/sites/slots/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295934,6 +325353,10 @@ Generated by [AVA](https://avajs.dev). properties: (FunctionEnvelopeProperties4 | string)␊ resources?: SitesSlotsFunctionsKeysChildResource2[]␊ type: "Microsoft.Web/sites/slots/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295950,6 +325373,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295966,6 +325392,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -295986,6 +325415,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties5 | string)␊ type: "Microsoft.Web/sites/slots/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296006,6 +325439,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties5 | string)␊ type: "Microsoft.Web/sites/slots/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296026,6 +325463,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties6 | string)␊ type: "Microsoft.Web/sites/slots/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296043,6 +325484,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore4 | string)␊ type: "Microsoft.Web/sites/slots/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296060,6 +325505,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties3 | string)␊ type: "Microsoft.Web/sites/slots/networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296090,6 +325539,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296107,6 +325561,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties3 | string)␊ type: "Microsoft.Web/sites/slots/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296127,6 +325585,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties4 | string)␊ type: "Microsoft.Web/sites/slots/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296139,6 +325601,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/slots/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296156,6 +325621,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties5 | string)␊ type: "Microsoft.Web/sites/slots/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296177,6 +325646,10 @@ Generated by [AVA](https://avajs.dev). properties: (VnetInfoProperties5 | string)␊ resources?: SitesSlotsVirtualNetworkConnectionsGatewaysChildResource5[]␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296197,6 +325670,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties6 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296217,6 +325694,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties6 | string)␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296234,6 +325715,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties5 | string)␊ type: "Microsoft.Web/sites/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296255,6 +325740,10 @@ Generated by [AVA](https://avajs.dev). properties: (VnetInfoProperties5 | string)␊ resources?: SitesVirtualNetworkConnectionsGatewaysChildResource5[]␊ type: "Microsoft.Web/sites/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296275,6 +325764,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties6 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296295,6 +325788,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties6 | string)␊ type: "Microsoft.Web/sites/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296330,6 +325827,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/staticSites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296389,6 +325891,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "config"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296401,6 +325907,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296420,6 +325929,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/staticSites/builds/config"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296439,6 +325952,10 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/staticSites/config"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296451,6 +325968,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/staticSites/customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296485,6 +326005,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296519,6 +326044,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID of the associated App Service plan, formatted as: "/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}".␊ */␊ serverFarmId?: string␊ + password: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296584,6 +326110,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/hostingEnvironments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296680,6 +326211,10 @@ Generated by [AVA](https://avajs.dev). * Description of worker pools with worker size IDs, VM sizes, and number of workers in each pool.␊ */␊ workerPools: (WorkerPool5[] | string)␊ + location: unknown␊ + name: unknown␊ + virtualNetwork: unknown␊ + workerPools: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296777,6 +326312,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296883,6 +326422,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296908,6 +326451,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/hostingEnvironments/multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296936,6 +326483,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/hostingEnvironments/workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -296974,6 +326525,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/serverfarms"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -297063,6 +326619,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -297077,6 +326637,7 @@ Generated by [AVA](https://avajs.dev). * The URI where the VPN package can be downloaded.␊ */␊ vpnPackageUri: string␊ + vpnPackageUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -297101,6 +326662,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/routes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -297163,6 +326728,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -297330,6 +326900,7 @@ Generated by [AVA](https://avajs.dev). * Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist.␊ */␊ trafficManagerProfileName?: string␊ + sourceWebAppId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -297988,6 +327559,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.␊ */␊ tagWhitelistJson?: string␊ + isPushEnabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -298034,6 +327606,7 @@ Generated by [AVA](https://avajs.dev). * true to allow access to a publishing method; otherwise, false.␊ */␊ allow: (boolean | string)␊ + allow: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299064,6 +328637,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to the container.␊ */␊ storageAccountUrl: string␊ + storageAccountUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299090,6 +328664,10 @@ Generated by [AVA](https://avajs.dev). * When the schedule should start working.␊ */␊ startTime?: string␊ + frequencyInterval: unknown␊ + frequencyUnit: unknown␊ + keepAtLeastOneBackup: unknown␊ + retentionPeriodInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299110,6 +328688,7 @@ Generated by [AVA](https://avajs.dev). */␊ databaseType: (("SqlAzure" | "MySql" | "LocalMySql" | "PostgreSql") | string)␊ name?: string␊ + databaseType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299124,6 +328703,8 @@ Generated by [AVA](https://avajs.dev). * Value of pair.␊ */␊ value: string␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299198,6 +328779,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to an Azure table with add/query/delete permissions.␊ */␊ sasUrl: string␊ + sasUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299318,6 +328900,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299384,6 +328970,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299415,6 +329005,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299479,6 +329073,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299565,6 +329163,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299627,6 +329229,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299661,6 +329267,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299683,6 +329293,8 @@ Generated by [AVA](https://avajs.dev). * trueif the app should be switched over; otherwise, false.␊ */␊ switchSiteAfterMigration?: (boolean | string)␊ + azurefilesConnectionString: unknown␊ + azurefilesShare: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299704,6 +329316,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299752,6 +329368,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299799,6 +329420,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299873,6 +329498,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299899,6 +329528,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299937,6 +329569,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -299958,6 +329595,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300007,6 +329648,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300061,6 +329706,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300108,6 +329757,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300132,6 +329785,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300153,6 +329810,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300178,6 +329839,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300194,6 +329859,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300210,6 +329878,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300234,6 +329905,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300258,6 +329933,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300282,6 +329961,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300342,6 +330025,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300363,6 +330050,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300384,6 +330075,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300418,6 +330113,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300439,6 +330139,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300460,6 +330164,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300484,6 +330192,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300496,6 +330208,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300535,6 +330250,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300559,6 +330279,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300583,6 +330307,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300604,6 +330332,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300628,6 +330360,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300652,6 +330388,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300676,6 +330416,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300697,6 +330441,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300731,6 +330479,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300752,6 +330505,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300776,6 +330533,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300788,6 +330549,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300809,6 +330573,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300833,6 +330601,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300857,6 +330629,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300881,6 +330657,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300902,6 +330682,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300927,6 +330711,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300943,6 +330731,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300959,6 +330750,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -300983,6 +330777,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301007,6 +330805,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301031,6 +330833,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301052,6 +330858,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301073,6 +330883,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301107,6 +330921,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301128,6 +330947,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301152,6 +330975,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301164,6 +330991,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/slots/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301185,6 +331015,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301210,6 +331044,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301234,6 +331072,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301258,6 +331100,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301279,6 +331125,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301304,6 +331154,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301328,6 +331182,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301352,6 +331210,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/sites/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301391,6 +331253,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/staticSites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301454,6 +331321,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "config"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301466,6 +331337,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301489,6 +331363,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/staticSites/builds/config"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301512,6 +331390,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData5 | string)␊ type: "Microsoft.Web/staticSites/config"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301524,6 +331406,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/staticSites/customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301558,6 +331443,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301592,6 +331482,7 @@ Generated by [AVA](https://avajs.dev). * Resource ID of the associated App Service plan, formatted as: "/subscriptions/{subscriptionID}/resourceGroups/{groupName}/providers/Microsoft.Web/serverfarms/{appServicePlanName}".␊ */␊ serverFarmId?: string␊ + password: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301657,6 +331548,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/hostingEnvironments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301753,6 +331649,10 @@ Generated by [AVA](https://avajs.dev). * Description of worker pools with worker size IDs, VM sizes, and number of workers in each pool.␊ */␊ workerPools: (WorkerPool6[] | string)␊ + location: unknown␊ + name: unknown␊ + virtualNetwork: unknown␊ + workerPools: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301850,6 +331750,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301956,6 +331860,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -301981,6 +331889,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/hostingEnvironments/multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -302009,6 +331921,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/hostingEnvironments/workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -302047,6 +331963,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/serverfarms"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -302136,6 +332057,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -302150,6 +332075,7 @@ Generated by [AVA](https://avajs.dev). * The URI where the VPN package can be downloaded.␊ */␊ vpnPackageUri: string␊ + vpnPackageUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -302174,6 +332100,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/routes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -302236,6 +332166,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -302407,6 +332342,7 @@ Generated by [AVA](https://avajs.dev). * Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist.␊ */␊ trafficManagerProfileName?: string␊ + sourceWebAppId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -303065,6 +333001,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.␊ */␊ tagWhitelistJson?: string␊ + isPushEnabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -303111,6 +333048,7 @@ Generated by [AVA](https://avajs.dev). * true to allow access to a publishing method; otherwise, false.␊ */␊ allow: (boolean | string)␊ + allow: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304141,6 +334079,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to the container.␊ */␊ storageAccountUrl: string␊ + storageAccountUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304167,6 +334106,10 @@ Generated by [AVA](https://avajs.dev). * When the schedule should start working.␊ */␊ startTime?: string␊ + frequencyInterval: unknown␊ + frequencyUnit: unknown␊ + keepAtLeastOneBackup: unknown␊ + retentionPeriodInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304187,6 +334130,7 @@ Generated by [AVA](https://avajs.dev). */␊ databaseType: (("SqlAzure" | "MySql" | "LocalMySql" | "PostgreSql") | string)␊ name?: string␊ + databaseType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304201,6 +334145,8 @@ Generated by [AVA](https://avajs.dev). * Value of pair.␊ */␊ value: string␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304275,6 +334221,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to an Azure table with add/query/delete permissions.␊ */␊ sasUrl: string␊ + sasUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304395,6 +334342,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304461,6 +334412,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304492,6 +334447,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304556,6 +334515,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304642,6 +334605,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304704,6 +334671,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304738,6 +334709,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304760,6 +334735,8 @@ Generated by [AVA](https://avajs.dev). * trueif the app should be switched over; otherwise, false.␊ */␊ switchSiteAfterMigration?: (boolean | string)␊ + azurefilesConnectionString: unknown␊ + azurefilesShare: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304781,6 +334758,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304829,6 +334810,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304876,6 +334862,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304950,6 +334940,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -304976,6 +334970,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305014,6 +335011,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305035,6 +335037,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305084,6 +335090,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305138,6 +335148,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305185,6 +335199,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305209,6 +335227,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305230,6 +335252,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305255,6 +335281,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305271,6 +335301,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305287,6 +335320,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305311,6 +335347,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305335,6 +335375,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305359,6 +335403,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305419,6 +335467,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305440,6 +335492,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305461,6 +335517,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305495,6 +335555,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305516,6 +335581,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305537,6 +335606,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305561,6 +335634,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305573,6 +335650,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305612,6 +335692,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305636,6 +335721,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305660,6 +335749,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305681,6 +335774,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305705,6 +335802,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305729,6 +335830,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305753,6 +335858,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305774,6 +335883,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305808,6 +335921,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305829,6 +335947,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305853,6 +335975,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305865,6 +335991,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305886,6 +336015,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305910,6 +336043,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305934,6 +336071,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305958,6 +336099,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -305979,6 +336124,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306004,6 +336153,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306020,6 +336173,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306036,6 +336192,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306060,6 +336219,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306084,6 +336247,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306108,6 +336275,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306129,6 +336300,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306150,6 +336325,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306184,6 +336363,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306205,6 +336389,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306229,6 +336417,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306241,6 +336433,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/slots/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306262,6 +336457,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306287,6 +336486,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306311,6 +336514,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306335,6 +336542,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306356,6 +336567,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306381,6 +336596,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306405,6 +336624,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306429,6 +336652,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/sites/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306468,6 +336695,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/staticSites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306531,6 +336763,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "config"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306543,6 +336779,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306566,6 +336805,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/staticSites/builds/config"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306589,6 +336832,10 @@ Generated by [AVA](https://avajs.dev). */␊ systemData?: (SystemData6 | string)␊ type: "Microsoft.Web/staticSites/config"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306601,6 +336848,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/staticSites/customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306631,6 +336881,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/certificates"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306700,6 +336955,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/hostingEnvironments"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306738,6 +336998,7 @@ Generated by [AVA](https://avajs.dev). * Specification for using a Virtual Network.␊ */␊ virtualNetwork: (VirtualNetworkProfile10 | string)␊ + virtualNetwork: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306766,6 +337027,7 @@ Generated by [AVA](https://avajs.dev). * Subnet within the Virtual Network.␊ */␊ subnet?: string␊ + id: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306783,6 +337045,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AseV3NetworkingConfigurationProperties | string)␊ type: "configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306814,6 +337080,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription9 | string)␊ type: "multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306938,6 +337208,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkConnectionApprovalRequest5 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -306990,6 +337264,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription9 | string)␊ type: "workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -307007,6 +337285,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (AseV3NetworkingConfigurationProperties | string)␊ type: "Microsoft.Web/hostingEnvironments/configurations"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -307028,6 +337310,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription9 | string)␊ type: "Microsoft.Web/hostingEnvironments/multiRolePools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -307048,6 +337334,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkConnectionApprovalRequest5 | string)␊ type: "Microsoft.Web/hostingEnvironments/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -307072,6 +337362,10 @@ Generated by [AVA](https://avajs.dev). */␊ sku?: (SkuDescription9 | string)␊ type: "Microsoft.Web/hostingEnvironments/workerPools"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -307106,6 +337400,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/serverfarms"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -307205,6 +337504,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties9 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -307219,6 +337522,7 @@ Generated by [AVA](https://avajs.dev). * The URI where the VPN package can be downloaded.␊ */␊ vpnPackageUri: string␊ + vpnPackageUri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -307239,6 +337543,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetRouteProperties7 | string)␊ type: "Microsoft.Web/serverfarms/virtualNetworkConnections/routes"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -307297,6 +337605,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -307477,6 +337790,7 @@ Generated by [AVA](https://avajs.dev). * Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist.␊ */␊ trafficManagerProfileName?: string␊ + sourceWebAppId: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -308226,6 +338540,7 @@ Generated by [AVA](https://avajs.dev). * Gets or sets a JSON string containing a list of tags that are whitelisted for use by the push registration endpoint.␊ */␊ tagWhitelistJson?: string␊ + isPushEnabled: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -308272,6 +338587,7 @@ Generated by [AVA](https://avajs.dev). * true to allow access to a publishing method; otherwise, false.␊ */␊ allow: (boolean | string)␊ + allow: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309202,6 +339518,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to the container.␊ */␊ storageAccountUrl: string␊ + storageAccountUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309228,6 +339545,10 @@ Generated by [AVA](https://avajs.dev). * When the schedule should start working.␊ */␊ startTime?: string␊ + frequencyInterval: unknown␊ + frequencyUnit: unknown␊ + keepAtLeastOneBackup: unknown␊ + retentionPeriodInDays: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309248,6 +339569,7 @@ Generated by [AVA](https://avajs.dev). */␊ databaseType: (("SqlAzure" | "MySql" | "LocalMySql" | "PostgreSql") | string)␊ name?: string␊ + databaseType: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309262,6 +339584,8 @@ Generated by [AVA](https://avajs.dev). * Value of pair.␊ */␊ value: string␊ + type: unknown␊ + value: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309336,6 +339660,7 @@ Generated by [AVA](https://avajs.dev). * SAS URL to an Azure table with add/query/delete permissions.␊ */␊ sasUrl: string␊ + sasUrl: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309452,6 +339777,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties10 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309514,6 +339843,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties7 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309541,6 +339874,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore7 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309601,6 +339938,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties7 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309683,6 +340024,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties8 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309741,6 +340086,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties8 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309771,6 +340120,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageMigrationOptionsProperties7 | string)␊ type: "migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309793,6 +340146,8 @@ Generated by [AVA](https://avajs.dev). * trueif the app should be switched over; otherwise, false.␊ */␊ switchSiteAfterMigration?: (boolean | string)␊ + azurefilesConnectionString: unknown␊ + azurefilesShare: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309810,6 +340165,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties6 | string)␊ type: "networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309854,6 +340213,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309897,6 +340261,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties6 | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309967,6 +340335,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkConnectionApprovalRequest5 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -309987,6 +340359,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties7 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310013,6 +340389,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310047,6 +340426,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310064,6 +340448,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties8 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310176,6 +340564,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetInfoProperties8 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310219,6 +340611,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties10 | string)␊ type: "Microsoft.Web/sites/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310239,6 +340635,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties7 | string)␊ type: "Microsoft.Web/sites/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310256,6 +340656,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore7 | string)␊ type: "Microsoft.Web/sites/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310277,6 +340681,10 @@ Generated by [AVA](https://avajs.dev). properties: (FunctionEnvelopeProperties7 | string)␊ resources?: SitesFunctionsKeysChildResource5[]␊ type: "Microsoft.Web/sites/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310293,6 +340701,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310309,6 +340720,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310329,6 +340743,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties8 | string)␊ type: "Microsoft.Web/sites/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310349,6 +340767,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties8 | string)␊ type: "Microsoft.Web/sites/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310369,6 +340791,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties9 | string)␊ type: "Microsoft.Web/sites/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310425,6 +340851,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore7 | string)␊ type: "Microsoft.Web/sites/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310442,6 +340872,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StorageMigrationOptionsProperties7 | string)␊ type: "Microsoft.Web/sites/migrate"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310459,6 +340893,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SwiftVirtualNetworkProperties6 | string)␊ type: "Microsoft.Web/sites/networkConfig"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310489,6 +340927,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310506,6 +340949,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties6 | string)␊ type: "Microsoft.Web/sites/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310526,6 +340973,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkConnectionApprovalRequest5 | string)␊ type: "Microsoft.Web/sites/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310546,6 +340997,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties7 | string)␊ type: "Microsoft.Web/sites/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310558,6 +341013,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310593,6 +341051,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310613,6 +341076,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties10 | string)␊ type: "deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310633,6 +341100,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties7 | string)␊ type: "domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310650,6 +341121,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore7 | string)␊ type: "extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310670,6 +341145,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (FunctionEnvelopeProperties7 | string)␊ type: "functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310690,6 +341169,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties8 | string)␊ type: "hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310710,6 +341193,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties8 | string)␊ type: "hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310740,6 +341227,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310757,6 +341249,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties6 | string)␊ type: "privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310777,6 +341273,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkConnectionApprovalRequest5 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310797,6 +341297,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties7 | string)␊ type: "publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310809,6 +341313,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310826,6 +341333,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties8 | string)␊ type: "sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310846,6 +341357,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetInfoProperties8 | string)␊ type: "virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310866,6 +341381,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties10 | string)␊ type: "Microsoft.Web/sites/slots/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310886,6 +341405,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (IdentifierProperties7 | string)␊ type: "Microsoft.Web/sites/slots/domainOwnershipIdentifiers"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310903,6 +341426,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore7 | string)␊ type: "Microsoft.Web/sites/slots/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310924,6 +341451,10 @@ Generated by [AVA](https://avajs.dev). properties: (FunctionEnvelopeProperties7 | string)␊ resources?: SitesSlotsFunctionsKeysChildResource5[]␊ type: "Microsoft.Web/sites/slots/functions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310940,6 +341471,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310956,6 +341490,9 @@ Generated by [AVA](https://avajs.dev). * Key value␊ */␊ value?: string␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310976,6 +341513,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HostNameBindingProperties8 | string)␊ type: "Microsoft.Web/sites/slots/hostNameBindings"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -310996,6 +341537,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (RelayServiceConnectionEntityProperties8 | string)␊ type: "Microsoft.Web/sites/slots/hybridconnection"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311016,6 +341561,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (HybridConnectionProperties9 | string)␊ type: "Microsoft.Web/sites/slots/hybridConnectionNamespaces/relays"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311033,6 +341582,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (MSDeployCore7 | string)␊ type: "Microsoft.Web/sites/slots/instances/extensions"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311063,6 +341616,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/sites/slots/premieraddons"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311080,6 +341638,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateAccessProperties6 | string)␊ type: "Microsoft.Web/sites/slots/privateAccess"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311100,6 +341662,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkConnectionApprovalRequest5 | string)␊ type: "Microsoft.Web/sites/slots/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311120,6 +341686,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PublicCertificateProperties7 | string)␊ type: "Microsoft.Web/sites/slots/publicCertificates"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311132,6 +341702,9 @@ Generated by [AVA](https://avajs.dev). */␊ name: string␊ type: "Microsoft.Web/sites/slots/siteextensions"␊ + apiVersion: unknown␊ + name: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311149,6 +341722,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties8 | string)␊ type: "Microsoft.Web/sites/slots/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311170,6 +341747,10 @@ Generated by [AVA](https://avajs.dev). properties: (VnetInfoProperties8 | string)␊ resources?: SitesSlotsVirtualNetworkConnectionsGatewaysChildResource8[]␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311190,6 +341771,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties9 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311210,6 +341795,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties9 | string)␊ type: "Microsoft.Web/sites/slots/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311227,6 +341816,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (SiteSourceControlProperties8 | string)␊ type: "Microsoft.Web/sites/sourcecontrols"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311248,6 +341841,10 @@ Generated by [AVA](https://avajs.dev). properties: (VnetInfoProperties8 | string)␊ resources?: SitesVirtualNetworkConnectionsGatewaysChildResource8[]␊ type: "Microsoft.Web/sites/virtualNetworkConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311268,6 +341865,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties9 | string)␊ type: "gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311288,6 +341889,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (VnetGatewayProperties9 | string)␊ type: "Microsoft.Web/sites/virtualNetworkConnections/gateways"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311327,6 +341932,11 @@ Generated by [AVA](https://avajs.dev). [k: string]: string␊ } | string)␊ type: "Microsoft.Web/staticSites"␊ + apiVersion: unknown␊ + location: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311445,6 +342055,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StaticSiteCustomDomainRequestPropertiesARMResourceProperties | string)␊ type: "customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311475,6 +342089,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkConnectionApprovalRequest5 | string)␊ type: "privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311495,6 +342113,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StaticSiteUserProvidedFunctionAppARMResourceProperties | string)␊ type: "userProvidedFunctionApps"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311529,6 +342151,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StaticSiteUserProvidedFunctionAppARMResourceProperties | string)␊ type: "Microsoft.Web/staticSites/builds/userProvidedFunctionApps"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311549,6 +342175,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StaticSiteCustomDomainRequestPropertiesARMResourceProperties | string)␊ type: "Microsoft.Web/staticSites/customDomains"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311569,6 +342199,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (PrivateLinkConnectionApprovalRequest5 | string)␊ type: "Microsoft.Web/staticSites/privateEndpointConnections"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311589,6 +342223,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (StaticSiteUserProvidedFunctionAppARMResourceProperties | string)␊ type: "Microsoft.Web/staticSites/userProvidedFunctionApps"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311621,6 +342259,9 @@ Generated by [AVA](https://avajs.dev). * Promotion code␊ */␊ promotionCode?: string␊ + name: unknown␊ + publisher: unknown␊ + product: unknown␊ [k: string]: unknown␊ }␊ properties: {␊ @@ -311636,8 +342277,16 @@ Generated by [AVA](https://avajs.dev). * The user's email address␊ */␊ email: string␊ + password: unknown␊ + acceptMarketingEmails: unknown␊ + email: unknown␊ [k: string]: unknown␊ }␊ + name: unknown␊ + type: unknown␊ + plan: unknown␊ + apiVersion: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311683,8 +342332,13 @@ Generated by [AVA](https://avajs.dev). parameters?: ({␊ [k: string]: unknown␊ } | string)␊ + mode: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311695,6 +342349,7 @@ Generated by [AVA](https://avajs.dev). * Template expression evaluation scope␊ */␊ scope: ("inner" | "outer")␊ + scope: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311709,6 +342364,7 @@ Generated by [AVA](https://avajs.dev). * If included it must match the contentVersion in the template␊ */␊ contentVersion?: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311723,6 +342379,7 @@ Generated by [AVA](https://avajs.dev). * If included it must match the contentVersion in the parameters file␊ */␊ contentVersion?: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311739,6 +342396,10 @@ Generated by [AVA](https://avajs.dev). */␊ properties: (DeploymentProperties11 | string)␊ type: "Microsoft.Resources/deployments"␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311770,6 +342431,7 @@ Generated by [AVA](https://avajs.dev). * Entity representing the reference to the template.␊ */␊ templateLink?: (TemplateLink3 | string)␊ + mode: unknown␊ [k: string]: unknown␊ }␊ export interface DebugSetting2 {␊ @@ -311791,6 +342453,7 @@ Generated by [AVA](https://avajs.dev). * URI referencing the template.␊ */␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311805,6 +342468,7 @@ Generated by [AVA](https://avajs.dev). * URI referencing the template.␊ */␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311833,6 +342497,10 @@ Generated by [AVA](https://avajs.dev). * The resource group to deploy to␊ */␊ resourceGroup?: string␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311868,6 +342536,7 @@ Generated by [AVA](https://avajs.dev). * Entity representing the reference to the template.␊ */␊ templateLink?: (TemplateLink4 | string)␊ + mode: unknown␊ [k: string]: unknown␊ }␊ export interface DebugSetting3 {␊ @@ -311903,6 +342572,7 @@ Generated by [AVA](https://avajs.dev). * The URI of the parameters file.␊ */␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311917,6 +342587,7 @@ Generated by [AVA](https://avajs.dev). * The URI of the template to deploy.␊ */␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311945,6 +342616,10 @@ Generated by [AVA](https://avajs.dev). * The resource group to deploy to␊ */␊ resourceGroup?: string␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -311983,6 +342658,7 @@ Generated by [AVA](https://avajs.dev). * Entity representing the reference to the template.␊ */␊ templateLink?: (TemplateLink5 | string)␊ + mode: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -312021,6 +342697,7 @@ Generated by [AVA](https://avajs.dev). * The URI of the parameters file.␊ */␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -312035,6 +342712,7 @@ Generated by [AVA](https://avajs.dev). * The URI of the template to deploy.␊ */␊ uri: string␊ + uri: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -312060,8 +342738,13 @@ Generated by [AVA](https://avajs.dev). * Notes for this link␊ */␊ notes?: string␊ + targetId: unknown␊ [k: string]: unknown␊ }␊ + type: unknown␊ + apiVersion: unknown␊ + name: unknown␊ + properties: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -312084,6 +342767,7 @@ Generated by [AVA](https://avajs.dev). type: ("string" | "securestring" | "int" | "bool" | "object" | "secureObject" | "array")␊ value?: ParameterValueTypes2␊ copy?: OutputCopy␊ + type: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -312097,9 +342781,23 @@ Generated by [AVA](https://avajs.dev). /**␊ * Input of the copy␊ */␊ - input: ((string | boolean | number | unknown[] | {␊ + input: ((((string & {␊ + [k: string]: unknown␊ + }) | (boolean & {␊ + [k: string]: unknown␊ + }) | (number & {␊ + [k: string]: unknown␊ + }) | ({␊ + [k: string]: unknown␊ + } & unknown[]) | {␊ + [k: string]: unknown␊ + } | (null & {␊ + [k: string]: unknown␊ + })) & {␊ [k: string]: unknown␊ - } | null) | string)␊ + }) | string)␊ + count: unknown␊ + input: unknown␊ [k: string]: unknown␊ }␊ ` @@ -312242,6 +342940,7 @@ Generated by [AVA](https://avajs.dev). */␊ guarantor?: Account_Guarantor[]␊ partOf?: Reference477␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -314630,6 +345329,7 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element93␊ + origin: unknown␊ }␊ /**␊ * The base quantity that a measured value of zero represents. In addition, this provides the units of the entire measurement series.␊ @@ -314785,6 +345485,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -316446,6 +347148,7 @@ Generated by [AVA](https://avajs.dev). valueQuantity?: Quantity6␊ valueRange?: Range2␊ valueReference?: Reference7␊ + code: unknown␊ }␊ /**␊ * A reference to a code defined by a terminology system.␊ @@ -317224,6 +347927,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -317469,6 +348173,7 @@ Generated by [AVA](https://avajs.dev). * Dynamic values that will be evaluated to produce values for elements of the resulting resource. For example, if the dosage of a medication must be computed based on the patient's weight, a dynamic value would be used to specify an expression that calculated the weight, and the path on the request resource that would contain the result.␊ */␊ dynamicValue?: ActivityDefinition_DynamicValue[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -317559,6 +348264,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -317791,6 +348497,7 @@ Generated by [AVA](https://avajs.dev). valueQuantity?: Quantity6␊ valueRange?: Range2␊ valueReference?: Reference7␊ + code: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -318445,6 +349152,7 @@ Generated by [AVA](https://avajs.dev). path?: string␊ _path?: Element174␊ expression: Expression2␊ + expression: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -318592,6 +349300,8 @@ Generated by [AVA](https://avajs.dev). * AdverseEvent.study.␊ */␊ study?: Reference11[]␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -318682,6 +349392,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -319001,6 +349712,7 @@ Generated by [AVA](https://avajs.dev). * Information on the possible cause of the event.␊ */␊ causality?: AdverseEvent_Causality[]␊ + instance: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -319246,6 +349958,8 @@ Generated by [AVA](https://avajs.dev). * Details about each adverse reaction event linked to exposure to the identified substance.␊ */␊ reaction?: AllergyIntolerance_Reaction[]␊ + patient: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -319336,6 +350050,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -319753,6 +350468,7 @@ Generated by [AVA](https://avajs.dev). * Additional text about the adverse reaction event not captured in other fields.␊ */␊ note?: Annotation1[]␊ + manifestation: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -319968,6 +350684,8 @@ Generated by [AVA](https://avajs.dev). * The duration (usually in minutes) could also be provided to indicate the length of the appointment to fill and populate the start/end times for the actual allocated time. However, in other situations the duration may be calculated by the scheduling system.␊ */␊ requestedPeriod?: Period11[]␊ + participant: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -320058,6 +350776,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -320426,6 +351145,8 @@ Generated by [AVA](https://avajs.dev). */␊ comment?: string␊ _comment?: Element211␊ + appointment: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -320516,6 +351237,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -320708,6 +351430,10 @@ Generated by [AVA](https://avajs.dev). * Specific instances of data or objects that have been accessed.␊ */␊ entity?: AuditEvent_Entity[]␊ + agent: unknown␊ + source: unknown␊ + type: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -320798,6 +351524,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A reference to a code defined by a terminology system.␊ @@ -321211,6 +351938,7 @@ Generated by [AVA](https://avajs.dev). * Code specifying the type of source where event originated.␊ */␊ type?: Coding[]␊ + observer: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -321609,6 +352337,8 @@ Generated by [AVA](https://avajs.dev). created?: string␊ _created?: Element232␊ author?: Reference30␊ + code: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -321699,6 +352429,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -321831,6 +352562,7 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element236␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -322032,6 +352764,7 @@ Generated by [AVA](https://avajs.dev). * Product storage.␊ */␊ storage?: BiologicallyDerivedProduct_Storage[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -322122,6 +352855,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -322684,6 +353418,8 @@ Generated by [AVA](https://avajs.dev). */␊ image?: Attachment2[]␊ patient: Reference35␊ + patient: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -322774,6 +353510,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -322977,6 +353714,7 @@ Generated by [AVA](https://avajs.dev). */␊ entry?: Bundle_Entry[]␊ signature?: Signature13␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -323374,6 +354112,7 @@ Generated by [AVA](https://avajs.dev). * A document definition.␊ */␊ document?: CapabilityStatement_Document[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -323464,6 +354203,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -324318,6 +355058,7 @@ Generated by [AVA](https://avajs.dev). */␊ documentation?: string␊ _documentation?: Element301␊ + definition: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -324461,6 +355202,7 @@ Generated by [AVA](https://avajs.dev). */␊ address?: string␊ _address?: Element304␊ + protocol: unknown␊ }␊ /**␊ * A reference to a code defined by a terminology system.␊ @@ -324566,6 +355308,7 @@ Generated by [AVA](https://avajs.dev). * A URI that is a reference to a canonical URL on a FHIR resource␊ */␊ definition: string␊ + definition: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -324612,6 +355355,7 @@ Generated by [AVA](https://avajs.dev). * A URI that is a reference to a canonical URL on a FHIR resource␊ */␊ profile: string␊ + profile: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -324766,6 +355510,8 @@ Generated by [AVA](https://avajs.dev). * General notes about the care plan not covered elsewhere.␊ */␊ note?: Annotation1[]␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -324856,6 +355602,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -325587,6 +356334,7 @@ Generated by [AVA](https://avajs.dev). * Comments made about the CareTeam.␊ */␊ note?: Annotation1[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -325677,6 +356425,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -325985,6 +356734,8 @@ Generated by [AVA](https://avajs.dev). * Used for example, to point to a substance, or to a device used to administer a medication.␊ */␊ relatedEntry?: CatalogEntry_RelatedEntry[]␊ + resourceType: unknown␊ + referencedItem: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -326075,6 +356826,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -326228,6 +356980,7 @@ Generated by [AVA](https://avajs.dev). relationtype?: ("triggers" | "is-replaced-by")␊ _relationtype?: Element332␊ item: Reference48␊ + item: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -326397,6 +357150,9 @@ Generated by [AVA](https://avajs.dev). * Further information supporting this charge.␊ */␊ supportingInformation?: Reference11[]␊ + code: unknown␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -326487,6 +357243,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -326670,6 +357427,7 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ function?: CodeableConcept39␊ actor: Reference51␊ + actor: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -327140,6 +357898,7 @@ Generated by [AVA](https://avajs.dev). * Group of properties which are applicable under the same conditions. If no applicability rules are established for the group, then all properties always apply.␊ */␊ propertyGroup?: ChargeItemDefinition_PropertyGroup[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -327230,6 +357989,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -327722,6 +358482,12 @@ Generated by [AVA](https://avajs.dev). */␊ item?: Claim_Item[]␊ total?: Money9␊ + insurance: unknown␊ + provider: unknown␊ + patient: unknown␊ + type: unknown␊ + priority: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -327812,6 +358578,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -328275,6 +359042,7 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ type: CodeableConcept48␊ party?: Reference64␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -328422,6 +359190,7 @@ Generated by [AVA](https://avajs.dev). _responsible?: Element364␊ role?: CodeableConcept49␊ qualification?: CodeableConcept50␊ + provider: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -328569,6 +359338,7 @@ Generated by [AVA](https://avajs.dev). valueAttachment?: Attachment3␊ valueReference?: Reference68␊ reason?: CodeableConcept53␊ + category: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -329137,6 +359907,7 @@ Generated by [AVA](https://avajs.dev). */␊ _preAuthRef?: Element23[]␊ claimResponse?: Reference72␊ + coverage: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -329525,6 +360296,7 @@ Generated by [AVA](https://avajs.dev). * A claim detail line. Either a simple (a product or service) or a 'group' of sub-details which are simple items.␊ */␊ detail?: Claim_Detail[]␊ + productOrService: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -329925,6 +360697,7 @@ Generated by [AVA](https://avajs.dev). * A claim detail line. Either a simple (a product or service) or a 'group' of sub-details which are simple items.␊ */␊ subDetail?: Claim_SubDetail[]␊ + productOrService: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -330148,6 +360921,7 @@ Generated by [AVA](https://avajs.dev). * Unique Device Identifiers associated with this line item.␊ */␊ udi?: Reference11[]␊ + productOrService: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -330464,6 +361238,10 @@ Generated by [AVA](https://avajs.dev). * Errors encountered during the processing of the adjudication.␊ */␊ error?: ClaimResponse_Error[]␊ + patient: unknown␊ + insurer: unknown␊ + type: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -330554,6 +361332,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -330885,6 +361664,7 @@ Generated by [AVA](https://avajs.dev). * A claim detail. Either a simple (a product or service) or a 'group' of sub-details which are simple items.␊ */␊ detail?: ClaimResponse_Detail[]␊ + adjudication: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -330925,6 +361705,7 @@ Generated by [AVA](https://avajs.dev). */␊ value?: number␊ _value?: Element392␊ + category: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -331045,6 +361826,7 @@ Generated by [AVA](https://avajs.dev). * A sub-detail adjudication of a simple product or service.␊ */␊ subDetail?: ClaimResponse_SubDetail[]␊ + adjudication: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -331201,6 +361983,8 @@ Generated by [AVA](https://avajs.dev). * The second-tier service adjudications for payor added services.␊ */␊ detail?: ClaimResponse_Detail1[]␊ + adjudication: unknown␊ + productOrService: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -331541,6 +362325,8 @@ Generated by [AVA](https://avajs.dev). * The third-tier service adjudications for payor added services.␊ */␊ subDetail?: ClaimResponse_SubDetail1[]␊ + adjudication: unknown␊ + productOrService: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -331704,6 +362490,8 @@ Generated by [AVA](https://avajs.dev). * The adjudication results.␊ */␊ adjudication: ClaimResponse_Adjudication[]␊ + adjudication: unknown␊ + productOrService: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -331844,6 +362632,8 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ category: CodeableConcept80␊ amount: Money17␊ + amount: unknown␊ + category: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -331918,6 +362708,8 @@ Generated by [AVA](https://avajs.dev). _date?: Element399␊ amount: Money19␊ identifier?: Identifier7␊ + amount: unknown␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -332281,6 +363073,7 @@ Generated by [AVA](https://avajs.dev). businessArrangement?: string␊ _businessArrangement?: Element405␊ claimResponse?: Reference81␊ + coverage: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -332417,6 +363210,7 @@ Generated by [AVA](https://avajs.dev). subDetailSequence?: number␊ _subDetailSequence?: Element408␊ code: CodeableConcept86␊ + code: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -332589,6 +363383,8 @@ Generated by [AVA](https://avajs.dev). * Commentary about the impression, typically recorded after the impression itself was made, though supplemental notes by the original author could also appear.␊ */␊ note?: Annotation1[]␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -332679,6 +363475,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -332946,6 +363743,7 @@ Generated by [AVA](https://avajs.dev). * A record of a specific investigation that was undertaken.␊ */␊ item?: Reference11[]␊ + code: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -333233,6 +364031,7 @@ Generated by [AVA](https://avajs.dev). * Concepts that are in the code system. The concept definitions are inherently hierarchical, but the definitions must be consulted to determine what the meanings of the hierarchical relationships are.␊ */␊ concept?: CodeSystem_Concept[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -333323,6 +364122,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -334203,6 +365003,7 @@ Generated by [AVA](https://avajs.dev). * Additional notes or commentary about the communication by the sender, receiver or other interested parties.␊ */␊ note?: Annotation1[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -334293,6 +365094,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -334720,6 +365522,7 @@ Generated by [AVA](https://avajs.dev). * Comments made about the request by the requester, sender, recipient, subject or other participants.␊ */␊ note?: Annotation1[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -334810,6 +365613,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -335304,6 +366108,7 @@ Generated by [AVA](https://avajs.dev). * Information about how a resource is related to the compartment.␊ */␊ resource?: CompartmentDefinition_Resource[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -335394,6 +366199,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -335688,6 +366494,9 @@ Generated by [AVA](https://avajs.dev). * The root of the sections that make up the composition.␊ */␊ section?: Composition_Section[]␊ + author: unknown␊ + type: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -335778,6 +366587,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -336351,6 +367161,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -336539,6 +367350,7 @@ Generated by [AVA](https://avajs.dev). * A group of mappings that all have the same source and target system.␊ */␊ group?: ConceptMap_Group[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -336629,6 +367441,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -336899,6 +367712,7 @@ Generated by [AVA](https://avajs.dev). */␊ element: ConceptMap_Element[]␊ unmapped?: ConceptMap_Unmapped␊ + element: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -337365,6 +368179,8 @@ Generated by [AVA](https://avajs.dev). * Additional information about the Condition. This is a general notes/comments entry for description of the Condition, its diagnosis and prognosis.␊ */␊ note?: Annotation1[]␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -337455,6 +368271,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -338059,6 +368876,9 @@ Generated by [AVA](https://avajs.dev). */␊ verification?: Consent_Verification[]␊ provision?: Consent_Provision␊ + scope: unknown␊ + category: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -338149,6 +368969,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -338591,6 +369412,8 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ role: CodeableConcept106␊ reference: Reference109␊ + reference: unknown␊ + role: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -338692,6 +369515,7 @@ Generated by [AVA](https://avajs.dev). meaning?: ("instance" | "related" | "dependents" | "authoredby")␊ _meaning?: Element545␊ reference: Reference110␊ + reference: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -338946,6 +369770,7 @@ Generated by [AVA](https://avajs.dev). rule?: Contract_Rule[]␊ legallyBindingAttachment?: Attachment12␊ legallyBindingReference?: Reference128␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -339036,6 +369861,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -339425,6 +370251,7 @@ Generated by [AVA](https://avajs.dev). */␊ copyright?: string␊ _copyright?: Element558␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -339591,6 +370418,7 @@ Generated by [AVA](https://avajs.dev). * Nested group of Contract Provisions.␊ */␊ group?: Contract_Term[]␊ + offer: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -339804,6 +370632,7 @@ Generated by [AVA](https://avajs.dev). * Security label privacy tag that species the manner in which term and/or term elements are to be protected.␊ */␊ control?: Coding[]␊ + classification: unknown␊ }␊ /**␊ * A reference to a code defined by a terminology system.␊ @@ -339925,6 +370754,8 @@ Generated by [AVA](https://avajs.dev). */␊ reference: Reference11[]␊ role: CodeableConcept118␊ + reference: unknown␊ + role: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -341084,6 +371915,9 @@ Generated by [AVA](https://avajs.dev). * Extensions for securityLabelNumber␊ */␊ _securityLabelNumber?: Element23[]␊ + type: unknown␊ + intent: unknown␊ + status: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -341143,6 +371977,7 @@ Generated by [AVA](https://avajs.dev). */␊ reference: Reference11[]␊ role?: CodeableConcept124␊ + reference: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -341383,6 +372218,9 @@ Generated by [AVA](https://avajs.dev). * Legally binding Contract DSIG signature contents in Base64.␊ */␊ signature: Signature1[]␊ + signature: unknown␊ + type: unknown␊ + party: unknown␊ }␊ /**␊ * A reference to a code defined by a terminology system.␊ @@ -341491,6 +372329,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * Legally enforceable, formally recorded unilateral or bilateral directive i.e., a policy or agreement.␊ @@ -341985,6 +372825,9 @@ Generated by [AVA](https://avajs.dev). * The policy(s) which constitute this insurance coverage.␊ */␊ contract?: Reference11[]␊ + payor: unknown␊ + beneficiary: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -342075,6 +372918,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -342304,6 +373148,7 @@ Generated by [AVA](https://avajs.dev). */␊ name?: string␊ _name?: Element586␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -342508,6 +373353,7 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ type: CodeableConcept132␊ period?: Period40␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -342651,6 +373497,9 @@ Generated by [AVA](https://avajs.dev). * Service categories or billable services for which benefit details and/or an authorization prior to service delivery may be required by the payor.␊ */␊ item?: CoverageEligibilityRequest_Item[]␊ + patient: unknown␊ + insurer: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -342741,6 +373590,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -343010,6 +373860,7 @@ Generated by [AVA](https://avajs.dev). */␊ appliesToAll?: boolean␊ _appliesToAll?: Element596␊ + information: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -343097,6 +373948,7 @@ Generated by [AVA](https://avajs.dev). */␊ businessArrangement?: string␊ _businessArrangement?: Element598␊ + coverage: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -343535,6 +374387,10 @@ Generated by [AVA](https://avajs.dev). * Errors encountered during the processing of the request.␊ */␊ error?: CoverageEligibilityResponse_Error[]␊ + request: unknown␊ + patient: unknown␊ + insurer: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -343625,6 +374481,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -343867,6 +374724,7 @@ Generated by [AVA](https://avajs.dev). * Benefits and optionally current balances, and authorization details by category or service.␊ */␊ item?: CoverageEligibilityResponse_Item[]␊ + coverage: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -344218,6 +375076,7 @@ Generated by [AVA](https://avajs.dev). usedString?: string␊ _usedString?: Element613␊ usedMoney?: Money25␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -344419,6 +375278,7 @@ Generated by [AVA](https://avajs.dev). */␊ modifierExtension?: Extension[]␊ code: CodeableConcept144␊ + code: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -344525,6 +375385,7 @@ Generated by [AVA](https://avajs.dev). * Indicates an action that has been taken or is committed to reduce or eliminate the likelihood of the risk identified by the detected issue from manifesting. Can also reflect an observation of known mitigating factors that may reduce/eliminate the need for any action.␊ */␊ mitigation?: DetectedIssue_Mitigation[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -344615,6 +375476,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -344840,6 +375702,7 @@ Generated by [AVA](https://avajs.dev). date?: string␊ _date?: Element624␊ author?: Reference150␊ + action: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -345041,6 +375904,7 @@ Generated by [AVA](https://avajs.dev). */␊ safety?: CodeableConcept5[]␊ parent?: Reference155␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -345131,6 +375995,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -345509,6 +376374,7 @@ Generated by [AVA](https://avajs.dev). */␊ version?: string␊ _version?: Element644␊ + systemType: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -345664,6 +376530,7 @@ Generated by [AVA](https://avajs.dev). * Property value as a code, e.g., NTP4 (synced to NTP).␊ */␊ valueCode?: CodeableConcept5[]␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -345982,6 +376849,7 @@ Generated by [AVA](https://avajs.dev). * A substance used to create the material(s) of which the device is made.␊ */␊ material?: DeviceDefinition_Material[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -346072,6 +376940,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * The characteristics, operational status and capabilities of a medical-related component of a medical device.␊ @@ -346361,6 +377230,8 @@ Generated by [AVA](https://avajs.dev). * Special precautions for storage, if any, can be specified using an appropriate controlled vocabulary The controlled term and the controlled term identifier shall be specified.␊ */␊ specialPrecautionsForStorage?: CodeableConcept5[]␊ + period: unknown␊ + type: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -346790,6 +377661,7 @@ Generated by [AVA](https://avajs.dev). * Description of capability.␊ */␊ description?: CodeableConcept5[]␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -346840,6 +377712,7 @@ Generated by [AVA](https://avajs.dev). * Property value as a code, e.g., NTP4 (synced to NTP).␊ */␊ valueCode?: CodeableConcept5[]␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -347018,6 +377891,7 @@ Generated by [AVA](https://avajs.dev). */␊ allergenicIndicator?: boolean␊ _allergenicIndicator?: Element662␊ + substance: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -347133,6 +378007,8 @@ Generated by [AVA](https://avajs.dev). * Describes the calibrations that have been performed or that are required to be performed.␊ */␊ calibration?: DeviceMetric_Calibration[]␊ + type: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -347223,6 +378099,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -347596,6 +378473,8 @@ Generated by [AVA](https://avajs.dev). * Key events in the history of the request.␊ */␊ relevantHistory?: Reference11[]␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -347686,6 +378565,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -348255,6 +379135,9 @@ Generated by [AVA](https://avajs.dev). * Details about the device statement that were not represented at all or sufficiently in one of the attributes provided in a class. These may include for example a comment, an instruction, or a note associated with the statement.␊ */␊ note?: Annotation1[]␊ + subject: unknown␊ + device: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -348345,6 +379228,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -348658,6 +379542,8 @@ Generated by [AVA](https://avajs.dev). * Rich text representation of the entire result as issued by the diagnostic service. Multiple formats are allowed but they SHALL be semantically equivalent.␊ */␊ presentedForm?: Attachment2[]␊ + code: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -348748,6 +379634,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -348919,6 +379806,7 @@ Generated by [AVA](https://avajs.dev). comment?: string␊ _comment?: Element689␊ link: Reference171␊ + link: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -349058,6 +379946,8 @@ Generated by [AVA](https://avajs.dev). * Related identifiers or resources associated with the DocumentManifest.␊ */␊ related?: DocumentManifest_Related[]␊ + content: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -349148,6 +380038,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -349456,6 +380347,8 @@ Generated by [AVA](https://avajs.dev). */␊ content: DocumentReference_Content[]␊ context?: DocumentReference_Context␊ + content: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -349546,6 +380439,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -349756,6 +380650,7 @@ Generated by [AVA](https://avajs.dev). code?: ("replaces" | "transforms" | "signs" | "appends")␊ _code?: Element702␊ target: Reference177␊ + target: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -349834,6 +380729,7 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ attachment: Attachment13␊ format?: Coding15␊ + attachment: unknown␊ }␊ /**␊ * For referring to data content defined in other formats.␊ @@ -350216,6 +381112,11 @@ Generated by [AVA](https://avajs.dev). * A description of the certainty of the effect estimate.␊ */␊ certainty?: EffectEvidenceSynthesis_Certainty[]␊ + exposureAlternative: unknown␊ + exposure: unknown␊ + outcome: unknown␊ + resourceType: unknown␊ + population: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -350306,6 +381207,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -350744,6 +381646,7 @@ Generated by [AVA](https://avajs.dev). _exposureState?: Element721␊ variantState?: CodeableConcept171␊ riskEvidenceSynthesis: Reference183␊ + riskEvidenceSynthesis: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -351233,6 +382136,8 @@ Generated by [AVA](https://avajs.dev). location?: Encounter_Location[]␊ serviceProvider?: Reference190␊ partOf?: Reference191␊ + class: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -351323,6 +382228,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -351361,6 +382267,7 @@ Generated by [AVA](https://avajs.dev). status?: ("planned" | "arrived" | "triaged" | "in-progress" | "onleave" | "finished" | "cancelled" | "entered-in-error" | "unknown")␊ _status?: Element730␊ period: Period50␊ + period: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -351456,6 +382363,8 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ class: Coding17␊ period: Period51␊ + period: unknown␊ + class: unknown␊ }␊ /**␊ * A reference to a code defined by a terminology system.␊ @@ -351758,6 +382667,7 @@ Generated by [AVA](https://avajs.dev). */␊ rank?: number␊ _rank?: Element731␊ + condition: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -352047,6 +382957,7 @@ Generated by [AVA](https://avajs.dev). _status?: Element732␊ physicalType?: CodeableConcept183␊ period?: Period54␊ + location: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -352283,6 +383194,9 @@ Generated by [AVA](https://avajs.dev). * Extensions for header␊ */␊ _header?: Element23[]␊ + payloadType: unknown␊ + connectionType: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -352373,6 +383287,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -352561,6 +383476,7 @@ Generated by [AVA](https://avajs.dev). provider?: Reference194␊ candidate?: Reference195␊ coverage?: Reference196␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -352651,6 +383567,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -352867,6 +383784,7 @@ Generated by [AVA](https://avajs.dev). _created?: Element747␊ organization?: Reference198␊ requestProvider?: Reference199␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -352957,6 +383875,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -353178,6 +384097,8 @@ Generated by [AVA](https://avajs.dev). * The set of accounts that may be used for billing for this EpisodeOfCare.␊ */␊ account?: Reference11[]␊ + patient: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -353268,6 +384189,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -353306,6 +384228,7 @@ Generated by [AVA](https://avajs.dev). status?: ("planned" | "waitlist" | "active" | "onhold" | "finished" | "cancelled" | "entered-in-error")␊ _status?: Element751␊ period: Period56␊ + period: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -353368,6 +384291,7 @@ Generated by [AVA](https://avajs.dev). */␊ rank?: number␊ _rank?: Element752␊ + condition: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -353711,6 +384635,8 @@ Generated by [AVA](https://avajs.dev). * The trigger element defines when the event occurs. If more than one trigger condition is specified, the event fires whenever any one of the trigger conditions is met.␊ */␊ trigger: TriggerDefinition1[]␊ + trigger: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -353801,6 +384727,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -354270,6 +385197,8 @@ Generated by [AVA](https://avajs.dev). * A reference to a EvidenceVariable resomece that defines the outcome for the research.␊ */␊ outcome?: Reference11[]␊ + exposureBackground: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -354360,6 +385289,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -354741,6 +385671,8 @@ Generated by [AVA](https://avajs.dev). * A characteristic that defines the members of the evidence element. Multiple characteristics are applied with "and" semantics.␊ */␊ characteristic: EvidenceVariable_Characteristic[]␊ + characteristic: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -354831,6 +385763,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -355584,6 +386517,7 @@ Generated by [AVA](https://avajs.dev). * Another nested workflow.␊ */␊ workflow?: Canonical[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -355674,6 +386608,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -356669,6 +387604,12 @@ Generated by [AVA](https://avajs.dev). * Balance by Benefit Category.␊ */␊ benefitBalance?: ExplanationOfBenefit_BenefitBalance[]␊ + insurance: unknown␊ + provider: unknown␊ + patient: unknown␊ + insurer: unknown␊ + type: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -356759,6 +387700,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -357479,6 +388421,7 @@ Generated by [AVA](https://avajs.dev). _responsible?: Element852␊ role?: CodeableConcept194␊ qualification?: CodeableConcept195␊ + provider: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -357626,6 +388569,7 @@ Generated by [AVA](https://avajs.dev). valueAttachment?: Attachment14␊ valueReference?: Reference220␊ reason?: Coding19␊ + category: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -358211,6 +389155,7 @@ Generated by [AVA](https://avajs.dev). * Extensions for preAuthRef␊ */␊ _preAuthRef?: Element23[]␊ + coverage: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -358523,6 +389468,7 @@ Generated by [AVA](https://avajs.dev). * Second-tier of goods and services.␊ */␊ detail?: ExplanationOfBenefit_Detail[]␊ + productOrService: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -358899,6 +389845,7 @@ Generated by [AVA](https://avajs.dev). */␊ value?: number␊ _value?: Element866␊ + category: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -359042,6 +389989,7 @@ Generated by [AVA](https://avajs.dev). * Third-tier of goods and services.␊ */␊ subDetail?: ExplanationOfBenefit_SubDetail[]␊ + productOrService: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -359277,6 +390225,7 @@ Generated by [AVA](https://avajs.dev). * The adjudication results.␊ */␊ adjudication?: ExplanationOfBenefit_Adjudication[]␊ + productOrService: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -359547,6 +390496,7 @@ Generated by [AVA](https://avajs.dev). * The second-tier service adjudications for payor added services.␊ */␊ detail?: ExplanationOfBenefit_Detail1[]␊ + productOrService: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -359887,6 +390837,7 @@ Generated by [AVA](https://avajs.dev). * The third-tier service adjudications for payor added services.␊ */␊ subDetail?: ExplanationOfBenefit_SubDetail1[]␊ + productOrService: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -360050,6 +391001,7 @@ Generated by [AVA](https://avajs.dev). * The adjudication results.␊ */␊ adjudication?: ExplanationOfBenefit_Adjudication[]␊ + productOrService: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -360190,6 +391142,8 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ category: CodeableConcept221␊ amount: Money39␊ + amount: unknown␊ + category: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -360634,6 +391588,7 @@ Generated by [AVA](https://avajs.dev). * Benefits Used to date.␊ */␊ financial?: ExplanationOfBenefit_Financial[]␊ + category: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -360798,6 +391753,7 @@ Generated by [AVA](https://avajs.dev). usedUnsignedInt?: number␊ _usedUnsignedInt?: Element884␊ usedMoney?: Money43␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -361035,6 +391991,9 @@ Generated by [AVA](https://avajs.dev). * The significant Conditions (or condition) that the family member had. This is a repeating section to allow a system to represent more than one condition per resource, though there is nothing stopping multiple resources - one per condition.␊ */␊ condition?: FamilyMemberHistory_Condition[]␊ + patient: unknown␊ + relationship: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -361125,6 +392084,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -361519,6 +392479,7 @@ Generated by [AVA](https://avajs.dev). * An area where general notes can be placed about this specific condition.␊ */␊ note?: Annotation1[]␊ + code: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -361722,6 +392683,9 @@ Generated by [AVA](https://avajs.dev). period?: Period69␊ encounter?: Reference229␊ author?: Reference230␊ + code: unknown␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -361812,6 +392776,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -362056,6 +393021,9 @@ Generated by [AVA](https://avajs.dev). * Details of what's changed (or not changed).␊ */␊ outcomeReference?: Reference11[]␊ + subject: unknown␊ + description: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -362146,6 +393114,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -362704,6 +393673,7 @@ Generated by [AVA](https://avajs.dev). * Links this graph makes rules about.␊ */␊ link?: GraphDefinition_Link[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -362794,6 +393764,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -363291,6 +394262,7 @@ Generated by [AVA](https://avajs.dev). * Identifies the resource instances that are members of the group.␊ */␊ member?: Group_Member[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -363381,6 +394353,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -363534,6 +394507,7 @@ Generated by [AVA](https://avajs.dev). exclude?: boolean␊ _exclude?: Element944␊ period?: Period70␊ + code: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -363737,6 +394711,7 @@ Generated by [AVA](https://avajs.dev). */␊ inactive?: boolean␊ _inactive?: Element945␊ + entity: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -363894,6 +394869,7 @@ Generated by [AVA](https://avajs.dev). * If the evaluation could not be completed due to lack of information, or additional information would potentially result in a more accurate response, this element will a description of the data required in order to proceed with the evaluation. A subsequent request to the service should include this data.␊ */␊ dataRequirement?: DataRequirement1[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -363984,6 +394960,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -364379,6 +395356,7 @@ Generated by [AVA](https://avajs.dev). * Technical endpoints providing access to services operated for the specific healthcare services defined at this resource.␊ */␊ endpoint?: Reference11[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -364469,6 +395447,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -364942,6 +395921,8 @@ Generated by [AVA](https://avajs.dev). * Each study has one or more series of images or other content.␊ */␊ series?: ImagingStudy_Series[]␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -365032,6 +396013,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -365315,6 +396297,7 @@ Generated by [AVA](https://avajs.dev). * A single SOP instance within the series, e.g. an image, or presentation state.␊ */␊ instance?: ImagingStudy_Instance[]␊ + modality: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -365515,6 +396498,7 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ function?: CodeableConcept248␊ actor: Reference247␊ + actor: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -365603,6 +396587,7 @@ Generated by [AVA](https://avajs.dev). */␊ title?: string␊ _title?: Element979␊ + sopClass: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -365810,6 +396795,9 @@ Generated by [AVA](https://avajs.dev). * The protocol (set of recommendations) being followed by the provider who administered the dose.␊ */␊ protocolApplied?: Immunization_ProtocolApplied[]␊ + patient: unknown␊ + vaccineCode: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -365900,6 +396888,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -366284,6 +397273,7 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ function?: CodeableConcept254␊ actor: Reference252␊ + actor: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -366787,6 +397777,11 @@ Generated by [AVA](https://avajs.dev). */␊ seriesDosesString?: string␊ _seriesDosesString?: Element1010␊ + doseStatus: unknown␊ + patient: unknown␊ + targetDisease: unknown␊ + immunizationEvent: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -366877,6 +397872,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -367172,6 +398168,9 @@ Generated by [AVA](https://avajs.dev). * Vaccine administration recommendations.␊ */␊ recommendation: ImmunizationRecommendation_Recommendation[]␊ + patient: unknown␊ + recommendation: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -367262,6 +398261,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -367412,6 +398412,7 @@ Generated by [AVA](https://avajs.dev). * Patient Information that supports the status and recommendation. This includes patient observations, adverse reactions and allergy/intolerance information.␊ */␊ supportingPatientInformation?: Reference11[]␊ + forecastStatus: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -367481,6 +398482,7 @@ Generated by [AVA](https://avajs.dev). */␊ value?: string␊ _value?: Element1014␊ + code: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -367723,6 +398725,7 @@ Generated by [AVA](https://avajs.dev). global?: ImplementationGuide_Global[]␊ definition?: ImplementationGuide_Definition␊ manifest?: ImplementationGuide_Manifest␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -367813,6 +398816,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -368002,6 +399006,7 @@ Generated by [AVA](https://avajs.dev). */␊ version?: string␊ _version?: Element1036␊ + uri: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -368056,6 +399061,7 @@ Generated by [AVA](https://avajs.dev). * A URI that is a reference to a canonical URL on a FHIR resource␊ */␊ profile: string␊ + profile: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -368105,6 +399111,7 @@ Generated by [AVA](https://avajs.dev). * A template for building resources.␊ */␊ template?: ImplementationGuide_Template[]␊ + resource: unknown␊ }␊ /**␊ * A set of rules of how a particular interoperability or standards problem is solved - typically through the use of FHIR resources. This resource is used to gather all the parts of an implementation guide into a logical whole and to publish a computable definition of all the parts.␊ @@ -368213,6 +399220,7 @@ Generated by [AVA](https://avajs.dev). */␊ groupingId?: string␊ _groupingId?: Element1044␊ + reference: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -368633,6 +399641,7 @@ Generated by [AVA](https://avajs.dev). * Extensions for other␊ */␊ _other?: Element23[]␊ + resource: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -368681,6 +399690,7 @@ Generated by [AVA](https://avajs.dev). */␊ relativePath?: string␊ _relativePath?: Element1056␊ + reference: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -368906,6 +399916,7 @@ Generated by [AVA](https://avajs.dev). * Details about an insurance plan.␊ */␊ plan?: InsurancePlan_Plan[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -368996,6 +400007,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -369298,6 +400310,8 @@ Generated by [AVA](https://avajs.dev). * Specific benefits under this type of coverage.␊ */␊ benefit: InsurancePlan_Benefit[]␊ + type: unknown␊ + benefit: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -369349,6 +400363,7 @@ Generated by [AVA](https://avajs.dev). * The specific limits on the benefit.␊ */␊ limit?: InsurancePlan_Limit[]␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -369653,6 +400668,7 @@ Generated by [AVA](https://avajs.dev). * List of the specific benefits under this category of benefit.␊ */␊ benefit?: InsurancePlan_Benefit1[]␊ + category: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -369699,6 +400715,7 @@ Generated by [AVA](https://avajs.dev). * List of the costs associated with a specific benefit.␊ */␊ cost?: InsurancePlan_Cost[]␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -369747,6 +400764,7 @@ Generated by [AVA](https://avajs.dev). */␊ qualifiers?: CodeableConcept5[]␊ value?: Quantity47␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -369915,6 +400933,7 @@ Generated by [AVA](https://avajs.dev). * Comments made about the invoice by the issuer, subject, or other participants.␊ */␊ note?: Annotation1[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -370005,6 +401024,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -370149,6 +401169,7 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ role?: CodeableConcept272␊ actor: Reference267␊ + actor: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -370691,6 +401712,8 @@ Generated by [AVA](https://avajs.dev). * The content of the library as an Attachment. The content may be a reference to a url, or may be directly embedded as a base-64 string. Either way, the contentType of the attachment determines how to interpret the content.␊ */␊ content?: Attachment2[]␊ + type: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -370781,6 +401804,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -371170,6 +402194,8 @@ Generated by [AVA](https://avajs.dev). * Identifies which record considered as the reference to the same real-world occurrence as well as how the items should be evaluated within the collection of linked items.␊ */␊ item: Linkage_Item[]␊ + item: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -371260,6 +402286,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -371329,6 +402356,7 @@ Generated by [AVA](https://avajs.dev). type?: ("source" | "alternate" | "historical")␊ _type?: Element1095␊ resource: Reference273␊ + resource: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -371450,6 +402478,7 @@ Generated by [AVA](https://avajs.dev). */␊ entry?: List_Entry[]␊ emptyReason?: CodeableConcept280␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -371540,6 +402569,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -371760,6 +402790,7 @@ Generated by [AVA](https://avajs.dev). date?: string␊ _date?: Element1103␊ item: Reference277␊ + item: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -371959,6 +402990,7 @@ Generated by [AVA](https://avajs.dev). * Technical endpoints providing access to services operated for the location.␊ */␊ endpoint?: Reference11[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -372049,6 +403081,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -372666,6 +403699,7 @@ Generated by [AVA](https://avajs.dev). * The supplemental data criteria for the measure report, specified as either the name of a valid CQL expression within a referenced library, or a valid FHIR Resource Path.␊ */␊ supplementalData?: Measure_SupplementalData[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -372756,6 +403790,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -373265,6 +404300,7 @@ Generated by [AVA](https://avajs.dev). description?: string␊ _description?: Element1141␊ criteria: Expression4␊ + criteria: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -373467,6 +404503,7 @@ Generated by [AVA](https://avajs.dev). description?: string␊ _description?: Element1143␊ criteria: Expression6␊ + criteria: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -373570,6 +404607,7 @@ Generated by [AVA](https://avajs.dev). description?: string␊ _description?: Element1144␊ criteria: Expression7␊ + criteria: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -373717,6 +404755,9 @@ Generated by [AVA](https://avajs.dev). * A reference to a Bundle containing the Resources that were used in the calculation of this measure.␊ */␊ evaluatedResource?: Reference11[]␊ + period: unknown␊ + measure: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -373807,6 +404848,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -374233,6 +405275,8 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ code: CodeableConcept295␊ value: CodeableConcept296␊ + code: unknown␊ + value: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -374516,6 +405560,8 @@ Generated by [AVA](https://avajs.dev). * Comments made about the media by the performer, subject or other participants.␊ */␊ note?: Annotation1[]␊ + content: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -374606,6 +405652,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -375055,6 +406102,7 @@ Generated by [AVA](https://avajs.dev). */␊ ingredient?: Medication_Ingredient[]␊ batch?: Medication_Batch␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -375145,6 +406193,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -375516,6 +406565,8 @@ Generated by [AVA](https://avajs.dev). * A summary of the events of interest that have occurred, such as when the administration was verified.␊ */␊ eventHistory?: Reference11[]␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -375606,6 +406657,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -375813,6 +406865,7 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ function?: CodeableConcept307␊ actor: Reference294␊ + actor: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -376204,6 +407257,7 @@ Generated by [AVA](https://avajs.dev). * A summary of the events of interest that have occurred, such as when the dispense was verified.␊ */␊ eventHistory?: Reference11[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -376294,6 +407348,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -376518,6 +407573,7 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ function?: CodeableConcept314␊ actor: Reference300␊ + actor: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -376943,6 +407999,7 @@ Generated by [AVA](https://avajs.dev). * The time course of drug absorption, distribution, metabolism and excretion of a medication from the body.␊ */␊ kinetics?: MedicationKnowledge_Kinetics[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -377033,6 +408090,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -377183,6 +408241,8 @@ Generated by [AVA](https://avajs.dev). * Associated documentation about the associated medication knowledge.␊ */␊ reference: Reference11[]␊ + reference: unknown␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -377426,6 +408486,8 @@ Generated by [AVA](https://avajs.dev). source?: string␊ _source?: Element1184␊ cost: Money48␊ + cost: unknown␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -377597,6 +408659,8 @@ Generated by [AVA](https://avajs.dev). * Dosage for the medication for the specific guidelines.␊ */␊ dosage: Dosage1[]␊ + dosage: unknown␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -377785,6 +408849,7 @@ Generated by [AVA](https://avajs.dev). * Specific category assigned to the medication (e.g. anti-infective, anti-hypertensive, antibiotic, etc.).␊ */␊ classification?: CodeableConcept5[]␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -378057,6 +409122,7 @@ Generated by [AVA](https://avajs.dev). */␊ schedule?: MedicationKnowledge_Schedule[]␊ maxDispense?: MedicationKnowledge_MaxDispense␊ + regulatoryAuthority: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -378113,6 +409179,7 @@ Generated by [AVA](https://avajs.dev). */␊ allowed?: boolean␊ _allowed?: Element1188␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -378168,6 +409235,7 @@ Generated by [AVA](https://avajs.dev). */␊ modifierExtension?: Extension[]␊ schedule: CodeableConcept332␊ + schedule: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -378211,6 +409279,7 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ quantity: Quantity58␊ period?: Duration8␊ + quantity: unknown␊ }␊ /**␊ * A measured amount (or an amount that can potentially be measured). Note that measured amounts include amounts that are not precisely quantified, including amounts involving arbitrary units and floating currencies.␊ @@ -378497,6 +409566,8 @@ Generated by [AVA](https://avajs.dev). * Links to Provenance records for past versions of this resource or fulfilling request or event resources that identify key state transitions or updates that are likely to be relevant to a user looking at the current version of the resource.␊ */␊ eventHistory?: Reference11[]␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -378587,6 +409658,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -379522,6 +410594,8 @@ Generated by [AVA](https://avajs.dev). * Indicates how the medication is/was or should be taken by the patient.␊ */␊ dosage?: Dosage1[]␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -379612,6 +410686,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -379947,6 +411022,8 @@ Generated by [AVA](https://avajs.dev). * Indicates if the medicinal product has an orphan designation for the treatment of a rare disease.␊ */␊ specialDesignation?: MedicinalProduct_SpecialDesignation[]␊ + name: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -380037,6 +411114,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -380213,6 +411291,9 @@ Generated by [AVA](https://avajs.dev). */␊ restoreDate?: string␊ _restoreDate?: Element1206␊ + country: unknown␊ + dateRange: unknown␊ + status: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -380385,6 +411466,7 @@ Generated by [AVA](https://avajs.dev). part?: string␊ _part?: Element1208␊ type: Coding26␊ + type: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -380458,6 +411540,8 @@ Generated by [AVA](https://avajs.dev). country: CodeableConcept349␊ jurisdiction?: CodeableConcept350␊ language: CodeableConcept351␊ + country: unknown␊ + language: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -380946,6 +412030,7 @@ Generated by [AVA](https://avajs.dev). holder?: Reference324␊ regulator?: Reference325␊ procedure?: MedicinalProductAuthorization_Procedure␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -381036,6 +412121,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -381399,6 +412485,7 @@ Generated by [AVA](https://avajs.dev). * Applcations submitted to obtain a marketing authorization.␊ */␊ application?: MedicinalProductAuthorization_Procedure1[]␊ + type: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -381519,6 +412606,7 @@ Generated by [AVA](https://avajs.dev). * Applcations submitted to obtain a marketing authorization.␊ */␊ application?: MedicinalProductAuthorization_Procedure1[]␊ + type: unknown␊ }␊ /**␊ * The clinical particulars - indications, contraindications etc. of a medicinal product, including for regulatory purposes.␊ @@ -381580,6 +412668,7 @@ Generated by [AVA](https://avajs.dev). * The population group to which this applies.␊ */␊ population?: Population[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -381670,6 +412759,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -381736,6 +412826,7 @@ Generated by [AVA](https://avajs.dev). therapyRelationshipType: CodeableConcept366␊ medicationCodeableConcept?: CodeableConcept367␊ medicationReference?: Reference326␊ + therapyRelationshipType: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -382001,6 +413092,7 @@ Generated by [AVA](https://avajs.dev). * The population group to which this applies.␊ */␊ population?: Population[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -382091,6 +413183,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -382217,6 +413310,7 @@ Generated by [AVA](https://avajs.dev). therapyRelationshipType: CodeableConcept375␊ medicationCodeableConcept?: CodeableConcept376␊ medicationReference?: Reference327␊ + therapyRelationshipType: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -382347,6 +413441,8 @@ Generated by [AVA](https://avajs.dev). */␊ specifiedSubstance?: MedicinalProductIngredient_SpecifiedSubstance[]␊ substance?: MedicinalProductIngredient_Substance␊ + role: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -382437,6 +413533,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -382529,6 +413626,8 @@ Generated by [AVA](https://avajs.dev). * Quantity of the substance or specified substance present in the manufactured item or pharmaceutical product.␊ */␊ strength?: MedicinalProductIngredient_Strength[]␊ + code: unknown␊ + group: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -382631,6 +413730,7 @@ Generated by [AVA](https://avajs.dev). * Strength expressed in terms of a reference substance.␊ */␊ referenceStrength?: MedicinalProductIngredient_ReferenceStrength[]␊ + presentation: unknown␊ }␊ /**␊ * The quantity of substance in the unit of presentation, or in the volume (or mass) of the single pharmaceutical product or manufactured item.␊ @@ -382735,6 +413835,7 @@ Generated by [AVA](https://avajs.dev). * The country or countries for which the strength range applies.␊ */␊ country?: CodeableConcept5[]␊ + strength: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -382824,6 +413925,7 @@ Generated by [AVA](https://avajs.dev). * Quantity of the substance or specified substance present in the manufactured item or pharmaceutical product.␊ */␊ strength?: MedicinalProductIngredient_Strength[]␊ + code: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -382902,6 +414004,7 @@ Generated by [AVA](https://avajs.dev). effect?: CodeableConcept385␊ incidence?: CodeableConcept386␊ management?: CodeableConcept387␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -382992,6 +414095,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -383222,6 +414326,9 @@ Generated by [AVA](https://avajs.dev). * Other codeable characteristics.␊ */␊ otherCharacteristics?: CodeableConcept5[]␊ + quantity: unknown␊ + manufacturedDoseForm: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -383312,6 +414419,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -383515,6 +414623,8 @@ Generated by [AVA](https://avajs.dev). * A packaging item, as a contained for medicine, possibly with other packaging items within.␊ */␊ packageItem: MedicinalProductPackaged_PackageItem[]␊ + packageItem: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -383605,6 +414715,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -383692,6 +414803,7 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ outerPackaging: Identifier28␊ immediatePackaging?: Identifier29␊ + outerPackaging: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -383812,6 +414924,8 @@ Generated by [AVA](https://avajs.dev). * Manufacturer of this Package Item.␊ */␊ manufacturer?: Reference11[]␊ + quantity: unknown␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -383984,6 +415098,9 @@ Generated by [AVA](https://avajs.dev). * The path by which the pharmaceutical product is taken into or makes contact with the body.␊ */␊ routeOfAdministration: MedicinalProductPharmaceutical_RouteOfAdministration[]␊ + administrableDoseForm: unknown␊ + routeOfAdministration: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -384074,6 +415191,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -384139,6 +415257,7 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ code: CodeableConcept394␊ status?: CodeableConcept395␊ + code: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -384212,6 +415331,7 @@ Generated by [AVA](https://avajs.dev). * A species for which this route applies.␊ */␊ targetSpecies?: MedicinalProductPharmaceutical_TargetSpecies[]␊ + code: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -384425,6 +415545,7 @@ Generated by [AVA](https://avajs.dev). * A species specific time during which consumption of animal product is not appropriate.␊ */␊ withdrawalPeriod?: MedicinalProductPharmaceutical_WithdrawalPeriod[]␊ + code: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -384473,6 +415594,8 @@ Generated by [AVA](https://avajs.dev). */␊ supportingInformation?: string␊ _supportingInformation?: Element1237␊ + tissue: unknown␊ + value: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -384596,6 +415719,7 @@ Generated by [AVA](https://avajs.dev). * The population group to which this applies.␊ */␊ population?: Population[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -384686,6 +415810,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -384902,6 +416027,7 @@ Generated by [AVA](https://avajs.dev). * Canonical reference to a GraphDefinition. If a URL is provided, it is the canonical reference to a [[[GraphDefinition]]] that it controls what resources are to be added to the bundle when building the document. The GraphDefinition can also specify profiles that apply to the various resources.␊ */␊ graph?: Canonical[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -384992,6 +416118,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -385317,6 +416444,7 @@ Generated by [AVA](https://avajs.dev). */␊ situation?: string␊ _situation?: Element1259␊ + message: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -385394,6 +416522,8 @@ Generated by [AVA](https://avajs.dev). * A URI that is a reference to a canonical URL on a FHIR resource␊ */␊ definition?: string␊ + source: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -385484,6 +416614,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A reference to a code defined by a terminology system.␊ @@ -386102,6 +417233,7 @@ Generated by [AVA](https://avajs.dev). * Information about chromosome structure variation.␊ */␊ structureVariant?: MolecularSequence_StructureVariant[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -386192,6 +417324,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -387543,6 +418676,8 @@ Generated by [AVA](https://avajs.dev). * Indicates how the system may be identified when referenced in electronic exchange.␊ */␊ uniqueId: NamingSystem_UniqueId[]␊ + uniqueId: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -387633,6 +418768,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -387977,6 +419113,8 @@ Generated by [AVA](https://avajs.dev). * Comments made about the {{title}} by the requester, performer, subject or other participants.␊ */␊ note?: Annotation1[]␊ + patient: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -388067,6 +419205,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -389067,6 +420206,8 @@ Generated by [AVA](https://avajs.dev). * Some observations have multiple component observations. These component observations are expressed as separate code value pairs that share the same attributes. Examples include systolic and diastolic component observations for blood pressure measurement and multiple component observations for genetics observations.␊ */␊ component?: Observation_Component[]␊ + code: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -389157,6 +420298,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -389518,6 +420660,7 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element93␊ + origin: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -389913,6 +421056,7 @@ Generated by [AVA](https://avajs.dev). * Guidance on how to interpret the value by comparison to a normal or recommended range.␊ */␊ referenceRange?: Observation_ReferenceRange[]␊ + code: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -390108,6 +421252,7 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element93␊ + origin: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -390255,6 +421400,8 @@ Generated by [AVA](https://avajs.dev). normalCodedValueSet?: Reference351␊ abnormalCodedValueSet?: Reference352␊ criticalCodedValueSet?: Reference353␊ + code: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -390345,6 +421492,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -390952,6 +422100,7 @@ Generated by [AVA](https://avajs.dev). * Defines an appropriate combination of parameters to use when invoking this operation, to help code generators when generating overloaded parameter sets for this operation.␊ */␊ overload?: OperationDefinition_Overload[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -391042,6 +422191,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -391449,6 +422599,7 @@ Generated by [AVA](https://avajs.dev). * A URI that is a reference to a canonical URL on a FHIR resource␊ */␊ valueSet: string␊ + valueSet: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -391605,6 +422756,8 @@ Generated by [AVA](https://avajs.dev). * An error, warning, or information message that results from a system action.␊ */␊ issue: OperationOutcome_Issue[]␊ + issue: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -391695,6 +422848,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A collection of error, warning, or information messages that result from a system action.␊ @@ -391891,6 +423045,7 @@ Generated by [AVA](https://avajs.dev). * Technical endpoints providing access to services operated for the organization.␊ */␊ endpoint?: Reference11[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -391981,6 +423136,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -392342,6 +423498,7 @@ Generated by [AVA](https://avajs.dev). * Technical endpoints providing access to services operated for this role.␊ */␊ endpoint?: Reference11[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -392432,6 +423589,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -392558,6 +423716,7 @@ Generated by [AVA](https://avajs.dev). * A parameter passed to or received from the operation.␊ */␊ parameter?: Parameters_Parameter[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -393705,6 +424864,7 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element93␊ + origin: unknown␊ }␊ /**␊ * A signature along with supporting context. The signature may be a digital signature that is cryptographic in nature, or some other signature acceptable to the domain. This other signature may be as simple as a graphical image representing a hand-written signature, or a signature ceremony Different signature approaches have different utilities.␊ @@ -393744,6 +424904,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * Specifies an event that may occur multiple times. Timing schedules are used to record when things are planned, expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds, and may be used for reporting the schedule to which past regular activities were carried out.␊ @@ -394059,6 +425221,7 @@ Generated by [AVA](https://avajs.dev). valueQuantity?: Quantity6␊ valueRange?: Range2␊ valueReference?: Reference7␊ + code: unknown␊ }␊ /**␊ * Indicates how the medication is/was taken or should be taken by the patient.␊ @@ -394271,6 +425434,7 @@ Generated by [AVA](https://avajs.dev). * Link to another patient resource that concerns the same actual patient.␊ */␊ link?: Patient_Link[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -394361,6 +425525,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -394770,6 +425935,7 @@ Generated by [AVA](https://avajs.dev). */␊ preferred?: boolean␊ _preferred?: Element1436␊ + language: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -394861,6 +426027,7 @@ Generated by [AVA](https://avajs.dev). */␊ type?: ("replaced-by" | "replaces" | "refer" | "seealso")␊ _type?: Element1437␊ + other: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -394971,6 +426138,10 @@ Generated by [AVA](https://avajs.dev). recipient: Reference366␊ amount: Money50␊ paymentStatus?: CodeableConcept435␊ + amount: unknown␊ + recipient: unknown␊ + payment: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -395061,6 +426232,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -395414,6 +426586,8 @@ Generated by [AVA](https://avajs.dev). * A note that describes or explains the processing in a human readable form.␊ */␊ processNote?: PaymentReconciliation_ProcessNote[]␊ + paymentAmount: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -395504,6 +426678,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -395772,6 +426947,7 @@ Generated by [AVA](https://avajs.dev). responsible?: Reference373␊ payee?: Reference374␊ amount?: Money52␊ + type: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -396200,6 +427376,7 @@ Generated by [AVA](https://avajs.dev). * Link to a resource that concerns the same actual person.␊ */␊ link?: Person_Link[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -396290,6 +427467,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -396438,6 +427616,7 @@ Generated by [AVA](https://avajs.dev). */␊ assurance?: ("level1" | "level2" | "level3" | "level4")␊ _assurance?: Element1458␊ + target: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -396652,6 +427831,7 @@ Generated by [AVA](https://avajs.dev). * An action or group of actions to be taken as part of the plan.␊ */␊ action?: PlanDefinition_Action[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -396742,6 +427922,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -397070,6 +428251,7 @@ Generated by [AVA](https://avajs.dev). * Indicates what should be done and within what timeframe.␊ */␊ target?: PlanDefinition_Target[]␊ + description: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -398257,6 +429439,7 @@ Generated by [AVA](https://avajs.dev). * A language the practitioner can use in patient communication.␊ */␊ communication?: CodeableConcept5[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -398347,6 +429530,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -398412,6 +429596,7 @@ Generated by [AVA](https://avajs.dev). code: CodeableConcept449␊ period?: Period96␊ issuer?: Reference379␊ + code: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -398576,6 +429761,7 @@ Generated by [AVA](https://avajs.dev). * Technical endpoints providing access to services operated for the practitioner with this role.␊ */␊ endpoint?: Reference11[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -398666,6 +429852,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -399057,6 +430244,8 @@ Generated by [AVA](https://avajs.dev). * Identifies coded items that were used as part of the procedure.␊ */␊ usedCode?: CodeableConcept5[]␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -399147,6 +430336,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -399474,6 +430664,7 @@ Generated by [AVA](https://avajs.dev). function?: CodeableConcept453␊ actor: Reference386␊ onBehalfOf?: Reference387␊ + actor: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -399632,6 +430823,7 @@ Generated by [AVA](https://avajs.dev). modifierExtension?: Extension[]␊ action?: CodeableConcept455␊ manipulated: Reference389␊ + manipulated: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -399765,6 +430957,9 @@ Generated by [AVA](https://avajs.dev). * A digital signature on the target Reference(s). The signer should match a Provenance.agent. The purpose of the signature is indicated.␊ */␊ signature?: Signature1[]␊ + agent: unknown␊ + resourceType: unknown␊ + target: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -399855,6 +431050,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A time period defined by a start and end date and optionally time.␊ @@ -399983,6 +431179,7 @@ Generated by [AVA](https://avajs.dev). role?: CodeableConcept5[]␊ who: Reference391␊ onBehalfOf?: Reference392␊ + who: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -400096,6 +431293,7 @@ Generated by [AVA](https://avajs.dev). * The entity is attributed to an agent to express the agent's responsibility for that entity, possibly along with other agents. This description can be understood as shorthand for saying that the agent was responsible for the activity which generated the entity.␊ */␊ agent?: Provenance_Agent[]␊ + what: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -400281,6 +431479,7 @@ Generated by [AVA](https://avajs.dev). * A particular question, question grouping or display text that is part of the questionnaire.␊ */␊ item?: Questionnaire_Item[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -400371,6 +431570,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -401654,6 +432854,7 @@ Generated by [AVA](https://avajs.dev). * A group or question item from the original questionnaire for which answers are provided.␊ */␊ item?: QuestionnaireResponse_Item[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -401744,6 +432945,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -402421,6 +433623,8 @@ Generated by [AVA](https://avajs.dev). * A language which may be used to communicate with about the patient's health.␊ */␊ communication?: RelatedPerson_Communication[]␊ + patient: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -402511,6 +433715,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -402629,6 +433834,7 @@ Generated by [AVA](https://avajs.dev). */␊ preferred?: boolean␊ _preferred?: Element1584␊ + language: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -402772,6 +433978,7 @@ Generated by [AVA](https://avajs.dev). * The actions, if any, produced by the evaluation of the artifact.␊ */␊ action?: RequestGroup_Action[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -402862,6 +434069,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -403868,6 +435076,8 @@ Generated by [AVA](https://avajs.dev). exposure?: Reference409␊ exposureAlternative?: Reference410␊ outcome?: Reference411␊ + resourceType: unknown␊ + population: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -403958,6 +435168,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -404554,6 +435765,8 @@ Generated by [AVA](https://avajs.dev). * A characteristic that defines the members of the research element. Multiple characteristics are applied with "and" semantics.␊ */␊ characteristic: ResearchElementDefinition_Characteristic[]␊ + characteristic: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -404644,6 +435857,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -405642,6 +436856,7 @@ Generated by [AVA](https://avajs.dev). * A goal that the study is aiming to achieve in terms of a scientific question to be answered by the analysis of data collected during the study.␊ */␊ objective?: ResearchStudy_Objective[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -405732,6 +436947,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -406122,6 +437338,9 @@ Generated by [AVA](https://avajs.dev). actualArm?: string␊ _actualArm?: Element1663␊ consent?: Reference417␊ + study: unknown␊ + individual: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -406212,6 +437431,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -406454,6 +437674,8 @@ Generated by [AVA](https://avajs.dev). * Additional comments about the risk assessment.␊ */␊ note?: Annotation1[]␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -406544,6 +437766,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -407161,6 +438384,9 @@ Generated by [AVA](https://avajs.dev). * A description of the certainty of the risk estimate.␊ */␊ certainty?: RiskEvidenceSynthesis_Certainty[]␊ + outcome: unknown␊ + resourceType: unknown␊ + population: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -407251,6 +438477,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -408015,6 +439242,8 @@ Generated by [AVA](https://avajs.dev). */␊ comment?: string␊ _comment?: Element1698␊ + actor: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -408105,6 +439334,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -408333,6 +439563,7 @@ Generated by [AVA](https://avajs.dev). * Used to define the parts of a composite search parameter.␊ */␊ component?: SearchParameter_Component[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -408423,6 +439654,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -408659,6 +439891,7 @@ Generated by [AVA](https://avajs.dev). */␊ expression?: string␊ _expression?: Element1717␊ + definition: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -408839,6 +440072,8 @@ Generated by [AVA](https://avajs.dev). * Key events in the history of the request.␊ */␊ relevantHistory?: Reference11[]␊ + subject: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -408929,6 +440164,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -409425,6 +440661,8 @@ Generated by [AVA](https://avajs.dev). */␊ comment?: string␊ _comment?: Element1734␊ + schedule: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -409515,6 +440753,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -409714,6 +440953,7 @@ Generated by [AVA](https://avajs.dev). * To communicate any details or issues about the specimen or during the specimen collection. (for example: broken vial, sent with patient, frozen).␊ */␊ note?: Annotation1[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -409804,6 +441044,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -410554,6 +441795,7 @@ Generated by [AVA](https://avajs.dev). * Specimen conditioned in a container as expected by the testing laboratory.␊ */␊ typeTested?: SpecimenDefinition_TypeTested[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -410644,6 +441886,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -411428,6 +442671,7 @@ Generated by [AVA](https://avajs.dev). _derivation?: Element1776␊ snapshot?: StructureDefinition_Snapshot␊ differential?: StructureDefinition_Differential␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -411518,6 +442762,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -411895,6 +443140,7 @@ Generated by [AVA](https://avajs.dev). * Captures constraints on each element within the resource.␊ */␊ element: ElementDefinition[]␊ + element: unknown␊ }␊ /**␊ * Captures constraints on each element within the resource, profile, or extension.␊ @@ -414030,6 +445276,7 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element93␊ + origin: unknown␊ }␊ /**␊ * A signature along with supporting context. The signature may be a digital signature that is cryptographic in nature, or some other signature acceptable to the domain. This other signature may be as simple as a graphical image representing a hand-written signature, or a signature ceremony Different signature approaches have different utilities.␊ @@ -414069,6 +445316,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * Specifies an event that may occur multiple times. Timing schedules are used to record when things are planned, expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds, and may be used for reporting the schedule to which past regular activities were carried out.␊ @@ -414384,6 +445633,7 @@ Generated by [AVA](https://avajs.dev). valueQuantity?: Quantity6␊ valueRange?: Range2␊ valueReference?: Reference7␊ + code: unknown␊ }␊ /**␊ * Indicates how the medication is/was taken or should be taken by the patient.␊ @@ -415415,6 +446665,7 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element93␊ + origin: unknown␊ }␊ /**␊ * A signature along with supporting context. The signature may be a digital signature that is cryptographic in nature, or some other signature acceptable to the domain. This other signature may be as simple as a graphical image representing a hand-written signature, or a signature ceremony Different signature approaches have different utilities.␊ @@ -415454,6 +446705,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * Specifies an event that may occur multiple times. Timing schedules are used to record when things are planned, expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds, and may be used for reporting the schedule to which past regular activities were carried out.␊ @@ -415769,6 +447022,7 @@ Generated by [AVA](https://avajs.dev). valueQuantity?: Quantity6␊ valueRange?: Range2␊ valueReference?: Reference7␊ + code: unknown␊ }␊ /**␊ * Indicates how the medication is/was taken or should be taken by the patient.␊ @@ -416854,6 +448108,7 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element93␊ + origin: unknown␊ }␊ /**␊ * A signature along with supporting context. The signature may be a digital signature that is cryptographic in nature, or some other signature acceptable to the domain. This other signature may be as simple as a graphical image representing a hand-written signature, or a signature ceremony Different signature approaches have different utilities.␊ @@ -416893,6 +448148,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * Specifies an event that may occur multiple times. Timing schedules are used to record when things are planned, expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds, and may be used for reporting the schedule to which past regular activities were carried out.␊ @@ -417228,6 +448485,7 @@ Generated by [AVA](https://avajs.dev). valueQuantity?: Quantity6␊ valueRange?: Range2␊ valueReference?: Reference7␊ + code: unknown␊ }␊ /**␊ * Indicates how the medication is/was taken or should be taken by the patient.␊ @@ -418406,6 +449664,7 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element93␊ + origin: unknown␊ }␊ /**␊ * A signature along with supporting context. The signature may be a digital signature that is cryptographic in nature, or some other signature acceptable to the domain. This other signature may be as simple as a graphical image representing a hand-written signature, or a signature ceremony Different signature approaches have different utilities.␊ @@ -418445,6 +449704,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * Specifies an event that may occur multiple times. Timing schedules are used to record when things are planned, expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds, and may be used for reporting the schedule to which past regular activities were carried out.␊ @@ -418760,6 +450021,7 @@ Generated by [AVA](https://avajs.dev). valueQuantity?: Quantity6␊ valueRange?: Range2␊ valueReference?: Reference7␊ + code: unknown␊ }␊ /**␊ * Indicates how the medication is/was taken or should be taken by the patient.␊ @@ -419508,6 +450770,7 @@ Generated by [AVA](https://avajs.dev). * Captures constraints on each element within the resource.␊ */␊ element: ElementDefinition[]␊ + element: unknown␊ }␊ /**␊ * A Map of relationships between 2 structures that can be used to transform data.␊ @@ -419630,6 +450893,8 @@ Generated by [AVA](https://avajs.dev). * Organizes the mapping into manageable chunks for human review/ease of maintenance.␊ */␊ group: StructureMap_Group[]␊ + resourceType: unknown␊ + group: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -419720,6 +450985,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -419901,6 +451167,7 @@ Generated by [AVA](https://avajs.dev). */␊ documentation?: string␊ _documentation?: Element1925␊ + url: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -419987,6 +451254,8 @@ Generated by [AVA](https://avajs.dev). * Transform Rule from source to target.␊ */␊ rule: StructureMap_Rule[]␊ + input: unknown␊ + rule: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -420175,6 +451444,7 @@ Generated by [AVA](https://avajs.dev). */␊ documentation?: string␊ _documentation?: Element1976␊ + source: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -421345,6 +452615,7 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element93␊ + origin: unknown␊ }␊ /**␊ * A signature along with supporting context. The signature may be a digital signature that is cryptographic in nature, or some other signature acceptable to the domain. This other signature may be as simple as a graphical image representing a hand-written signature, or a signature ceremony Different signature approaches have different utilities.␊ @@ -421384,6 +452655,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * Specifies an event that may occur multiple times. Timing schedules are used to record when things are planned, expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds, and may be used for reporting the schedule to which past regular activities were carried out.␊ @@ -421699,6 +452972,7 @@ Generated by [AVA](https://avajs.dev). valueQuantity?: Quantity6␊ valueRange?: Range2␊ valueReference?: Reference7␊ + code: unknown␊ }␊ /**␊ * Indicates how the medication is/was taken or should be taken by the patient.␊ @@ -422247,6 +453521,8 @@ Generated by [AVA](https://avajs.dev). error?: string␊ _error?: Element1983␊ channel: Subscription_Channel␊ + channel: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -422337,6 +453613,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -422549,6 +453826,8 @@ Generated by [AVA](https://avajs.dev). * A substance can be composed of other substances.␊ */␊ ingredient?: Substance_Ingredient[]␊ + code: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -422639,6 +453918,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -422940,6 +454220,7 @@ Generated by [AVA](https://avajs.dev). * Subunits are listed in order of decreasing length; sequences of the same length will be ordered by molecular weight; subunits that have identical sequences will be repeated multiple times.␊ */␊ subunit?: SubstanceNucleicAcid_Subunit[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -423030,6 +454311,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -423534,6 +454816,7 @@ Generated by [AVA](https://avajs.dev). * Todo.␊ */␊ repeat?: SubstancePolymer_Repeat[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -423624,6 +454907,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -424460,6 +455744,7 @@ Generated by [AVA](https://avajs.dev). * This subclause refers to the description of each subunit constituting the SubstanceProtein. A subunit is a linear sequence of amino acids linked through peptide bonds. The Subunit information shall be provided when the finished SubstanceProtein is a complex of multiple sequences; subunits are not used to delineate domains within a single sequence. Subunits are listed in order of decreasing length; sequences of the same length will be ordered by decreasing molecular weight; subunits that have identical sequences will be repeated multiple times.␊ */␊ subunit?: SubstanceProtein_Subunit[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -424550,6 +455835,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -424872,6 +456158,7 @@ Generated by [AVA](https://avajs.dev). * Todo.␊ */␊ target?: SubstanceReferenceInformation_Target[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -424962,6 +456249,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -425520,6 +456808,7 @@ Generated by [AVA](https://avajs.dev). * To do.␊ */␊ partDescription?: SubstanceSourceMaterial_PartDescription[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -425610,6 +456899,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -426374,6 +457664,7 @@ Generated by [AVA](https://avajs.dev). polymer?: Reference445␊ protein?: Reference446␊ sourceMaterial?: Reference447␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -426464,6 +457755,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -428299,6 +459591,7 @@ Generated by [AVA](https://avajs.dev). * Identifies the person who picked up the Supply.␊ */␊ receiver?: Reference11[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -428389,6 +459682,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -428783,6 +460077,8 @@ Generated by [AVA](https://avajs.dev). reasonReference?: Reference11[]␊ deliverFrom?: Reference454␊ deliverTo?: Reference455␊ + quantity: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -428873,6 +460169,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -429449,6 +460746,7 @@ Generated by [AVA](https://avajs.dev). * Outputs produced by the Task.␊ */␊ output?: Task_Output[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -429539,6 +460837,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -430200,6 +461499,7 @@ Generated by [AVA](https://avajs.dev). valueUsageContext?: UsageContext8␊ valueDosage?: Dosage8␊ valueMeta?: Meta147␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -431132,6 +462432,7 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element93␊ + origin: unknown␊ }␊ /**␊ * A signature along with supporting context. The signature may be a digital signature that is cryptographic in nature, or some other signature acceptable to the domain. This other signature may be as simple as a graphical image representing a hand-written signature, or a signature ceremony Different signature approaches have different utilities.␊ @@ -431171,6 +462472,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * Specifies an event that may occur multiple times. Timing schedules are used to record when things are planned, expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds, and may be used for reporting the schedule to which past regular activities were carried out.␊ @@ -431486,6 +462789,7 @@ Generated by [AVA](https://avajs.dev). valueQuantity?: Quantity6␊ valueRange?: Range2␊ valueReference?: Reference7␊ + code: unknown␊ }␊ /**␊ * Indicates how the medication is/was taken or should be taken by the patient.␊ @@ -431727,6 +463031,7 @@ Generated by [AVA](https://avajs.dev). valueUsageContext?: UsageContext9␊ valueDosage?: Dosage9␊ valueMeta?: Meta148␊ + type: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -432659,6 +463964,7 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element93␊ + origin: unknown␊ }␊ /**␊ * A signature along with supporting context. The signature may be a digital signature that is cryptographic in nature, or some other signature acceptable to the domain. This other signature may be as simple as a graphical image representing a hand-written signature, or a signature ceremony Different signature approaches have different utilities.␊ @@ -432698,6 +464004,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * Specifies an event that may occur multiple times. Timing schedules are used to record when things are planned, expected or requested to occur. The most common usage is in dosage instructions for medications. They are also used when planning care of various kinds, and may be used for reporting the schedule to which past regular activities were carried out.␊ @@ -433013,6 +464321,7 @@ Generated by [AVA](https://avajs.dev). valueQuantity?: Quantity6␊ valueRange?: Range2␊ valueReference?: Reference7␊ + code: unknown␊ }␊ /**␊ * Indicates how the medication is/was taken or should be taken by the patient.␊ @@ -433239,6 +464548,7 @@ Generated by [AVA](https://avajs.dev). validateCode?: TerminologyCapabilities_ValidateCode␊ translation?: TerminologyCapabilities_Translation␊ closure?: TerminologyCapabilities_Closure␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -433329,6 +464639,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -434146,6 +465457,8 @@ Generated by [AVA](https://avajs.dev). */␊ test?: TestReport_Test[]␊ teardown?: TestReport_Teardown␊ + testScript: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -434236,6 +465549,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * An identifier - identifies some entity uniquely and unambiguously. Typically this is used for business identifiers.␊ @@ -434472,6 +465786,7 @@ Generated by [AVA](https://avajs.dev). * Action would contain either an operation or an assertion.␊ */␊ action: TestReport_Action[]␊ + action: unknown␊ }␊ /**␊ * A summary of information based on the results of executing a TestScript.␊ @@ -434672,6 +465987,7 @@ Generated by [AVA](https://avajs.dev). * Action would contain either an operation or an assertion.␊ */␊ action: TestReport_Action1[]␊ + action: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -434810,6 +466126,7 @@ Generated by [AVA](https://avajs.dev). * The teardown action will only contain an operation.␊ */␊ action: TestReport_Action2[]␊ + action: unknown␊ }␊ /**␊ * A summary of information based on the results of executing a TestScript.␊ @@ -434830,6 +466147,7 @@ Generated by [AVA](https://avajs.dev). */␊ modifierExtension?: Extension[]␊ operation: TestReport_Operation2␊ + operation: unknown␊ }␊ /**␊ * An operation would involve a REST request to a server.␊ @@ -434998,6 +466316,7 @@ Generated by [AVA](https://avajs.dev). */␊ test?: TestScript_Test[]␊ teardown?: TestScript_Teardown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -435088,6 +466407,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -435287,6 +466607,7 @@ Generated by [AVA](https://avajs.dev). index?: number␊ _index?: Element2179␊ profile: Coding41␊ + profile: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -435363,6 +466684,7 @@ Generated by [AVA](https://avajs.dev). index?: number␊ _index?: Element2180␊ profile: Coding42␊ + profile: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -435441,6 +466763,7 @@ Generated by [AVA](https://avajs.dev). * Capabilities that must exist and are assumed to function correctly on the FHIR server being tested.␊ */␊ capability: TestScript_Capability[]␊ + capability: unknown␊ }␊ /**␊ * A structured set of tests against a FHIR server or client implementation to determine compliance against the FHIR specification.␊ @@ -435555,6 +466878,7 @@ Generated by [AVA](https://avajs.dev). * A URI that is a reference to a canonical URL on a FHIR resource␊ */␊ capabilities: string␊ + capabilities: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -435880,6 +467204,7 @@ Generated by [AVA](https://avajs.dev). * Action would contain either an operation or an assertion.␊ */␊ action: TestScript_Action[]␊ + action: unknown␊ }␊ /**␊ * A structured set of tests against a FHIR server or client implementation to determine compliance against the FHIR specification.␊ @@ -436736,6 +468061,7 @@ Generated by [AVA](https://avajs.dev). * Action would contain either an operation or an assertion.␊ */␊ action: TestScript_Action1[]␊ + action: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -437034,6 +468360,7 @@ Generated by [AVA](https://avajs.dev). * The teardown action will only contain an operation.␊ */␊ action: TestScript_Action2[]␊ + action: unknown␊ }␊ /**␊ * A structured set of tests against a FHIR server or client implementation to determine compliance against the FHIR specification.␊ @@ -437054,6 +468381,7 @@ Generated by [AVA](https://avajs.dev). */␊ modifierExtension?: Extension[]␊ operation: TestScript_Operation2␊ + operation: unknown␊ }␊ /**␊ * An operation would involve a REST request to a server.␊ @@ -437270,6 +468598,7 @@ Generated by [AVA](https://avajs.dev). _copyright?: Element2251␊ compose?: ValueSet_Compose␊ expansion?: ValueSet_Expansion␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -437360,6 +468689,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -437553,6 +468883,7 @@ Generated by [AVA](https://avajs.dev). * Exclude one or more codes from the value set based on code system filters and/or other value sets.␊ */␊ exclude?: ValueSet_Include[]␊ + include: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -438357,6 +469688,7 @@ Generated by [AVA](https://avajs.dev). * Information about the entity validating information.␊ */␊ validator?: VerificationResult_Validator[]␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -438447,6 +469779,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -438922,6 +470255,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * A signature along with supporting context. The signature may be a digital signature that is cryptographic in nature, or some other signature acceptable to the domain. This other signature may be as simple as a graphical image representing a hand-written signature, or a signature ceremony Different signature approaches have different utilities.␊ @@ -438961,6 +470296,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * Describes validation requirements, source(s), status and dates for one or more elements.␊ @@ -438987,6 +470324,7 @@ Generated by [AVA](https://avajs.dev). identityCertificate?: string␊ _identityCertificate?: Element2291␊ attestationSignature?: Signature12␊ + organization: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -439070,6 +470408,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * An authorization for the provision of glasses and/or contact lenses to a patient.␊ @@ -439135,6 +470475,10 @@ Generated by [AVA](https://avajs.dev). * Contain the details of the individual lens specifications and serves as the authorization for the fullfillment by certified professionals.␊ */␊ lensSpecification: VisionPrescription_LensSpecification[]␊ + prescriber: unknown␊ + patient: unknown␊ + lensSpecification: unknown␊ + resourceType: unknown␊ }␊ /**␊ * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.␊ @@ -439225,6 +470569,7 @@ Generated by [AVA](https://avajs.dev). div: {␊ [k: string]: unknown␊ }␊ + div: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -439436,6 +470781,7 @@ Generated by [AVA](https://avajs.dev). * Notes for special requirements such as coatings and lens materials.␊ */␊ note?: Annotation1[]␊ + product: unknown␊ }␊ /**␊ * A concept that may be defined by a formal reference to a terminology or ontology or may be provided by text.␊ @@ -439997,6 +471343,8 @@ Generated by [AVA](https://avajs.dev). */␊ data?: string␊ _data?: Element97␊ + type: unknown␊ + who: unknown␊ }␊ /**␊ * Base definition for all elements in a resource.␊ @@ -440093,6 +471441,7 @@ Generated by [AVA](https://avajs.dev). */␊ priority?: number␊ _priority?: Element2323␊ + coverage: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -440207,6 +471556,7 @@ Generated by [AVA](https://avajs.dev). onHold?: boolean␊ _onHold?: Element2325␊ period?: Period129␊ + party: unknown␊ }␊ /**␊ * A reference from one resource to another.␊ @@ -440378,7 +471728,17 @@ Generated by [AVA](https://avajs.dev). */␊ exit_code?: number␊ [k: string]: unknown␊ - } | null))␊ + } | (null & {␊ + /**␊ + * output of the postdeploy script␊ + */␊ + output?: string␊ + /**␊ + * The exit code of the postdeploy script␊ + */␊ + exit_code?: number␊ + [k: string]: unknown␊ + })))␊ /**␊ * buildpacks executed for this build, in order␊ */␊ @@ -440398,7 +471758,13 @@ Generated by [AVA](https://avajs.dev). */␊ id?: string␊ [k: string]: unknown␊ - } & (null | {␊ + } & ((null & {␊ + /**␊ + * unique identifier of release␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + }) | {␊ /**␊ * unique identifier of release␊ */␊ @@ -440408,7 +471774,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * price information for this dyno size␊ */␊ - export type Cost = (null | {␊ + export type Cost = ((null & {␊ + [k: string]: unknown␊ + }) | {␊ [k: string]: unknown␊ })␊ /**␊ @@ -440438,7 +471806,17 @@ Generated by [AVA](https://avajs.dev). */␊ name?: string␊ [k: string]: unknown␊ - } | null))␊ + } | (null & {␊ + /**␊ + * unique identifier of add-on␊ + */␊ + id?: string␊ + /**␊ + * globally unique name of the add-on␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + })))␊ /**␊ * The scope of access OAuth authorization allows␊ */␊ @@ -440609,7 +471987,33 @@ Generated by [AVA](https://avajs.dev). /**␊ * Identity Provider details for federated users.␊ */␊ - identity_provider?: ({␊ + identity_provider?: (({␊ + /**␊ + * unique identifier of this identity provider␊ + */␊ + id?: string␊ + organization?: {␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + } | (null & {␊ + /**␊ + * unique identifier of this identity provider␊ + */␊ + id?: string␊ + organization?: {␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }␊ + [k: string]: unknown␊ + })) & {␊ /**␊ * unique identifier of this identity provider␊ */␊ @@ -440622,7 +472026,7 @@ Generated by [AVA](https://avajs.dev). [k: string]: unknown␊ }␊ [k: string]: unknown␊ - } | null)␊ + })␊ /**␊ * when account last authorized with Heroku␊ */␊ @@ -440658,7 +472062,17 @@ Generated by [AVA](https://avajs.dev). /**␊ * organization selected by default␊ */␊ - default_organization?: ({␊ + default_organization?: (({␊ + /**␊ + * unique identifier of organization␊ + */␊ + id?: string␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + } | (null & {␊ /**␊ * unique identifier of organization␊ */␊ @@ -440668,7 +472082,17 @@ Generated by [AVA](https://avajs.dev). */␊ name?: string␊ [k: string]: unknown␊ - } | null)␊ + })) & {␊ + /**␊ + * unique identifier of organization␊ + */␊ + id?: string␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + })␊ [k: string]: unknown␊ }␊ /**␊ @@ -440721,6 +472145,9 @@ Generated by [AVA](https://avajs.dev). name?: string␊ [k: string]: unknown␊ }␊ + id: unknown␊ + name: unknown␊ + app: unknown␊ }␊ /**␊ * application that is attached to add-on␊ @@ -441110,7 +472537,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * identity and status of build␊ */␊ - build?: (null | {␊ + build?: (((null & {␊ + /**␊ + * unique identifier of build␊ + */␊ + id?: string␊ + /**␊ + * status of build␊ + */␊ + status?: ("failed" | "pending" | "succeeded")␊ + /**␊ + * Build process output will be available from this URL as a stream. The stream is available as either \`text/plain\` or \`text/event-stream\`. Clients should be prepared to handle disconnects and can resume the stream by sending a \`Range\` header (for \`text/plain\`) or a \`Last-Event-Id\` header (for \`text/event-stream\`).␊ + */␊ + output_stream_url?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique identifier of build␊ + */␊ + id?: string␊ + /**␊ + * status of build␊ + */␊ + status?: ("failed" | "pending" | "succeeded")␊ + /**␊ + * Build process output will be available from this URL as a stream. The stream is available as either \`text/plain\` or \`text/event-stream\`. Clients should be prepared to handle disconnects and can resume the stream by sending a \`Range\` header (for \`text/plain\`) or a \`Last-Event-Id\` header (for \`text/event-stream\`).␊ + */␊ + output_stream_url?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique identifier of build␊ */␊ @@ -441260,7 +472715,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * identity of organization␊ */␊ - organization?: (null | {␊ + organization?: (((null & {␊ + /**␊ + * unique identifier of organization␊ + */␊ + id?: string␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique identifier of organization␊ + */␊ + id?: string␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique identifier of organization␊ */␊ @@ -441300,7 +472775,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * identity of space␊ */␊ - space?: (null | {␊ + space?: (((null & {␊ + /**␊ + * unique identifier of space␊ + */␊ + id?: string␊ + /**␊ + * unique name of space␊ + */␊ + name?: string␊ + /**␊ + * true if this space has shield enabled␊ + */␊ + shield?: boolean␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique identifier of space␊ + */␊ + id?: string␊ + /**␊ + * unique name of space␊ + */␊ + name?: string␊ + /**␊ + * true if this space has shield enabled␊ + */␊ + shield?: boolean␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique identifier of space␊ */␊ @@ -441417,13 +472920,25 @@ Generated by [AVA](https://avajs.dev). /**␊ * slug created by this build␊ */␊ - slug?: ({␊ + slug?: (({␊ + /**␊ + * unique identifier of slug␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + } | (null & {␊ /**␊ * unique identifier of slug␊ */␊ id?: string␊ [k: string]: unknown␊ - } | null)␊ + })) & {␊ + /**␊ + * unique identifier of slug␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + })␊ /**␊ * status of build␊ */␊ @@ -441543,6 +473058,11 @@ Generated by [AVA](https://avajs.dev). id?: string␊ [k: string]: unknown␊ }␊ + app: unknown␊ + created_at: unknown␊ + id: unknown␊ + updated_at: unknown␊ + user: unknown␊ }␊ /**␊ * An organization app permission is a behavior that is assigned to a user in an organization app.␊ @@ -441845,7 +473365,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * The related resource of the failed action.␊ */␊ - resource?: ({␊ + resource?: (({␊ + /**␊ + * Unique identifier of a resource.␊ + */␊ + id?: string␊ + /**␊ + * the type of resource affected␊ + */␊ + name?: ("addon" | "addon-attachment" | "app" | "app-setup" | "app-transfer" | "build" | "collaborator" | "domain" | "dyno" | "failed-event" | "formation" | "formation-set" | "inbound-ruleset" | "organization" | "release" | "space" | "user")␊ + [k: string]: unknown␊ + } | (null & {␊ + /**␊ + * Unique identifier of a resource.␊ + */␊ + id?: string␊ + /**␊ + * the type of resource affected␊ + */␊ + name?: ("addon" | "addon-attachment" | "app" | "app-setup" | "app-transfer" | "build" | "collaborator" | "domain" | "dyno" | "failed-event" | "formation" | "formation-set" | "inbound-ruleset" | "organization" | "release" | "space" | "user")␊ + [k: string]: unknown␊ + })) & {␊ /**␊ * Unique identifier of a resource.␊ */␊ @@ -441855,7 +473395,7 @@ Generated by [AVA](https://avajs.dev). */␊ name?: ("addon" | "addon-attachment" | "app" | "app-setup" | "app-transfer" | "build" | "collaborator" | "domain" | "dyno" | "failed-event" | "formation" | "formation-set" | "inbound-ruleset" | "organization" | "release" | "space" | "user")␊ [k: string]: unknown␊ - } | null)␊ + })␊ [k: string]: unknown␊ }␊ /**␊ @@ -441937,6 +473477,8 @@ Generated by [AVA](https://avajs.dev). * is the request’s source in CIDR notation␊ */␊ source: string␊ + source: unknown␊ + action: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -442026,13 +473568,25 @@ Generated by [AVA](https://avajs.dev). /**␊ * slug running in this release␊ */␊ - slug?: ({␊ + slug?: (({␊ /**␊ * unique identifier of slug␊ */␊ id?: string␊ [k: string]: unknown␊ - } | null)␊ + } | (null & {␊ + /**␊ + * unique identifier of slug␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + })) & {␊ + /**␊ + * unique identifier of slug␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + })␊ /**␊ * current status of the release␊ */␊ @@ -442152,7 +473706,19 @@ Generated by [AVA](https://avajs.dev). /**␊ * organization associated with this identity provider␊ */␊ - organization?: (null | {␊ + organization?: (((null & {␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique name of organization␊ */␊ @@ -442366,7 +473932,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * access token for this authorization␊ */␊ - access_token?: (null | {␊ + access_token?: (((null & {␊ + /**␊ + * seconds until OAuth token expires; may be \`null\` for tokens with indefinite lifetime␊ + */␊ + expires_in?: (null | number)␊ + /**␊ + * unique identifier of OAuth token␊ + */␊ + id?: string␊ + /**␊ + * contents of the token to be used for authorization␊ + */␊ + token?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * seconds until OAuth token expires; may be \`null\` for tokens with indefinite lifetime␊ + */␊ + expires_in?: (null | number)␊ + /**␊ + * unique identifier of OAuth token␊ + */␊ + id?: string␊ + /**␊ + * contents of the token to be used for authorization␊ + */␊ + token?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * seconds until OAuth token expires; may be \`null\` for tokens with indefinite lifetime␊ */␊ @@ -442384,7 +473978,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * identifier of the client that obtained this authorization, if any␊ */␊ - client?: (null | {␊ + client?: (((null & {␊ + /**␊ + * unique identifier of this OAuth client␊ + */␊ + id?: string␊ + /**␊ + * OAuth client name␊ + */␊ + name?: string␊ + /**␊ + * endpoint for redirection after authorization with OAuth client␊ + */␊ + redirect_uri?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique identifier of this OAuth client␊ + */␊ + id?: string␊ + /**␊ + * OAuth client name␊ + */␊ + name?: string␊ + /**␊ + * endpoint for redirection after authorization with OAuth client␊ + */␊ + redirect_uri?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique identifier of this OAuth client␊ */␊ @@ -442406,7 +474028,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * this authorization's grant␊ */␊ - grant?: (null | {␊ + grant?: (((null & {␊ + /**␊ + * grant code received from OAuth web application authorization␊ + */␊ + code?: string␊ + /**␊ + * seconds until OAuth grant expires␊ + */␊ + expires_in?: number␊ + /**␊ + * unique identifier of OAuth grant␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * grant code received from OAuth web application authorization␊ + */␊ + code?: string␊ + /**␊ + * seconds until OAuth grant expires␊ + */␊ + expires_in?: number␊ + /**␊ + * unique identifier of OAuth grant␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * grant code received from OAuth web application authorization␊ */␊ @@ -442428,7 +474078,35 @@ Generated by [AVA](https://avajs.dev). /**␊ * refresh token for this authorization␊ */␊ - refresh_token?: (null | {␊ + refresh_token?: (((null & {␊ + /**␊ + * seconds until OAuth token expires; may be \`null\` for tokens with indefinite lifetime␊ + */␊ + expires_in?: (null | number)␊ + /**␊ + * unique identifier of OAuth token␊ + */␊ + id?: string␊ + /**␊ + * contents of the token to be used for authorization␊ + */␊ + token?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * seconds until OAuth token expires; may be \`null\` for tokens with indefinite lifetime␊ + */␊ + expires_in?: (null | number)␊ + /**␊ + * unique identifier of OAuth token␊ + */␊ + id?: string␊ + /**␊ + * contents of the token to be used for authorization␊ + */␊ + token?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * seconds until OAuth token expires; may be \`null\` for tokens with indefinite lifetime␊ */␊ @@ -442543,7 +474221,19 @@ Generated by [AVA](https://avajs.dev). /**␊ * OAuth client secret used to obtain token␊ */␊ - client?: (null | {␊ + client?: (((null & {␊ + /**␊ + * secret used to obtain OAuth authorizations under this client␊ + */␊ + secret?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * secret used to obtain OAuth authorizations under this client␊ + */␊ + secret?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * secret used to obtain OAuth authorizations under this client␊ */␊ @@ -442719,7 +474409,19 @@ Generated by [AVA](https://avajs.dev). /**␊ * organization that owns this app␊ */␊ - organization?: (null | {␊ + organization?: (((null & {␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique name of organization␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique name of organization␊ */␊ @@ -442729,7 +474431,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * identity of app owner␊ */␊ - owner?: (null | {␊ + owner?: (((null & {␊ + /**␊ + * unique email address of account␊ + */␊ + email?: string␊ + /**␊ + * unique identifier of an account␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique email address of account␊ + */␊ + email?: string␊ + /**␊ + * unique identifier of an account␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique email address of account␊ */␊ @@ -442769,7 +474491,27 @@ Generated by [AVA](https://avajs.dev). /**␊ * identity of space␊ */␊ - space?: (null | {␊ + space?: (((null & {␊ + /**␊ + * unique identifier of space␊ + */␊ + id?: string␊ + /**␊ + * unique name of space␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) | {␊ + /**␊ + * unique identifier of space␊ + */␊ + id?: string␊ + /**␊ + * unique name of space␊ + */␊ + name?: string␊ + [k: string]: unknown␊ + }) & {␊ /**␊ * unique identifier of space␊ */␊ @@ -443033,6 +474775,10 @@ Generated by [AVA](https://avajs.dev). name?: (string | null)␊ [k: string]: unknown␊ }␊ + created_at: unknown␊ + email: unknown␊ + federated: unknown␊ + updated_at: unknown␊ }␊ /**␊ * Tracks an organization's preferences␊ @@ -443087,6 +474833,10 @@ Generated by [AVA](https://avajs.dev). * formal standards and policies comprised of rules, procedures and formats that define communication between two or more devices over a network␊ */␊ protocol: string␊ + target: unknown␊ + from_port: unknown␊ + to_port: unknown␊ + protocol: unknown␊ [k: string]: unknown␊ }␊ /**␊ @@ -443187,13 +474937,25 @@ Generated by [AVA](https://avajs.dev). /**␊ * the release which was created on the target app␊ */␊ - release?: ({␊ + release?: (({␊ + /**␊ + * unique identifier of release␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + } | (null & {␊ + /**␊ + * unique identifier of release␊ + */␊ + id?: string␊ + [k: string]: unknown␊ + })) & {␊ /**␊ * unique identifier of release␊ */␊ id?: string␊ [k: string]: unknown␊ - } | null)␊ + })␊ /**␊ * status of promotion␊ */␊ @@ -443787,6 +475549,7 @@ Generated by [AVA](https://avajs.dev). link?: Link;␊ extension?: Extension;␊ category: Category;␊ + category: unknown;␊ };␊ };␊ value:␊ @@ -443800,6 +475563,12 @@ Generated by [AVA](https://avajs.dev). | {␊ [k: string]: string;␊ };␊ + version: unknown;␊ + class: unknown;␊ + value: unknown;␊ + id: unknown;␊ + size: unknown;␊ + dimension: unknown;␊ }␊ | {␊ class: "dimension";␊ @@ -443813,6 +475582,9 @@ Generated by [AVA](https://avajs.dev). error?: Error;␊ extension?: Extension;␊ category: Category;␊ + version: unknown;␊ + class: unknown;␊ + category: unknown;␊ }␊ | {␊ class: "collection";␊ @@ -443847,6 +475619,7 @@ Generated by [AVA](https://avajs.dev). link?: Link;␊ extension?: Extension;␊ category: Category;␊ + category: unknown;␊ };␊ };␊ value?:␊ @@ -443866,6 +475639,9 @@ Generated by [AVA](https://avajs.dev). source?: Source;␊ error?: Error;␊ extension?: Extension;␊ + version: unknown;␊ + class: unknown;␊ + link: unknown;␊ };␊ export type Version = "2.0";␊ export type Href = string;␊ @@ -443906,6 +475682,7 @@ Generated by [AVA](https://avajs.dev). link?: Link;␊ extension?: Extension;␊ category: Category;␊ + category: unknown;␊ };␊ };␊ value?:␊ @@ -443964,10 +475741,11 @@ Generated by [AVA](https://avajs.dev). * and run json-schema-to-typescript to regenerate this file.␊ */␊ ␊ - export type CoreSchemaMetaSchema = CoreSchemaMetaSchema1 & CoreSchemaMetaSchema2;␊ + export type CoreSchemaMetaSchema = CoreSchemaMetaSchema1 & CoreSchemaMetaSchema3;␊ export type NonNegativeInteger = number;␊ export type NonNegativeIntegerDefault0 = NonNegativeInteger;␊ - export type CoreSchemaMetaSchema2 =␊ + export type CoreSchemaMetaSchema2 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema3 =␊ | {␊ $id?: string;␊ $schema?: string;␊ @@ -443987,29 +475765,29 @@ Generated by [AVA](https://avajs.dev). maxLength?: NonNegativeInteger;␊ minLength?: NonNegativeIntegerDefault0;␊ pattern?: string;␊ - additionalItems?: CoreSchemaMetaSchema2;␊ - items?: CoreSchemaMetaSchema2 | SchemaArray;␊ + additionalItems?: CoreSchemaMetaSchema4;␊ + items?: CoreSchemaMetaSchema7 | SchemaArray;␊ maxItems?: NonNegativeInteger;␊ minItems?: NonNegativeIntegerDefault0;␊ uniqueItems?: boolean;␊ - contains?: CoreSchemaMetaSchema2;␊ + contains?: CoreSchemaMetaSchema21;␊ maxProperties?: NonNegativeInteger;␊ minProperties?: NonNegativeIntegerDefault0;␊ required?: StringArray;␊ - additionalProperties?: CoreSchemaMetaSchema2;␊ + additionalProperties?: CoreSchemaMetaSchema22;␊ definitions?: {␊ - [k: string]: CoreSchemaMetaSchema2;␊ + [k: string]: CoreSchemaMetaSchema12;␊ };␊ properties?: {␊ - [k: string]: CoreSchemaMetaSchema2;␊ + [k: string]: CoreSchemaMetaSchema13;␊ };␊ patternProperties?: {␊ - [k: string]: CoreSchemaMetaSchema2;␊ + [k: string]: CoreSchemaMetaSchema14;␊ };␊ dependencies?: {␊ - [k: string]: CoreSchemaMetaSchema2 | StringArray;␊ + [k: string]: CoreSchemaMetaSchema15 | StringArray;␊ };␊ - propertyNames?: CoreSchemaMetaSchema2;␊ + propertyNames?: CoreSchemaMetaSchema23;␊ const?: unknown;␊ /**␊ * @minItems 1␊ @@ -444019,22 +475797,119 @@ Generated by [AVA](https://avajs.dev). format?: string;␊ contentMediaType?: string;␊ contentEncoding?: string;␊ - if?: CoreSchemaMetaSchema2;␊ - then?: CoreSchemaMetaSchema2;␊ - else?: CoreSchemaMetaSchema2;␊ + if?: CoreSchemaMetaSchema24;␊ + then?: CoreSchemaMetaSchema25;␊ + else?: CoreSchemaMetaSchema26;␊ allOf?: SchemaArray;␊ anyOf?: SchemaArray;␊ oneOf?: SchemaArray;␊ - not?: CoreSchemaMetaSchema2;␊ + not?: CoreSchemaMetaSchema27;␊ [k: string]: unknown;␊ }␊ - | boolean;␊ + | (boolean & {␊ + $id?: string;␊ + $schema?: string;␊ + $ref?: string;␊ + $comment?: string;␊ + title?: string;␊ + description?: string;␊ + default?: unknown;␊ + readOnly?: boolean;␊ + writeOnly?: boolean;␊ + examples?: unknown[];␊ + multipleOf?: number;␊ + maximum?: number;␊ + exclusiveMaximum?: number;␊ + minimum?: number;␊ + exclusiveMinimum?: number;␊ + maxLength?: NonNegativeInteger;␊ + minLength?: NonNegativeIntegerDefault0;␊ + pattern?: string;␊ + additionalItems?: CoreSchemaMetaSchema28;␊ + items?: CoreSchemaMetaSchema7 | SchemaArray;␊ + maxItems?: NonNegativeInteger;␊ + minItems?: NonNegativeIntegerDefault0;␊ + uniqueItems?: boolean;␊ + contains?: CoreSchemaMetaSchema29;␊ + maxProperties?: NonNegativeInteger;␊ + minProperties?: NonNegativeIntegerDefault0;␊ + required?: StringArray;␊ + additionalProperties?: CoreSchemaMetaSchema30;␊ + definitions?: {␊ + [k: string]: CoreSchemaMetaSchema12;␊ + };␊ + properties?: {␊ + [k: string]: CoreSchemaMetaSchema13;␊ + };␊ + patternProperties?: {␊ + [k: string]: CoreSchemaMetaSchema14;␊ + };␊ + dependencies?: {␊ + [k: string]: CoreSchemaMetaSchema15 | StringArray;␊ + };␊ + propertyNames?: CoreSchemaMetaSchema31;␊ + const?: unknown;␊ + /**␊ + * @minItems 1␊ + */␊ + enum?: [unknown, ...unknown[]];␊ + type?: SimpleTypes | [SimpleTypes, ...SimpleTypes[]];␊ + format?: string;␊ + contentMediaType?: string;␊ + contentEncoding?: string;␊ + if?: CoreSchemaMetaSchema32;␊ + then?: CoreSchemaMetaSchema33;␊ + else?: CoreSchemaMetaSchema34;␊ + allOf?: SchemaArray;␊ + anyOf?: SchemaArray;␊ + oneOf?: SchemaArray;␊ + not?: CoreSchemaMetaSchema35;␊ + [k: string]: unknown;␊ + });␊ + export type CoreSchemaMetaSchema4 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema6 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema7 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ /**␊ * @minItems 1␊ */␊ - export type SchemaArray = [CoreSchemaMetaSchema2, ...CoreSchemaMetaSchema2[]];␊ + export type SchemaArray = [CoreSchemaMetaSchema8, ...CoreSchemaMetaSchema9[]];␊ + export type CoreSchemaMetaSchema8 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema9 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema10 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ export type StringArray = string[];␊ + export type CoreSchemaMetaSchema11 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema12 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema13 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema14 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema15 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema16 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ export type SimpleTypes = "array" | "boolean" | "integer" | "null" | "number" | "object" | "string";␊ + export type CoreSchemaMetaSchema17 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema18 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema19 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema20 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema21 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema22 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema23 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema24 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema25 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema26 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema27 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema28 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema29 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema30 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema31 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema32 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema33 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema34 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema35 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema36 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema37 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema38 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema39 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema40 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema41 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ + export type CoreSchemaMetaSchema42 = CoreSchemaMetaSchema3 & CoreSchemaMetaSchema5;␊ ␊ export interface CoreSchemaMetaSchema1 {␊ $id?: string;␊ @@ -444056,28 +475931,28 @@ Generated by [AVA](https://avajs.dev). minLength?: NonNegativeIntegerDefault0;␊ pattern?: string;␊ additionalItems?: CoreSchemaMetaSchema2;␊ - items?: CoreSchemaMetaSchema2 | SchemaArray;␊ + items?: CoreSchemaMetaSchema7 | SchemaArray;␊ maxItems?: NonNegativeInteger;␊ minItems?: NonNegativeIntegerDefault0;␊ uniqueItems?: boolean;␊ - contains?: CoreSchemaMetaSchema2;␊ + contains?: CoreSchemaMetaSchema36;␊ maxProperties?: NonNegativeInteger;␊ minProperties?: NonNegativeIntegerDefault0;␊ required?: StringArray;␊ - additionalProperties?: CoreSchemaMetaSchema2;␊ + additionalProperties?: CoreSchemaMetaSchema37;␊ definitions?: {␊ - [k: string]: CoreSchemaMetaSchema2;␊ + [k: string]: CoreSchemaMetaSchema12;␊ };␊ properties?: {␊ - [k: string]: CoreSchemaMetaSchema2;␊ + [k: string]: CoreSchemaMetaSchema13;␊ };␊ patternProperties?: {␊ - [k: string]: CoreSchemaMetaSchema2;␊ + [k: string]: CoreSchemaMetaSchema14;␊ };␊ dependencies?: {␊ - [k: string]: CoreSchemaMetaSchema2 | StringArray;␊ + [k: string]: CoreSchemaMetaSchema15 | StringArray;␊ };␊ - propertyNames?: CoreSchemaMetaSchema2;␊ + propertyNames?: CoreSchemaMetaSchema38;␊ const?: unknown;␊ /**␊ * @minItems 1␊ @@ -444087,13 +475962,73 @@ Generated by [AVA](https://avajs.dev). format?: string;␊ contentMediaType?: string;␊ contentEncoding?: string;␊ - if?: CoreSchemaMetaSchema2;␊ - then?: CoreSchemaMetaSchema2;␊ - else?: CoreSchemaMetaSchema2;␊ + if?: CoreSchemaMetaSchema39;␊ + then?: CoreSchemaMetaSchema40;␊ + else?: CoreSchemaMetaSchema41;␊ allOf?: SchemaArray;␊ anyOf?: SchemaArray;␊ oneOf?: SchemaArray;␊ - not?: CoreSchemaMetaSchema2;␊ + not?: CoreSchemaMetaSchema42;␊ + [k: string]: unknown;␊ + }␊ + export interface CoreSchemaMetaSchema5 {␊ + $id?: string;␊ + $schema?: string;␊ + $ref?: string;␊ + $comment?: string;␊ + title?: string;␊ + description?: string;␊ + default?: unknown;␊ + readOnly?: boolean;␊ + writeOnly?: boolean;␊ + examples?: unknown[];␊ + multipleOf?: number;␊ + maximum?: number;␊ + exclusiveMaximum?: number;␊ + minimum?: number;␊ + exclusiveMinimum?: number;␊ + maxLength?: NonNegativeInteger;␊ + minLength?: NonNegativeIntegerDefault0;␊ + pattern?: string;␊ + additionalItems?: CoreSchemaMetaSchema6;␊ + items?: CoreSchemaMetaSchema7 | SchemaArray;␊ + maxItems?: NonNegativeInteger;␊ + minItems?: NonNegativeIntegerDefault0;␊ + uniqueItems?: boolean;␊ + contains?: CoreSchemaMetaSchema10;␊ + maxProperties?: NonNegativeInteger;␊ + minProperties?: NonNegativeIntegerDefault0;␊ + required?: StringArray;␊ + additionalProperties?: CoreSchemaMetaSchema11;␊ + definitions?: {␊ + [k: string]: CoreSchemaMetaSchema12;␊ + };␊ + properties?: {␊ + [k: string]: CoreSchemaMetaSchema13;␊ + };␊ + patternProperties?: {␊ + [k: string]: CoreSchemaMetaSchema14;␊ + };␊ + dependencies?: {␊ + [k: string]: CoreSchemaMetaSchema15 | StringArray;␊ + };␊ + propertyNames?: CoreSchemaMetaSchema16;␊ + const?: unknown;␊ + /**␊ + * @minItems 1␊ + */␊ + enum?: [unknown, ...unknown[]];␊ + type?: SimpleTypes | [SimpleTypes, ...SimpleTypes[]];␊ + format?: string;␊ + contentMediaType?: string;␊ + contentEncoding?: string;␊ + if?: CoreSchemaMetaSchema17;␊ + then?: CoreSchemaMetaSchema18;␊ + else?: CoreSchemaMetaSchema19;␊ + allOf?: SchemaArray;␊ + anyOf?: SchemaArray;␊ + oneOf?: SchemaArray;␊ + not?: CoreSchemaMetaSchema20;␊ [k: string]: unknown;␊ }␊ ` @@ -444130,16 +476065,25 @@ Generated by [AVA](https://avajs.dev). /**␊ * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Parameter2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + name: unknown;␊ + in: unknown;␊ };␊ export type Parameter1 = ExampleXORExamples & SchemaXORContent & ParameterLocation;␊ /**␊ * Schema and content are mutually exclusive, at least one is required␊ */␊ - export type SchemaXORContent = {␊ - [k: string]: unknown;␊ - };␊ + export type SchemaXORContent =␊ + | {␊ + schema: unknown;␊ + }␊ + | ({} & {␊ + content: unknown;␊ + });␊ /**␊ * Parameter location␊ */␊ @@ -444148,22 +476092,19 @@ Generated by [AVA](https://avajs.dev). in?: "path";␊ style?: "matrix" | "label" | "simple";␊ required: true;␊ - [k: string]: unknown;␊ + required: unknown;␊ }␊ | {␊ in?: "query";␊ style?: "form" | "spaceDelimited" | "pipeDelimited" | "deepObject";␊ - [k: string]: unknown;␊ }␊ | {␊ in?: "header";␊ style?: "simple";␊ - [k: string]: unknown;␊ }␊ | {␊ in?: "cookie";␊ style?: "form";␊ - [k: string]: unknown;␊ };␊ export type MediaType = MediaType1 & {␊ schema?: Schema | Reference;␊ @@ -444175,6 +476116,9 @@ Generated by [AVA](https://avajs.dev). [k: string]: Encoding;␊ };␊ /**␊ + * This interface was referenced by \`MediaType2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^x-".␊ */␊ @@ -444191,7 +476135,7 @@ Generated by [AVA](https://avajs.dev). allowReserved?: boolean;␊ schema?: Schema | Reference;␊ content?: {␊ - [k: string]: MediaType1;␊ + [k: string]: MediaType1 & MediaType2;␊ };␊ example?: unknown;␊ examples?: {␊ @@ -444200,6 +476144,9 @@ Generated by [AVA](https://avajs.dev). /**␊ * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Header2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ };␊ @@ -444219,17 +476166,17 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + scheme: unknown;␊ + type: unknown;␊ } & HTTPSecurityScheme1;␊ export type HTTPSecurityScheme1 =␊ | {␊ scheme?: "bearer";␊ - [k: string]: unknown;␊ }␊ | {␊ scheme?: {␊ [k: string]: unknown;␊ };␊ - [k: string]: unknown;␊ };␊ ␊ /**␊ @@ -444249,6 +476196,9 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + openapi: unknown;␊ + info: unknown;␊ + paths: unknown;␊ }␊ export interface Info {␊ title: string;␊ @@ -444262,6 +476212,8 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + title: unknown;␊ + version: unknown;␊ }␊ export interface Contact {␊ name?: string;␊ @@ -444281,6 +476233,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + name: unknown;␊ }␊ export interface ExternalDocumentation {␊ description?: string;␊ @@ -444290,6 +476243,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + url: unknown;␊ }␊ export interface Server {␊ url: string;␊ @@ -444302,6 +476256,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + url: unknown;␊ }␊ export interface ServerVariable {␊ enum?: string[];␊ @@ -444312,6 +476267,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + default: unknown;␊ }␊ export interface SecurityRequirement {␊ [k: string]: string[];␊ @@ -444325,6 +476281,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + name: unknown;␊ }␊ export interface Paths {}␊ /**␊ @@ -444341,9 +476298,7 @@ Generated by [AVA](https://avajs.dev). /**␊ * Example and examples are mutually exclusive␊ */␊ - export interface ExampleXORExamples {␊ - [k: string]: unknown;␊ - }␊ + export interface ExampleXORExamples {}␊ export interface Schema {␊ title?: string;␊ multipleOf?: number;␊ @@ -444400,12 +476355,14 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^\\$ref$".␊ */␊ [k: string]: string;␊ + $ref: unknown;␊ }␊ export interface Discriminator {␊ propertyName: string;␊ mapping?: {␊ [k: string]: string;␊ };␊ + propertyName: unknown;␊ [k: string]: unknown;␊ }␊ export interface XML {␊ @@ -444440,6 +476397,24 @@ Generated by [AVA](https://avajs.dev). explode?: boolean;␊ allowReserved?: boolean;␊ }␊ + export interface MediaType2 {␊ + schema?: Schema | Reference;␊ + example?: unknown;␊ + examples?: {␊ + [k: string]: Example | Reference;␊ + };␊ + encoding?: {␊ + [k: string]: Encoding;␊ + };␊ + /**␊ + * This interface was referenced by \`MediaType2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + */␊ + [k: string]: unknown;␊ + }␊ /**␊ * This interface was referenced by \`PathItem\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^(get|put|post|delete|options|head|patch|trace)$".␊ @@ -444450,7 +476425,7 @@ Generated by [AVA](https://avajs.dev). description?: string;␊ externalDocs?: ExternalDocumentation;␊ operationId?: string;␊ - parameters?: (Parameter1 | Reference)[];␊ + parameters?: ((Parameter1 & Parameter2) | Reference)[];␊ requestBody?: RequestBody | Reference;␊ responses: Responses;␊ callbacks?: {␊ @@ -444464,11 +476439,41 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + responses: unknown;␊ + }␊ + export interface Parameter2 {␊ + name: string;␊ + in: string;␊ + description?: string;␊ + required?: boolean;␊ + deprecated?: boolean;␊ + allowEmptyValue?: boolean;␊ + style?: string;␊ + explode?: boolean;␊ + allowReserved?: boolean;␊ + schema?: Schema | Reference;␊ + content?: {␊ + [k: string]: MediaType;␊ + };␊ + example?: unknown;␊ + examples?: {␊ + [k: string]: Example | Reference;␊ + };␊ + /**␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Parameter2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + */␊ + [k: string]: unknown;␊ + name: unknown;␊ + in: unknown;␊ }␊ export interface RequestBody {␊ description?: string;␊ content: {␊ - [k: string]: MediaType1;␊ + [k: string]: MediaType1 & MediaType2;␊ };␊ required?: boolean;␊ /**␊ @@ -444476,6 +476481,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + content: unknown;␊ }␊ export interface Responses {␊ default?: Response | Reference;␊ @@ -444483,10 +476489,10 @@ Generated by [AVA](https://avajs.dev). export interface Response {␊ description: string;␊ headers?: {␊ - [k: string]: Header1 | Reference;␊ + [k: string]: (Header1 & Header2) | Reference;␊ };␊ content?: {␊ - [k: string]: MediaType1;␊ + [k: string]: MediaType1 & MediaType2;␊ };␊ links?: {␊ [k: string]: Link | Reference;␊ @@ -444496,6 +476502,32 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + description: unknown;␊ + }␊ + export interface Header2 {␊ + description?: string;␊ + required?: boolean;␊ + deprecated?: boolean;␊ + allowEmptyValue?: boolean;␊ + style?: "simple";␊ + explode?: boolean;␊ + allowReserved?: boolean;␊ + schema?: Schema | Reference;␊ + content?: {␊ + [k: string]: MediaType1 & MediaType2;␊ + };␊ + example?: unknown;␊ + examples?: {␊ + [k: string]: Example | Reference;␊ + };␊ + /**␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + *␊ + * This interface was referenced by \`Header2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^x-".␊ + */␊ + [k: string]: unknown;␊ }␊ export interface Link {␊ operationId?: string;␊ @@ -444535,7 +476567,7 @@ Generated by [AVA](https://avajs.dev). * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^[a-zA-Z0-9\\.\\-_]+$".␊ */␊ - [k: string]: Reference | Parameter1;␊ + [k: string]: Reference | (Parameter1 & Parameter2);␊ };␊ examples?: {␊ /**␊ @@ -444556,7 +476588,7 @@ Generated by [AVA](https://avajs.dev). * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^[a-zA-Z0-9\\.\\-_]+$".␊ */␊ - [k: string]: Reference | Header1;␊ + [k: string]: Reference | (Header1 & Header2);␊ };␊ securitySchemes?: {␊ /**␊ @@ -444595,6 +476627,9 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + type: unknown;␊ + name: unknown;␊ + in: unknown;␊ }␊ export interface OAuth2SecurityScheme {␊ type: "oauth2";␊ @@ -444605,6 +476640,8 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + type: unknown;␊ + flows: unknown;␊ }␊ export interface OAuthFlows {␊ implicit?: ImplicitOAuthFlow;␊ @@ -444628,6 +476665,8 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + authorizationUrl: unknown;␊ + scopes: unknown;␊ }␊ export interface PasswordOAuthFlow {␊ tokenUrl: string;␊ @@ -444640,6 +476679,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + tokenUrl: unknown;␊ }␊ export interface ClientCredentialsFlow {␊ tokenUrl: string;␊ @@ -444652,6 +476692,7 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + tokenUrl: unknown;␊ }␊ export interface AuthorizationCodeOAuthFlow {␊ authorizationUrl: string;␊ @@ -444665,6 +476706,8 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + authorizationUrl: unknown;␊ + tokenUrl: unknown;␊ }␊ export interface OpenIdConnectSecurityScheme {␊ type: "openIdConnect";␊ @@ -444675,6 +476718,8 @@ Generated by [AVA](https://avajs.dev). * via the \`patternProperty\` "^x-".␊ */␊ [k: string]: unknown;␊ + type: unknown;␊ + openIdConnectUrl: unknown;␊ }␊ ` @@ -444709,26 +476754,38 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ blockName?: string;␊ blockType: "menuLink";␊ + blockType: unknown;␊ }␊ | {␊ content: string;␊ id?: string;␊ blockName?: string;␊ blockType: "menuDescription";␊ + blockType: unknown;␊ + content: unknown;␊ }␊ | {␊ media: string | Media;␊ @@ -444739,20 +476796,31 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ blockName?: string;␊ blockType: "menuFeature";␊ + blockType: unknown;␊ + media: unknown;␊ + headline: unknown;␊ }␊ )[];␊ enableColumn2?: boolean;␊ @@ -444766,26 +476834,38 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ blockName?: string;␊ blockType: "menuLink";␊ + blockType: unknown;␊ }␊ | {␊ content: string;␊ id?: string;␊ blockName?: string;␊ blockType: "menuDescription";␊ + blockType: unknown;␊ + content: unknown;␊ }␊ | {␊ media: string | Media;␊ @@ -444796,20 +476876,31 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ blockName?: string;␊ blockType: "menuFeature";␊ + blockType: unknown;␊ + media: unknown;␊ + headline: unknown;␊ }␊ )[];␊ };␊ @@ -444819,18 +476910,27 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ + label: unknown;␊ }[];␊ secondaryItems?: {␊ link?: {␊ @@ -444840,16 +476940,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -444891,16 +477000,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -444918,16 +477036,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -444945,20 +477072,30 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ media: string | Media;␊ + media: unknown;␊ };␊ contentMedia2?: {␊ richText?: {␊ @@ -444973,20 +477110,30 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ media: string | Media;␊ + media: unknown;␊ };␊ contentSidebar?: {␊ mainContent?: {␊ @@ -445001,16 +477148,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -445033,16 +477189,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -445055,19 +477220,30 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ + heading: unknown;␊ + description: unknown;␊ }[];␊ + backgroundMedia: unknown;␊ };␊ fullscreenBackground?: {␊ invertColors?: boolean;␊ @@ -445085,19 +477261,29 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ + backgroundMedia: unknown;␊ };␊ quickNav?: {␊ invertColors?: boolean;␊ @@ -445115,16 +477301,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -445137,19 +477332,30 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ + heading: unknown;␊ + description: unknown;␊ }[];␊ + backgroundMedia: unknown;␊ };␊ fullscreenSlider?: {␊ useStaticContent?: boolean;␊ @@ -445165,16 +477371,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -445193,22 +477408,33 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ + backgroundMedia: unknown;␊ }[];␊ };␊ + type: unknown;␊ };␊ layout?: (␊ | {␊ @@ -445230,26 +477456,39 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ + width: unknown;␊ + alignment: unknown;␊ }[];␊ id?: string;␊ + label: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "accordion";␊ + blockType: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -445258,6 +477497,7 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "blackbaudForm";␊ + blockType: unknown;␊ }␊ | {␊ invertColors?: boolean;␊ @@ -445275,22 +477515,32 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "callToAction";␊ + blockType: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -445307,16 +477557,24 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ media?: string | Media;␊ useOverlay?: boolean;␊ @@ -445325,6 +477583,8 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "cardGrid";␊ + blockType: unknown;␊ + cardStyle: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -445342,24 +477602,35 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ media: string | Media;␊ useOverlay?: boolean;␊ id?: string;␊ + media: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "cardSlider";␊ + blockType: unknown;␊ + cardStyle: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -445371,6 +477642,7 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "careerSearch";␊ + blockType: unknown;␊ }␊ | {␊ enableGrayBackground?: boolean;␊ @@ -445388,24 +477660,36 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ + width: unknown;␊ + alignment: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "content";␊ + blockType: unknown;␊ }␊ | {␊ cellWidth?: "two" | "three";␊ @@ -445426,22 +477710,32 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "contentGrid";␊ + blockType: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -445460,22 +477754,32 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "contentSlider";␊ + blockType: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -445484,6 +477788,7 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "housingMap";␊ + blockType: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -445492,6 +477797,7 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "housingList";␊ + blockType: unknown;␊ }␊ | {␊ richText?: {␊ @@ -445501,6 +477807,8 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "embeddedForm";␊ + blockType: unknown;␊ + form: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -445510,6 +477818,7 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "locations";␊ + blockType: unknown;␊ }␊ | {␊ media: string | Media;␊ @@ -445523,15 +477832,20 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "media";␊ + blockType: unknown;␊ + media: unknown;␊ + vimeoID: unknown;␊ }␊ | {␊ collage?: {␊ media: string | Media;␊ id?: string;␊ + media: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "mediaCollage";␊ + blockType: unknown;␊ }␊ | {␊ alignment: "contentOnLeft" | "contentOnRight";␊ @@ -445547,6 +477861,7 @@ Generated by [AVA](https://avajs.dev). platform?: "youtube" | "vimeo";␊ videoID: string;␊ aspectRatio?: "56.25" | "75";␊ + videoID: unknown;␊ };␊ links?: {␊ link?: {␊ @@ -445557,22 +477872,35 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "mediaContent";␊ + blockType: unknown;␊ + alignment: unknown;␊ + richText: unknown;␊ + media: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -445582,10 +477910,12 @@ Generated by [AVA](https://avajs.dev). slides?: {␊ media: string | Media;␊ id?: string;␊ + media: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "mediaSlider";␊ + blockType: unknown;␊ }␊ | {␊ items?: {␊ @@ -445601,27 +477931,39 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ + label: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "stickyList";␊ + blockType: unknown;␊ }␊ | {␊ id?: string;␊ blockName?: string;␊ blockType: "divider";␊ + blockType: unknown;␊ }␊ )[];␊ fullTitle?: string;␊ @@ -445639,6 +477981,7 @@ Generated by [AVA](https://avajs.dev). color?: "green" | "blue" | "red" | "purple";␊ author?: string | User;␊ preview?: string;␊ + title: unknown;␊ }␊ /**␊ * This interface was referenced by \`RealWorld\`'s JSON-Schema␊ @@ -445670,16 +478013,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -445697,16 +478049,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -445724,20 +478085,30 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ media: string | Media;␊ + media: unknown;␊ };␊ contentMedia2?: {␊ richText?: {␊ @@ -445752,20 +478123,30 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ media: string | Media;␊ + media: unknown;␊ };␊ contentSidebar?: {␊ mainContent?: {␊ @@ -445780,16 +478161,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -445812,16 +478202,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -445834,19 +478233,30 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ + heading: unknown;␊ + description: unknown;␊ }[];␊ + backgroundMedia: unknown;␊ };␊ fullscreenBackground?: {␊ invertColors?: boolean;␊ @@ -445864,19 +478274,29 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ + backgroundMedia: unknown;␊ };␊ quickNav?: {␊ invertColors?: boolean;␊ @@ -445894,16 +478314,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -445916,19 +478345,30 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ + heading: unknown;␊ + description: unknown;␊ }[];␊ + backgroundMedia: unknown;␊ };␊ fullscreenSlider?: {␊ useStaticContent?: boolean;␊ @@ -445944,16 +478384,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -445972,22 +478421,33 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ + backgroundMedia: unknown;␊ }[];␊ };␊ + type: unknown;␊ };␊ layout?: (␊ | {␊ @@ -446009,26 +478469,39 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ + width: unknown;␊ + alignment: unknown;␊ }[];␊ id?: string;␊ + label: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "accordion";␊ + blockType: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446037,6 +478510,7 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "blackbaudForm";␊ + blockType: unknown;␊ }␊ | {␊ invertColors?: boolean;␊ @@ -446054,22 +478528,32 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "callToAction";␊ + blockType: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446086,16 +478570,24 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ media?: string | Media;␊ useOverlay?: boolean;␊ @@ -446104,6 +478596,8 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "cardGrid";␊ + blockType: unknown;␊ + cardStyle: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446121,24 +478615,35 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ media: string | Media;␊ useOverlay?: boolean;␊ id?: string;␊ + media: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "cardSlider";␊ + blockType: unknown;␊ + cardStyle: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446150,6 +478655,7 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "careerSearch";␊ + blockType: unknown;␊ }␊ | {␊ enableGrayBackground?: boolean;␊ @@ -446167,24 +478673,36 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ + width: unknown;␊ + alignment: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "content";␊ + blockType: unknown;␊ }␊ | {␊ cellWidth?: "two" | "three";␊ @@ -446205,22 +478723,32 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "contentGrid";␊ + blockType: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446239,22 +478767,32 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "contentSlider";␊ + blockType: unknown;␊ }␊ | {␊ richText?: {␊ @@ -446264,6 +478802,8 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "embeddedForm";␊ + blockType: unknown;␊ + form: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446272,6 +478812,7 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "housingMap";␊ + blockType: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446280,6 +478821,7 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "housingList";␊ + blockType: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446289,6 +478831,7 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "locations";␊ + blockType: unknown;␊ }␊ | {␊ media: string | Media;␊ @@ -446302,15 +478845,20 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "media";␊ + blockType: unknown;␊ + media: unknown;␊ + vimeoID: unknown;␊ }␊ | {␊ collage?: {␊ media: string | Media;␊ id?: string;␊ + media: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "mediaCollage";␊ + blockType: unknown;␊ }␊ | {␊ alignment: "contentOnLeft" | "contentOnRight";␊ @@ -446326,6 +478874,7 @@ Generated by [AVA](https://avajs.dev). platform?: "youtube" | "vimeo";␊ videoID: string;␊ aspectRatio?: "56.25" | "75";␊ + videoID: unknown;␊ };␊ links?: {␊ link?: {␊ @@ -446336,22 +478885,35 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "mediaContent";␊ + blockType: unknown;␊ + alignment: unknown;␊ + richText: unknown;␊ + media: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446361,10 +478923,12 @@ Generated by [AVA](https://avajs.dev). slides?: {␊ media: string | Media;␊ id?: string;␊ + media: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "mediaSlider";␊ + blockType: unknown;␊ }␊ | {␊ items?: {␊ @@ -446380,27 +478944,39 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ + label: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "stickyList";␊ + blockType: unknown;␊ }␊ | {␊ id?: string;␊ blockName?: string;␊ blockType: "divider";␊ + blockType: unknown;␊ }␊ )[];␊ slug?: string;␊ @@ -446412,6 +478988,8 @@ Generated by [AVA](https://avajs.dev). keywords?: string;␊ image?: string | Media;␊ };␊ + title: unknown;␊ + category: unknown;␊ }␊ /**␊ * This interface was referenced by \`RealWorld\`'s JSON-Schema␊ @@ -446507,26 +479085,39 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ + width: unknown;␊ + alignment: unknown;␊ }[];␊ id?: string;␊ + label: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "accordion";␊ + blockType: unknown;␊ }␊ | {␊ invertColors?: boolean;␊ @@ -446544,22 +479135,32 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "callToAction";␊ + blockType: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446576,16 +479177,24 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ media?: string | Media;␊ useOverlay?: boolean;␊ @@ -446594,6 +479203,8 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "cardGrid";␊ + blockType: unknown;␊ + cardStyle: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446611,24 +479222,35 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ media: string | Media;␊ useOverlay?: boolean;␊ id?: string;␊ + media: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "cardSlider";␊ + blockType: unknown;␊ + cardStyle: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446640,6 +479262,7 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "careerSearch";␊ + blockType: unknown;␊ }␊ | {␊ enableGrayBackground?: boolean;␊ @@ -446657,24 +479280,36 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ + width: unknown;␊ + alignment: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "content";␊ + blockType: unknown;␊ }␊ | {␊ cellWidth?: "two" | "three";␊ @@ -446695,22 +479330,32 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "contentGrid";␊ + blockType: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446729,22 +479374,32 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "contentSlider";␊ + blockType: unknown;␊ }␊ | {␊ richText?: {␊ @@ -446754,6 +479409,8 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "embeddedForm";␊ + blockType: unknown;␊ + form: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446763,6 +479420,7 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "locations";␊ + blockType: unknown;␊ }␊ | {␊ media: string | Media;␊ @@ -446776,15 +479434,20 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "media";␊ + blockType: unknown;␊ + media: unknown;␊ + vimeoID: unknown;␊ }␊ | {␊ collage?: {␊ media: string | Media;␊ id?: string;␊ + media: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "mediaCollage";␊ + blockType: unknown;␊ }␊ | {␊ alignment: "contentOnLeft" | "contentOnRight";␊ @@ -446800,6 +479463,7 @@ Generated by [AVA](https://avajs.dev). platform?: "youtube" | "vimeo";␊ videoID: string;␊ aspectRatio?: "56.25" | "75";␊ + videoID: unknown;␊ };␊ links?: {␊ link?: {␊ @@ -446810,22 +479474,35 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "mediaContent";␊ + blockType: unknown;␊ + alignment: unknown;␊ + richText: unknown;␊ + media: unknown;␊ }␊ | {␊ introContent?: {␊ @@ -446835,10 +479512,12 @@ Generated by [AVA](https://avajs.dev). slides?: {␊ media: string | Media;␊ id?: string;␊ + media: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "mediaSlider";␊ + blockType: unknown;␊ }␊ | {␊ items?: {␊ @@ -446854,22 +479533,33 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ + label: unknown;␊ }[];␊ id?: string;␊ blockName?: string;␊ blockType: "stickyList";␊ + blockType: unknown;␊ }␊ )[];␊ meta?: {␊ @@ -446881,6 +479571,7 @@ Generated by [AVA](https://avajs.dev). slug?: string;␊ categories?: (string | HousingCategory)[];␊ subsite?: string | Subsite;␊ + title: unknown;␊ }␊ /**␊ * This interface was referenced by \`RealWorld\`'s JSON-Schema␊ @@ -446953,6 +479644,7 @@ Generated by [AVA](https://avajs.dev). };␊ alt: string;␊ fallback?: string | Media;␊ + alt: unknown;␊ }␊ /**␊ * This interface was referenced by \`RealWorld\`'s JSON-Schema␊ @@ -446976,6 +479668,9 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "text";␊ + blockType: unknown;␊ + name: unknown;␊ + label: unknown;␊ }␊ | {␊ name: string;␊ @@ -446986,11 +479681,16 @@ Generated by [AVA](https://avajs.dev). label: string;␊ value: string;␊ id?: string;␊ + label: unknown;␊ + value: unknown;␊ }[];␊ required?: boolean;␊ id?: string;␊ blockName?: string;␊ blockType: "select";␊ + blockType: unknown;␊ + name: unknown;␊ + label: unknown;␊ }␊ | {␊ name: string;␊ @@ -447000,6 +479700,9 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "email";␊ + blockType: unknown;␊ + name: unknown;␊ + label: unknown;␊ }␊ | {␊ name: string;␊ @@ -447009,6 +479712,9 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "state";␊ + blockType: unknown;␊ + name: unknown;␊ + label: unknown;␊ }␊ | {␊ name: string;␊ @@ -447018,6 +479724,9 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "country";␊ + blockType: unknown;␊ + name: unknown;␊ + label: unknown;␊ }␊ | {␊ name: string;␊ @@ -447028,6 +479737,9 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "checkbox";␊ + blockType: unknown;␊ + name: unknown;␊ + label: unknown;␊ }␊ | {␊ message?: {␊ @@ -447036,8 +479748,10 @@ Generated by [AVA](https://avajs.dev). id?: string;␊ blockName?: string;␊ blockType: "message";␊ + blockType: unknown;␊ }␊ )[];␊ + title: unknown;␊ }␊ /**␊ * This interface was referenced by \`RealWorld\`'s JSON-Schema␊ @@ -447119,6 +479833,7 @@ Generated by [AVA](https://avajs.dev). keywords?: string;␊ image?: string | Media;␊ };␊ + name: unknown;␊ }␊ /**␊ * This interface was referenced by \`RealWorld\`'s JSON-Schema␊ @@ -447127,6 +479842,7 @@ Generated by [AVA](https://avajs.dev). export interface HousingCategory {␊ title: string;␊ slug?: string;␊ + title: unknown;␊ }␊ /**␊ * This interface was referenced by \`RealWorld\`'s JSON-Schema␊ @@ -447143,16 +479859,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ label: string;␊ subMenu?: {␊ @@ -447166,26 +479891,38 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ blockName?: string;␊ blockType: "menuLink";␊ + blockType: unknown;␊ }␊ | {␊ content: string;␊ id?: string;␊ blockName?: string;␊ blockType: "menuDescription";␊ + blockType: unknown;␊ + content: unknown;␊ }␊ | {␊ media: string | Media;␊ @@ -447196,20 +479933,31 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ blockName?: string;␊ blockType: "menuFeature";␊ + blockType: unknown;␊ + media: unknown;␊ + headline: unknown;␊ }␊ )[];␊ enableColumn2?: boolean;␊ @@ -447223,26 +479971,38 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ blockName?: string;␊ blockType: "menuLink";␊ + blockType: unknown;␊ }␊ | {␊ content: string;␊ id?: string;␊ blockName?: string;␊ blockType: "menuDescription";␊ + blockType: unknown;␊ + content: unknown;␊ }␊ | {␊ media: string | Media;␊ @@ -447253,20 +480013,31 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ blockName?: string;␊ blockType: "menuFeature";␊ + blockType: unknown;␊ + media: unknown;␊ + headline: unknown;␊ }␊ )[];␊ enableColumn3?: boolean;␊ @@ -447280,26 +480051,38 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ blockName?: string;␊ blockType: "menuLink";␊ + blockType: unknown;␊ }␊ | {␊ content: string;␊ id?: string;␊ blockName?: string;␊ blockType: "menuDescription";␊ + blockType: unknown;␊ + content: unknown;␊ }␊ | {␊ media: string | Media;␊ @@ -447310,28 +480093,42 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ blockName?: string;␊ blockType: "menuFeature";␊ + blockType: unknown;␊ + media: unknown;␊ + headline: unknown;␊ }␊ )[];␊ };␊ id?: string;␊ + label: unknown;␊ }[];␊ slug?: string;␊ color?: "green" | "blue" | "red" | "purple";␊ home: string | Page;␊ + title: unknown;␊ + home: unknown;␊ }␊ /**␊ * This interface was referenced by \`RealWorld\`'s JSON-Schema␊ @@ -447342,6 +480139,7 @@ Generated by [AVA](https://avajs.dev). color?: "green" | "blue" | "red" | "purple";␊ slug?: string;␊ subsite?: string | Subsite;␊ + title: unknown;␊ }␊ /**␊ * This interface was referenced by \`RealWorld\`'s JSON-Schema␊ @@ -447369,16 +480167,24 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -447392,16 +480198,24 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -447415,6 +480229,8 @@ Generated by [AVA](https://avajs.dev). type: "facebook" | "vimeo" | "twitter" | "linkedin" | "instagram";␊ url: string;␊ id?: string;␊ + type: unknown;␊ + url: unknown;␊ }[];␊ legalLinks?: {␊ link?: {␊ @@ -447424,16 +480240,25 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ @@ -447444,6 +480269,7 @@ Generated by [AVA](https://avajs.dev). popularSearchTerms?: {␊ term: string;␊ id?: string;␊ + term: unknown;␊ }[];␊ }␊ /**␊ @@ -447466,19 +480292,31 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ url: string;␊ + label: unknown;␊ + reference: unknown;␊ + url: unknown;␊ };␊ id?: string;␊ }[];␊ + placement: unknown;␊ + subsites: unknown;␊ + content: unknown;␊ }␊ /**␊ * This interface was referenced by \`RealWorld\`'s JSON-Schema␊ @@ -447494,23 +480332,36 @@ Generated by [AVA](https://avajs.dev). | {␊ value: string | Page;␊ relationTo: "pages";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Post;␊ relationTo: "posts";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Housing;␊ relationTo: "housing";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Person;␊ relationTo: "people";␊ + value: unknown;␊ + relationTo: unknown;␊ }␊ | {␊ value: string | Location;␊ relationTo: "locations";␊ + value: unknown;␊ + relationTo: unknown;␊ };␊ + title: unknown;␊ + slug: unknown;␊ + doc: unknown;␊ }␊ /**␊ * This interface was referenced by \`RealWorld\`'s JSON-Schema␊ @@ -447529,6 +480380,8 @@ Generated by [AVA](https://avajs.dev). type: "facebook" | "vimeo" | "twitter" | "linkedin" | "instagram";␊ url: string;␊ id?: string;␊ + type: unknown;␊ + url: unknown;␊ }[];␊ richText?: {␊ [k: string]: unknown;␊ @@ -447541,6 +480394,7 @@ Generated by [AVA](https://avajs.dev). };␊ slug?: string;␊ home?: string | Page;␊ + name: unknown;␊ }␊ /**␊ * This interface was referenced by \`RealWorld\`'s JSON-Schema␊ @@ -447552,7 +480406,10 @@ Generated by [AVA](https://avajs.dev). field: string;␊ value: string;␊ id?: string;␊ + field: unknown;␊ + value: unknown;␊ }[];␊ + form: unknown;␊ }␊ ` @@ -447568,9 +480425,18 @@ Generated by [AVA](https://avajs.dev). */␊ ␊ export type JSONSchemaForNPMPackageJsonFiles = JSONSchemaForNPMPackageJsonFiles1 & JSONSchemaForNPMPackageJsonFiles2;␊ - export type JSONSchemaForNPMPackageJsonFiles1 = {␊ - [k: string]: unknown;␊ - };␊ + export type JSONSchemaForNPMPackageJsonFiles1 =␊ + | {␊ + [k: string]: unknown;␊ + }␊ + | {␊ + bundledDependencies: unknown;␊ + [k: string]: unknown;␊ + }␊ + | {␊ + bundleDependencies: unknown;␊ + [k: string]: unknown;␊ + };␊ /**␊ * A person who has been involved in creating or maintaining this package.␊ */␊ @@ -447578,6 +480444,7 @@ Generated by [AVA](https://avajs.dev). name: string;␊ url?: string;␊ email?: string;␊ + name: unknown;␊ [k: string]: unknown;␊ } & Person1;␊ export type Person1 =␊ @@ -447585,9 +480452,16 @@ Generated by [AVA](https://avajs.dev). name: string;␊ url?: string;␊ email?: string;␊ + name: unknown;␊ [k: string]: unknown;␊ }␊ - | string;␊ + | (string & {␊ + name: string;␊ + url?: string;␊ + email?: string;␊ + name: unknown;␊ + [k: string]: unknown;␊ + });␊ export type PackageExportsEntry = PackageExportsEntryPath | PackageExportsEntryObject;␊ /**␊ * The module path that is resolved when this specifier is imported. Set to \`null\` to disallow importing this module.␊ @@ -447633,6 +480507,8 @@ Generated by [AVA](https://avajs.dev). * Run by the 'npm restart' command. Note: 'npm restart' will run the stop and start scripts if no restart script is provided.␊ */␊ export type ScriptsRestart = string;␊ + export type JSONSchemaForNPMPackageJsonFiles3 = JSONSchemaForNPMPackageJsonFiles1 & JSONSchemaForNPMPackageJsonFiles4;␊ + export type JSONSchemaForNPMPackageJsonFiles5 = JSONSchemaForNPMPackageJsonFiles1 & JSONSchemaForNPMPackageJsonFiles4;␊ ␊ export interface JSONSchemaForNPMPackageJsonFiles2 {␊ /**␊ @@ -447658,7 +480534,7 @@ Generated by [AVA](https://avajs.dev). /**␊ * The url to your project's issue tracker and / or the email address to which issues should be reported. These are helpful for people who encounter issues with your package.␊ */␊ - bugs?:␊ + bugs?: (␊ | {␊ /**␊ * The url to your project's issue tracker.␊ @@ -447670,7 +480546,28 @@ Generated by [AVA](https://avajs.dev). email?: string;␊ [k: string]: unknown;␊ }␊ - | string;␊ + | (string & {␊ + /**␊ + * The url to your project's issue tracker.␊ + */␊ + url?: string;␊ + /**␊ + * The email address to which issues should be reported.␊ + */␊ + email?: string;␊ + [k: string]: unknown;␊ + })␊ + ) & {␊ + /**␊ + * The url to your project's issue tracker.␊ + */␊ + url?: string;␊ + /**␊ + * The email address to which issues should be reported.␊ + */␊ + email?: string;␊ + [k: string]: unknown;␊ + };␊ /**␊ * You should specify a license for your package so that people know how they are permitted to use it, and any restrictions you're placing on it.␊ */␊ @@ -447687,11 +480584,11 @@ Generated by [AVA](https://avajs.dev). /**␊ * A list of people who contributed to this package.␊ */␊ - contributors?: Person1[];␊ + contributors?: (Person1 & Person2)[];␊ /**␊ * A list of people who maintains this package.␊ */␊ - maintainers?: Person1[];␊ + maintainers?: (Person1 & Person2)[];␊ /**␊ * The 'files' field is an array of files to include in your project. If you name a folder in the array, then it will also include the files inside that folder.␊ */␊ @@ -447724,11 +480621,16 @@ Generated by [AVA](https://avajs.dev). }␊ | PackageExportsEntryObject1␊ | PackageExportsFallback1;␊ - bin?:␊ - | string␊ + bin?: (␊ + | (string & {␊ + [k: string]: string;␊ + })␊ | {␊ [k: string]: string;␊ - };␊ + }␊ + ) & {␊ + [k: string]: string;␊ + };␊ /**␊ * When set to "module", the type field allows a package to specify all .js files within are ES modules. If the "type" field is omitted or set to "commonjs", all .js files are treated as CommonJS.␊ */␊ @@ -447786,14 +480688,25 @@ Generated by [AVA](https://avajs.dev). /**␊ * Specify the place where your code lives. This is helpful for people who want to contribute.␊ */␊ - repository?:␊ + repository?: (␊ | {␊ type?: string;␊ url?: string;␊ directory?: string;␊ [k: string]: unknown;␊ }␊ - | string;␊ + | (string & {␊ + type?: string;␊ + url?: string;␊ + directory?: string;␊ + [k: string]: unknown;␊ + })␊ + ) & {␊ + type?: string;␊ + url?: string;␊ + directory?: string;␊ + [k: string]: unknown;␊ + };␊ /**␊ * The 'scripts' member is an object hash of script commands that are run at various times in the lifecycle of your package. The key is the lifecycle event, and the value is the command to run at that point.␊ */␊ @@ -447928,13 +480841,22 @@ Generated by [AVA](https://avajs.dev). /**␊ * A module ID with untranspiled code that is the primary entry point to your program.␊ */␊ - esnext?:␊ - | string␊ + esnext?: (␊ + | (string & {␊ + main?: string;␊ + browser?: string;␊ + [k: string]: string;␊ + })␊ | {␊ main?: string;␊ browser?: string;␊ [k: string]: string;␊ - };␊ + }␊ + ) & {␊ + main?: string;␊ + browser?: string;␊ + [k: string]: string;␊ + };␊ /**␊ * Allows packages within a directory to depend on one another using direct linking of local files. Additionally, dependencies within a workspace are hoisted to the workspace root when possible to reduce duplication. Note: It's also a good idea to set "private" to true when using this feature.␊ */␊ @@ -447951,15 +480873,25 @@ Generated by [AVA](https://avajs.dev). nohoist?: string[];␊ [k: string]: unknown;␊ };␊ - jspm?: JSONSchemaForNPMPackageJsonFiles1;␊ + jspm?: JSONSchemaForNPMPackageJsonFiles3;␊ /**␊ * Any property starting with _ is valid.␊ *␊ + * This interface was referenced by \`JSONSchemaForNPMPackageJsonFiles4\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^_".␊ + *␊ * This interface was referenced by \`JSONSchemaForNPMPackageJsonFiles2\`'s JSON-Schema definition␊ * via the \`patternProperty\` "^_".␊ */␊ [k: string]: any;␊ }␊ + export interface Person2 {␊ + name: string;␊ + url?: string;␊ + email?: string;␊ + name: unknown;␊ + [k: string]: unknown;␊ + }␊ /**␊ * Used to specify conditional exports, note that Conditional exports are unsupported in older environments, so it's recommended to use the fallback array option if support for those environments is a concern.␊ */␊ @@ -448028,6 +480960,372 @@ Generated by [AVA](https://avajs.dev). export interface Dependency {␊ [k: string]: string;␊ }␊ + export interface JSONSchemaForNPMPackageJsonFiles4 {␊ + /**␊ + * The name of the package.␊ + */␊ + name?: string;␊ + /**␊ + * Version must be parseable by node-semver, which is bundled with npm as a dependency.␊ + */␊ + version?: string;␊ + /**␊ + * This helps people discover your package, as it's listed in 'npm search'.␊ + */␊ + description?: string;␊ + /**␊ + * This helps people discover your package as it's listed in 'npm search'.␊ + */␊ + keywords?: string[];␊ + /**␊ + * The url to the project homepage.␊ + */␊ + homepage?: string;␊ + bugs?: (␊ + | {␊ + /**␊ + * The url to your project's issue tracker.␊ + */␊ + url?: string;␊ + /**␊ + * The email address to which issues should be reported.␊ + */␊ + email?: string;␊ + [k: string]: unknown;␊ + }␊ + | (string & {␊ + /**␊ + * The url to your project's issue tracker.␊ + */␊ + url?: string;␊ + /**␊ + * The email address to which issues should be reported.␊ + */␊ + email?: string;␊ + [k: string]: unknown;␊ + })␊ + ) & {␊ + /**␊ + * The url to your project's issue tracker.␊ + */␊ + url?: string;␊ + /**␊ + * The email address to which issues should be reported.␊ + */␊ + email?: string;␊ + [k: string]: unknown;␊ + };␊ + /**␊ + * You should specify a license for your package so that people know how they are permitted to use it, and any restrictions you're placing on it.␊ + */␊ + license?: string;␊ + /**␊ + * DEPRECATED: Instead, use SPDX expressions, like this: { "license": "ISC" } or { "license": "(MIT OR Apache-2.0)" } see: 'https://docs.npmjs.com/files/package.json#license'.␊ + */␊ + licenses?: {␊ + type?: string;␊ + url?: string;␊ + [k: string]: unknown;␊ + }[];␊ + author?: Person1 & Person2;␊ + /**␊ + * A list of people who contributed to this package.␊ + */␊ + contributors?: (Person1 & Person2)[];␊ + /**␊ + * A list of people who maintains this package.␊ + */␊ + maintainers?: (Person1 & Person2)[];␊ + /**␊ + * The 'files' field is an array of files to include in your project. If you name a folder in the array, then it will also include the files inside that folder.␊ + */␊ + files?: string[];␊ + /**␊ + * The main field is a module ID that is the primary entry point to your program.␊ + */␊ + main?: string;␊ + /**␊ + * The "exports" field is used to restrict external access to non-exported module files, also enables a module to import itself using "name".␊ + */␊ + exports?:␊ + | (string | null)␊ + | {␊ + /**␊ + * The module path that is resolved when the module specifier matches "name", shadows the "main" field.␊ + */␊ + "."?: PackageExportsEntry | PackageExportsFallback;␊ + /**␊ + * The module path prefix that is resolved when the module specifier starts with "name/", set to "./" to allow external modules to import any subpath.␊ + */␊ + "./"?: PackageExportsEntry | PackageExportsFallback;␊ + /**␊ + * The module path that is resolved when the path component of the module specifier matches the property name.␊ + *␊ + * This interface was referenced by \`undefined\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^\\./".␊ + */␊ + [k: string]: PackageExportsEntry | PackageExportsFallback;␊ + }␊ + | PackageExportsEntryObject1␊ + | PackageExportsFallback1;␊ + bin?: (␊ + | (string & {␊ + [k: string]: string;␊ + })␊ + | {␊ + [k: string]: string;␊ + }␊ + ) & {␊ + [k: string]: string;␊ + };␊ + /**␊ + * When set to "module", the type field allows a package to specify all .js files within are ES modules. If the "type" field is omitted or set to "commonjs", all .js files are treated as CommonJS.␊ + */␊ + type?: "commonjs" | "module";␊ + /**␊ + * Set the types property to point to your bundled declaration file.␊ + */␊ + types?: string;␊ + /**␊ + * Note that the "typings" field is synonymous with "types", and could be used as well.␊ + */␊ + typings?: string;␊ + /**␊ + * The "typesVersions" field is used since TypeScript 3.1 to support features that were only made available in newer TypeScript versions.␊ + */␊ + typesVersions?: {␊ + /**␊ + * Contains overrides for the TypeScript version that matches the version range matching the property key.␊ + */␊ + [k: string]: {␊ + /**␊ + * Maps all file paths to the file paths specified in the array.␊ + */␊ + "*"?: string[];␊ + };␊ + };␊ + /**␊ + * Specify either a single file or an array of filenames to put in place for the man program to find.␊ + */␊ + man?: string[] | string;␊ + directories?: {␊ + /**␊ + * If you specify a 'bin' directory, then all the files in that folder will be used as the 'bin' hash.␊ + */␊ + bin?: string;␊ + /**␊ + * Put markdown files in here. Eventually, these will be displayed nicely, maybe, someday.␊ + */␊ + doc?: string;␊ + /**␊ + * Put example scripts in here. Someday, it might be exposed in some clever way.␊ + */␊ + example?: string;␊ + /**␊ + * Tell people where the bulk of your library is. Nothing special is done with the lib folder in any way, but it's useful meta info.␊ + */␊ + lib?: string;␊ + /**␊ + * A folder that is full of man pages. Sugar to generate a 'man' array by walking the folder.␊ + */␊ + man?: string;␊ + test?: string;␊ + [k: string]: unknown;␊ + };␊ + repository?: (␊ + | {␊ + type?: string;␊ + url?: string;␊ + directory?: string;␊ + [k: string]: unknown;␊ + }␊ + | (string & {␊ + type?: string;␊ + url?: string;␊ + directory?: string;␊ + [k: string]: unknown;␊ + })␊ + ) & {␊ + type?: string;␊ + url?: string;␊ + directory?: string;␊ + [k: string]: unknown;␊ + };␊ + /**␊ + * The 'scripts' member is an object hash of script commands that are run at various times in the lifecycle of your package. The key is the lifecycle event, and the value is the command to run at that point.␊ + */␊ + scripts?: {␊ + /**␊ + * Run BEFORE the package is published (Also run on local npm install without any arguments).␊ + */␊ + prepublish?: string;␊ + /**␊ + * Run both BEFORE the package is packed and published, and on local npm install without any arguments. This is run AFTER prepublish, but BEFORE prepublishOnly.␊ + */␊ + prepare?: string;␊ + /**␊ + * Run BEFORE the package is prepared and packed, ONLY on npm publish.␊ + */␊ + prepublishOnly?: string;␊ + /**␊ + * run BEFORE a tarball is packed (on npm pack, npm publish, and when installing git dependencies).␊ + */␊ + prepack?: string;␊ + /**␊ + * Run AFTER the tarball has been generated and moved to its final destination.␊ + */␊ + postpack?: string;␊ + publish?: ScriptsPublishAfter;␊ + postpublish?: ScriptsPublishAfter;␊ + /**␊ + * Run BEFORE the package is installed.␊ + */␊ + preinstall?: string;␊ + install?: ScriptsInstallAfter;␊ + postinstall?: ScriptsInstallAfter;␊ + preuninstall?: ScriptsUninstallBefore;␊ + uninstall?: ScriptsUninstallBefore;␊ + /**␊ + * Run AFTER the package is uninstalled.␊ + */␊ + postuninstall?: string;␊ + preversion?: ScriptsVersionBefore;␊ + version?: ScriptsVersionBefore;␊ + /**␊ + * Run AFTER bump the package version.␊ + */␊ + postversion?: string;␊ + pretest?: ScriptsTest;␊ + test?: ScriptsTest;␊ + posttest?: ScriptsTest;␊ + prestop?: ScriptsStop;␊ + stop?: ScriptsStop;␊ + poststop?: ScriptsStop;␊ + prestart?: ScriptsStart;␊ + start?: ScriptsStart;␊ + poststart?: ScriptsStart;␊ + prerestart?: ScriptsRestart;␊ + restart?: ScriptsRestart;␊ + postrestart?: ScriptsRestart;␊ + [k: string]: string | undefined;␊ + };␊ + /**␊ + * A 'config' hash can be used to set configuration parameters used in package scripts that persist across upgrades.␊ + */␊ + config?: {␊ + [k: string]: unknown;␊ + };␊ + dependencies?: Dependency;␊ + devDependencies?: Dependency;␊ + optionalDependencies?: Dependency;␊ + peerDependencies?: Dependency;␊ + /**␊ + * When a user installs your package, warnings are emitted if packages specified in "peerDependencies" are not already installed. The "peerDependenciesMeta" field serves to provide more information on how your peer dependencies are utilized. Most commonly, it allows peer dependencies to be marked as optional. Metadata for this field is specified with a simple hash of the package name to a metadata object.␊ + */␊ + peerDependenciesMeta?: {␊ + [k: string]: {␊ + /**␊ + * Specifies that this peer dependency is optional and should not be installed automatically.␊ + */␊ + optional?: boolean;␊ + [k: string]: unknown;␊ + };␊ + };␊ + /**␊ + * Array of package names that will be bundled when publishing the package.␊ + */␊ + bundledDependencies?: string[] | false;␊ + /**␊ + * DEPRECATED: This field is honored, but "bundledDependencies" is the correct field name.␊ + */␊ + bundleDependencies?: string[] | false;␊ + /**␊ + * Resolutions is used to support selective version resolutions, which lets you define custom package versions or ranges inside your dependencies. See: https://classic.yarnpkg.com/en/docs/selective-version-resolutions␊ + */␊ + resolutions?: {␊ + [k: string]: unknown;␊ + };␊ + engines?: {␊ + node?: string;␊ + [k: string]: string;␊ + };␊ + engineStrict?: boolean;␊ + /**␊ + * Specify which operating systems your module will run on.␊ + */␊ + os?: string[];␊ + /**␊ + * Specify that your code only runs on certain cpu architectures.␊ + */␊ + cpu?: string[];␊ + /**␊ + * DEPRECATED: This option used to trigger an npm warning, but it will no longer warn. It is purely there for informational purposes. It is now recommended that you install any binaries as local devDependencies wherever possible.␊ + */␊ + preferGlobal?: boolean;␊ + /**␊ + * If set to true, then npm will refuse to publish it.␊ + */␊ + private?: boolean | ("false" | "true");␊ + publishConfig?: {␊ + access?: "public" | "restricted";␊ + tag?: string;␊ + registry?: string;␊ + [k: string]: unknown;␊ + };␊ + dist?: {␊ + shasum?: string;␊ + tarball?: string;␊ + [k: string]: unknown;␊ + };␊ + readme?: string;␊ + /**␊ + * An ECMAScript module ID that is the primary entry point to your program.␊ + */␊ + module?: string;␊ + esnext?: (␊ + | (string & {␊ + main?: string;␊ + browser?: string;␊ + [k: string]: string;␊ + })␊ + | {␊ + main?: string;␊ + browser?: string;␊ + [k: string]: string;␊ + }␊ + ) & {␊ + main?: string;␊ + browser?: string;␊ + [k: string]: string;␊ + };␊ + /**␊ + * Allows packages within a directory to depend on one another using direct linking of local files. Additionally, dependencies within a workspace are hoisted to the workspace root when possible to reduce duplication. Note: It's also a good idea to set "private" to true when using this feature.␊ + */␊ + workspaces?:␊ + | string[]␊ + | {␊ + /**␊ + * Workspace package paths. Glob patterns are supported.␊ + */␊ + packages?: string[];␊ + /**␊ + * Packages to block from hoisting to the workspace root. Currently only supported in Yarn only.␊ + */␊ + nohoist?: string[];␊ + [k: string]: unknown;␊ + };␊ + jspm?: JSONSchemaForNPMPackageJsonFiles5;␊ + /**␊ + * Any property starting with _ is valid.␊ + *␊ + * This interface was referenced by \`JSONSchemaForNPMPackageJsonFiles4\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^_".␊ + *␊ + * This interface was referenced by \`JSONSchemaForNPMPackageJsonFiles2\`'s JSON-Schema definition␊ + * via the \`patternProperty\` "^_".␊ + */␊ + [k: string]: any;␊ + }␊ ` ## realWorld.swagger.2.js @@ -448064,6 +481362,7 @@ Generated by [AVA](https://avajs.dev). ␊ export interface Referencing {␊ foo: ExampleSchema;␊ + foo: unknown;␊ }␊ export interface ExampleSchema {␊ firstName: string;␊ @@ -448075,6 +481374,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -448092,6 +481393,7 @@ Generated by [AVA](https://avajs.dev). ␊ export interface Referencing {␊ foo: ExampleSchema;␊ + foo: unknown;␊ }␊ ` @@ -448169,6 +481471,7 @@ Generated by [AVA](https://avajs.dev). ␊ export interface Referencing {␊ foo: ExampleSchema;␊ + foo: unknown;␊ }␊ export interface ExampleSchema {␊ firstName: string;␊ @@ -448180,6 +481483,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -448198,6 +481503,8 @@ Generated by [AVA](https://avajs.dev). export interface Referencing {␊ foo: ExampleSchema;␊ bar: ExampleSchema1;␊ + foo: unknown;␊ + bar: unknown;␊ }␊ export interface ExampleSchema {␊ firstName: string;␊ @@ -448209,10 +481516,13 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ export interface ExampleSchema1 {␊ isConflict: boolean;␊ + isConflict: unknown;␊ }␊ ` @@ -448231,6 +481541,7 @@ Generated by [AVA](https://avajs.dev). ␊ export interface ReferencingCombined {␊ foo: ExampleCombinedSchema;␊ + foo: unknown;␊ }␊ ` @@ -448247,6 +481558,7 @@ Generated by [AVA](https://avajs.dev). ␊ export interface ReferencingCombined {␊ foo: ExampleCombinedSchema;␊ + foo: unknown;␊ }␊ ` @@ -448264,6 +481576,7 @@ Generated by [AVA](https://avajs.dev). export interface LocalCycle {␊ foo: LocalCycle;␊ bar?: LocalCycle;␊ + foo: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -448281,6 +481594,7 @@ Generated by [AVA](https://avajs.dev). ␊ export interface Cycle2 {␊ foo: Cycle3;␊ + foo: unknown;␊ [k: string]: unknown;␊ }␊ export interface Cycle3 {␊ @@ -448345,6 +481659,7 @@ Generated by [AVA](https://avajs.dev). ␊ export interface Referencing {␊ a: ExampleSchema;␊ + a: unknown;␊ [k: string]: unknown;␊ }␊ export interface ExampleSchema {␊ @@ -448375,10 +481690,13 @@ Generated by [AVA](https://avajs.dev). ␊ export interface Required {␊ location: Location & {␊ + postalCode: unknown;␊ [k: string]: unknown;␊ };␊ name: string;␊ website?: string;␊ + name: unknown;␊ + location: unknown;␊ }␊ export interface Location {␊ city?: string;␊ @@ -448448,6 +481766,7 @@ Generated by [AVA](https://avajs.dev). export interface StraNgeName {␊ a: string;␊ b?: number;␊ + a: unknown;␊ }␊ /**␊ * This interface was referenced by \`SafeTypeNames\`'s JSON-Schema␊ @@ -448682,6 +482001,7 @@ Generated by [AVA](https://avajs.dev). ␊ export interface Referencing {␊ ref: ExampleSchema;␊ + ref: unknown;␊ }␊ export interface ExampleSchema {␊ firstName: string;␊ @@ -448693,6 +482013,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -448714,6 +482036,9 @@ Generated by [AVA](https://avajs.dev). '"baz"': string;␊ "$zoo 2"?: string;␊ "qux..."?: number;␊ + "\`foo\`": unknown;␊ + "'bar'": unknown;␊ + '"baz"': unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -448733,14 +482058,17 @@ Generated by [AVA](https://avajs.dev). firstName: string;␊ friend?: {␊ knowsFrom: "work" | "school" | "other";␊ + knowsFrom: unknown;␊ [k: string]: unknown;␊ };␊ coworker?: {␊ company?: {␊ name: string;␊ + name: unknown;␊ };␊ [k: string]: KString;␊ };␊ + firstName: unknown;␊ [k: string]: unknown;␊ }␊ ␊ @@ -448822,9 +482150,11 @@ Generated by [AVA](https://avajs.dev). ␊ export interface ObjectWithArrayField {␊ data: ArrayItems;␊ + data: unknown;␊ }␊ export interface ArrayItem {␊ prop: string;␊ + prop: unknown;␊ }␊ ` @@ -448844,9 +482174,11 @@ Generated by [AVA](https://avajs.dev). ␊ export interface ObjectWithArrayField {␊ data: ArrayItems;␊ + data: unknown;␊ }␊ export interface ArrayItem {␊ id: Id;␊ + id: unknown;␊ }␊ ` @@ -448881,12 +482213,19 @@ Generated by [AVA](https://avajs.dev). */␊ ␊ export interface Union {␊ - input?:␊ - | string␊ + input?: (␊ + | (string & {␊ + [k: string]: unknown;␊ + })␊ | {␊ [k: string]: unknown;␊ }␊ - | string[];␊ + | (string[] & {␊ + [k: string]: unknown;␊ + })␊ + ) & {␊ + [k: string]: unknown;␊ + };␊ }␊ ` @@ -448963,6 +482302,8 @@ Generated by [AVA](https://avajs.dev). | {␊ obj_type: "Foo";␊ foo_type?: string;␊ + obj_type: unknown;␊ + type: unknown;␊ [k: string]: unknown;␊ }␊ | {␊ @@ -448970,12 +482311,18 @@ Generated by [AVA](https://avajs.dev). bar_type?: string;␊ team: string;␊ health: number;␊ + health: unknown;␊ + obj_type: unknown;␊ + team: unknown;␊ + type: unknown;␊ [k: string]: unknown;␊ };␊ ␊ export interface UnionWithProps2 {␊ coords: number;␊ id: number;␊ + coords: unknown;␊ + id: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -448993,6 +482340,7 @@ Generated by [AVA](https://avajs.dev). ␊ export interface UnnamedSchema {␊ foo: string;␊ + foo: unknown;␊ }␊ ` @@ -449017,6 +482365,8 @@ Generated by [AVA](https://avajs.dev). * Age in years␊ */␊ age?: number;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449046,6 +482396,8 @@ Generated by [AVA](https://avajs.dev). * multiple lines␊ */␊ age?: number;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449063,6 +482415,7 @@ Generated by [AVA](https://avajs.dev). ␊ export interface Referencing {␊ foo: ExampleSchema;␊ + foo: unknown;␊ }␊ export interface ExampleSchema {␊ firstName: string;␊ @@ -449074,6 +482427,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449099,6 +482454,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449124,6 +482481,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449149,6 +482508,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449174,6 +482535,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449199,6 +482562,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449265,6 +482630,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449290,6 +482657,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449315,6 +482684,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449340,6 +482711,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449365,6 +482738,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449390,6 +482765,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449415,6 +482792,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: any[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ [k: string]: any;␊ }␊ ` @@ -449440,6 +482819,8 @@ Generated by [AVA](https://avajs.dev). height?: number;␊ favoriteFoods?: unknown[];␊ likesDogs?: boolean;␊ + firstName: unknown;␊ + lastName: unknown;␊ }␊ ` @@ -449461,6 +482842,7 @@ Generated by [AVA](https://avajs.dev). export interface ASchema {␊ f: string;␊ g?: number;␊ + f: unknown;␊ }␊ ` @@ -449480,6 +482862,7 @@ Generated by [AVA](https://avajs.dev). export interface BSchema {␊ x?: string;␊ y: number;␊ + y: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449498,6 +482881,7 @@ Generated by [AVA](https://avajs.dev). export interface ASchema {␊ f: string;␊ g?: number;␊ + f: unknown;␊ }␊ /* eslint-disable */␊ /**␊ @@ -449509,6 +482893,7 @@ Generated by [AVA](https://avajs.dev). export interface BSchema {␊ x?: string;␊ y: number;␊ + y: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449531,6 +482916,7 @@ Generated by [AVA](https://avajs.dev). export interface ASchema {␊ f: string;␊ g?: number;␊ + f: unknown;␊ }␊ ` @@ -449550,6 +482936,7 @@ Generated by [AVA](https://avajs.dev). export interface BSchema {␊ x?: string;␊ y: number;␊ + y: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449572,6 +482959,7 @@ Generated by [AVA](https://avajs.dev). export interface BSchema {␊ x?: string;␊ y: number;␊ + y: unknown;␊ [k: string]: unknown;␊ }␊ ` @@ -449608,6 +482996,7 @@ Generated by [AVA](https://avajs.dev). export interface ASchema {␊ f: string;␊ g?: number;␊ + f: unknown;␊ }␊ ` @@ -449627,6 +483016,7 @@ Generated by [AVA](https://avajs.dev). export interface CSchema {␊ f: string;␊ g?: number;␊ + f: unknown;␊ }␊ ` @@ -449646,5 +483036,6 @@ Generated by [AVA](https://avajs.dev). export interface DSchema {␊ f: string;␊ g?: number;␊ + f: unknown;␊ }␊ ` diff --git a/test/__snapshots__/test/test.ts.snap b/test/__snapshots__/test/test.ts.snap index cae91b34..f524621e 100644 Binary files a/test/__snapshots__/test/test.ts.snap and b/test/__snapshots__/test/test.ts.snap differ diff --git a/test/e2e/allOf.properties.ts b/test/e2e/allOf.properties.ts new file mode 100644 index 00000000..3dc80e7e --- /dev/null +++ b/test/e2e/allOf.properties.ts @@ -0,0 +1,15 @@ +export const input = { + type: 'object', + properties: { + a: {type: 'string'}, + b: {type: 'string'}, + c: {type: 'string'}, + }, + allOf: [ + {required: ['a']}, + { + oneOf: [{required: ['b']}, {required: ['c']}], + }, + ], + additionalProperties: false, +}