Skip to content

Commit

Permalink
CodeGen from PR 16925 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Track2 modify readme.go.md 5 (Azure#16925)
  • Loading branch information
SDKAuto committed Jan 5, 2022
1 parent 09a1a88 commit 311b81c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions sdk/iotcentral/azure-resourcemanager-iotcentral/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 1.0.0-beta.1 (2022-01-05)

- Azure Resource Manager IotCentral client library for Java. This package contains Microsoft Azure SDK for IotCentral Management SDK. Use this API to manage IoT Central Applications in your Azure subscription. Package tag package-2021-06. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

## 1.0.0 (2021-11-15)

- Azure Resource Manager IotCentral client library for Java. This package contains Microsoft Azure SDK for IotCentral Management SDK. Use this API to manage IoT Central Applications in your Azure subscription. Package tag package-2021-06. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public IotCentralManager authenticate(TokenCredential credential, AzureProfile p
.append("-")
.append("com.azure.resourcemanager.iotcentral")
.append("/")
.append("1.0.0");
.append("1.0.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder
.append(" (")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ private PollerFlux<PollResult<AppInner>, AppInner> beginCreateOrUpdateAsync(
return this
.client
.<AppInner, AppInner>getLroResult(
mono, this.client.getHttpPipeline(), AppInner.class, AppInner.class, Context.NONE);
mono, this.client.getHttpPipeline(), AppInner.class, AppInner.class, this.client.getContext());
}

/**
Expand Down Expand Up @@ -779,7 +779,7 @@ private PollerFlux<PollResult<AppInner>, AppInner> beginUpdateAsync(
return this
.client
.<AppInner, AppInner>getLroResult(
mono, this.client.getHttpPipeline(), AppInner.class, AppInner.class, Context.NONE);
mono, this.client.getHttpPipeline(), AppInner.class, AppInner.class, this.client.getContext());
}

/**
Expand Down Expand Up @@ -1020,7 +1020,8 @@ private PollerFlux<PollResult<Void>, Void> beginDeleteAsync(String resourceGroup
Mono<Response<Flux<ByteBuffer>>> mono = deleteWithResponseAsync(resourceGroupName, resourceName);
return this
.client
.<Void, Void>getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class, Context.NONE);
.<Void, Void>getLroResult(
mono, this.client.getHttpPipeline(), Void.class, Void.class, this.client.getContext());
}

/**
Expand Down

0 comments on commit 311b81c

Please sign in to comment.