| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | using System.Collections.Generic; |
| | | 9 | | |
| | | 10 | | namespace Azure.ResourceManager.Resources.Models |
| | | 11 | | { |
| | | 12 | | /// <summary> Export resource group template request parameters. </summary> |
| | | 13 | | public partial class ExportTemplateRequest |
| | | 14 | | { |
| | | 15 | | /// <summary> Initializes a new instance of ExportTemplateRequest. </summary> |
| | 0 | 16 | | public ExportTemplateRequest() |
| | | 17 | | { |
| | 0 | 18 | | } |
| | | 19 | | |
| | | 20 | | /// <summary> Initializes a new instance of ExportTemplateRequest. </summary> |
| | | 21 | | /// <param name="resources"> The IDs of the resources to filter the export by. To export all resources, supply a |
| | | 22 | | /// <param name="options"> The export template options. A CSV-formatted list containing zero or more of the foll |
| | 0 | 23 | | internal ExportTemplateRequest(IList<string> resources, string options) |
| | | 24 | | { |
| | 0 | 25 | | Resources = resources; |
| | 0 | 26 | | Options = options; |
| | 0 | 27 | | } |
| | | 28 | | |
| | | 29 | | /// <summary> The IDs of the resources to filter the export by. To export all resources, supply an array with si |
| | 0 | 30 | | public IList<string> Resources { get; set; } |
| | | 31 | | /// <summary> The export template options. A CSV-formatted list containing zero or more of the following: ' |
| | 0 | 32 | | public string Options { get; set; } |
| | | 33 | | } |
| | | 34 | | } |