Skip to content

Update of WAD schema model classes #5150

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 29, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ public partial class PrivateConfig {

private EventHub eventHubField;

private AzureMonitorAccount azureMonitorAccountField;

private SecondaryStorageAccounts secondaryStorageAccountsField;

private SecondaryEventHubs secondaryEventHubsField;
Expand All @@ -52,6 +54,16 @@ public EventHub EventHub {
}
}

/// <remarks/>
public AzureMonitorAccount AzureMonitorAccount {
get {
return this.azureMonitorAccountField;
}
set {
this.azureMonitorAccountField = value;
}
}

/// <remarks/>
public SecondaryStorageAccounts SecondaryStorageAccounts {
get {
Expand Down Expand Up @@ -92,6 +104,7 @@ public partial class StorageAccount {
public StorageAccount() {
this.keyField = "";
this.endpointField = "https://core.windows.net";
this.sasTokenField = "";
}

/// <remarks/>
Expand Down Expand Up @@ -128,16 +141,15 @@ public string endpoint {
this.endpointField = value;
}
}

/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string sasToken
{
get
{
[System.ComponentModel.DefaultValueAttribute("")]
public string sasToken {
get {
return this.sasTokenField;
}
set
{
set {
this.sasTokenField = value;
}
}
Expand Down Expand Up @@ -234,4 +246,58 @@ public StorageAccount[] StorageAccount {
}
}
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration")]
public partial class ServicePrincipalMetaType {

private string principalIdField;

private string secretField;

/// <remarks/>
public string PrincipalId {
get {
return this.principalIdField;
}
set {
this.principalIdField = value;
}
}

/// <remarks/>
public string Secret {
get {
return this.secretField;
}
set {
this.secretField = value;
}
}
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration")]
public partial class AzureMonitorAccount {

private ServicePrincipalMetaType servicePrincipalMetaField;

/// <remarks/>
public ServicePrincipalMetaType ServicePrincipalMeta {
get {
return this.servicePrincipalMetaField;
}
set {
this.servicePrincipalMetaField = value;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ public partial class PrivateConfig {

private EventHub eventHubField;

private AzureMonitorAccount azureMonitorAccountField;

private SecondaryStorageAccounts secondaryStorageAccountsField;

private SecondaryEventHubs secondaryEventHubsField;
Expand All @@ -52,6 +54,16 @@ public EventHub EventHub {
}
}

/// <remarks/>
public AzureMonitorAccount AzureMonitorAccount {
get {
return this.azureMonitorAccountField;
}
set {
this.azureMonitorAccountField = value;
}
}

/// <remarks/>
public SecondaryStorageAccounts SecondaryStorageAccounts {
get {
Expand Down Expand Up @@ -87,9 +99,12 @@ public partial class StorageAccount {

private string endpointField;

private string sasTokenField;

public StorageAccount() {
this.keyField = "";
this.endpointField = "https://core.windows.net";
this.sasTokenField = "";
}

/// <remarks/>
Expand Down Expand Up @@ -126,6 +141,18 @@ public string endpoint {
this.endpointField = value;
}
}

/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
[System.ComponentModel.DefaultValueAttribute("")]
public string sasToken {
get {
return this.sasTokenField;
}
set {
this.sasTokenField = value;
}
}
}

/// <remarks/>
Expand Down Expand Up @@ -219,4 +246,58 @@ public StorageAccount[] StorageAccount {
}
}
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration")]
public partial class ServicePrincipalMetaType {

private string principalIdField;

private string secretField;

/// <remarks/>
public string PrincipalId {
get {
return this.principalIdField;
}
set {
this.principalIdField = value;
}
}

/// <remarks/>
public string Secret {
get {
return this.secretField;
}
set {
this.secretField = value;
}
}
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration")]
public partial class AzureMonitorAccount {

private ServicePrincipalMetaType servicePrincipalMetaField;

/// <remarks/>
public ServicePrincipalMetaType ServicePrincipalMeta {
get {
return this.servicePrincipalMetaField;
}
set {
this.servicePrincipalMetaField = value;
}
}
}
}