< Summary

Class:Azure.ResourceManager.Compute.Models.DiskCreateOption
Assembly:Azure.ResourceManager.Compute
File(s):C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\DiskCreateOption.cs
Covered lines:10
Uncovered lines:6
Coverable lines:16
Total lines:65
Line coverage:62.5% (10 of 16)
Covered branches:1
Total branches:6
Branch coverage:16.6% (1 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%50%
get_Empty()-100%100%
get_Attach()-0%100%
get_FromImage()-0%100%
get_Import()-100%100%
get_Copy()-100%100%
get_Restore()-0%100%
get_Upload()-100%100%
op_Equality(...)-0%100%
op_Inequality(...)-100%100%
op_Implicit(...)-100%100%
Equals(...)-0%0%
Equals(...)-100%100%
GetHashCode()-0%0%
ToString()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\DiskCreateOption.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8using System;
 9using System.ComponentModel;
 10
 11namespace Azure.ResourceManager.Compute.Models
 12{
 13    /// <summary> This enumerates the possible sources of a disk&apos;s creation. </summary>
 14    public readonly partial struct DiskCreateOption : IEquatable<DiskCreateOption>
 15    {
 16        private readonly string _value;
 17
 18        /// <summary> Determines if two <see cref="DiskCreateOption"/> values are the same. </summary>
 19        public DiskCreateOption(string value)
 20        {
 42621            _value = value ?? throw new ArgumentNullException(nameof(value));
 42622        }
 23
 24        private const string EmptyValue = "Empty";
 25        private const string AttachValue = "Attach";
 26        private const string FromImageValue = "FromImage";
 27        private const string ImportValue = "Import";
 28        private const string CopyValue = "Copy";
 29        private const string RestoreValue = "Restore";
 30        private const string UploadValue = "Upload";
 31
 32        /// <summary> Create an empty data disk of a size given by diskSizeGB. </summary>
 4233        public static DiskCreateOption Empty { get; } = new DiskCreateOption(EmptyValue);
 34        /// <summary> Disk will be attached to a VM. </summary>
 035        public static DiskCreateOption Attach { get; } = new DiskCreateOption(AttachValue);
 36        /// <summary> Create a new disk from a platform image specified by the given imageReference or galleryImageRefer
 037        public static DiskCreateOption FromImage { get; } = new DiskCreateOption(FromImageValue);
 38        /// <summary> Create a disk by importing from a blob specified by a sourceUri in a storage account specified by 
 3039        public static DiskCreateOption Import { get; } = new DiskCreateOption(ImportValue);
 40        /// <summary> Create a new disk or snapshot by copying from a disk or snapshot specified by the given sourceReso
 3441        public static DiskCreateOption Copy { get; } = new DiskCreateOption(CopyValue);
 42        /// <summary> Create a new disk by copying from a backup recovery point. </summary>
 043        public static DiskCreateOption Restore { get; } = new DiskCreateOption(RestoreValue);
 44        /// <summary> Create a new disk by obtaining a write token and using it to directly upload the contents of the d
 645        public static DiskCreateOption Upload { get; } = new DiskCreateOption(UploadValue);
 46        /// <summary> Determines if two <see cref="DiskCreateOption"/> values are the same. </summary>
 047        public static bool operator ==(DiskCreateOption left, DiskCreateOption right) => left.Equals(right);
 48        /// <summary> Determines if two <see cref="DiskCreateOption"/> values are not the same. </summary>
 2849        public static bool operator !=(DiskCreateOption left, DiskCreateOption right) => !left.Equals(right);
 50        /// <summary> Converts a string to a <see cref="DiskCreateOption"/>. </summary>
 9651        public static implicit operator DiskCreateOption(string value) => new DiskCreateOption(value);
 52
 53        /// <inheritdoc />
 54        [EditorBrowsable(EditorBrowsableState.Never)]
 055        public override bool Equals(object obj) => obj is DiskCreateOption other && Equals(other);
 56        /// <inheritdoc />
 16857        public bool Equals(DiskCreateOption other) => string.Equals(_value, other._value, StringComparison.InvariantCult
 58
 59        /// <inheritdoc />
 60        [EditorBrowsable(EditorBrowsableState.Never)]
 061        public override int GetHashCode() => _value?.GetHashCode() ?? 0;
 62        /// <inheritdoc />
 28063        public override string ToString() => _value;
 64    }
 65}