Skip to content

Commit

Permalink
Generated from 59f490859ac4e0507017ebdb0266026eda39a81b
Browse files Browse the repository at this point in the history
Add new lines to the EOF.
  • Loading branch information
SDK Automation committed May 14, 2020
1 parent 8cf2f02 commit c1b9c67
Show file tree
Hide file tree
Showing 35 changed files with 283 additions and 37 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetList,
Expand Down
1 change: 1 addition & 0 deletions sdk/compute/arm-compute/src/models/disksMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
1 change: 1 addition & 0 deletions sdk/compute/arm-compute/src/models/galleriesMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
1 change: 1 addition & 0 deletions sdk/compute/arm-compute/src/models/galleryImagesMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
1 change: 1 addition & 0 deletions sdk/compute/arm-compute/src/models/imagesMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
59 changes: 54 additions & 5 deletions sdk/compute/arm-compute/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,16 @@ export interface ComputeOperationValue {
readonly provider?: string;
}

/**
* Specifies the disallowed configuration for a virtual machine image.
*/
export interface DisallowedConfiguration {
/**
* VM disk types which are disallowed. Possible values include: 'None', 'Unmanaged'
*/
vmDiskType?: VmDiskTypes;
}

/**
* Instance view status.
*/
Expand Down Expand Up @@ -1590,7 +1600,8 @@ export interface BootDiagnostics {
*/
enabled?: boolean;
/**
* Uri of the storage account to use for placing the console output and screenshot.
* Uri of the storage account to use for placing the console output and screenshot. <br><br>If
* storageUri is not specified while enabling boot diagnostics, managed storage will be used.
*/
storageUri?: string;
}
Expand Down Expand Up @@ -1686,12 +1697,14 @@ export interface DiskInstanceView {
*/
export interface BootDiagnosticsInstanceView {
/**
* The console screenshot blob URI.
* The console screenshot blob URI. <br><br>NOTE: This will **not** be set if boot diagnostics is
* currently enabled with managed storage.
* **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly consoleScreenshotBlobUri?: string;
/**
* The Linux serial console log blob Uri.
* The Linux serial console log blob Uri. <br><br>NOTE: This will **not** be set if boot
* diagnostics is currently enabled with managed storage.
* **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly serialConsoleLogBlobUri?: string;
Expand Down Expand Up @@ -2309,6 +2322,10 @@ export interface Image extends Resource {
* include: 'V1', 'V2'
*/
hyperVGeneration?: HyperVGenerationTypes;
/**
* Specifies disallowed configuration for the VirtualMachine created from the image
*/
disallowed?: DisallowedConfiguration;
}

/**
Expand All @@ -2333,6 +2350,10 @@ export interface ImageUpdate extends UpdateResource {
* include: 'V1', 'V2'
*/
hyperVGeneration?: HyperVGenerationTypes;
/**
* Specifies disallowed configuration for the VirtualMachine created from the image
*/
disallowed?: DisallowedConfiguration;
}

/**
Expand Down Expand Up @@ -5444,7 +5465,7 @@ export interface GalleryArtifactVersionSource {
* The id of the gallery artifact version source. Can specify a disk uri, snapshot uri, or user
* image.
*/
id?: string;
id: string;
}

/**
Expand Down Expand Up @@ -5937,6 +5958,16 @@ export interface VirtualMachinesReimageOptionalParams extends msRest.RequestOpti
parameters?: VirtualMachineReimageParameters;
}

/**
* Optional Parameters.
*/
export interface VirtualMachinesRetrieveBootDiagnosticsDataOptionalParams extends msRest.RequestOptionsBase {
/**
* SAS Expiration duration in minutes for the URIs.
*/
sasUriExpirationTimeInMinutes?: number;
}

/**
* Optional Parameters.
*/
Expand Down Expand Up @@ -6221,6 +6252,16 @@ export interface VirtualMachineScaleSetVMsPowerOffOptionalParams extends msRest.
skipShutdown?: boolean;
}

/**
* Optional Parameters.
*/
export interface VirtualMachineScaleSetVMsRetrieveBootDiagnosticsDataOptionalParams extends msRest.RequestOptionsBase {
/**
* SAS Expiration duration in minutes for the URIs.
*/
sasUriExpirationTimeInMinutes?: number;
}

