Skip to content

Commit

Permalink
put back explicit usings (#42373)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-nash authored Mar 4, 2024
1 parent f6637cf commit b48a30e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ internal static AvroDataset DeserializeAvroDataset(JsonElement element)
string description = default;
DataFactoryElement<IList<DatasetDataElement>> structure = default;
DataFactoryElement<BinaryData> schema = default;
DataFactoryLinkedServiceReference linkedServiceName = default;
Core.Expressions.DataFactory.DataFactoryLinkedServiceReference linkedServiceName = default;
IDictionary<string, EntityParameterSpecification> parameters = default;
IList<BinaryData> annotations = default;
DatasetFolder folder = default;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ internal static JsonDataset DeserializeJsonDataset(JsonElement element)
string description = default;
DataFactoryElement<IList<DatasetDataElement>> structure = default;
DataFactoryElement<BinaryData> schema = default;
DataFactoryLinkedServiceReference linkedServiceName = default;
Core.Expressions.DataFactory.DataFactoryLinkedServiceReference linkedServiceName = default;
IDictionary<string, EntityParameterSpecification> parameters = default;
IList<BinaryData> annotations = default;
DatasetFolder folder = default;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ internal static DynatraceMonitorData DeserializeDynatraceMonitorData(JsonElement
ResourceIdentifier id = default;
string name = default;
ResourceType type = default;
SystemData systemData = default;
ResourceManager.Models.SystemData systemData = default;
DynatraceMonitoringStatus? monitoringStatus = default;
DynatraceMonitorMarketplaceSubscriptionStatus? marketplaceSubscriptionStatus = default;
DynatraceEnvironmentProperties dynatraceEnvironmentProperties = default;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ internal static NetAppVault DeserializeNetAppVault(JsonElement element, ModelRea
ResourceIdentifier id = default;
string name = default;
ResourceType type = default;
SystemData systemData = default;
ResourceManager.Models.SystemData systemData = default;
string vaultName = default;
IDictionary<string, BinaryData> serializedAdditionalRawData = default;
Dictionary<string, BinaryData> additionalPropertiesDictionary = new Dictionary<string, BinaryData>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static SelfHelpDiagnosticInsight SelfHelpDiagnosticInsight(string id = nu
/// <param name="requiredParameterSets"> Required parameters for invoking this particular solution. </param>
/// <returns> A new <see cref="Models.SelfHelpSolutionMetadata"/> instance for mocking. </returns>
[EditorBrowsable(EditorBrowsableState.Never)]
public static SelfHelpSolutionMetadata SelfHelpSolutionMetadata(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, string solutionId, string solutionType, string description, IEnumerable<IList<string>> requiredParameterSets)
public static SelfHelpSolutionMetadata SelfHelpSolutionMetadata(ResourceIdentifier id, string name, ResourceType resourceType, ResourceManager.Models.SystemData systemData, string solutionId, string solutionType, string description, IEnumerable<IList<string>> requiredParameterSets)
{
return new SelfHelpSolutionMetadata(id, name, resourceType, systemData, default, serializedAdditionalRawData: null);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ internal static SelfHelpSolutionMetadata DeserializeSelfHelpSolutionMetadata(Jso
ResourceIdentifier id = default;
string name = default;
ResourceType type = default;
SystemData systemData = default;
ResourceManager.Models.SystemData systemData = default;
string solutionId = default;
string solutionType = default;
string description = default;
Expand Down

0 comments on commit b48a30e

Please sign in to comment.