Skip to content
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 @@ -547,11 +547,11 @@ public async Task<DeploymentOperationsListResult> ListAsync(string resourceGroup
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down Expand Up @@ -765,11 +765,11 @@ public async Task<DeploymentOperationsListResult> ListNextAsync(string nextLink,
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1930,11 +1930,11 @@ public async Task<DeploymentListResult> ListAsync(string resourceGroupName, Depl
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down Expand Up @@ -2322,11 +2322,11 @@ public async Task<DeploymentListResult> ListNextAsync(string nextLink, Cancellat
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -412,11 +412,11 @@ public async Task<FeatureOperationsListResult> ListAsync(string resourceProvider
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down Expand Up @@ -602,11 +602,11 @@ public async Task<FeatureOperationsListResult> ListAllAsync(CancellationToken ca
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down Expand Up @@ -778,11 +778,11 @@ public async Task<FeatureOperationsListResult> ListAllNextAsync(string nextLink,
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down Expand Up @@ -954,11 +954,11 @@ public async Task<FeatureOperationsListResult> ListNextAsync(string nextLink, Ca
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1616,11 +1616,11 @@ public async Task<ManagementLockListResult> ListAtResourceGroupLevelAsync(string
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down Expand Up @@ -1882,11 +1882,11 @@ public async Task<ManagementLockListResult> ListAtResourceLevelAsync(string reso
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down Expand Up @@ -2092,11 +2092,11 @@ public async Task<ManagementLockListResult> ListAtSubscriptionLevelAsync(Managem
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down Expand Up @@ -2275,11 +2275,11 @@ public async Task<ManagementLockListResult> ListNextAsync(string nextLink, Cance
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -468,11 +468,11 @@ public async Task<ProviderListResult> ListAsync(ProviderListParameters parameter
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down Expand Up @@ -676,11 +676,11 @@ public async Task<ProviderListResult> ListNextAsync(string nextLink, Cancellatio
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1110,11 +1110,11 @@ public async Task<ResourceGroupListResult> ListAsync(ResourceGroupListParameters
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down Expand Up @@ -1308,11 +1308,11 @@ public async Task<ResourceGroupListResult> ListNextAsync(string nextLink, Cancel
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1329,11 +1329,11 @@ public async Task<ResourceListResult> ListAsync(ResourceListParameters parameter
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down Expand Up @@ -1569,11 +1569,11 @@ public async Task<ResourceListResult> ListNextAsync(string nextLink, Cancellatio
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -956,11 +956,11 @@ public async Task<TagsListResult> ListAsync(CancellationToken cancellationToken)
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down Expand Up @@ -1177,11 +1177,11 @@ public async Task<TagsListResult> ListNextAsync(string nextLink, CancellationTok
}
}

JToken odatanextLinkValue = responseDoc["@odata.nextLink"];
if (odatanextLinkValue != null && odatanextLinkValue.Type != JTokenType.Null)
JToken nextLinkValue = responseDoc["nextLink"];
if (nextLinkValue != null && nextLinkValue.Type != JTokenType.Null)
{
string odatanextLinkInstance = ((string)odatanextLinkValue);
result.NextLink = odatanextLinkInstance;
string nextLinkInstance = ((string)nextLinkValue);
result.NextLink = nextLinkInstance;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Microsoft.Azure.Management.Resources
-->
<SdkNuGetPackage Include="Microsoft.Azure.Management.Resources">
<PackageVersion>2.18.6-preview</PackageVersion>
<PackageVersion>2.18.7-preview</PackageVersion>
<Folder>$(MSBuildThisFileDirectory)</Folder>
</SdkNuGetPackage>
</ItemGroup>
Expand Down
Loading