/**
* Optional Parameters.
*/
Expand Down Expand Up @@ -6248,7 +6289,7 @@ export interface VirtualMachineScaleSetVMsBeginPowerOffOptionalParams extends ms
*/
export interface ResourceSkusListOptionalParams extends msRest.RequestOptionsBase {
/**
* The filter to apply on the operation. Only **location** filter is supported currently.
* The filter to apply on the operation.
*/
filter?: string;
}
Expand Down Expand Up @@ -6619,6 +6660,14 @@ export interface ContainerServiceListResult extends Array<ContainerService> {
nextLink?: string;
}

/**
* Defines values for VmDiskTypes.
* Possible values include: 'None', 'Unmanaged'
* @readonly
* @enum {string}
*/
export type VmDiskTypes = 'None' | 'Unmanaged';

/**
* Defines values for HyperVGenerationTypes.
* Possible values include: 'V1', 'V2'
Expand Down
31 changes: 31 additions & 0 deletions sdk/compute/arm-compute/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,22 @@ export const ComputeOperationValue: msRest.CompositeMapper = {
}
};

export const DisallowedConfiguration: msRest.CompositeMapper = {
serializedName: "DisallowedConfiguration",
type: {
name: "Composite",
className: "DisallowedConfiguration",
modelProperties: {
vmDiskType: {
serializedName: "vmDiskType",
type: {
name: "String"
}
}
}
}
};

export const InstanceViewStatus: msRest.CompositeMapper = {
serializedName: "InstanceViewStatus",
type: {
Expand Down Expand Up @@ -3406,6 +3422,13 @@ export const Image: msRest.CompositeMapper = {
type: {
name: "String"
}
},
disallowed: {
serializedName: "properties.disallowed",
type: {
name: "Composite",
className: "DisallowedConfiguration"
}
}
}
}
Expand Down Expand Up @@ -3444,6 +3467,13 @@ export const ImageUpdate: msRest.CompositeMapper = {
type: {
name: "String"
}
},
disallowed: {
serializedName: "properties.disallowed",
type: {
name: "Composite",
className: "DisallowedConfiguration"
}
}
}
}
Expand Down Expand Up @@ -8543,6 +8573,7 @@ export const GalleryArtifactVersionSource: msRest.CompositeMapper = {
className: "GalleryArtifactVersionSource",
modelProperties: {
id: {
required: true,
serializedName: "id",
type: {
name: "String"
Expand Down
26 changes: 25 additions & 1 deletion sdk/compute/arm-compute/src/models/parameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const apiVersion0: msRest.OperationQueryParameter = {
required: true,
isConstant: true,
serializedName: "api-version",
defaultValue: '2019-12-01',
defaultValue: '2020-06-01',
type: {
name: "String"
}
Expand Down Expand Up @@ -57,6 +57,18 @@ export const apiVersion2: msRest.OperationQueryParameter = {
}
};
export const apiVersion3: msRest.OperationQueryParameter = {
parameterPath: "apiVersion",
mapper: {
required: true,
isConstant: true,
serializedName: "api-version",
defaultValue: '2019-12-01',
type: {
name: "String"
}
}
};
export const apiVersion4: msRest.OperationQueryParameter = {
parameterPath: "apiVersion",
mapper: {
required: true,
Expand Down Expand Up @@ -355,6 +367,18 @@ export const resourceGroupName: msRest.OperationURLParameter = {
}
}
};
export const sasUriExpirationTimeInMinutes: msRest.OperationQueryParameter = {
parameterPath: [
"options",
"sasUriExpirationTimeInMinutes"
],
mapper: {
serializedName: "sasUriExpirationTimeInMinutes",
type: {
name: "Number"
}
}
};
export const select: msRest.OperationQueryParameter = {
parameterPath: [
"options",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
1 change: 1 addition & 0 deletions sdk/compute/arm-compute/src/models/snapshotsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
1 change: 1 addition & 0 deletions sdk/compute/arm-compute/src/models/sshPublicKeysMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export {
DiagnosticsProfile,
DiffDiskSettings,
Disallowed,
DisallowedConfiguration,
Disk,
DiskEncryptionSet,
DiskEncryptionSetParameters,
Expand Down
Loading

0 comments on commit c1b9c67

Please sign in to comment.