@@ -70,10 +70,10 @@ public class ThreatHuntResultObjectsSummary: BaseType
70
70
[ JsonProperty ( "totalUniqueMatchedPaths" ) ]
71
71
public System . Int64 ? TotalUniqueMatchedPaths { get ; set ; }
72
72
73
- // C# -> ClusterInfoType ? ClusterInfo
74
- // GraphQL -> clusterInfo: ClusterInfoType (type)
73
+ // C# -> Cluster ? ClusterInfo
74
+ // GraphQL -> clusterInfo: Cluster (type)
75
75
[ JsonProperty ( "clusterInfo" ) ]
76
- public ClusterInfoType ? ClusterInfo { get ; set ; }
76
+ public Cluster ? ClusterInfo { get ; set ; }
77
77
78
78
// C# -> List<IndicatorOfCompromise>? MatchTypes
79
79
// GraphQL -> matchTypes: [IndicatorOfCompromise!]! (type)
@@ -105,7 +105,7 @@ public ThreatHuntResultObjectsSummary Set(
105
105
System . Int64 ? TotalMatchedPaths = null ,
106
106
System . Int32 ? TotalMatchedSnapshots = null ,
107
107
System . Int64 ? TotalUniqueMatchedPaths = null ,
108
- ClusterInfoType ? ClusterInfo = null ,
108
+ Cluster ? ClusterInfo = null ,
109
109
List < IndicatorOfCompromise > ? MatchTypes = null ,
110
110
List < ThreatHuntResultSnapshotStats > ? SnapshotsStats = null
111
111
)
@@ -257,8 +257,8 @@ public override string AsFieldSpec(FieldSpecConfig? conf=null)
257
257
s += ind + "totalUniqueMatchedPaths\n " ;
258
258
}
259
259
}
260
- // C# -> ClusterInfoType ? ClusterInfo
261
- // GraphQL -> clusterInfo: ClusterInfoType (type)
260
+ // C# -> Cluster ? ClusterInfo
261
+ // GraphQL -> clusterInfo: Cluster (type)
262
262
if ( this . ClusterInfo != null ) {
263
263
var fspec = this . ClusterInfo . AsFieldSpec ( conf . Child ( "clusterInfo" ) ) ;
264
264
if ( fspec . Replace ( " " , "" ) . Replace ( "\n " , "" ) . Length > 0 ) {
@@ -477,13 +477,13 @@ public override void ApplyExploratoryFieldSpec(ExplorationContext ec)
477
477
{
478
478
this . TotalUniqueMatchedPaths = null ;
479
479
}
480
- // C# -> ClusterInfoType ? ClusterInfo
481
- // GraphQL -> clusterInfo: ClusterInfoType (type)
480
+ // C# -> Cluster ? ClusterInfo
481
+ // GraphQL -> clusterInfo: Cluster (type)
482
482
if ( ec . Includes ( "clusterInfo" , false ) )
483
483
{
484
484
if ( this . ClusterInfo == null ) {
485
485
486
- this . ClusterInfo = new ClusterInfoType ( ) ;
486
+ this . ClusterInfo = new Cluster ( ) ;
487
487
this . ClusterInfo . ApplyExploratoryFieldSpec ( ec . NewChild ( "clusterInfo" ) ) ;
488
488
489
489
} else {
0 commit comments