Skip to content
Closed
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
@@ -1,6 +1,8 @@
# Release History

## 1.0.0-beta.4 (Unreleased)
## 1.0.0-beta.1 (2022-06-01)

- Azure Resource Manager ContainerAppsApi client library for Java. This package contains Microsoft Azure SDK for ContainerAppsApi Management SDK. Package tag package-2022-03. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Features Added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-appcontainers</artifactId>
<version>1.0.0-beta.3</version>
<version>1.0.0-beta.4</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public ContainerAppsApiManager authenticate(TokenCredential credential, AzurePro
.append("-")
.append("com.azure.resourcemanager.appcontainers")
.append("/")
.append("1.0.0-beta.3");
.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 @@ -12,8 +12,8 @@
public final class VnetConfiguration {
/*
* Boolean indicating the environment only has an internal load balancer.
* These environments do not have a public static IP resource, must provide
* ControlPlaneSubnetResourceId and AppSubnetResourceId if enabling this
* These environments do not have a public static IP resource. They must
* provide runtimeSubnetId and infrastructureSubnetId if enabling this
* property
*/
@JsonProperty(value = "internal")
Expand Down Expand Up @@ -60,8 +60,8 @@ public final class VnetConfiguration {

/**
* Get the internal property: Boolean indicating the environment only has an internal load balancer. These
* environments do not have a public static IP resource, must provide ControlPlaneSubnetResourceId and
* AppSubnetResourceId if enabling this property.
* environments do not have a public static IP resource. They must provide runtimeSubnetId and
* infrastructureSubnetId if enabling this property.
*
* @return the internal value.
*/
Expand All @@ -71,8 +71,8 @@ public Boolean internal() {

/**
* Set the internal property: Boolean indicating the environment only has an internal load balancer. These
* environments do not have a public static IP resource, must provide ControlPlaneSubnetResourceId and
* AppSubnetResourceId if enabling this property.
* environments do not have a public static IP resource. They must provide runtimeSubnetId and
* infrastructureSubnetId if enabling this property.
*
* @param internal the internal value to set.
* @return the VnetConfiguration object itself.
Expand Down