@@ -98,6 +98,8 @@ public partial class configuration
98
98
99
99
private configurationCodeLevelMetrics codeLevelMetricsField ;
100
100
101
+ private configurationCloud cloudField ;
102
+
101
103
private bool agentEnabledField ;
102
104
103
105
private bool rootAgentEnabledField ;
@@ -121,6 +123,7 @@ public partial class configuration
121
123
/// </summary>
122
124
public configuration ( )
123
125
{
126
+ this . cloudField = new configurationCloud ( ) ;
124
127
this . codeLevelMetricsField = new configurationCodeLevelMetrics ( ) ;
125
128
this . processHostField = new configurationProcessHost ( ) ;
126
129
this . utilizationField = new configurationUtilization ( ) ;
@@ -600,6 +603,18 @@ public configurationCodeLevelMetrics codeLevelMetrics
600
603
}
601
604
}
602
605
606
+ public configurationCloud cloud
607
+ {
608
+ get
609
+ {
610
+ return this . cloudField ;
611
+ }
612
+ set
613
+ {
614
+ this . cloudField = value ;
615
+ }
616
+ }
617
+
603
618
/// <summary>
604
619
/// Set this to true to enable the agent.
605
620
/// </summary>
@@ -6013,6 +6028,79 @@ public virtual configurationCodeLevelMetrics Clone()
6013
6028
#endregion
6014
6029
}
6015
6030
6031
+ [ System . CodeDom . Compiler . GeneratedCodeAttribute ( "Xsd2Code" , "3.6.0.20097" ) ]
6032
+ [ System . SerializableAttribute ( ) ]
6033
+ [ System . ComponentModel . DesignerCategoryAttribute ( "code" ) ]
6034
+ [ System . Xml . Serialization . XmlTypeAttribute ( AnonymousType = true , Namespace = "urn:newrelic-config" ) ]
6035
+ public partial class configurationCloud
6036
+ {
6037
+
6038
+ private configurationCloudAws awsField ;
6039
+
6040
+ /// <summary>
6041
+ /// configurationCloud class constructor
6042
+ /// </summary>
6043
+ public configurationCloud ( )
6044
+ {
6045
+ this . awsField = new configurationCloudAws ( ) ;
6046
+ }
6047
+
6048
+ public configurationCloudAws aws
6049
+ {
6050
+ get
6051
+ {
6052
+ return this . awsField ;
6053
+ }
6054
+ set
6055
+ {
6056
+ this . awsField = value ;
6057
+ }
6058
+ }
6059
+
6060
+ #region Clone method
6061
+ /// <summary>
6062
+ /// Create a clone of this configurationCloud object
6063
+ /// </summary>
6064
+ public virtual configurationCloud Clone ( )
6065
+ {
6066
+ return ( ( configurationCloud ) ( this . MemberwiseClone ( ) ) ) ;
6067
+ }
6068
+ #endregion
6069
+ }
6070
+
6071
+ [ System . CodeDom . Compiler . GeneratedCodeAttribute ( "Xsd2Code" , "3.6.0.20097" ) ]
6072
+ [ System . SerializableAttribute ( ) ]
6073
+ [ System . ComponentModel . DesignerCategoryAttribute ( "code" ) ]
6074
+ [ System . Xml . Serialization . XmlTypeAttribute ( AnonymousType = true , Namespace = "urn:newrelic-config" ) ]
6075
+ public partial class configurationCloudAws
6076
+ {
6077
+
6078
+ private string accountIdField ;
6079
+
6080
+ [ System . Xml . Serialization . XmlAttributeAttribute ( ) ]
6081
+ public string accountId
6082
+ {
6083
+ get
6084
+ {
6085
+ return this . accountIdField ;
6086
+ }
6087
+ set
6088
+ {
6089
+ this . accountIdField = value ;
6090
+ }
6091
+ }
6092
+
6093
+ #region Clone method
6094
+ /// <summary>
6095
+ /// Create a clone of this configurationCloudAws object
6096
+ /// </summary>
6097
+ public virtual configurationCloudAws Clone ( )
6098
+ {
6099
+ return ( ( configurationCloudAws ) ( this . MemberwiseClone ( ) ) ) ;
6100
+ }
6101
+ #endregion
6102
+ }
6103
+
6016
6104
[ System . CodeDom . Compiler . GeneratedCodeAttribute ( "Xsd2Code" , "3.6.0.20097" ) ]
6017
6105
[ System . SerializableAttribute ( ) ]
6018
6106
[ System . Xml . Serialization . XmlTypeAttribute ( AnonymousType = true , Namespace = "urn:newrelic-config" ) ]
0 commit comments