-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
ManagedInstanceVulnerabilityAssessmentData.cs
91 lines (84 loc) · 5.41 KB
/
ManagedInstanceVulnerabilityAssessmentData.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Collections.Generic;
using Azure.Core;
using Azure.ResourceManager.Models;
using Azure.ResourceManager.Sql.Models;
namespace Azure.ResourceManager.Sql
{
/// <summary>
/// A class representing the ManagedInstanceVulnerabilityAssessment data model.
/// A managed instance vulnerability assessment.
/// </summary>
public partial class ManagedInstanceVulnerabilityAssessmentData : ResourceData
{
/// <summary>
/// Keeps track of any properties unknown to the library.
/// <para>
/// To assign an object to the value of this property use <see cref="BinaryData.FromObjectAsJson{T}(T, System.Text.Json.JsonSerializerOptions?)"/>.
/// </para>
/// <para>
/// To assign an already formatted json string to this property use <see cref="BinaryData.FromString(string)"/>.
/// </para>
/// <para>
/// Examples:
/// <list type="bullet">
/// <item>
/// <term>BinaryData.FromObjectAsJson("foo")</term>
/// <description>Creates a payload of "foo".</description>
/// </item>
/// <item>
/// <term>BinaryData.FromString("\"foo\"")</term>
/// <description>Creates a payload of "foo".</description>
/// </item>
/// <item>
/// <term>BinaryData.FromObjectAsJson(new { key = "value" })</term>
/// <description>Creates a payload of { "key": "value" }.</description>
/// </item>
/// <item>
/// <term>BinaryData.FromString("{\"key\": \"value\"}")</term>
/// <description>Creates a payload of { "key": "value" }.</description>
/// </item>
/// </list>
/// </para>
/// </summary>
private IDictionary<string, BinaryData> _serializedAdditionalRawData;
/// <summary> Initializes a new instance of <see cref="ManagedInstanceVulnerabilityAssessmentData"/>. </summary>
public ManagedInstanceVulnerabilityAssessmentData()
{
}
/// <summary> Initializes a new instance of <see cref="ManagedInstanceVulnerabilityAssessmentData"/>. </summary>
/// <param name="id"> The id. </param>
/// <param name="name"> The name. </param>
/// <param name="resourceType"> The resourceType. </param>
/// <param name="systemData"> The systemData. </param>
/// <param name="storageContainerPath"> A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). </param>
/// <param name="storageContainerSasKey"> A shared access signature (SAS Key) that has write access to the blob container specified in 'storageContainerPath' parameter. If 'storageAccountAccessKey' isn't specified, StorageContainerSasKey is required. Applies only if the storage account is not behind a Vnet or a firewall. </param>
/// <param name="storageAccountAccessKey"> Specifies the identifier key of the storage account for vulnerability assessment scan results. If 'StorageContainerSasKey' isn't specified, storageAccountAccessKey is required. Applies only if the storage account is not behind a Vnet or a firewall. </param>
/// <param name="recurringScans"> The recurring scans settings. </param>
/// <param name="serializedAdditionalRawData"> Keeps track of any properties unknown to the library. </param>
internal ManagedInstanceVulnerabilityAssessmentData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, string storageContainerPath, string storageContainerSasKey, string storageAccountAccessKey, VulnerabilityAssessmentRecurringScansProperties recurringScans, IDictionary<string, BinaryData> serializedAdditionalRawData) : base(id, name, resourceType, systemData)
{
StorageContainerPath = storageContainerPath;
StorageContainerSasKey = storageContainerSasKey;
StorageAccountAccessKey = storageAccountAccessKey;
RecurringScans = recurringScans;
_serializedAdditionalRawData = serializedAdditionalRawData;
}
/// <summary> A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). </summary>
[WirePath("properties.storageContainerPath")]
public string StorageContainerPath { get; set; }
/// <summary> A shared access signature (SAS Key) that has write access to the blob container specified in 'storageContainerPath' parameter. If 'storageAccountAccessKey' isn't specified, StorageContainerSasKey is required. Applies only if the storage account is not behind a Vnet or a firewall. </summary>
[WirePath("properties.storageContainerSasKey")]
public string StorageContainerSasKey { get; set; }
/// <summary> Specifies the identifier key of the storage account for vulnerability assessment scan results. If 'StorageContainerSasKey' isn't specified, storageAccountAccessKey is required. Applies only if the storage account is not behind a Vnet or a firewall. </summary>
[WirePath("properties.storageAccountAccessKey")]
public string StorageAccountAccessKey { get; set; }
/// <summary> The recurring scans settings. </summary>
[WirePath("properties.recurringScans")]
public VulnerabilityAssessmentRecurringScansProperties RecurringScans { get; set; }
}
}