diff --git a/sdk/containerregistry/Microsoft.Azure.Management.ContainerRegistry/src/Generated/Models/ExportPipeline.cs b/sdk/containerregistry/Microsoft.Azure.Management.ContainerRegistry/src/Generated/Models/ExportPipeline.cs index c96f0133bb92..a4723490d9ce 100644 --- a/sdk/containerregistry/Microsoft.Azure.Management.ContainerRegistry/src/Generated/Models/ExportPipeline.cs +++ b/sdk/containerregistry/Microsoft.Azure.Management.ContainerRegistry/src/Generated/Models/ExportPipeline.cs @@ -39,6 +39,7 @@ public ExportPipeline() /// The resource ID. /// The name of the resource. /// The type of the resource. + /// The location of the export pipeline. /// The identity of the export pipeline. /// The list of all options configured for the /// pipeline. @@ -46,9 +47,10 @@ public ExportPipeline() /// pipeline at the time the operation was called. Possible values /// include: 'Creating', 'Updating', 'Deleting', 'Succeeded', 'Failed', /// 'Canceled' - public ExportPipeline(ExportPipelineTargetProperties target, string id = default(string), string name = default(string), string type = default(string), IdentityProperties identity = default(IdentityProperties), IList options = default(IList), string provisioningState = default(string)) + public ExportPipeline(ExportPipelineTargetProperties target, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IdentityProperties identity = default(IdentityProperties), IList options = default(IList), string provisioningState = default(string)) : base(id, name, type) { + Location = location; Identity = identity; Target = target; Options = options; @@ -61,6 +63,12 @@ public ExportPipeline() /// partial void CustomInit(); + /// + /// Gets or sets the location of the export pipeline. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + /// /// Gets or sets the identity of the export pipeline. /// diff --git a/sdk/containerregistry/Microsoft.Azure.Management.ContainerRegistry/src/Generated/Models/ImportPipeline.cs b/sdk/containerregistry/Microsoft.Azure.Management.ContainerRegistry/src/Generated/Models/ImportPipeline.cs index 43636dc8b9d1..09c1ae805b87 100644 --- a/sdk/containerregistry/Microsoft.Azure.Management.ContainerRegistry/src/Generated/Models/ImportPipeline.cs +++ b/sdk/containerregistry/Microsoft.Azure.Management.ContainerRegistry/src/Generated/Models/ImportPipeline.cs @@ -39,6 +39,7 @@ public ImportPipeline() /// The resource ID. /// The name of the resource. /// The type of the resource. + /// The location of the import pipeline. /// The identity of the import pipeline. /// The properties that describe the trigger of /// the import pipeline. @@ -48,9 +49,10 @@ public ImportPipeline() /// pipeline at the time the operation was called. Possible values /// include: 'Creating', 'Updating', 'Deleting', 'Succeeded', 'Failed', /// 'Canceled' - public ImportPipeline(ImportPipelineSourceProperties source, string id = default(string), string name = default(string), string type = default(string), IdentityProperties identity = default(IdentityProperties), PipelineTriggerProperties trigger = default(PipelineTriggerProperties), IList options = default(IList), string provisioningState = default(string)) + public ImportPipeline(ImportPipelineSourceProperties source, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IdentityProperties identity = default(IdentityProperties), PipelineTriggerProperties trigger = default(PipelineTriggerProperties), IList options = default(IList), string provisioningState = default(string)) : base(id, name, type) { + Location = location; Identity = identity; Source = source; Trigger = trigger; @@ -64,6 +66,12 @@ public ImportPipeline() /// partial void CustomInit(); + /// + /// Gets or sets the location of the import pipeline. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + /// /// Gets or sets the identity of the import pipeline. ///