diff --git a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ArtifactSource.cs b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ArtifactSource.cs index 5394b77d9628..da23596917a8 100644 --- a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ArtifactSource.cs +++ b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ArtifactSource.cs @@ -40,12 +40,12 @@ public ArtifactSource() /// The type of artifact source used. /// The authentication method to use to /// access the artifact source. - /// Fully qualified resource Id for the resource. Ex - + /// Fully qualified resource ID for the resource. Ex - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// The name of the resource - /// The type of the resource. Ex- - /// Microsoft.Compute/virtualMachines or - /// Microsoft.Storage/storageAccounts. + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// Resource tags. /// The path from the location that the /// 'authentication' property [say, a SAS URI to the blob container] diff --git a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/AzureEntityResource.cs b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/AzureEntityResource.cs index 520ee08adcdc..27ce52c8db51 100644 --- a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/AzureEntityResource.cs +++ b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/AzureEntityResource.cs @@ -14,9 +14,12 @@ namespace Microsoft.Azure.Management.DeploymentManager.Models using System.Linq; /// - /// The resource model definition for a Azure Resource Manager resource - /// with an etag. + /// Entity Resource /// + /// + /// The resource model definition for an Azure Resource Manager resource + /// with an etag. + /// public partial class AzureEntityResource : Resource { /// @@ -30,12 +33,12 @@ public AzureEntityResource() /// /// Initializes a new instance of the AzureEntityResource class. /// - /// Fully qualified resource Id for the resource. Ex - + /// Fully qualified resource ID for the resource. Ex - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// The name of the resource - /// The type of the resource. Ex- - /// Microsoft.Compute/virtualMachines or - /// Microsoft.Storage/storageAccounts. + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// Resource Etag. public AzureEntityResource(string id = default(string), string name = default(string), string type = default(string), string etag = default(string)) : base(id, name, type) diff --git a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ProxyResource.cs b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ProxyResource.cs index 76f7d74e7570..abd6aad1d339 100644 --- a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ProxyResource.cs +++ b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ProxyResource.cs @@ -13,9 +13,12 @@ namespace Microsoft.Azure.Management.DeploymentManager.Models using System.Linq; /// - /// The resource model definition for a ARM proxy resource. It will have - /// everything other than required location and tags + /// Proxy Resource /// + /// + /// The resource model definition for a Azure Resource Manager proxy + /// resource. It will not have tags and a location + /// public partial class ProxyResource : Resource { /// @@ -29,12 +32,12 @@ public ProxyResource() /// /// Initializes a new instance of the ProxyResource class. /// - /// Fully qualified resource Id for the resource. Ex - + /// Fully qualified resource ID for the resource. Ex - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// The name of the resource - /// The type of the resource. Ex- - /// Microsoft.Compute/virtualMachines or - /// Microsoft.Storage/storageAccounts. + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" public ProxyResource(string id = default(string), string name = default(string), string type = default(string)) : base(id, name, type) { diff --git a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/Resource.cs b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/Resource.cs index a1b477572c6d..b9ed221d423d 100644 --- a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/Resource.cs +++ b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/Resource.cs @@ -15,6 +15,13 @@ namespace Microsoft.Azure.Management.DeploymentManager.Models using Newtonsoft.Json; using System.Linq; + /// + /// Resource + /// + /// + /// Common fields that are returned in the response for all Azure Resource + /// Manager resources + /// public partial class Resource : IResource { /// @@ -28,12 +35,12 @@ public Resource() /// /// Initializes a new instance of the Resource class. /// - /// Fully qualified resource Id for the resource. Ex - + /// Fully qualified resource ID for the resource. Ex - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// The name of the resource - /// The type of the resource. Ex- - /// Microsoft.Compute/virtualMachines or - /// Microsoft.Storage/storageAccounts. + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" public Resource(string id = default(string), string name = default(string), string type = default(string)) { Id = id; @@ -48,7 +55,7 @@ public Resource() partial void CustomInit(); /// - /// Gets fully qualified resource Id for the resource. Ex - + /// Gets fully qualified resource ID for the resource. Ex - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// [JsonProperty(PropertyName = "id")] @@ -61,9 +68,9 @@ public Resource() public string Name { get; private set; } /// - /// Gets the type of the resource. Ex- - /// Microsoft.Compute/virtualMachines or - /// Microsoft.Storage/storageAccounts. + /// Gets the type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// [JsonProperty(PropertyName = "type")] public string Type { get; private set; } diff --git a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/Rollout.cs b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/Rollout.cs index 54e9b3f06938..c15993b5a0cf 100644 --- a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/Rollout.cs +++ b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/Rollout.cs @@ -43,12 +43,12 @@ public Rollout() /// step groups to be deployed. /// The list of step groups that define the /// orchestration. - /// Fully qualified resource Id for the resource. Ex - + /// Fully qualified resource ID for the resource. Ex - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// The name of the resource - /// The type of the resource. Ex- - /// Microsoft.Compute/virtualMachines or - /// Microsoft.Storage/storageAccounts. + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// Resource tags. /// Identity for the resource. /// The reference to the artifact source diff --git a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/RolloutRequest.cs b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/RolloutRequest.cs index 4744847180d8..b79e1ddeaf55 100644 --- a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/RolloutRequest.cs +++ b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/RolloutRequest.cs @@ -44,12 +44,12 @@ public RolloutRequest() /// step groups to be deployed. /// The list of step groups that define the /// orchestration. - /// Fully qualified resource Id for the resource. Ex - + /// Fully qualified resource ID for the resource. Ex - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// The name of the resource - /// The type of the resource. Ex- - /// Microsoft.Compute/virtualMachines or - /// Microsoft.Storage/storageAccounts. + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// Resource tags. /// The reference to the artifact source /// resource Id where the payload is located. diff --git a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ServiceResource.cs b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ServiceResource.cs index 522dac59ccdd..684a6d898e3d 100644 --- a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ServiceResource.cs +++ b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ServiceResource.cs @@ -42,12 +42,12 @@ public ServiceResource() /// The subscription to which the /// resources in the service belong to or should be deployed /// to. - /// Fully qualified resource Id for the resource. Ex - + /// Fully qualified resource ID for the resource. Ex - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// The name of the resource - /// The type of the resource. Ex- - /// Microsoft.Compute/virtualMachines or - /// Microsoft.Storage/storageAccounts. + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// Resource tags. public ServiceResource(string location, string targetLocation, string targetSubscriptionId, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) : base(location, id, name, type, tags) diff --git a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ServiceTopologyResource.cs b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ServiceTopologyResource.cs index 54adf27eeb2d..9a6d647c87db 100644 --- a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ServiceTopologyResource.cs +++ b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ServiceTopologyResource.cs @@ -36,12 +36,12 @@ public ServiceTopologyResource() /// /// The geo-location where the resource /// lives - /// Fully qualified resource Id for the resource. Ex - + /// Fully qualified resource ID for the resource. Ex - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// The name of the resource - /// The type of the resource. Ex- - /// Microsoft.Compute/virtualMachines or - /// Microsoft.Storage/storageAccounts. + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// Resource tags. /// The resource Id of the artifact /// source that contains the artifacts that can be referenced in the diff --git a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ServiceUnitResource.cs b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ServiceUnitResource.cs index 14d81391c8ab..b5bcb68ec436 100644 --- a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ServiceUnitResource.cs +++ b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/ServiceUnitResource.cs @@ -42,12 +42,12 @@ public ServiceUnitResource() /// Describes the type of ARM deployment /// to be performed on the resource. Possible values include: /// 'Incremental', 'Complete' - /// Fully qualified resource Id for the resource. Ex - + /// Fully qualified resource ID for the resource. Ex - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// The name of the resource - /// The type of the resource. Ex- - /// Microsoft.Compute/virtualMachines or - /// Microsoft.Storage/storageAccounts. + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// Resource tags. /// The artifacts for the service unit. public ServiceUnitResource(string location, string targetResourceGroup, DeploymentMode deploymentMode, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), ServiceUnitArtifacts artifacts = default(ServiceUnitArtifacts)) diff --git a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/StepResource.cs b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/StepResource.cs index 6f0efca8183e..3e07f7a26a7c 100644 --- a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/StepResource.cs +++ b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/StepResource.cs @@ -36,12 +36,12 @@ public StepResource() /// lives /// The properties that define the /// step. - /// Fully qualified resource Id for the resource. Ex - + /// Fully qualified resource ID for the resource. Ex - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// The name of the resource - /// The type of the resource. Ex- - /// Microsoft.Compute/virtualMachines or - /// Microsoft.Storage/storageAccounts. + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// Resource tags. public StepResource(string location, StepProperties properties, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) : base(location, id, name, type, tags) diff --git a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/TrackedResource.cs b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/TrackedResource.cs index 5143dbe54469..d6a3ee04da5a 100644 --- a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/TrackedResource.cs +++ b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/Models/TrackedResource.cs @@ -17,8 +17,12 @@ namespace Microsoft.Azure.Management.DeploymentManager.Models using System.Linq; /// - /// The resource model definition for a ARM tracked top level resource + /// Tracked Resource /// + /// + /// The resource model definition for an Azure Resource Manager tracked top + /// level resource which has 'tags' and a 'location' + /// public partial class TrackedResource : Resource { /// @@ -34,12 +38,12 @@ public TrackedResource() /// /// The geo-location where the resource /// lives - /// Fully qualified resource Id for the resource. Ex - + /// Fully qualified resource ID for the resource. Ex - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// The name of the resource - /// The type of the resource. Ex- - /// Microsoft.Compute/virtualMachines or - /// Microsoft.Storage/storageAccounts. + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" /// Resource tags. public TrackedResource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) : base(id, name, type) diff --git a/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/SdkInfo_AzureDeploymentManager.cs b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/SdkInfo_AzureDeploymentManager.cs new file mode 100644 index 000000000000..4f26bfa0c884 --- /dev/null +++ b/sdk/deploymentmanager/Microsoft.Azure.Management.DeploymentManager/src/Generated/SdkInfo_AzureDeploymentManager.cs @@ -0,0 +1,33 @@ + +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.DeploymentManager +{ + using System; + using System.Collections.Generic; + using System.Linq; + + internal static partial class SdkInfo + { + public static IEnumerable> ApiInfo_AzureDeploymentManager + { + get + { + return new Tuple[] + { + new Tuple("DeploymentManager", "ArtifactSources", "2019-11-01-preview"), + new Tuple("DeploymentManager", "Operations", "2019-11-01-preview"), + new Tuple("DeploymentManager", "Rollouts", "2019-11-01-preview"), + new Tuple("DeploymentManager", "ServiceTopologies", "2019-11-01-preview"), + new Tuple("DeploymentManager", "ServiceUnits", "2019-11-01-preview"), + new Tuple("DeploymentManager", "Services", "2019-11-01-preview"), + new Tuple("DeploymentManager", "Steps", "2019-11-01-preview"), + }.AsEnumerable(); + } + } + } +}